Exemple #1
0
 /// <summary>
 /// Sets the state to failed.
 /// </summary>
 public void FailQuest()
 {
     Status = QQ_QuestStatus.Failed;
 }
Exemple #2
0
 /// <summary>
 /// Sets the state to active.
 /// </summary>
 public void ActivateQuest()
 {
     Status = QQ_QuestStatus.Active;
 }
Exemple #3
0
 /// <summary>
 /// Sets the state to inactive.
 /// </summary>
 public void DectivateQuest()
 {
     Status = QQ_QuestStatus.Inactive;
 }
Exemple #4
0
 /// <summary>
 /// Sets the state to completed, and marks the quest as complete.
 /// </summary>
 public void CompleteQuest()
 {
     Completed = true;
     Status    = QQ_QuestStatus.Completed;
 }