1234567891011121314151617181920212223242526272829 |
- --[[
- Script Name : SpawnScripts/RylecsTest/KerranMannequin133771982.lua
- Script Author : Rylec
- Script Date : 2021.01.30 07:01:25
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- AddTimer(NPC, 5000, "animation")
- SetEquippedItemByID(NPC, 0, 83850)
- end
- function hailed(NPC, Spawn)
- Say(NPC, "10709 1h_sword_enter")
- PlayAnimation(NPC, 10709)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function animation(NPC)
- PlayAnimation(NPC, 10709)
- AddTimer(NPC, 3000, "animation")
- end
|