shriller22.lua 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : shriller22.lua
  3. Script Purpose : Waypoint Path for shriller22.lua
  4. Script Author : Devn00b
  5. Script Date : 05/14/2020 02:24:36 AM
  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, -177.41, -0.27, -73.23, 2, math.random(0,3))
  19. MovementLoopAddLocation(NPC, -176.21, -0.23, -78.46, 2, math.random(0,3))
  20. MovementLoopAddLocation(NPC, -179.79, -0.31, -87.71, 2, math.random(0,3))
  21. MovementLoopAddLocation(NPC, -187.44, -0.03, -93.1, 2, math.random(0,3))
  22. MovementLoopAddLocation(NPC, -202.96, 0.5, -94.08, 2, math.random(0,3))
  23. MovementLoopAddLocation(NPC, -209.85, -0.04, -92.9, 2, math.random(0,3))
  24. MovementLoopAddLocation(NPC, -215.51, -0.08, -86.45, 2, math.random(0,3))
  25. MovementLoopAddLocation(NPC, -218.44, -0.01, -78.53, 2, math.random(0,3))
  26. MovementLoopAddLocation(NPC, -218.11, -0.01, -59.29, 2, math.random(0,3))
  27. MovementLoopAddLocation(NPC, -217.34, 0.21, -55.43, 2, math.random(0,3))
  28. MovementLoopAddLocation(NPC, -188.7, 0, -26.75, 2, math.random(0,3))
  29. MovementLoopAddLocation(NPC, -189.84, 0, -30.91, 2, math.random(0,3))
  30. MovementLoopAddLocation(NPC, -179.64, -0.05, -40.44, 2, math.random(0,3))
  31. MovementLoopAddLocation(NPC, -189.84, 0, -30.91, 2, math.random(0,3))
  32. MovementLoopAddLocation(NPC, -188.7, 0, -26.75, 2, math.random(0,3))
  33. MovementLoopAddLocation(NPC, -217.34, 0.21, -55.43, 2, math.random(0,3))
  34. MovementLoopAddLocation(NPC, -218.11, -0.01, -59.29, 2, math.random(0,3))
  35. MovementLoopAddLocation(NPC, -218.44, -0.01, -78.53, 2, math.random(0,3))
  36. MovementLoopAddLocation(NPC, -215.51, -0.08, -86.45, 2, math.random(0,3))
  37. MovementLoopAddLocation(NPC, -209.85, -0.04, -92.9, 2, math.random(0,3))
  38. MovementLoopAddLocation(NPC, -202.96, 0.5, -94.08, 2, math.random(0,3))
  39. MovementLoopAddLocation(NPC, -187.44, -0.03, -93.1, 2, math.random(0,3))
  40. MovementLoopAddLocation(NPC, -179.79, -0.31, -87.71, 2, math.random(0,3))
  41. MovementLoopAddLocation(NPC, -176.21, -0.23, -78.46, 2, math.random(0,3))
  42. MovementLoopAddLocation(NPC, -177.41, -0.27, -73.23, 2, math.random(0,3))
  43. end