diff --git a/Quests.cs b/Quests.cs index d66cf59..7f47b20 100644 --- a/Quests.cs +++ b/Quests.cs @@ -3067,6 +3067,14 @@ void cmdQuestNPC(BasePlayer player, string command, string[] args) else SendMSG(player, LA("noNPC", player.UserIDString)); } + [ConsoleCommand("wipePlayerProgress")] + void ccmdwipePlayerProgress(ConsoleSystem.Arg arg) + { + if (arg.Connection != null) return; + playerData.PlayerProgress = null; + Player_Data.WriteObject(Player_Data); + LoadData(); + } #endregion #region Data Management @@ -3437,4 +3445,4 @@ private bool API_GetNotChatOutput(BasePlayer player) #endregion } -} \ No newline at end of file +}