LulienLeafven.lua 776 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/Oakmyst/LulienLeafven.lua
  3. Script Purpose : Lulien Leafven
  4. Script Author : John Adams
  5. Script Date : 2009.05.08
  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, 3)
  16. if choice == 1 then
  17. PlayFlavor(NPC, "", "Practice makes perfect!", "", 1689589577, 4560189, Spawn)
  18. elseif choice == 2 then
  19. PlayFlavor(NPC, "", "Another day, another bullseye!", "", 1689589577, 4560189, Spawn)
  20. elseif choice == 3 then
  21. PlayFlavor(NPC, "", "I've been here so long, that I don't even have to look at the target to hit it!", "", 1689589577, 4560189, Spawn)
  22. end
  23. end