Broll.lua 1.0 KB

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/Freeport/Broll.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.13 08:07:45
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. local choice = math.random(1, 4)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "", "Man do I love gnome bread! The trolls, they just love gnomes period!", "chuckle", 1689589577, 4560189, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "", "Hey do you see any water around here? Oh well, who needs to wash their hands?", "shrug", 1689589577, 4560189, Spawn)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "", "The Ogre bread takes an extra long time to bake. Hey, they like large servings.", "nod", 1689589577, 4560189, Spawn)
  19. else
  20. PlayFlavor(NPC, "", "Hey you want that spicy cake to go? Be careful, that one will singe your nose hairs!", "wince", 1689589577, 4560189, Spawn)
  21. end
  22. end
  23. function respawn(NPC)
  24. end