KerranMannequin133771982.lua 567 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/RylecsTest/KerranMannequin133771982.lua
  3. Script Author : Rylec
  4. Script Date : 2021.01.30 07:01:25
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. AddTimer(NPC, 5000, "animation")
  10. SetEquippedItemByID(NPC, 0, 83850)
  11. end
  12. function hailed(NPC, Spawn)
  13. Say(NPC, "10709 1h_sword_enter")
  14. PlayAnimation(NPC, 10709)
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end
  19. function animation(NPC)
  20. PlayAnimation(NPC, 10709)
  21. AddTimer(NPC, 3000, "animation")
  22. end