1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- --[[
- Script Name : SpawnScripts/TheSprawl_Classic/aGiantslayerthugPath4.lua
- Script Author : LordPazuzu
- Script Date : 2023.11.19 06:11:42
- Script Purpose :
- :
- --]]
- require "SpawnScripts/Generic/NPCModule"
- dofile("SpawnScripts/Generic/MonsterCallouts/Giantslayer.lua")
- function spawn(NPC, Spawn)
- NPCModule(NPC, Spawn)
- barbarian(NPC)
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, 39.17, -2.58, -22.44, 2, MakeRandomInt(8,15))
- MovementLoopAddLocation(NPC, 39.17, -2.58, -22.44, 2, 0)
- MovementLoopAddLocation(NPC, 34.14, -2.55, -21.31, 2, 0)
- MovementLoopAddLocation(NPC, 27.14, -2.55, -14.17, 2, 0)
- MovementLoopAddLocation(NPC, 21.77, -2.55, -12.59, 2, 0)
- MovementLoopAddLocation(NPC, 16.01, -2.56, -12.73, 2, 0)
- MovementLoopAddLocation(NPC, 11.53, -2.65, -14.28, 2, MakeRandomInt(8,15))
- MovementLoopAddLocation(NPC, 11.53, -2.65, -14.28, 2, 0)
- MovementLoopAddLocation(NPC, 15.32, -2.59, -13.16, 2, 0)
- MovementLoopAddLocation(NPC, 21.66, -2.56, -11.94, 2, 0)
- MovementLoopAddLocation(NPC, 26.09, -2.55, -13.98, 2, 0)
- MovementLoopAddLocation(NPC, 32.84, -2.55, -19.91, 2, 0)
- MovementLoopAddLocation(NPC, 38.6, -2.56, -21.52, 2, 0)
- MovementLoopAddLocation(NPC, 44.84, -2.67, -14.74, 2, MakeRandomInt(8,15))
- MovementLoopAddLocation(NPC, 44.84, -2.67, -14.74, 2, 0)
- MovementLoopAddLocation(NPC, 39.27, -2.58, -21.33, 2, 0)
- MovementLoopAddLocation(NPC, 43.5, -2.67, -24.2, 2, MakeRandomInt(8,15))
- MovementLoopAddLocation(NPC, 43.5, -2.67, -24.2, 2, 0)
- MovementLoopAddLocation(NPC, 39.41, -2.6, -20.87, 2, MakeRandomInt(8,15))
- MovementLoopAddLocation(NPC, 39.41, -2.6, -20.87, 2, 0)
- MovementLoopAddLocation(NPC, 46.16, -2.67, -20.27, 2, MakeRandomInt(8,15))
- MovementLoopAddLocation(NPC, 46.16, -2.67, -20.27, 2, 0)
- MovementLoopAddLocation(NPC, 37.03, -2.55, -21.88, 2, 0)
- MovementLoopAddLocation(NPC, 34.4, -2.55, -21.16, 2, 0)
- MovementLoopAddLocation(NPC, 26.01, -2.55, -13.1, 2, 0)
- MovementLoopAddLocation(NPC, 19.41, -2.55, -12.47, 2, MakeRandomInt(8,15))
- MovementLoopAddLocation(NPC, 19.41, -2.55, -12.47, 2, 0)
- MovementLoopAddLocation(NPC, 25.39, -2.55, -12.9, 2, 0)
- MovementLoopAddLocation(NPC, 31.25, -2.55, -18.89, 2, 0)
- MovementLoopAddLocation(NPC, 34.5, -2.55, -21.13, 2, 0)
- end
|