Kaya.lua 1.6 KB

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/Graystone/Kaya.lua
  3. Script Purpose : Kaya <Bowyer>
  4. Script Author : John Adams
  5. Script Date : 2008.09.21
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function hailed(NPC, Spawn)
  9. FaceTarget(NPC, Spawn)
  10. choice = math.random(1, 4)
  11. if choice == 1 then
  12. PlayFlavor(NPC, "voiceover/english/optional2/barbarian_eco_good_2/ft/service/weaponsmith/barbarian_weaponsmith_service_good_2_hail_gf_48594671.mp3", "Is there something you need to have custom made? I can see if I can get one of my lads to look into it!", "ponder", 638401660, 3171727066, Spawn)
  13. elseif choice == 2 then
  14. PlayFlavor(NPC, "voiceover/english/optional2/barbarian_eco_good_2/ft/service/weaponsmith/barbarian_weaponsmith_service_good_2_hail_gf_37dbcab8.mp3", "Welcome to my humble shop. We have quite a selection of weapons to choose from. See for yourself...", "salute", 939993914, 1218448248, Spawn)
  15. elseif choice == 3 then
  16. PlayFlavor(NPC, "voiceover/english/optional2/barbarian_eco_good_2/ft/service/weaponsmith/barbarian_weaponsmith_service_good_2_hail_gf_46ed66f6.mp3", "Never can you go into battle without a tried and trusted weapon. Here, take a look at what we have in stock.", "no", 2566058453, 1526004977, Spawn)
  17. else
  18. PlayFlavor(NPC, "voiceover/english/optional2/barbarian_eco_good_2/ft/service/weaponsmith/barbarian_weaponsmith_service_good_2_hail_gf_1248b278.mp3", "I just got a shipment in from the Far Seas Trading Company. I don't just show anybody this stuff so, shhhh! ", "wink", 3922800728, 536638644, Spawn)
  19. end
  20. end