aSapswillsurvivor133771745.lua 642 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aSapswillsurvivor133771745.lua
  3. Script Author : Rylec
  4. Script Date : 2021.01.06 06:01:15
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. choice = math.random(1, 3)
  13. if choice == 1 then
  14. Say(NPC, "Pirates comin' from over there.")
  15. elseif choice == 2 then
  16. Say(NPC, "Pirates not wake for long time. Why now?")
  17. else
  18. Say(NPC, "Grexx think pirates been waitin' for chances to get gobbies. Evil gives them chance.")
  19. end
  20. end
  21. function respawn(NPC)
  22. end