12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- --[[
- Script Name : Quests/Antonica/hunters_manifest3.lua
- Script Author : Premierio015
- Script Date : 2023.04.14 08:04:46
- Script Purpose :
- Zone : Antonica
- Quest Giver:
- Preceded by: None
- Followed by:
- THIS QUEST IS NOT A DUPE DONT REMOVE
- --]]
- require "SpawnScripts/Generic/PlayerHistory"
- function Init(Quest)
- AddQuestStepKill(Quest, 1, "I need to hunt various bears 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.", 174, 120294, 120312, 120473, 120119, 120471, 120140)
- AddQuestStepCompleteAction(Quest, 1, "QuestComplete")
- end
- function Accepted(Quest, QuestGiver, Player)
- SetPlayerHistory(Player, 8, 1)
- end
- function Deleted(Quest, QuestGiver, Player)
- SetPlayerHistory(Player, 8, 0)
- end
- function QuestComplete(Quest, QuestGiver, Player)
- UpdateQuestStepDescription(Quest, 1, "I have hunted the various bears 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
|