Rake.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/Freeport/Rake.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.08.10 08:08:02
  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, "", "If the Overlord hadn't returned, trade through the Commonlands would have been completely controlled by the Red Hoods.", 1689589577, 4560189, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "", "Neriak also benefits from the knowledge of the Red Hoods.", "", 1689589577, 4560189, Spawn)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "", "The Jackal's mastery of stealth is impressive...for an Ayr'Dal.", "sniff", 1689589577, 4560189, Spawn)
  19. elseif choice == 4 then
  20. PlayFlavor(NPC, "", "The pitiful slugs of the Freeport Militia were unable to even find us, much less stop us.", "", 1689589577, 4560189, Spawn)
  21. else
  22. PlayFlavor(NPC, "", "The Green Hoods failed to recognize the price of showing mercy to their enemies. The Red Hoods will not make the same mistakes.", "agree", 1689589577, 4560189, Spawn)
  23. end
  24. end
  25. function respawn(NPC)
  26. end