rifter_bleeder_2987.lua 934 B

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/DownBelow/rifter_bleeder_2987.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.03.26 02:03:33
  5. Script Purpose : Basic Pathing
  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, -184.46, 1.17, -123.43, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -180.13, 1.17, -120.77, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -178.06, 1.17, -123.21, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -172.80, 1.17, -120.62, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -177.54, 1.17, -123.54, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -181.00, 1.17, -119.87, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -184.46, 1.17, -123.43, 2, math.random(0,5))
  25. end