OrugDeathmaker.lua 528 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/CaveofIllbodingDark/OrugDeathmaker.lua
  3. Script Purpose : for the spawn "Orug Deathmaker"
  4. Script Author : theFoof
  5. Script Date : 2013.6.19
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. SetPlayerProximityFunction(NPC, 10, "Warning")
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. end
  17. function Warning(NPC)
  18. PlayFlavor(NPC, "", "You dare to meddle with Orug Deathmaker? You will fall here!", "", 1689589577, 4560189)
  19. end