aputridzombieNarrowPath.lua 594 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/TheGraveyard_Classic/aputridzombieNarrowPath.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.08.14 09:08:34
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseZombie1.lua")
  9. require "SpawnScripts/Generic/NPCModule"
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. RandomMovement(NPC, Spawn, 3.5, -3.5, 2, 8, 15)
  13. SetSpawnAnimation(NPC, 13016)
  14. end
  15. function respawn(NPC, Spawn)
  16. spawn(NPC)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. end