ColinMcEntire.lua 701 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/ColinMcEntire.lua
  3. Script Purpose : Colin McEntire
  4. Script Author : Cynnar
  5. Script Date : 2020.04.12
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. NOTE: Associated with the sarnak introduction LU37. Removed https://eq2.fandom.com/wiki/Colin_McEntire
  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, "", "What strange happenings!", "confused", 1689589577, 4560189, Spawn)
  22. end