LuckyLure.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. --[[
  2. Script Name : LuckyLure.lua
  3. Script Purpose : Handles the quest, "Lucky Lure"
  4. Script Author : geordie0511
  5. Script Date : 12.03.2019
  6. Script Notes : edited by geordie0511
  7. Zone : Antonica
  8. Quest Giver : Blarton Blumble
  9. Preceded by : None
  10. Followed by : Fishing Hole Hunt
  11. --]]
  12. function Init(Quest)
  13. AddQuestStepZoneLoc(Quest, 1, "Find Blarton's fishing lure.", 1, 12, "I should search for Blarton's lost lure along the beach north of Windstalker Village in Antonica.", 1037, -1970.96, -28.74,12)
  14. AddQuestStepCompleteAction(Quest, 1, "Step1Complete")
  15. end
  16. function Accepted(Quest, QuestGiver, Player)
  17. FaceTarget(QuestGiver, Player)
  18. conversation = CreateConversation()
  19. AddConversationOption(conversation, "Okay.")
  20. StartConversation(conversation, QuestGiver, Player, "Thank you very much! As I was saying, it should be somewhere near the beach to the north of here. Good luck!")
  21. end
  22. function Declined(Quest, QuestGiver, Player)
  23. -- Add dialog here for when the quest is declined
  24. end
  25. function Deleted(Quest, QuestGiver, Player)
  26. -- Remove any quest specific items here when the quest is deleted
  27. end
  28. function Step1Complete(Quest, QuestGiver, Player)
  29. UpdateQuestStepDescription(Quest, 1, "I have found Blarton's fishing lure.")
  30. UpdateQuestTaskGroupDescription(Quest, 1, "I have found the lost fishing lure.")
  31. AddQuestStepChat(Quest, 2, "Return Blarton's lost fishing lure.", 1, "I have found the missing lure and must return it to Blarton in Windstalker Village.", 1037, 120163)
  32. AddQuestStepCompleteAction(Quest, 2, "QuestComplete")
  33. end
  34. function QuestComplete(Quest, QuestGiver, Player)
  35. -- The following UpdateQuestStepDescription and UpdateTaskGroupDescription are not needed, parser adds them for completion in case stuff needs to be moved around
  36. UpdateQuestStepDescription(Quest, 2, "I brought the lure back to Blarton.")
  37. UpdateQuestTaskGroupDescription(Quest, 2, "I have returned Blarton's fishing lure.")
  38. UpdateQuestDescription(Quest, "I have retrieved Blarton's lost fishing lure and returned it to him. He seemed very happy about it. I wonder if he needs help with anything else.")
  39. GiveQuestReward(Quest, Player)
  40. end
  41. function Reload(Quest, QuestGiver, Player, Step)
  42. if Step == 1 then
  43. Step1Complete(Quest, QuestGiver, Player)
  44. elseif Step == 2 then
  45. QuestComplete(Quest, QuestGiver, Player)
  46. end
  47. end