JonasRollings.lua 756 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/OutpostOverlord/JonasRollings.lua
  3. Script Purpose : Jonas Rollings <Guard>
  4. Script Author : John Adams - broken Emote loop fixed Lemmeron
  5. Script Date : 2008.09.23 - 22.8.2020
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function hailed(NPC, Spawn)
  9. FaceTarget(NPC, Spawn)
  10. choice = math.random(1,2)
  11. if choice == 1 then
  12. PlayFlavor(NPC, "", "Maybe I shouldn't have drank so much last night.", "", 1689589577, 4560189, Spawn)
  13. elseif choice == 2 then
  14. PlayFlavor(NPC, "", "One too many Coagulated Surprises last night is my guess.", "", 1689589577, 4560189, Spawn)
  15. else
  16. end
  17. end
  18. function spawn(NPC)
  19. end
  20. function respawn(NPC)
  21. spawn(NPC)
  22. end