BarmaidPoppaea.lua 1.2 KB

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/BigBend/BarmaidPoppaea.lua
  3. Script Purpose : Barmaid Poppaea
  4. Script Author : torsten
  5. Script Date : 2022.07.13
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. RandomGreeting(NPC, Spawn)
  15. end
  16. function RandomGreeting(NPC, Spawn)
  17. local choice = MakeRandomInt(1,3)
  18. if choice == 1 then
  19. PlayFlavor(NPC, "voiceover/english/human_eco_evil_1/ft/service/baker/human_baker_service_evil_1_hail_gf_96237e07.mp3", "Man do I love gnome bread! The trolls, they just love gnomes period!", "chuckle", 3504202120, 504150221, Spawn, 0)
  20. elseif choice == 2 then
  21. PlayFlavor(NPC, "voiceover/english/human_eco_evil_1/ft/service/baker/human_baker_service_evil_1_hail_gf_255a87b2.mp3", "Hey you want that spicy cake to go? Be careful, that one will singe your nose hairs!", "wince", 4093910034, 4247623060, Spawn, 0)
  22. elseif choice == 3 then
  23. PlayFlavor(NPC, "voiceover/english/human_eco_evil_1/ft/service/baker/human_baker_service_evil_1_hail_gf_49c499ab.mp3", "Hey do you see any water around here? Oh well, who needs to wash their hands?", "shrug", 745739472, 2926044111, Spawn, 0)
  24. end
  25. end