TestQuest.lua 698 B

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : Quests/GMHall/TestQuest.lua
  3. Script Author : TyroneSWG
  4. Script Date : 2019.01.29 02:01:27
  5. Script Purpose :
  6. Zone : GMHall
  7. Quest Giver:
  8. Preceded by: None
  9. Followed by:
  10. --]]
  11. function Init(Quest)
  12. SetQuestFeatherColor(Quest, 2)
  13. AddQuestStepKill(Quest, 1, "I need to help clean up the area.", 1, 100, "The Gods have asked that i help with cleanup around the mythical hall.", 2693, 1970017)
  14. end
  15. function Accepted(Quest, QuestGiver, Player)
  16. end
  17. function Declined(Quest, QuestGiver, Player)
  18. end
  19. function quest_complete(Quest, QuestGiver, Player)
  20. end
  21. function Reload(Quest, QuestGiver, Player, Step)
  22. end