RandalGromoe.lua 697 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/RandalGromoe.lua
  3. Script Purpose : Randal Gromoe
  4. Script Author : Cynnar
  5. Script Date : 2020.04.12
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. Associated with Qeynos to Kelethin citizenship 'https://eq2.fandom.com/wiki/Her_People'
  8. --]]
  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. end
  17. function LeaveRange(NPC, Spawn)
  18. end
  19. function hailed(NPC, Spawn)
  20. FaceTarget(NPC, Spawn)
  21. PlayFlavor(NPC, "", "It's been a while since I've felt this carefree.", "", 1689589577, 4560189, Spawn)
  22. end