1234567891011121314151617181920212223242526272829 |
- --[[
- Script Name : SpawnScripts/Commonlands/ariverbankmushroom.lua
- Script Author : Premierio015
- Script Date : 2021.02.21 11:02:56
- Script Purpose :
- :
- --]]
- QUEST = 454
- function spawn(NPC)
- end
- function casted_on(NPC, Spawn, SpellName)
- if HasQuest(Spawn, QUEST) and GetQuestStep(Spawn, QUEST) == 1 or GetQuestStep(Spawn, QUEST) == 2 or GetQuestStep(SPAWN, QUEST) == 3 then
- if SpellName == 'Gathering' then
- AddStepProgress(Spawn, QUEST, 2, 1)
- Despawn(NPC)
- end
- end
- end
- function respawn(NPC)
- end
|