Scythe.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/Freeport/Scythe.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.08.10 08:08:18
  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, 5)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "", "Being on the Overlord's payroll is a lot easier than ambushing caravans.", "nod", 1689589577, 4560189, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "", "The Green Hoods of Qeynos lack the will needed to get things done.", "", 1689589577, 4560189, Spawn)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "", "The Jackal's attacks on the Bloodskull Orcs have been masterful! He fights like a man possessed!", "", 1689589577, 4560189, Spawn)
  19. elseif choice == 4 then
  20. PlayFlavor(NPC, "", "At least the Overlord has the vision to see what needs to be done. The Green Hoods have gotten soft.", "snicker", 1689589577, 4560189, Spawn)
  21. else
  22. PlayFlavor(NPC, "", "Ha! The Overlord had to send out his knights to ask the Red Hoods to join him!", "chuckle", 1689589577, 4560189, Spawn)
  23. end
  24. end
  25. function respawn(NPC)
  26. end