12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- --[[
- Script Name : SpawnScripts/Classic_forest/astoneshellsnapper12.lua
- Script Author : LordPazuzu
- Script Date : 2022.10.12 07:10:04
- Script Purpose :
- :
- --]]
- require "SpawnScripts/Generic/NPCModule"
- function spawn(NPC, Spawn)
- NPCModule(NPC, Spawn)
- AddTimer(NPC, 6000, "waypoints")
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, 1109.19, -22.05, -700.64, 1, 0)
- MovementLoopAddLocation(NPC, 1108.31, -19.77, -704.5, 1, math.random(5,10))
- MovementLoopAddLocation(NPC, 1108.31, -19.77, -704.5, 1, 0)
- MovementLoopAddLocation(NPC, 1102.46, -23.66, -699.26, 1, math.random(5,10))
- MovementLoopAddLocation(NPC, 1102.46, -23.66, -699.26, 1, 0)
- MovementLoopAddLocation(NPC, 1102.93, -21.92, -693.73, 1, math.random(5,10))
- MovementLoopAddLocation(NPC, 1102.93, -21.92, -693.73, 1, 0)
- MovementLoopAddLocation(NPC, 1104.91, -20.81, -690.86, 1, math.random(5,10))
- MovementLoopAddLocation(NPC, 1104.91, -20.81, -690.86, 1, 0)
- MovementLoopAddLocation(NPC, 1102.51, -22.55, -694.51, 1, 0)
- MovementLoopAddLocation(NPC, 1104.59, -22.47, -699.92, 1, 0)
- MovementLoopAddLocation(NPC, 1107.15, -20.95, -702.57, 1, math.random(5,10))
- MovementLoopAddLocation(NPC, 1107.15, -20.95, -702.57, 1, 0)
- MovementLoopAddLocation(NPC, 1113.34, -20.47, -704.03, 1, 0)
- MovementLoopAddLocation(NPC, 1118.66, -21.07, -706.88, 1, 0)
- MovementLoopAddLocation(NPC, 1124.32, -23.75, -708.75, 1, math.random(5,10))
- MovementLoopAddLocation(NPC, 1124.32, -23.75, -708.75, 1, 0)
- MovementLoopAddLocation(NPC, 1119, -23.43, -704.66, 1, 0)
- MovementLoopAddLocation(NPC, 1113.87, -23.26, -701.09, 1, 0)
- MovementLoopAddLocation(NPC, 1111.56, -19.83, -704.16, 1, 0)
- MovementLoopAddLocation(NPC, 1108.13, -18.51, -707.64, 1, math.random(5,10))
- MovementLoopAddLocation(NPC, 1108.13, -18.51, -707.64, 1, 0)
- MovementLoopAddLocation(NPC, 1102.74, -20.13, -712.21, 1, math.random(5,10))
- MovementLoopAddLocation(NPC, 1102.74, -20.13, -712.21, 1, 0)
- MovementLoopAddLocation(NPC, 1105.53, -19.26, -708.44, 1, 0)
- MovementLoopAddLocation(NPC, 1107.75, -19.42, -705.45, 1, 0)
- MovementLoopAddLocation(NPC, 1109.19, -22.05, -700.64, 1, math.random(5,10))
- end
|