Aerinleaf.lua 986 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : SpawnScripts/ElddarGrove/Aerinleaf.lua
  3. Script Purpose : Aerinleaf <Broker>
  4. Script Author : John Adams
  5. Script Date : 2008.09.28
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function hailed(NPC, Spawn)
  9. FaceTarget(NPC, Spawn)
  10. choice = math.random(1,2)
  11. if choice == 1 then
  12. PlayFlavor(NPC, "voiceover/english/broker_mallium/fprt_west/031_con_merchant_mallium_halfelf_1_aoi_55068310.mp3", "Well met, fair traveler. Here, while you rest from your troubling day of adventuring, why not take a look at the finest luxuries that a city could hope to offer!", "bye", 1506550649, 1241339557, Spawn)
  13. elseif choice == 2 then
  14. PlayFlavor(NPC, "voiceover/english/broker_mallium/fprt_west/031_con_merchant_mallium_halfelf_1_hail_1ed07c5.mp3", "I can only offer you what my contacts have been able to locate. These are the best goods that the citizens have to offer.", "sigh", 3045938288, 2279107443, Spawn)
  15. else
  16. end
  17. end