123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- --[[
- Script Name : shriller24.lua
- Script Purpose : Waypoint Path for shriller24.lua
- Script Author : Devn00b
- Script Date : 05/14/2020 12:29:52 PM
- Script Notes : Locations collected from Live
- --]]
- function spawn(NPC)
- local Level = GetLevel(NPC)
- local level1 = 8
- local level2 = 9
- local difficulty1 = 6
- local hp1 = 250
- local power1 = 250
- local difficulty2 = 6
- local hp2 = 285
- local power2 = 285
- if Level == level1 then
- SpawnSet(NPC, "difficulty", difficulty1)
- SpawnSet(NPC, "hp", hp1)
- SpawnSet(NPC, "power", power1)
- elseif Level == level2
- then
- SpawnSet(NPC, "difficulty", difficulty2)
- SpawnSet(NPC, "hp", hp2)
- SpawnSet(NPC, "power", power2)
- end
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- waypoints(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, -220.47, -0.03, -77.41, 2, 0)
- MovementLoopAddLocation(NPC, -219.61, 0.16, -65.03, 2, 0)
- MovementLoopAddLocation(NPC, -216.72, 0.02, -55.5, 2, 0)
- MovementLoopAddLocation(NPC, -206.34, -0.91, -43.57, 2, 0)
- MovementLoopAddLocation(NPC, -192.81, 0, -29.57, 2, 0)
- MovementLoopAddLocation(NPC, -218.02, 0.04, -56.09, 2, 0)
- MovementLoopAddLocation(NPC, -219.02, -0.03, -75.69, 2, 0)
- MovementLoopAddLocation(NPC, -219.27, -0.06, -83.57, 2, 0)
- MovementLoopAddLocation(NPC, -209.64, -0.05, -92.67, 2, 0)
- MovementLoopAddLocation(NPC, -184.23, -0.02, -92.45, 2, 0)
- MovementLoopAddLocation(NPC, -173.21, -0.25, -73.87, 2, 0)
- MovementLoopAddLocation(NPC, -165.39, -0.25, -74.45, 2, 0)
- MovementLoopAddLocation(NPC, -149.14, -0.12, -83.6, 2, 0)
- MovementLoopAddLocation(NPC, -155.21, -0.02, -99.1, 2, 0)
- MovementLoopAddLocation(NPC, -148.02, -0.05, -77.36, 2, 0)
- MovementLoopAddLocation(NPC, -155.21, -0.02, -99.1, 2, 0)
- MovementLoopAddLocation(NPC, -149.14, -0.12, -83.6, 2, 0)
- MovementLoopAddLocation(NPC, -165.39, -0.25, -74.45, 2, 0)
- MovementLoopAddLocation(NPC, -173.21, -0.25, -73.87, 2, 0)
- MovementLoopAddLocation(NPC, -184.23, -0.02, -92.45, 2, 0)
- MovementLoopAddLocation(NPC, -209.64, -0.05, -92.67, 2, 0)
- MovementLoopAddLocation(NPC, -219.27, -0.06, -83.57, 2, 0)
- MovementLoopAddLocation(NPC, -219.02, -0.03, -75.69, 2, 0)
- MovementLoopAddLocation(NPC, -218.02, 0.04, -56.09, 2, 0)
- MovementLoopAddLocation(NPC, -192.81, 0, -29.57, 2, 0)
- MovementLoopAddLocation(NPC, -206.34, -0.91, -43.57, 2, 0)
- MovementLoopAddLocation(NPC, -216.72, 0.02, -55.5, 2, 0)
- MovementLoopAddLocation(NPC, -219.61, 0.16, -65.03, 2, 0)
- MovementLoopAddLocation(NPC, -220.47, -0.03, -77.41, 2, 0)
- end
|