1234567891011121314151617181920212223 |
- --[[
- Script Name : SpawnScripts/Nettleville/zonetoqeysouth.lua
- Script Author : Dorbin
- Script Date : 2022.11.04 01:11:55
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- SetRequiredQuest(NPC,5718,14,0,1,1)
- SetRequiredQuest(NPC,5719,14,0,1,1)
- SetRequiredQuest(NPC,5720,14,0,1,1)
- SetRequiredQuest(NPC,5721,14,0,1,1)
- SetRequiredQuest(NPC,5722,14,0,1,1)
- SetRequiredQuest(NPC,5723,14,0,1,1)
- end
- function hailed(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
|