RosalinaGoodfallow.lua 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/RosalinaGoodfallow.lua
  3. Script Purpose : Rosalina Goodfallow <Steward of Antonia Bayle>
  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. local choice = math.random(1,1)
  22. if choice == 1 then
  23. PlayFlavor(NPC, "", "I often see to our Antonia's business outside of the castle. She trusts me implicitly.", "converse_female01", 1689589577, 4560189, Spawn)
  24. else
  25. end
  26. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1023.mp3", "", "", 0, 0, Spawn)
  27. AddConversationOption(conversation, "Yes, when Antonia calls, I answer.", "dlg_0_1")
  28. AddConversationOption(conversation, "Hold on for just a few moments...")
  29. StartConversation(conversation, NPC, Spawn, "Well then! You must be, Haihaog! Antonia Bayle herself wishes to see you. I don't know why precisely, but it seems very important. And who are you to keep the Antonia waiting!")
  30. if convo==1 then
  31. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1023.mp3", "", "", 0, 0, Spawn)
  32. AddConversationOption(conversation, "Yes, when Antonia calls, I answer.", "dlg_1_1")
  33. AddConversationOption(conversation, "Hold on for just a few moments...")
  34. StartConversation(conversation, NPC, Spawn, "Well then! You must be, Haihaog! Antonia Bayle herself wishes to see you. I don't know why precisely, but it seems very important. And who are you to keep the Antonia waiting!")
  35. end
  36. end
  37. --[[ raw_conversations
  38. PlayFlavor(NPC, "", "I often see to our Antonia's business outside of the castle. She trusts me implicitly.", "converse_female01", 1689589577, 4560189, Spawn)
  39. --]]