ariverbehemoth.lua 431 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/Caves/ariverbehemoth.lua
  3. Script Purpose : a river behemoth
  4. Script Author : Scatman
  5. Script Date : 2009.05.18
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. end
  15. function death(NPC, Spawn)
  16. local Remains = SpawnMob(GetZone(Spawn), 1970147, false, GetX(NPC), GetY(NPC), GetZ(NPC))
  17. Despawn(Remains, 60000)
  18. end