aBigBendrat2.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/BigBend/aBigBendrat2.lua
  3. Script Author : torsten
  4. Script Date : 2022.07.14 05:07:17
  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, 86.6, -2, 20.85, 2, math.random(8,12))
  19. MovementLoopAddLocation(NPC, 83.07, -2, 19.87, 2, math.random(8,12))
  20. MovementLoopAddLocation(NPC, 73.83, -2, 7.08, 2, math.random(8,12))
  21. MovementLoopAddLocation(NPC, 87.56, -2, 18.33, 2, math.random(8,12))
  22. MovementLoopAddLocation(NPC, 94.35, -2, 6.96, 2, math.random(8,12))
  23. MovementLoopAddLocation(NPC, 82.37, -2, -4.75, 2, math.random(8,12))
  24. MovementLoopAddLocation(NPC, 94.05, -2, -12.96, 2, math.random(8,12))
  25. MovementLoopAddLocation(NPC, 85.5, -2, 1.43, 2, math.random(8,12))
  26. MovementLoopAddLocation(NPC, 90.78, -2, 19.91, 2, math.random(8,12))
  27. MovementLoopAddLocation(NPC, 78.89, -2, 7.46, 2, math.random(8,12))
  28. MovementLoopAddLocation(NPC, 67.73, -2, 4.67, 2, math.random(8,12))
  29. MovementLoopAddLocation(NPC, 59.8, -2, 5.75, 2, math.random(8,12))
  30. MovementLoopAddLocation(NPC, 91.5, -2, 6.34, 2, math.random(8,12))
  31. MovementLoopAddLocation(NPC, 86.81, -2, 20.84, 2, math.random(8,12))
  32. end