public void TestObjective() { QuestNew q = FindQuest("ETC Objective"); if (q != null) { q.CheckGoals(); } else { Debug.Log("Don't have this quest!"); } }
//For testing public void TestKill() { QuestNew q = FindQuest("Kill Bandits"); if (q != null) { q.CheckGoals(); } else { Debug.Log("Don't have this quest!"); } }
public void TestFetch() { QuestNew q = FindQuest("Find Ring"); if (q != null) { q.CheckGoals(); } else { Debug.Log("Don't have this quest!"); } }
public void Complete() { Completed = true; Quest.CheckGoals(); }