BarmaidViolet.lua 976 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Graystone/BarmaidViolet.lua
  3. Script Purpose : Barmaid Violet <Provisioner>
  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, "", "Please mind the plates, they're very hot.", "scold", 1689589577, 4560189, Spawn)
  13. elseif choice == 2 then
  14. PlayFlavor(NPC, "", "Tell me, do you prefer Halfling or Elven cuisine? I myself have a hard time deciding between the two.", "confused", 1689589577, 4560189, Spawn)
  15. elseif choice == 3 then
  16. PlayFlavor(NPC, "", "Welcome friend, welcome. I hope you brought your appetite with you!", "wink", 1689589577, 4560189, Spawn)
  17. elseif choice == 4 then
  18. PlayFlavor(NPC, "", "Fresh baubbleberry pie, come and get some while it's hot!", "beckon", 1689589577, 4560189, Spawn)
  19. else
  20. end
  21. end