71 lines
3 KiB
Lua
Executable file
71 lines
3 KiB
Lua
Executable file
--[[
|
|
Script Name : shriller6.lua
|
|
Script Purpose : Waypoint Path for shriller6.lua
|
|
Script Author : Devn00b
|
|
Script Date : 05/18/2020 11:04:12 PM
|
|
Script Notes : Locations collected from Live
|
|
--]]
|
|
|
|
function spawn(NPC)
|
|
waypoints(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
waypoints(NPC)
|
|
end
|
|
|
|
function waypoints(NPC)
|
|
MovementLoopAddLocation(NPC, 107.11, 6.93, -47.31, 2, 0)
|
|
MovementLoopAddLocation(NPC, 100.38, 6.89, -44.7, 2, 0)
|
|
MovementLoopAddLocation(NPC, 95, 7.34, -50.4, 2, 0)
|
|
MovementLoopAddLocation(NPC, 93.34, 6.92, -63.2, 2, 0)
|
|
MovementLoopAddLocation(NPC, 80.07, 6.84, -63.92, 2, 0)
|
|
MovementLoopAddLocation(NPC, 69.57, 7.09, -57.76, 2, 0)
|
|
MovementLoopAddLocation(NPC, 61.68, 6.98, -58.01, 2, 0)
|
|
MovementLoopAddLocation(NPC, 70.5, 6.88, -57.77, 2, 0)
|
|
MovementLoopAddLocation(NPC, 78.53, 6.87, -62.99, 2, 0)
|
|
MovementLoopAddLocation(NPC, 93.35, 6.99, -61.94, 2, 0)
|
|
MovementLoopAddLocation(NPC, 98.58, 6.87, -45.17, 2, 0)
|
|
MovementLoopAddLocation(NPC, 108.69, 7.03, -47.18, 2, 0)
|
|
MovementLoopAddLocation(NPC, 136, 6.83, -72.36, 2, 0)
|
|
MovementLoopAddLocation(NPC, 148.33, 7.6, -72.01, 2, 0)
|
|
MovementLoopAddLocation(NPC, 157.81, 7.75, -61.58, 2, 0)
|
|
MovementLoopAddLocation(NPC, 149.03, 6.92, -52.02, 2, 0)
|
|
MovementLoopAddLocation(NPC, 149.57, 6.99, -42.66, 2, 0)
|
|
MovementLoopAddLocation(NPC, 149.65, 6.99, -31.4, 2, 0)
|
|
MovementLoopAddLocation(NPC, 145.83, 6.99, -25.46, 2, 0)
|
|
MovementLoopAddLocation(NPC, 144.96, 6.99, -9.71, 2, 0)
|
|
MovementLoopAddLocation(NPC, 154.23, 6.99, -4.06, 2, 0)
|
|
MovementLoopAddLocation(NPC, 153.55, 6.99, 4.74, 2, 0)
|
|
MovementLoopAddLocation(NPC, 112.57, 6.85, 5.42, 2, 0)
|
|
MovementLoopAddLocation(NPC, 95.19, 6.86, 17.73, 2, 0)
|
|
MovementLoopAddLocation(NPC, 112.57, 6.85, 5.42, 2, 0)
|
|
MovementLoopAddLocation(NPC, 153.55, 6.99, 4.74, 2, 0)
|
|
MovementLoopAddLocation(NPC, 154.23, 6.99, -4.06, 2, 0)
|
|
MovementLoopAddLocation(NPC, 144.96, 6.99, -9.71, 2, 0)
|
|
MovementLoopAddLocation(NPC, 145.83, 6.99, -25.46, 2, 0)
|
|
MovementLoopAddLocation(NPC, 149.65, 6.99, -31.4, 2, 0)
|
|
MovementLoopAddLocation(NPC, 149.57, 6.99, -42.66, 2, 0)
|
|
MovementLoopAddLocation(NPC, 149.03, 6.92, -52.02, 2, 0)
|
|
MovementLoopAddLocation(NPC, 157.81, 7.75, -61.58, 2, 0)
|
|
MovementLoopAddLocation(NPC, 148.33, 7.6, -72.01, 2, 0)
|
|
MovementLoopAddLocation(NPC, 136, 6.83, -72.36, 2, 0)
|
|
MovementLoopAddLocation(NPC, 108.69, 7.03, -47.18, 2, 0)
|
|
MovementLoopAddLocation(NPC, 98.58, 6.87, -45.17, 2, 0)
|
|
MovementLoopAddLocation(NPC, 93.35, 6.99, -61.94, 2, 0)
|
|
MovementLoopAddLocation(NPC, 78.53, 6.87, -62.99, 2, 0)
|
|
MovementLoopAddLocation(NPC, 70.5, 6.88, -57.77, 2, 0)
|
|
MovementLoopAddLocation(NPC, 61.68, 6.98, -58.01, 2, 0)
|
|
MovementLoopAddLocation(NPC, 69.57, 7.09, -57.76, 2, 0)
|
|
MovementLoopAddLocation(NPC, 80.07, 6.84, -63.92, 2, 0)
|
|
MovementLoopAddLocation(NPC, 93.34, 6.92, -63.2, 2, 0)
|
|
MovementLoopAddLocation(NPC, 95, 7.34, -50.4, 2, 0)
|
|
MovementLoopAddLocation(NPC, 100.38, 6.89, -44.7, 2, 0)
|
|
MovementLoopAddLocation(NPC, 107.11, 6.93, -47.31, 2, 0)
|
|
end
|
|
|
|
|