aGiantslayerbasherPath4.lua 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --[[
  2. Script Name : SpawnScripts/TheSprawl_Classic/aGiantslayerbasherPath4.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.11.19 06:11:07
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. dofile("SpawnScripts/Generic/MonsterCallouts/Giantslayer.lua")
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. ogre(NPC)
  13. waypoints(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end
  21. function waypoints(NPC)
  22. MovementLoopAddLocation(NPC, 39.17, -2.58, -22.44, 2, MakeRandomInt(8,15))
  23. MovementLoopAddLocation(NPC, 39.17, -2.58, -22.44, 2, 0)
  24. MovementLoopAddLocation(NPC, 34.14, -2.55, -21.31, 2, 0)
  25. MovementLoopAddLocation(NPC, 27.14, -2.55, -14.17, 2, 0)
  26. MovementLoopAddLocation(NPC, 21.77, -2.55, -12.59, 2, 0)
  27. MovementLoopAddLocation(NPC, 16.01, -2.56, -12.73, 2, 0)
  28. MovementLoopAddLocation(NPC, 11.53, -2.65, -14.28, 2, MakeRandomInt(8,15))
  29. MovementLoopAddLocation(NPC, 11.53, -2.65, -14.28, 2, 0)
  30. MovementLoopAddLocation(NPC, 15.32, -2.59, -13.16, 2, 0)
  31. MovementLoopAddLocation(NPC, 21.66, -2.56, -11.94, 2, 0)
  32. MovementLoopAddLocation(NPC, 26.09, -2.55, -13.98, 2, 0)
  33. MovementLoopAddLocation(NPC, 32.84, -2.55, -19.91, 2, 0)
  34. MovementLoopAddLocation(NPC, 38.6, -2.56, -21.52, 2, 0)
  35. MovementLoopAddLocation(NPC, 44.84, -2.67, -14.74, 2, MakeRandomInt(8,15))
  36. MovementLoopAddLocation(NPC, 44.84, -2.67, -14.74, 2, 0)
  37. MovementLoopAddLocation(NPC, 39.27, -2.58, -21.33, 2, 0)
  38. MovementLoopAddLocation(NPC, 43.5, -2.67, -24.2, 2, MakeRandomInt(8,15))
  39. MovementLoopAddLocation(NPC, 43.5, -2.67, -24.2, 2, 0)
  40. MovementLoopAddLocation(NPC, 39.41, -2.6, -20.87, 2, MakeRandomInt(8,15))
  41. MovementLoopAddLocation(NPC, 39.41, -2.6, -20.87, 2, 0)
  42. MovementLoopAddLocation(NPC, 46.16, -2.67, -20.27, 2, MakeRandomInt(8,15))
  43. MovementLoopAddLocation(NPC, 46.16, -2.67, -20.27, 2, 0)
  44. MovementLoopAddLocation(NPC, 37.03, -2.55, -21.88, 2, 0)
  45. MovementLoopAddLocation(NPC, 34.4, -2.55, -21.16, 2, 0)
  46. MovementLoopAddLocation(NPC, 26.01, -2.55, -13.1, 2, 0)
  47. MovementLoopAddLocation(NPC, 19.41, -2.55, -12.47, 2, MakeRandomInt(8,15))
  48. MovementLoopAddLocation(NPC, 19.41, -2.55, -12.47, 2, 0)
  49. MovementLoopAddLocation(NPC, 25.39, -2.55, -12.9, 2, 0)
  50. MovementLoopAddLocation(NPC, 31.25, -2.55, -18.89, 2, 0)
  51. MovementLoopAddLocation(NPC, 34.5, -2.55, -21.13, 2, 0)
  52. end