grotesque_mass.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : grotesque_mass_1.lua
  3. Script Purpose : Waypoint Path for grotesque_mass_1.lua
  4. Script Author : Devn00b
  5. Script Date : 05/18/2020 11:26:04 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. end
  14. function respawn(NPC)
  15. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 60.89, -0.06, -51.79, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 51.5, -0.06, -45.42, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, 40.45, 0.85, -49.69, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, 36.57, 2.69, -63.84, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, 45.95, 4.16, -71.35, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, 58.73, 5.91, -67.97, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, 60.46, 6.98, -57.93, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, 74.4, 6.87, -58.07, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 60.46, 6.98, -57.93, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, 58.73, 5.91, -67.97, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, 45.95, 4.16, -71.35, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, 36.57, 2.69, -63.84, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, 40.45, 0.85, -49.69, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, 51.5, -0.06, -45.42, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, 60.89, -0.06, -51.79, 2, math.random(0,10))
  33. end