aGiantslayerbrute.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/Sprawl/aGiantslayerbrute.lua
  3. Script Purpose : a Giantslayer brute <Dreadnaught>
  4. Script Author : Scatman
  5. Script Date : 2009.07.26
  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, 7)
  16. if choice == 1 then
  17. PlayFlavor(NPC, "", "It's time to show the Dervish who rules Freeport!", "", 1689589577, 4560189, Spawn)
  18. elseif choice == 2 then
  19. PlayFlavor(NPC, "", "Ever since the Dreadnaughts took over, all we do is run errands for them!", "", 1689589577, 4560189, Spawn)
  20. elseif choice == 3 then
  21. PlayFlavor(NPC, "", "I hope Brutemaster Tarden stands up to Kurdek so we can stop all this training!", "", 1689589577, 4560189, Spawn)
  22. elseif choice == 4 then
  23. PlayFlavor(NPC, "", "Work, work, work... Those Dreadnaughts are slavedrivers, I tell ya!", "", 1689589577, 4560189, Spawn)
  24. elseif choice == 5 then
  25. Say(NPC, "I've had it with the Dreadnaughts. The Giantslayers should be ruling the streets of Freeport!", Spawn)
  26. elseif choice == 6 then
  27. Say(NPC, "We've got to teach those rats in the Black Magi a lesson!", Spawn)
  28. elseif choice == 7 then
  29. Say(NPC, "Next time Durbok's back is turned, he's going to get what's coming to him!", Spawn)
  30. end
  31. end