LadyRickson.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/NorthQeynos/LadyRickson.lua
  3. Script Purpose : Lady Rickson
  4. Script Author : Dorbin
  5. Script Date : 2022.01.11
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function InRange(NPC, Spawn)
  15. end
  16. function LeaveRange(NPC, Spawn)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. local choice = MakeRandomInt(1,3)
  21. if choice == 1 then
  22. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1011.mp3", "The Claymore is elegant yet deadly; it is a perfect icon for Qeynos.", "", 0, 0, Spawn, 0)
  23. elseif choice == 2 then
  24. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_2_1011.mp3", "The gnolls that patrol Antonica may yet surprise us with their strength; many Antonicans believe them all but defeated, they will use that belief to their advantage.", "", 0, 0, Spawn, 0)
  25. elseif choice == 3 then
  26. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1011.mp3", "This city is beautiful, even in ill weather.", "", 0, 0, Spawn)
  27. end
  28. end