PoggleFizzpop.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --[[
  2. Script Name : SpawnScripts/GreaterFaydark/PoggleFizzpop.lua
  3. Script Purpose : Poggle Fizzpop
  4. Script Author : John Adams
  5. Script Date : 2009.03.01
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function InRange(NPC, Spawn)
  15. end
  16. function LeaveRange(NPC, Spawn)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. choice = math.random(1,10)
  21. if choice == 1 then
  22. PlayFlavor(NPC, "", "I must have crossed the springwire too close to the grindgasket. Well, I'll just have to try again. Don't worry Fido, we'll be rich soon enough.", "", 1689589577, 4560189, Spawn)
  23. elseif choice == 2 then
  24. PlayFlavor(NPC, "", "A little grinding here, a little mixing there...", "", 1689589577, 4560189, Spawn)
  25. elseif choice == 3 then
  26. PlayFlavor(NPC, "", "We're gonna be rich Fido!", "", 1689589577, 4560189, Spawn)
  27. elseif choice == 4 then
  28. PlayFlavor(NPC, "", "Fido! I think it's ready to go. We're gonna be rich!", "", 1689589577, 4560189, Spawn)
  29. elseif choice == 5 then
  30. PlayFlavor(NPC, "", "Well, here goes nothing!", "", 1689589577, 4560189, Spawn)
  31. elseif choice == 6 then
  32. PlayFlavor(NPC, "", "I can't believe it, it's working! We're rich Fido!", "", 1689589577, 4560189, Spawn)
  33. elseif choice == 7 then
  34. PlayFlavor(NPC, "", "Wait... what's happening!", "", 1689589577, 4560189, Spawn)
  35. elseif choice == 8 then
  36. PlayFlavor(NPC, "", "Nooooo!", "", 1689589577, 4560189, Spawn)
  37. elseif choice == 9 then
  38. PlayFlavor(NPC, "", "Fido, bring me that crankratchet over there. Thanks, good boy.", "", 1689589577, 4560189, Spawn)
  39. elseif choice == 10 then
  40. PlayFlavor(NPC, "", "I'm almost there!", "", 1689589577, 4560189, Spawn)
  41. else
  42. end
  43. end