RoyalAccountantFowler.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/RoyalAccountantFowler.lua
  3. Script Purpose : Royal Accountant Fowler <Guild Registrar>
  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, 8, "InRange", "LeaveRange")
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function InRange(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. PlayFlavor(NPC, "voiceover/english/royal_accountant_fowler/qey_harbor/100_soc_human_guild_registrar_fowler_hail_2f5a416.mp3", "Hello fellow citizen! I'm the royal accountant for the city of Qeynos! When you wish to form a guild within the city, you simply need to bring six members here and pay a nominal fee.", "bye", 852945802, 1195224665, Spawn)
  17. end
  18. function LeaveRange(NPC, Spawn)
  19. end
  20. function hailed(NPC, Spawn)
  21. FaceTarget(NPC, Spawn)
  22. conversation = CreateConversation()
  23. PlayFlavor(NPC, "voiceover/english/royal_accountant_fowler/qey_harbor/100_soc_human_guild_registrar_fowler_raid_a9dca99a.mp3", "", "", 788735708, 1422512353, Spawn)
  24. AddConversationOption(conversation, "Oh? Let's see it.", "dlg_14_1")
  25. StartConversation(conversation, NPC, Spawn, "Welcome back! I've an urgent message for you from the castle. You'd better read it immediately!")
  26. end
  27. function dlg_14_1(NPC, Spawn)
  28. FaceTarget(NPC, Spawn)
  29. conversation = CreateConversation()
  30. PlayFlavor(NPC, "voiceover/english/royal_accountant_fowler/qey_harbor/100_soc_human_guild_registrar_fowler_raid_a9dca99a.mp3", "", "", 788735708, 1422512353, Spawn)
  31. AddConversationOption(conversation, "Oh? Let's see it.", "dlg_14_2")
  32. StartConversation(conversation, NPC, Spawn, "Welcome back! I've an urgent message for you from the castle. You'd better read it immediately!")
  33. end