RuinsDefendersVoiceOvers.lua 1.1 KB

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : SpawnScripts/Generic/RuinsDefendersVoiceOvers.lua
  3. Script Purpose : Voice overs for the courageous and seasoned defenders of the Ruins.
  4. Script Author : Scatman
  5. Script Date : 2009.08.29
  6. Script Notes :
  7. --]]
  8. function generic_hail(NPC, Spawn)
  9. local choice = math.random(1, 8)
  10. if choice == 1 then
  11. Say(NPC, "These filthy beasts are an affront to the Overlord!", Spawn)
  12. elseif choice == 2 then
  13. Say(NPC, "These cursed orcs can't be allowed to taint the majesty of Freeport!", Spawn)
  14. elseif choice == 3 then
  15. Say(NPC, "These orcs seem better armed than they were before.", Spawn)
  16. elseif choice == 4 then
  17. Say(NPC, "The Overlord's wishes must be executed.", Spawn)
  18. elseif choice == 5 then
  19. Say(NPC, "Now is the time to take back Shoreside from the Lonetusks!", Spawn)
  20. elseif choice == 6 then
  21. Say(NPC, "Now isn't the time for chatter. There are orcs to slay!", Spawn)
  22. elseif choice == 7 then
  23. Say(NPC, "We must determine what's behind this orc uprising!", Spawn)
  24. elseif choice == 8 then
  25. Say(NPC, "I have orders to fight, not to chit-chat.", Spawn)
  26. end
  27. end