bogstomper.lua 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. --[[
  2. Script Name : bogstomper.lua
  3. Script Purpose : Waypoint Path for bogstomper.lua
  4. Script Author : Devn00b
  5. Script Date : 04/15/2020 03:04:58 PM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericEcologyVoiceOvers.lua")
  9. function spawn(NPC)
  10. waypoints(NPC)
  11. SetPlayerProximityFunction(NPC, 7, "InRange", "LeaveRange")
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. GenericRaceCheckHail(NPC, Spawn)
  16. end
  17. function InRange(NPC,Spawn)
  18. GenericRaceCheckCallout(NPC, Spawn)
  19. end
  20. function respawn(NPC)
  21. spawn(NPC)
  22. end
  23. function waypoints(NPC)
  24. MovementLoopAddLocation(NPC, 411.34, -18.69, -283.36, 2, 0)
  25. MovementLoopAddLocation(NPC, 430.22, -20.84, -269.53, 2, 0)
  26. MovementLoopAddLocation(NPC, 442.27, -20.56, -260.7, 2, 0)
  27. MovementLoopAddLocation(NPC, 453.66, -20.15, -257.78, 2, 0)
  28. MovementLoopAddLocation(NPC, 421.37, -22.24, -234.82, 2, 0)
  29. MovementLoopAddLocation(NPC, 397.61, -23.57, -205.62, 2, 0)
  30. MovementLoopAddLocation(NPC, 355.38, -25.37, -172, 2, 0)
  31. MovementLoopAddLocation(NPC, 321.06, -23.47, -110.02, 2, 0)
  32. MovementLoopAddLocation(NPC, 313.9, -22.79, -93.11, 2, 0)
  33. MovementLoopAddLocation(NPC, 302.26, -21.22, -46.78, 2, 0)
  34. MovementLoopAddLocation(NPC, 323.1, -21.46, -24.53, 2, 0)
  35. MovementLoopAddLocation(NPC, 401.06, -15.91, -21.3, 2, 0)
  36. MovementLoopAddLocation(NPC, 328.91, -21.32, -15.53, 2, 0)
  37. MovementLoopAddLocation(NPC, 304.68, -21.05, 0.44, 2, 0)
  38. MovementLoopAddLocation(NPC, 280, -21.14, -6.72, 2, 0)
  39. MovementLoopAddLocation(NPC, 262.89, -21.38, -16.03, 2, 0)
  40. MovementLoopAddLocation(NPC, 256.44, -21.09, -11.86, 2, 0)
  41. MovementLoopAddLocation(NPC, 254.73, -20.74, -4.18, 2, 0)
  42. MovementLoopAddLocation(NPC, 251.9, -19.33, 42.88, 2, 0)
  43. MovementLoopAddLocation(NPC, 268.37, -15.33, 68.77, 2, 0)
  44. MovementLoopAddLocation(NPC, 289.95, -12.67, 81.92, 2, 0)
  45. MovementLoopAddLocation(NPC, 268.37, -15.33, 68.77, 2, 0)
  46. MovementLoopAddLocation(NPC, 251.9, -19.33, 42.88, 2, 0)
  47. MovementLoopAddLocation(NPC, 254.73, -20.74, -4.18, 2, 0)
  48. MovementLoopAddLocation(NPC, 256.44, -21.09, -11.86, 2, 0)
  49. MovementLoopAddLocation(NPC, 262.89, -21.38, -16.03, 2, 0)
  50. MovementLoopAddLocation(NPC, 280, -21.14, -6.72, 2, 0)
  51. MovementLoopAddLocation(NPC, 304.68, -21.05, 0.44, 2, 0)
  52. MovementLoopAddLocation(NPC, 328.91, -21.32, -15.53, 2, 0)
  53. MovementLoopAddLocation(NPC, 401.06, -15.91, -21.3, 2, 0)
  54. MovementLoopAddLocation(NPC, 323.1, -21.46, -24.53, 2, 0)
  55. MovementLoopAddLocation(NPC, 302.26, -21.22, -46.78, 2, 0)
  56. MovementLoopAddLocation(NPC, 313.9, -22.79, -93.11, 2, 0)
  57. MovementLoopAddLocation(NPC, 321.06, -23.47, -110.02, 2, 0)
  58. MovementLoopAddLocation(NPC, 355.38, -25.37, -172, 2, 0)
  59. MovementLoopAddLocation(NPC, 397.61, -23.57, -205.62, 2, 0)
  60. MovementLoopAddLocation(NPC, 421.37, -22.24, -234.82, 2, 0)
  61. MovementLoopAddLocation(NPC, 453.66, -20.15, -257.78, 2, 0)
  62. MovementLoopAddLocation(NPC, 442.27, -20.56, -260.7, 2, 0)
  63. MovementLoopAddLocation(NPC, 430.22, -20.84, -269.53, 2, 0)
  64. MovementLoopAddLocation(NPC, 411.34, -18.69, -283.36, 2, 0)
  65. end