--[[ Script Name : SpawnScripts/DownBelow_Classic/arottingcitizenPatrol.lua Script Author : LordPazuzu Script Date : 2023.01.15 03:01:03 Script Purpose : : --]] dofile("SpawnScripts/Generic/MonsterCallouts/BaseSkeleton2.lua") require "SpawnScripts/Generic/NPCModule" function spawn(NPC, Spawn) NPCModule(NPC, Spawn) waypoints(NPC) end function hailed(NPC, Spawn) FaceTarget(NPC, Spawn) end function respawn(NPC) spawn(NPC) end function waypoints(NPC) MovementLoopAddLocation(NPC, -180.08, 0, -16.5, 2, 5) MovementLoopAddLocation(NPC, -186.5, 0, -10.03, 2, 0) MovementLoopAddLocation(NPC, -189.5, 0, -9.71, 2, 0) MovementLoopAddLocation(NPC, -192.96, 0, -10.93, 2, 0) MovementLoopAddLocation(NPC, -194.46, 0, -11.91, 2, 0) MovementLoopAddLocation(NPC, -195.91, 0, -13.95, 2, math.random(5,10)) MovementLoopAddLocation(NPC, -196.21, 0, -17.38, 2, 0) MovementLoopAddLocation(NPC, -191.09, 0, -21.23, 2, 0) MovementLoopAddLocation(NPC, -188.17, 0, -25.82, 2, 0) MovementLoopAddLocation(NPC, -188.71, 0, -29.6, 2, 0) MovementLoopAddLocation(NPC, -193.64, 0, -34.45, 2, 0) MovementLoopAddLocation(NPC, -196.97, 0, -34.04, 2, 0) MovementLoopAddLocation(NPC, -202.29, 0, -29.35, 2, 0) MovementLoopAddLocation(NPC, -203.66, 0, -26.34, 2, 0) MovementLoopAddLocation(NPC, -202.69, 0, -23.27, 2, 0) MovementLoopAddLocation(NPC, -197.86, 0, -17.61, 2, 0) MovementLoopAddLocation(NPC, -195.8, 0, -12.94, 2, 0) MovementLoopAddLocation(NPC, -193.78, 0, -10.69, 2, 0) MovementLoopAddLocation(NPC, -190.96, 0, -10.79, 2, 0) MovementLoopAddLocation(NPC, -188.22, 0, -9.95, 2, 0) MovementLoopAddLocation(NPC, -184.39, 0, -11.48, 2, 0) MovementLoopAddLocation(NPC, -180.08, 0, -16.5, 2, 0) end