Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion Quests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -3437,4 +3445,4 @@ private bool API_GetNotChatOutput(BasePlayer player)

#endregion
}
}
}