BirneyAbbot.lua 601 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/BirneyAbbot.lua
  3. Script Purpose : Birney Abbot <Bartender>
  4. Script Author : Cynnar
  5. Script Date : 2020.04.12
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericGuardVoiceOvers.lua")
  9. function spawn(NPC)
  10. SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function InRange(NPC, Spawn)
  16. CheckFaction(NPC, Spawn, "Qeynos")
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. GenericGuardHail(NPC, Spawn)
  21. end