BorgardGoldenswill.lua 598 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/FrostfangSea/BorgardGoldenswill.lua
  3. Script Purpose : Borgard Goldenswill <Bartender>
  4. Script Author : theFoof
  5. Script Date : 2013.10.30
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. local choice = math.random(1,2)
  16. if choice == 1 then
  17. PlayFlavor(NPC, "", "What'll it be, citizen?", "nod", 1689589577, 4560189, Spawn)
  18. else
  19. PlayFlavor(NPC, "", "Sit a spell and have yarself a frothing brew or two!", "nod", 1689589577, 4560189, Spawn)
  20. end
  21. end