aBigBendrat1.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/BigBend/aBigBendrat1.lua
  3. Script Author : torsten
  4. Script Date : 2022.07.14 05:07:15
  5. Script Purpose :
  6. :
  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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 90.88, -2, -12.11, 2, math.random(8,12))
  19. MovementLoopAddLocation(NPC, 96.6, -2, -12.5, 2, math.random(8,12))
  20. MovementLoopAddLocation(NPC, 92.39, -2, -11.06, 2, math.random(8,12))
  21. MovementLoopAddLocation(NPC, 90.87, -2, 5.1, 2, math.random(8,12))
  22. MovementLoopAddLocation(NPC, 96.43, -2, 3.65, 2, math.random(8,12))
  23. MovementLoopAddLocation(NPC, 69.54, -2, 4.66, 2, math.random(8,12))
  24. MovementLoopAddLocation(NPC, 76.71, -2, 9.2, 2, math.random(8,12))
  25. MovementLoopAddLocation(NPC, 88.34, -2, 16.57, 2, math.random(8,12))
  26. MovementLoopAddLocation(NPC, 89.49, -2, 6.24, 2, math.random(8,12))
  27. MovementLoopAddLocation(NPC, 82.97, -2, -7.06, 2, math.random(8,12))
  28. MovementLoopAddLocation(NPC, 77.34, -2, 6.06, 2, math.random(8,12))
  29. MovementLoopAddLocation(NPC, 82.75, -2, 20.84, 2, math.random(8,12))
  30. MovementLoopAddLocation(NPC, 97.09, -2, 24.39, 2, math.random(8,12))
  31. MovementLoopAddLocation(NPC, 91.58, -2, 22.79, 2, math.random(8,12))
  32. MovementLoopAddLocation(NPC, 90.62, -2, 15.76, 2, math.random(8,12))
  33. MovementLoopAddLocation(NPC, 89.33, -2, 6.42, 2, math.random(8,12))
  34. MovementLoopAddLocation(NPC, 81.57, -2, 1.93, 2, math.random(8,12))
  35. MovementLoopAddLocation(NPC, 85.95, -2, -12.18, 2, math.random(8,12))
  36. end