123456789101112131415161718192021222324252627282930313233343536373839404142 |
- --[[
- Script Name : festering_zombie11.lua
- Script Purpose : Waypoint Path for festering_zombie11.lua
- Script Author : Devn00b
- Script Date : 06/30/2020 09:56:27 PM
- Script Notes : Locations collected from Live
- --]]
- function spawn(NPC)
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, 212.03, -6.97, -198.74, 2, 1)
- MovementLoopAddLocation(NPC, 212.19, -6.97, -203.6, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 214.53, -6.97, -200.84, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 210.23, -6.97, -203.3, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 212.94, -6.81, -203.56, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 210.7, -6.97, -200.48, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 214.54, -6.97, -200.38, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 211.68, -6.97, -202.09, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 212.06, -6.97, -199.32, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 212.45, -6.97, -203.72, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 212.06, -6.97, -199.32, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 211.68, -6.97, -202.09, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 214.54, -6.97, -200.38, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 210.7, -6.97, -200.48, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 212.94, -6.81, -203.56, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 210.23, -6.97, -203.3, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 214.53, -6.97, -200.84, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 212.19, -6.97, -203.6, 2, math.random(0,8))
- MovementLoopAddLocation(NPC, 212.03, -6.97, -198.74, 2, math.random(0,8))
- end
|