1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- --[[
- Script Name : Quests/Antonica/hunters_manifest.lua
- Script Purpose : Handles the quest, "Hunter's Manifest"
- Script Author : premierio015
- Script Date : 06.04.2023
- Script Notes : Auto generated with QuestParser.
- Zone : Antonica
- Quest Giver :
- Preceded by : None
- Followed by : None
- THIS QUEST IS NOT A DUPE DONT REMOVE
- --]]
- require "SpawnScripts/Generic/PlayerHistory"
- function Init(Quest)
- AddQuestStepKill(Quest, 1, "I need to hunt various hawks in Antonica", MakeRandomInt(10, 15), 100, "I have decided to prove my worth as a hunter by bringing down game from all parts of Antonica.", 156, 120188, 120337, 120064, 120029)
- AddQuestStepCompleteAction(Quest, 1, "QuestComplete")
- end
-
-
- function Accepted(Quest, QuestGiver, Player)
- SetPlayerHistory(Player, 8, 1)
- end
-
- function Declined(Quest, QuestGiver, Player)
- -- Add dialog here for when the quest is declined
- end
- function Deleted(Quest, QuestGiver, Player)
- SetPlayerHistory(Player, 8, 0)
- end
- function QuestComplete(Quest, QuestGiver, Player)
- UpdateQuestStepDescription(Quest, 1, "I have hunted the various hawks in Antonica and have proven my abilities as a hunter! ")
- UpdateQuestTaskGroupDescription(Quest, 1, "I have proven my abilties as a hunter!")
- UpdateQuestDescription(Quest, "I have hunted several different types of Antonican creatures, proving my skill in hunting to all those who cross my path.")
- GiveQuestReward(Quest, Player)
- end
- function Reload(Quest, QuestGiver, Player, Step)
- if Step == 1 then
- QuestComplete(Quest, QuestGiver, Player)
- end
- end
|