コード例 #1
0
        public void AddPlayerToQuest(Quest q, BasePlayer player, bool showNotification = true)
        {
            QuestInfo qI = QuestINFO(player);

            qI.AddQuest(q);
            Notification(player, "You have been added to the quest!");
            SaveQuests();
        }