MarcusLevidius.lua 968 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/BeggarsCourt/MarcusLevidius.lua
  3. Script Purpose : Marcus Levidius
  4. Script Author : John Adams
  5. Script Date : 2009.04.05
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  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. choice = math.random(1, 4)
  16. if choice == 1 then
  17. PlayFlavor(NPC, "", "Yes, yes, hello. I'm busy.", "hello", 1689589577, 4560189, Spawn)
  18. elseif choice == 2 then
  19. PlayFlavor(NPC, "", "Oh, drat, I hope not. Oh, sorry, I thought you might have meant the weather.", "confused", 1689589577, 4560189, Spawn)
  20. elseif choice == 3 then
  21. PlayFlavor(NPC, "", "Grim determination has gotten us to where we are now.", "agree", 1689589577, 4560189, Spawn)
  22. elseif choice == 4 then
  23. PlayFlavor(NPC, "", "One day, we shall reign supreme over the lessers.", "brandish", 1689589577, 4560189, Spawn)
  24. end
  25. end