예제 #1
0
 /// <summary>
 ///     Accepts the quest with the specified id
 /// </summary>
 /// <param name="parId">The Id.</param>
 public void AcceptQuest(int parId)
 {
     foreach (var q in _Quests)
     {
         if (parId == q.Id)
         {
             Functions.AcceptQuest(NpcGuid, parId);
         }
     }
 }