-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
2,185 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,196 @@ | ||
using System.Text.Json; | ||
using System.Text.Json.Serialization; | ||
using Microsoft.Extensions.Localization; | ||
|
||
namespace Game_Manager_GoldKingZ.Config | ||
{ | ||
public static class Configs | ||
{ | ||
public static class Shared { | ||
public static string? CookiesModule { get; set; } | ||
public static IStringLocalizer? StringLocalizer { get; set; } | ||
} | ||
|
||
private static readonly string ConfigDirectoryName = "config"; | ||
private static readonly string ConfigFileName = "config.json"; | ||
private static readonly string jsonFilePath2 = "MySql_Settings.json"; | ||
private static string? _jsonFilePath2; | ||
private static string? _configFilePath; | ||
private static ConfigData? _configData; | ||
|
||
private static readonly JsonSerializerOptions SerializationOptions = new() | ||
{ | ||
Converters = | ||
{ | ||
new JsonStringEnumConverter() | ||
}, | ||
WriteIndented = true, | ||
AllowTrailingCommas = true, | ||
ReadCommentHandling = JsonCommentHandling.Skip, | ||
}; | ||
|
||
public static bool IsLoaded() | ||
{ | ||
return _configData is not null; | ||
} | ||
|
||
public static ConfigData GetConfigData() | ||
{ | ||
if (_configData is null) | ||
{ | ||
throw new Exception("Config not yet loaded."); | ||
} | ||
|
||
return _configData; | ||
} | ||
|
||
public static ConfigData Load(string modulePath) | ||
{ | ||
var configFileDirectory = Path.Combine(modulePath, ConfigDirectoryName); | ||
if(!Directory.Exists(configFileDirectory)) | ||
{ | ||
Directory.CreateDirectory(configFileDirectory); | ||
} | ||
_jsonFilePath2 = Path.Combine(configFileDirectory, jsonFilePath2); | ||
Helper.CreateDefaultWeaponsJson2(_jsonFilePath2); | ||
|
||
_configFilePath = Path.Combine(configFileDirectory, ConfigFileName); | ||
if (File.Exists(_configFilePath)) | ||
{ | ||
_configData = JsonSerializer.Deserialize<ConfigData>(File.ReadAllText(_configFilePath), SerializationOptions); | ||
} | ||
else | ||
{ | ||
_configData = new ConfigData(); | ||
} | ||
|
||
if (_configData is null) | ||
{ | ||
throw new Exception("Failed to load configs."); | ||
} | ||
|
||
SaveConfigData(_configData); | ||
|
||
return _configData; | ||
} | ||
|
||
private static void SaveConfigData(ConfigData configData) | ||
{ | ||
if (_configFilePath is null) | ||
{ | ||
throw new Exception("Config not yet loaded."); | ||
} | ||
string json = JsonSerializer.Serialize(configData, SerializationOptions); | ||
|
||
|
||
File.WriteAllText(_configFilePath, json); | ||
} | ||
|
||
public class ConfigData | ||
{ | ||
public bool Enable_UseMySql { get; set; } | ||
public bool DisableRadio { get; set; } | ||
public bool DisableBotRadio { get; set; } | ||
public bool DisableChatWheel { get; set; } | ||
public bool DisablePing { get; set; } | ||
public bool DisableGrenadeRadio { get; set; } | ||
public bool DisableRadar { get; set; } | ||
public bool DisableCashAwardsAndMoneyHUD { get; set; } | ||
public bool DisableJumpLandSound { get; set; } | ||
public bool DisableFallDamage { get; set; } | ||
public bool DisableSvCheats { get; set; } | ||
public bool DisableC4 { get; set; } | ||
public bool DisableMPVSound { get; set; } | ||
public int DisableKillfeedMode { get; set; } | ||
public int DisableTeamMateHeadTag { get; set; } | ||
public int DisableDeadBodyMode { get; set; } | ||
public float Mode2_TimeXSecsDelayRemoveDeadBody { get; set; } | ||
public float Mode3_TimeXSecsDecayDeadBody { get; set; } | ||
public int DisableLegsMode { get; set; } | ||
public string Toggle_DisableLegsFlags { get; set; } | ||
public string Toggle_DisableLegsCommandsInGame { get; set; } | ||
public int DisableHUDChatMode { get; set; } | ||
public float DisableHUDChatModeWarningTimerInSecs { get; set; } | ||
public string Toggle_DisableHUDChatFlags { get; set; } | ||
public string Toggle_DisableHUDChatCommandsInGame { get; set; } | ||
public int DisableHUDWeaponsMode { get; set; } | ||
public string Toggle_DisableHUDWeaponsFlags { get; set; } | ||
public string Toggle_DisableHUDWeaponsCommandsInGame { get; set; } | ||
public int Toggle_AutoRemovePlayerCookieOlderThanXDays { get; set; } | ||
public int Toggle_AutoRemovePlayerMySqlOlderThanXDays { get; set; } | ||
|
||
public string empty { get; set; } | ||
public bool IgnoreDefaultBombPlantedAnnounce { get; set; } | ||
public bool IgnoreDefaultTeamMateAttackMessages { get; set; } | ||
public bool IgnoreDefaultJoinTeamMessages { get; set; } | ||
public bool IgnoreDefaultDisconnectMessages { get; set; } | ||
|
||
public string empty2 { get; set; } | ||
public int CustomJoinTeamMessagesMode { get; set; } | ||
public int CustomThrowNadeMessagesMode { get; set; } | ||
public string empty3 { get; set; } | ||
public int AutoCleanDropWeaponsMode { get; set; } | ||
public string AutoCleanTheseDroppedWeaponsOnly { get; set; } | ||
public float Mode1_TimeXSecsDelayClean { get; set; } | ||
public float Mode2_TimeXSecsDelayClean { get; set; } | ||
public float Mode3_EveryTimeXSecs { get; set; } | ||
public string empty4 { get; set; } | ||
public string Information_For_You_Dont_Delete_it { get; set; } | ||
|
||
public ConfigData() | ||
{ | ||
Enable_UseMySql = false; | ||
DisableRadio = false; | ||
DisableBotRadio = false; | ||
DisableChatWheel = false; | ||
DisablePing = false; | ||
DisableGrenadeRadio = false; | ||
DisableRadar = false; | ||
DisableCashAwardsAndMoneyHUD = false; | ||
DisableJumpLandSound = false; | ||
DisableFallDamage = false; | ||
DisableSvCheats = false; | ||
DisableC4 = false; | ||
DisableMPVSound = false; | ||
DisableKillfeedMode = 0; | ||
DisableTeamMateHeadTag = 0; | ||
DisableDeadBodyMode = 0; | ||
Mode2_TimeXSecsDelayRemoveDeadBody = 10.0f; | ||
Mode3_TimeXSecsDecayDeadBody = 0.01f; | ||
DisableLegsMode = 0; | ||
Toggle_DisableLegsFlags = "@css/root,@css/admin,@css/vip,#css/admin,#css/vip"; | ||
Toggle_DisableLegsCommandsInGame = "!hidelegs,!hideleg,!hl"; | ||
DisableHUDChatMode = 0; | ||
DisableHUDChatModeWarningTimerInSecs = 15; | ||
Toggle_DisableHUDChatFlags = "@css/root,@css/admin,@css/vip,#css/admin,#css/vip"; | ||
Toggle_DisableHUDChatCommandsInGame = "!hidechat,!hc"; | ||
DisableHUDWeaponsMode = 0; | ||
Toggle_DisableHUDWeaponsFlags = "@css/root,@css/admin,@css/vip,#css/admin,#css/vip"; | ||
Toggle_DisableHUDWeaponsCommandsInGame = "!hideweapons,!hideweapon,!hw"; | ||
Toggle_AutoRemovePlayerCookieOlderThanXDays = 7; | ||
Toggle_AutoRemovePlayerMySqlOlderThanXDays = 7; | ||
empty = "-----------------------------------------------------------------------------------"; | ||
IgnoreDefaultBombPlantedAnnounce = false; | ||
IgnoreDefaultTeamMateAttackMessages = false; | ||
IgnoreDefaultJoinTeamMessages = false; | ||
IgnoreDefaultDisconnectMessages = false; | ||
empty2 = "-----------------------------------------------------------------------------------"; | ||
CustomJoinTeamMessagesMode = 0; | ||
CustomThrowNadeMessagesMode = 0; | ||
empty3 = "-----------------------------------------------------------------------------------"; | ||
AutoCleanDropWeaponsMode = 0; | ||
AutoCleanTheseDroppedWeaponsOnly = "1,2,3"; | ||
Mode1_TimeXSecsDelayClean = 10; | ||
Mode2_TimeXSecsDelayClean = 10; | ||
Mode3_EveryTimeXSecs = 10; | ||
empty4 = "-----------------------------------------------------------------------------------"; | ||
Information_For_You_Dont_Delete_it = " Vist [https://github.com/oqyh/cs2-Game-Manager-GoldKingZ/tree/main?tab=readme-ov-file#-configuration-] To Understand All Above"; | ||
} | ||
} | ||
} | ||
} | ||
|
||
// CustomThrowNadeMessagesMode = 0 // DISABLED | ||
// CustomThrowNadeMessagesMode = 1 // Custom Thow Nade + Exclude Bots | ||
// CustomThrowNadeMessagesMode = 2 // Custom Thow Nade + Include Bots | ||
// CustomThrowNadeMessagesMode = 3 // Custom Thow Nade + Hide Nade Message From All When (mp_teammates_are_enemies true) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using CounterStrikeSharp.API.Core; | ||
|
||
namespace Game_Manager_GoldKingZ; | ||
|
||
public class Globals | ||
{ | ||
public static bool onetimeclean = false; | ||
public static uint HIDEWEAPONS = 64; | ||
public static uint HIDECHAT = 128; | ||
public static uint CROSSHAIRANDNAMETAGS = 256; | ||
public static Dictionary<ulong, int> Toggle_DisableChat = new Dictionary<ulong, int>(); | ||
public static Dictionary<ulong, bool> Toggle_OnDisableChat = new Dictionary<ulong, bool>(); | ||
public static Dictionary<ulong, int> Toggle_DisableWeapons = new Dictionary<ulong, int>(); | ||
public static Dictionary<ulong, bool> Toggle_OnDisableWeapons = new Dictionary<ulong, bool>(); | ||
public static Dictionary<ulong, int> Toggle_DisableLegs = new Dictionary<ulong, int>(); | ||
public static CounterStrikeSharp.API.Modules.Timers.Timer? CleanerTimer; | ||
public static Dictionary<CCSPlayerController, CounterStrikeSharp.API.Modules.Timers.Timer> TimerRemoveDeadBody = new Dictionary<CCSPlayerController, CounterStrikeSharp.API.Modules.Timers.Timer>(); | ||
|
||
public static Dictionary<CCSPlayerController, int> PlayerAlpha = new Dictionary<CCSPlayerController, int>(); | ||
} |
Oops, something went wrong.