apowerinfusedHaoaeran.lua 568 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : <script-name>
  3. Script Purpose : <purpose>
  4. Script Author : <author-name>
  5. Script Date : <date>
  6. Script Notes : <special-instructions>
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. end
  12. function respawn(NPC)
  13. end
  14. function CheckLastBird(NPC, Spawn)
  15. OtherBird = GetSpawn(NPC, 2630089)
  16. if OtherBird == nil or not IsAlive(OtherBird) then
  17. KillSpawn(NPC, Spawn, 1)
  18. end
  19. end
  20. function death(NPC, Spawn)
  21. Say(NPC, "You... shall... pay...", Spawn)
  22. Emote(NPC, "screeches with pain as the ritual is cut short.")
  23. end