arumblinggeode.lua 473 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/FrostfangSea/arumblinggeode.lua
  3. Script Purpose : for the spawn "a rumbling geode"
  4. Script Author : theFoof
  5. Script Date : 2013.6.15
  6. Script Notes :
  7. --]]
  8. local GeodeCaching = 69
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function death(NPC, Spawn)
  15. if GetQuestStep(Spawn, GeodeCaching) == 1 then
  16. SpawnMob(GetZone(Spawn), 4701682, 0, GetX(NPC), GetY(NPC), GetZ(NPC), GetHeading(NPC))
  17. end
  18. end