KerranMannequin133772017.lua 524 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/RylecsTest/KerranMannequin133772017.lua
  3. Script Author : Rylec
  4. Script Date : 2021.02.07 06:02:03
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. AddTimer(NPC, 5000, "animation")
  10. SetEquippedItemByID(NPC, 0, 83328)
  11. end
  12. function hailed(NPC, Spawn)
  13. Say(NPC, "50 2h_sword_enter")
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function animation(NPC)
  19. PlayAnimation(NPC, 50)
  20. AddTimer(NPC, 3000, "animation")
  21. end