percivous.lua 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --[[
  2. Script Name : percivous.lua
  3. Script Purpose : Waypoint Path for percivous.lua
  4. Script Author : Devn00b
  5. Script Date : 04/10/2020 01:16:00 PM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. PlayFlavor(NPC, "voiceover/english/froglok_eco_good_1/ft/froglok/froglok_eco_good_1_hail_gm_3f899525.mp3", "Alack! Dost yon adventurers think to aid in the search for the Sons of Marr?", "", 8384978, 3425989342, Spawn)
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, 664.3, -21.16, 100.37, 2, 0)
  20. MovementLoopAddLocation(NPC, 668.74, -21.28, 142.24, 2, 0)
  21. MovementLoopAddLocation(NPC, 705.64, -19.45, 178.15, 2, 0)
  22. MovementLoopAddLocation(NPC, 704.05, -19.53, 192.48, 2, 0)
  23. MovementLoopAddLocation(NPC, 689.56, -19.52, 197.06, 2, 0)
  24. MovementLoopAddLocation(NPC, 677.25, -19.28, 185.9, 2, 0)
  25. MovementLoopAddLocation(NPC, 623.79, -16.71, 198.71, 2, 0)
  26. MovementLoopAddLocation(NPC, 576.8, -15.87, 207.63, 2, 0)
  27. MovementLoopAddLocation(NPC, 546.29, -15.38, 210.3, 2, 0)
  28. MovementLoopAddLocation(NPC, 546.39, -10.53, 153.1, 2, 0)
  29. MovementLoopAddLocation(NPC, 612.56, -12.22, 144.86, 2, 0)
  30. MovementLoopAddLocation(NPC, 546.79, -10.16, 149.02, 2, 0)
  31. MovementLoopAddLocation(NPC, 502.93, -11.34, 142.12, 2, 0)
  32. MovementLoopAddLocation(NPC, 469.59, -11.52, 133.6, 2, 0)
  33. MovementLoopAddLocation(NPC, 492.66, -12.73, 149.14, 2, 0)
  34. MovementLoopAddLocation(NPC, 469.59, -11.52, 133.6, 2, 0)
  35. MovementLoopAddLocation(NPC, 502.93, -11.34, 142.12, 2, 0)
  36. MovementLoopAddLocation(NPC, 546.79, -10.16, 149.02, 2, 0)
  37. MovementLoopAddLocation(NPC, 612.56, -12.22, 144.86, 2, 0)
  38. MovementLoopAddLocation(NPC, 546.39, -10.53, 153.1, 2, 0)
  39. MovementLoopAddLocation(NPC, 546.29, -15.38, 210.3, 2, 0)
  40. MovementLoopAddLocation(NPC, 576.8, -15.87, 207.63, 2, 0)
  41. MovementLoopAddLocation(NPC, 623.79, -16.71, 198.71, 2, 0)
  42. MovementLoopAddLocation(NPC, 677.25, -19.28, 185.9, 2, 0)
  43. MovementLoopAddLocation(NPC, 689.56, -19.52, 197.06, 2, 0)
  44. MovementLoopAddLocation(NPC, 704.05, -19.53, 192.48, 2, 0)
  45. MovementLoopAddLocation(NPC, 705.64, -19.45, 178.15, 2, 0)
  46. MovementLoopAddLocation(NPC, 668.74, -21.28, 142.24, 2, 0)
  47. MovementLoopAddLocation(NPC, 664.3, -21.16, 100.37, 2, 0)
  48. end