1234567891011121314151617181920 |
- --[[
- Script Name : SpawnScripts/MizansCellar/SewingTableMannequin.lua
- Script Author : Dorbin
- Script Date : 2022.09.22 06:09:54
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- SetRequiredQuest(NPC,5749,10,0,1,1)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
|