From 9ad7f9fc835d032ff337810a9435340f0ebfd40d Mon Sep 17 00:00:00 2001 From: Dawid Bepierszcz <41084667+daffyyyy@users.noreply.github.com> Date: Thu, 16 Nov 2023 11:23:59 +0100 Subject: [PATCH] Update Config.cs --- Config.cs | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/Config.cs b/Config.cs index 5c146d0c..78719b67 100644 --- a/Config.cs +++ b/Config.cs @@ -17,6 +17,8 @@ namespace WeaponPaints public string SuccessRefreshCommand { get; set; } = "Refreshing weapon paints."; [JsonPropertyName("ChosenKnifeMenu")] public string ChosenKnifeMenu { get; set; } = "You have chosen {KNIFE} as your knife."; + [JsonPropertyName("ChosenKnifeMenuKill")] + public string ChosenKnifeMenuKill { get; set; } = "To correctly apply skin for knife, you need to type !kill."; [JsonPropertyName("KnifeMenuTitle")] public string KnifeMenuTitle { get; set; } = "Knife Menu."; } @@ -34,11 +36,29 @@ namespace WeaponPaints [JsonPropertyName("CommandWpEnabled")] public bool CommandWpEnabled { get; set; } = true; + + [JsonPropertyName("CommandKillEnabled")] + public bool CommandKillEnabled { get; set; } = true; + + [JsonPropertyName("CommandKnife")] + public string CommandKnife { get; set; } = "knife"; + + [JsonPropertyName("CommandSkin")] + public string CommandSkin { get; set; } = "ws"; + + [JsonPropertyName("CommandRefresh")] + public string CommandRefresh { get; set; } = "refresh"; + + [JsonPropertyName("CommandKill")] + public string CommandKill { get; set; } = "kill"; + + [JsonPropertyName("GiveRandomKnife")] + public bool GiveRandomKnife { get; set; } = false; } public class WeaponPaintsConfig : BasePluginConfig { - public override int Version { get; set; } = 3; + public override int Version { get; set; } = 4; [JsonPropertyName("DatabaseHost")] public string DatabaseHost { get; set; } = "";