FairWarningsIgnored.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : Quests/NektroposCastle/FairWarningsIgnored.lua
  3. Script Purpose : Fair Warnings Ignored
  4. Script Author : smash
  5. Script Date : 6/6/2018
  6. Script Notes :
  7. Zone : Nektropos Castle
  8. Quest Giver : None
  9. Preceded by : None
  10. Followed by : None
  11. --]]
  12. function Init(Quest)
  13. AddQuestStepKill(Quest, 1, "I need to slay The Juggernaught in Nektropos Castle.", 1, 100, "The Juggernaught stands between me and my progress through Nektropos Castle. I must destroy it!", 611, 1780293)
  14. AddQuestStepCompleteAction(Quest, 1, "CompleteQuest")
  15. end
  16. function Accepted(Quest, QuestGiver, Player)
  17. end
  18. function Deleted(Quest, QuestGiver, Player)
  19. end
  20. function Declined(Quest, QuestGiver, Player)
  21. end
  22. function Reload(Quest, QuestGiver, Player, Step)
  23. end
  24. function CompleteQuest(Quest, QuestGiver, Player)
  25. UpdateQuestStepDescription(Quest, 1, "I have slain The Juggernaught.")
  26. UpdateQuestTaskGroupDescription(Quest, 1, "The Juggernaught, while tough, was not tough enough to keep me from progressing.")
  27. GiveQuestReward(Quest, Player)
  28. end