qeynos_warrior_gear__level_10.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : Quests/Unknown/qeynos_warrior_gear__level_10.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.06.14 12:06:00
  5. Script Purpose : EMU gear pack for testing
  6. Zone : Unknown
  7. Quest Giver:
  8. Preceded by: None
  9. Followed by:
  10. --]]
  11. function Init(Quest)
  12. AddQuestStepChat(Quest, 1, "I need to talk to the Shady Swashbuckler XVII.", 1, "I have a voucher for Level 10 testing gear I can turn in.", 75, 121873)
  13. AddQuestStepCompleteAction(Quest, 1, "QuestComplete")
  14. end
  15. function Accepted(Quest, QuestGiver, Player)
  16. end
  17. function Declined(Quest, QuestGiver, Player)
  18. -- Add dialog here for when the quest is declined
  19. end
  20. function Deleted(Quest, QuestGiver, Player)
  21. -- Remove any quest specific items here when the quest is deleted
  22. end
  23. function QuestComplete(Quest, QuestGiver, Player)
  24. -- The following UpdateQuestStepDescription and UpdateTaskGroupDescription are not needed, parser adds them for completion in case stuff needs to be moved around
  25. UpdateQuestStepDescription(Quest, 1, "I have claimed Level 10 Warrior testing gear.")
  26. UpdateQuestTaskGroupDescription(Quest, 1, "I have claimed Level 10 Warrior testing gear.")
  27. UpdateQuestDescription(Quest, "I have claimed Level 10 Warrior testing gear.")
  28. GiveQuestReward(Quest, Player)
  29. end
  30. function Reload(Quest, QuestGiver, Player, Step)
  31. if Step == 1 then
  32. QuestComplete(Quest, QuestGiver, Player)
  33. end
  34. end