Scripts/Commands: Add .debug questreset to force daily/weekly/monthly quest reset.

Port From (https://github.com/TrinityCore/TrinityCore/commit/6f6cf975e4e0bef621b9465f364476ec6731ae0d)
This commit is contained in:
hondacrx
2022-01-20 12:39:18 -05:00
parent f87f58e35f
commit 62e4f1a7c5
2 changed files with 40 additions and 0 deletions
+5
View File
@@ -2405,7 +2405,12 @@ namespace Game
public void SetDataPath(string path) { _dataPath = path; }
public long GetNextDailyQuestsResetTime() { return m_NextDailyQuestReset; }
public void SetNextDailyQuestsResetTime(long time) { m_NextDailyQuestReset = time; }
public long GetNextWeeklyQuestsResetTime() { return m_NextWeeklyQuestReset; }
public void SetNextWeeklyQuestsResetTime(long time) { m_NextWeeklyQuestReset = time; }
public long GetNextMonthlyQuestsResetTime() { return m_NextMonthlyQuestReset; }
public void SetNextMonthlyQuestsResetTime(long time) { m_NextMonthlyQuestReset = time; }
long GetNextRandomBGResetTime() { return m_NextRandomBGReset; }
public uint GetConfigMaxSkillValue()