BellengeretheThree.lua 1.2 KB

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/SouthQeynos/BellengeretheThree.lua
  3. Script Purpose : Bellengere the Three
  4. Script Author : Cynnar
  5. Script Date : 2020.04.12
  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. conversation = CreateConversation()
  21. PlayFlavor(NPC, "voiceover/english/bellengere_the_three/qey_south/bellengere_thethree000.mp3", "","",1497048439, 2872945474,Spawn)
  22. AddConversationOption(conversation, "That is definitely something to ponder. Thank you for your insight.", "dlg_11_1")
  23. StartConversation(conversation, NPC, Spawn, "If knowledge is power, and power corrupts, then it is only logical to presume that knowledge corrupts. Rubbish, I say. The fundamental flaw in this theory is that power corrupts, whereas it should be stated that it CAN corrupt. This is the most important lesson to learn when using the arcane forces... as you use its power, it can as easily use you. Take heed of this warning, friend.")
  24. end