123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- --[[
- Script Name : deathly_scarab17.lua
- Script Purpose : Waypoint Path for deathly_scarab17.lua
- Script Author : Devn00b
- Script Date : 06/11/2020 03:49:46 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, 13.83, -0.16, -172.82, 2, 0)
- MovementLoopAddLocation(NPC, 15.64, -0.16, -162.26, 2, 0)
- MovementLoopAddLocation(NPC, 39.79, -0.16, -159.81, 2, 0)
- MovementLoopAddLocation(NPC, 43.26, -0.15, -154.43, 2, 0)
- MovementLoopAddLocation(NPC, 53.78, -0.16, -154.44, 2, 0)
- MovementLoopAddLocation(NPC, 54.78, -0.16, -165.83, 2, 0)
- MovementLoopAddLocation(NPC, 48.43, -0.15, -168.43, 2, 0)
- MovementLoopAddLocation(NPC, 42.62, -0.16, -167.58, 2, 0)
- MovementLoopAddLocation(NPC, 40.81, -0.16, -163.4, 2, 0)
- MovementLoopAddLocation(NPC, 26.27, -0.16, -160.45, 2, 0)
- MovementLoopAddLocation(NPC, 15.43, -0.18, -160.52, 2, 0)
- MovementLoopAddLocation(NPC, 15.97, -0.16, -146.18, 2, 0)
- MovementLoopAddLocation(NPC, -12.97, -0.16, -146.32, 2, 0)
- MovementLoopAddLocation(NPC, -28.96, 0.41, -147.45, 2, 0)
- MovementLoopAddLocation(NPC, -34.78, 0.37, -151.33, 2, 0)
- MovementLoopAddLocation(NPC, -34.65, -0.18, -168.83, 2, 0)
- MovementLoopAddLocation(NPC, -31.6, -0.18, -171.82, 2, 0)
- MovementLoopAddLocation(NPC, -31.59, -1.15, -177.33, 2, 0)
- MovementLoopAddLocation(NPC, -19.54, -0.18, -177.63, 2, 0)
- MovementLoopAddLocation(NPC, -18.92, -0.18, -187.21, 2, 0)
- MovementLoopAddLocation(NPC, -29.36, -0.8, -188.09, 2, 0)
- MovementLoopAddLocation(NPC, -30.65, -1.2, -176.84, 2, 0)
- MovementLoopAddLocation(NPC, -19.11, -0.18, -181.69, 2, 0)
- MovementLoopAddLocation(NPC, -1.7, -0.08, -181.95, 2, 0)
- MovementLoopAddLocation(NPC, -1.86, -0.16, -190.84, 2, 0)
- MovementLoopAddLocation(NPC, -1.38, -0.08, -183.43, 2, 0)
- MovementLoopAddLocation(NPC, 6.43, 0.32, -180.94, 2, 0)
- MovementLoopAddLocation(NPC, 13.57, -0.05, -176.13, 2, 0)
- MovementLoopAddLocation(NPC, 6.43, 0.32, -180.94, 2, 0)
- MovementLoopAddLocation(NPC, -1.38, -0.08, -183.43, 2, 0)
- MovementLoopAddLocation(NPC, -1.86, -0.16, -190.84, 2, 0)
- MovementLoopAddLocation(NPC, -1.7, -0.08, -181.95, 2, 0)
- MovementLoopAddLocation(NPC, -19.11, -0.18, -181.69, 2, 0)
- MovementLoopAddLocation(NPC, -30.65, -1.2, -176.84, 2, 0)
- MovementLoopAddLocation(NPC, -29.36, -0.8, -188.09, 2, 0)
- MovementLoopAddLocation(NPC, -18.92, -0.18, -187.21, 2, 0)
- MovementLoopAddLocation(NPC, -19.54, -0.18, -177.63, 2, 0)
- MovementLoopAddLocation(NPC, -31.59, -1.15, -177.33, 2, 0)
- MovementLoopAddLocation(NPC, -31.6, -0.18, -171.82, 2, 0)
- MovementLoopAddLocation(NPC, -34.65, -0.18, -168.83, 2, 0)
- MovementLoopAddLocation(NPC, -34.78, 0.37, -151.33, 2, 0)
- MovementLoopAddLocation(NPC, -28.96, 0.41, -147.45, 2, 0)
- MovementLoopAddLocation(NPC, -12.97, -0.16, -146.32, 2, 0)
- MovementLoopAddLocation(NPC, 15.97, -0.16, -146.18, 2, 0)
- MovementLoopAddLocation(NPC, 15.43, -0.18, -160.52, 2, 0)
- MovementLoopAddLocation(NPC, 26.27, -0.16, -160.45, 2, 0)
- MovementLoopAddLocation(NPC, 40.81, -0.16, -163.4, 2, 0)
- MovementLoopAddLocation(NPC, 42.62, -0.16, -167.58, 2, 0)
- MovementLoopAddLocation(NPC, 48.43, -0.15, -168.43, 2, 0)
- MovementLoopAddLocation(NPC, 54.78, -0.16, -165.83, 2, 0)
- MovementLoopAddLocation(NPC, 53.78, -0.16, -154.44, 2, 0)
- MovementLoopAddLocation(NPC, 43.26, -0.15, -154.43, 2, 0)
- MovementLoopAddLocation(NPC, 39.79, -0.16, -159.81, 2, 0)
- MovementLoopAddLocation(NPC, 15.64, -0.16, -162.26, 2, 0)
- MovementLoopAddLocation(NPC, 13.83, -0.16, -172.82, 2, 0)
- end
|