--[[ Script Name : bogstomper.lua Script Purpose : Waypoint Path for bogstomper.lua Script Author : Devn00b Script Date : 04/15/2020 03:04:58 PM Script Notes : Locations collected from Live --]] dofile("SpawnScripts/Generic/GenericEcologyVoiceOvers.lua") function spawn(NPC) waypoints(NPC) SetPlayerProximityFunction(NPC, 7, "InRange", "LeaveRange") end function hailed(NPC, Spawn) FaceTarget(NPC, Spawn) GenericRaceCheckHail(NPC, Spawn) end function InRange(NPC,Spawn) GenericRaceCheckCallout(NPC, Spawn) end function respawn(NPC) spawn(NPC) end function waypoints(NPC) MovementLoopAddLocation(NPC, 411.34, -18.69, -283.36, 2, 0) MovementLoopAddLocation(NPC, 430.22, -20.84, -269.53, 2, 0) MovementLoopAddLocation(NPC, 442.27, -20.56, -260.7, 2, 0) MovementLoopAddLocation(NPC, 453.66, -20.15, -257.78, 2, 0) MovementLoopAddLocation(NPC, 421.37, -22.24, -234.82, 2, 0) MovementLoopAddLocation(NPC, 397.61, -23.57, -205.62, 2, 0) MovementLoopAddLocation(NPC, 355.38, -25.37, -172, 2, 0) MovementLoopAddLocation(NPC, 321.06, -23.47, -110.02, 2, 0) MovementLoopAddLocation(NPC, 313.9, -22.79, -93.11, 2, 0) MovementLoopAddLocation(NPC, 302.26, -21.22, -46.78, 2, 0) MovementLoopAddLocation(NPC, 323.1, -21.46, -24.53, 2, 0) MovementLoopAddLocation(NPC, 401.06, -15.91, -21.3, 2, 0) MovementLoopAddLocation(NPC, 328.91, -21.32, -15.53, 2, 0) MovementLoopAddLocation(NPC, 304.68, -21.05, 0.44, 2, 0) MovementLoopAddLocation(NPC, 280, -21.14, -6.72, 2, 0) MovementLoopAddLocation(NPC, 262.89, -21.38, -16.03, 2, 0) MovementLoopAddLocation(NPC, 256.44, -21.09, -11.86, 2, 0) MovementLoopAddLocation(NPC, 254.73, -20.74, -4.18, 2, 0) MovementLoopAddLocation(NPC, 251.9, -19.33, 42.88, 2, 0) MovementLoopAddLocation(NPC, 268.37, -15.33, 68.77, 2, 0) MovementLoopAddLocation(NPC, 289.95, -12.67, 81.92, 2, 0) MovementLoopAddLocation(NPC, 268.37, -15.33, 68.77, 2, 0) MovementLoopAddLocation(NPC, 251.9, -19.33, 42.88, 2, 0) MovementLoopAddLocation(NPC, 254.73, -20.74, -4.18, 2, 0) MovementLoopAddLocation(NPC, 256.44, -21.09, -11.86, 2, 0) MovementLoopAddLocation(NPC, 262.89, -21.38, -16.03, 2, 0) MovementLoopAddLocation(NPC, 280, -21.14, -6.72, 2, 0) MovementLoopAddLocation(NPC, 304.68, -21.05, 0.44, 2, 0) MovementLoopAddLocation(NPC, 328.91, -21.32, -15.53, 2, 0) MovementLoopAddLocation(NPC, 401.06, -15.91, -21.3, 2, 0) MovementLoopAddLocation(NPC, 323.1, -21.46, -24.53, 2, 0) MovementLoopAddLocation(NPC, 302.26, -21.22, -46.78, 2, 0) MovementLoopAddLocation(NPC, 313.9, -22.79, -93.11, 2, 0) MovementLoopAddLocation(NPC, 321.06, -23.47, -110.02, 2, 0) MovementLoopAddLocation(NPC, 355.38, -25.37, -172, 2, 0) MovementLoopAddLocation(NPC, 397.61, -23.57, -205.62, 2, 0) MovementLoopAddLocation(NPC, 421.37, -22.24, -234.82, 2, 0) MovementLoopAddLocation(NPC, 453.66, -20.15, -257.78, 2, 0) MovementLoopAddLocation(NPC, 442.27, -20.56, -260.7, 2, 0) MovementLoopAddLocation(NPC, 430.22, -20.84, -269.53, 2, 0) MovementLoopAddLocation(NPC, 411.34, -18.69, -283.36, 2, 0) end