1234567891011121314151617181920212223242526272829 |
- --[[
- Script Name : SpawnScripts/QeynosHarbor/RandalGromoe.lua
- Script Purpose : Randal Gromoe
- Script Author : Cynnar
- Script Date : 2020.04.12
- Script Notes : Auto-Generated Conversation from PacketParser Data
- Associated with Qeynos to Kelethin citizenship 'https://eq2.fandom.com/wiki/Her_People'
- --]]
- function spawn(NPC)
- SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function InRange(NPC, Spawn)
- end
- function LeaveRange(NPC, Spawn)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- PlayFlavor(NPC, "", "It's been a while since I've felt this carefree.", "", 1689589577, 4560189, Spawn)
- end
|