PkzwkTzkr.lua 522 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/MeetingOfTheMinds/PkzwkTzkr.lua
  3. Script Author : Neveruary
  4. Script Date : 2021.10.05 01:10:57
  5. Script Purpose : Governs behavior of Pkzwk Tzkr in Meeting of the Minds.
  6. Boss Mechanics : Spawns with 10 strange guardians linked.
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function attacked(NPC, Spawn)
  11. Say(NPC, "Reinforcement forces: notified.")
  12. end
  13. function hailed(NPC, Spawn)
  14. end
  15. function death(NPC, Spawn)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end