aBigBendrat.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/BigBend/aBigBendrat.lua
  3. Script Author : torsten
  4. Script Date : 2022.07.14 05:07:51
  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, 87.79, -2, 6.06, 2, 0)
  19. MovementLoopAddLocation(NPC, 89.79, -2, 1.13, 2, 0)
  20. MovementLoopAddLocation(NPC, 90.86, -2, -5.4, 2, 0)
  21. MovementLoopAddLocation(NPC, 91.86, -2, -11.48, 2, 0)
  22. MovementLoopAddLocation(NPC, 87.81, -2, -11.61, 2, 0)
  23. MovementLoopAddLocation(NPC, 82.96, -2, -11.39, 2, 0)
  24. MovementLoopAddLocation(NPC, 78.56, -2, -7.08, 2, 0)
  25. MovementLoopAddLocation(NPC, 76.56, -2, -0.27, 2, 0)
  26. MovementLoopAddLocation(NPC, 76.94, -2, 4.58, 2, 0)
  27. MovementLoopAddLocation(NPC, 88.26, -2, 13.25, 2, 0)
  28. MovementLoopAddLocation(NPC, 92.35, -2, 21.8, 2, 0)
  29. MovementLoopAddLocation(NPC, 89.18, -2, 22.37, 2, 0)
  30. MovementLoopAddLocation(NPC, 80.42, -2, 15.4, 2, 0)
  31. MovementLoopAddLocation(NPC, 81.34, -2, 11.48, 2, 0)
  32. MovementLoopAddLocation(NPC, 88.5, -2, 7, 2, 0)
  33. end