aShissarianasp.lua 576 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/ScaleYard/aShissarianvase.lua
  3. Script Purpose : Spawn Shissarian asp
  4. Script Author : Xanibunib
  5. Script Date : 2009.03.31
  6. Script Notes :
  7. --]]
  8. -- Quest ID's
  9. local QUEST_3 = 342 --152 --Paying homage to the past--
  10. function spawn(NPC)
  11. SetRequiredQuest(NPC, QUEST_3, 1)
  12. end
  13. function hailed(NPC, Spawn)
  14. end
  15. function respawn(NPC)
  16. end
  17. function death(NPC, Spawn)
  18. local asp = SpawnMob(GetZone(Spawn), 1390059, false, GetX(NPC), GetY(NPC), GetZ(NPC), GetHeading(NPC))
  19. if asp ~= nil then
  20. Attack(asp, Spawn)
  21. end
  22. end