aDecayingCorpse.lua 413 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : SpawnScripts/Nektropos1/aDecayingCorpse.lua
  3. Script Purpose : The summon animation on zombies
  4. Script Author : smash
  5. Script Date : 9/12/2016
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. --AddTimer(NPC, 2400, "PlayAnim")
  10. SetSpawnAnimation(NPC, 13016, 8000)
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. end
  15. function PlayAnim(NPC)
  16. PlayAnimation(NPC, 13016)
  17. end