awoodelfscoutPath3.lua 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --[[
  2. Script Name : SpawnScripts/TheSprawl_Classic/awoodelfscoutPath3.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.11.24 10:11:45
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. dofile("SpawnScripts/Generic/MonsterCallouts/QeynosAgitator.lua")
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. woodelf(NPC)
  13. waypoints(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. end
  20. function waypoints(NPC)
  21. MovementLoopAddLocation(NPC, -14.74, -2.53, 16.9, 2, MakeRandomInt(8,15))
  22. MovementLoopAddLocation(NPC, -14.74, -2.53, 16.9, 2, 0)
  23. MovementLoopAddLocation(NPC, -18.45, -2.53, 19.78, 2, 0)
  24. MovementLoopAddLocation(NPC, -22.74, -2.53, 24.09, 2, 0)
  25. MovementLoopAddLocation(NPC, -22.87, -2.61, 30.96, 2, 0)
  26. MovementLoopAddLocation(NPC, -20.91, -2.57, 35.81, 2, MakeRandomInt(8,15))
  27. MovementLoopAddLocation(NPC, -20.91, -2.57, 35.81, 2, 0)
  28. MovementLoopAddLocation(NPC, -23.44, -2.67, 31.46, 2, 0)
  29. MovementLoopAddLocation(NPC, -24.44, -2.53, 26.55, 2, 0)
  30. MovementLoopAddLocation(NPC, -30.17, -2.67, 24.49, 2, 0)
  31. MovementLoopAddLocation(NPC, -40.85, -2.65, 20.83, 2, MakeRandomInt(8,15))
  32. MovementLoopAddLocation(NPC, -40.85, -2.65, 20.83, 2, 0)
  33. MovementLoopAddLocation(NPC, -35.18, -2.67, 22.51, 2, 0)
  34. MovementLoopAddLocation(NPC, -25.51, -2.53, 23.44, 2, 0)
  35. MovementLoopAddLocation(NPC, -19, -2.53, 20.47, 2, 0)
  36. MovementLoopAddLocation(NPC, -15.49, -2.53, 14.54, 2, MakeRandomInt(8,15))
  37. MovementLoopAddLocation(NPC, -15.49, -2.53, 14.54, 2, 0)
  38. MovementLoopAddLocation(NPC, -15.12, -2.53, 17.62, 2, 0)
  39. MovementLoopAddLocation(NPC, -12.78, -2.67, 21.84, 2, MakeRandomInt(8,15))
  40. MovementLoopAddLocation(NPC, -12.78, -2.67, 21.84, 2, 0)
  41. MovementLoopAddLocation(NPC, -15.77, -2.53, 18.11, 2, 0)
  42. MovementLoopAddLocation(NPC, -13.35, -2.53, 12.57, 2, 0)
  43. MovementLoopAddLocation(NPC, -9.82, -2.53, 8.48, 2, MakeRandomInt(8,15))
  44. MovementLoopAddLocation(NPC, -9.82, -2.53, 8.48, 2, 0)
  45. MovementLoopAddLocation(NPC, -12.45, -2.53, 10.42, 2, 0)
  46. MovementLoopAddLocation(NPC, -16.5, -2.53, 16.93, 2, 0)
  47. MovementLoopAddLocation(NPC, -21.29, -2.53, 21.15, 2, MakeRandomInt(8,15))
  48. MovementLoopAddLocation(NPC, -21.29, -2.53, 21.15, 2, 0)
  49. MovementLoopAddLocation(NPC, -17.87, -2.53, 17.75, 2, 0)
  50. MovementLoopAddLocation(NPC, -10.57, -2.56, 15.86, 2, MakeRandomInt(8,15))
  51. MovementLoopAddLocation(NPC, -10.57, -2.56, 15.86, 2, 0)
  52. end