aGiantslayerthugPath3.lua 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. --[[
  2. Script Name : SpawnScripts/TheSprawl_Classic/aGiantslayerthugPath3.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.11.19 05:11:05
  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. barbarian(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, 44.25, -2.67, -26.13, 2, MakeRandomInt(8,15))
  23. MovementLoopAddLocation(NPC, 44.25, -2.67, -26.13, 2, 0)
  24. MovementLoopAddLocation(NPC, 46.43, -2.67, -32.19, 2, 0)
  25. MovementLoopAddLocation(NPC, 46.19, -2.63, -35.53, 2, 0)
  26. MovementLoopAddLocation(NPC, 42.08, -2.56, -46.55, 2, 0)
  27. MovementLoopAddLocation(NPC, 35.34, -2.47, -49.81, 2, MakeRandomInt(8,15))
  28. MovementLoopAddLocation(NPC, 35.34, -2.47, -49.81, 2, 0)
  29. MovementLoopAddLocation(NPC, 38.88, -2.56, -48.9, 2, 0)
  30. MovementLoopAddLocation(NPC, 41.71, -2.56, -46.69, 2, 0)
  31. MovementLoopAddLocation(NPC, 45.44, -2.56, -37.59, 2, MakeRandomInt(8,15))
  32. MovementLoopAddLocation(NPC, 45.44, -2.56, -37.59, 2, 0)
  33. MovementLoopAddLocation(NPC, 41.89, -2.56, -41.6, 2, MakeRandomInt(8,15))
  34. MovementLoopAddLocation(NPC, 41.89, -2.56, -41.6, 2, 0)
  35. MovementLoopAddLocation(NPC, 44.58, -2.56, -37.55, 2, 0)
  36. MovementLoopAddLocation(NPC, 50.3, -2.67, -30.61, 2, MakeRandomInt(8,15))
  37. MovementLoopAddLocation(NPC, 50.3, -2.67, -30.61, 2, 0)
  38. MovementLoopAddLocation(NPC, 48.39, -2.67, -32.09, 2, 0)
  39. MovementLoopAddLocation(NPC, 44.99, -2.56, -39.61, 2, 0)
  40. MovementLoopAddLocation(NPC, 42.22, -2.56, -46.44, 2, 0)
  41. MovementLoopAddLocation(NPC, 40.71, -2.56, -47.97, 2, 0)
  42. MovementLoopAddLocation(NPC, 36, -2.53, -49.92, 2, MakeRandomInt(8,15))
  43. MovementLoopAddLocation(NPC, 36, -2.53, -49.92, 2, 0)
  44. MovementLoopAddLocation(NPC, 39.38, -2.56, -48.25, 2, 0)
  45. MovementLoopAddLocation(NPC, 42.31, -2.56, -43.66, 2, MakeRandomInt(8,15))
  46. MovementLoopAddLocation(NPC, 42.31, -2.56, -43.66, 2, 0)
  47. MovementLoopAddLocation(NPC, 42.18, -2.56, -45.68, 2, MakeRandomInt(8,15))
  48. MovementLoopAddLocation(NPC, 42.18, -2.56, -45.68, 2, 0)
  49. MovementLoopAddLocation(NPC, 44.43, -2.56, -42.49, 2, 0)
  50. MovementLoopAddLocation(NPC, 44.51, -2.56, -42.37, 2, 0)
  51. MovementLoopAddLocation(NPC, 44.91, -2.56, -36.8, 2, 0)
  52. end