123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- --[[
- Script Name : SpawnScripts/WillowWood/ashiningnibbler.lua
- Script Author : LordPazuzu
- Script Date : 2022.10.27 09:10:50
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- local Level = GetLevel(NPC)
- local level1 = 1
- local level2 = 2
- local level3 = 3
- local difficulty1 = 6
- local hp1 = 30
- local power1 = 25
- local difficulty2 = 6
- local hp2 = 45
- local power2 = 35
- local difficulty3 =6
- local hp3 = 75
- local power3 = 45
- 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)
- elseif Level == level3
- then
- SpawnSet(NPC, "difficulty", difficulty3)
- SpawnSet(NPC, "hp", hp3)
- SpawnSet(NPC, "power", power3)
- end
-
- MovementChoice(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function MovementChoice(NPC)
- local choice = math.random(1, 4)
- if choice == 1 then
- clockwise1(NPC)
- elseif choice == 2 then
- clockwise2(NPC)
- elseif choice == 3 then
- counter_clockwise1(NPC)
- elseif choice == 4 then
- counter_clockwise2(NPC)
- end
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function clockwise1(NPC)
- local x = GetX(NPC)
- local y = GetY(NPC)
- local z = GetZ(NPC)
- MovementLoopAddLocation(NPC, x + 7 , y, z - 8 , 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x - 5 , y, z - 10, 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x - 10, y, z + 9 , 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x + 5 , y, z + 8 , 2, math.random(5, 15))
- end
- function clockwise2(NPC)
- local x = GetX(NPC)
- local y = GetY(NPC)
- local z = GetZ(NPC)
- MovementLoopAddLocation(NPC, x + 2 , y, z - 8 , 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x - 7 , y, z - 5 , 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x , y, z + 6 , 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x + 9 , y, z + 1 , 2, math.random(5, 15))
- end
- function counter_clockwise1(NPC)
- local x = GetX(NPC)
- local y = GetY(NPC)
- local z = GetZ(NPC)
- MovementLoopAddLocation(NPC, x - 7 , y, z + 8 , 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x + 5 , y, z + 10, 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x + 10, y, z - 9 , 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x - 5 , y, z - 8 , 2, math.random(5, 15))
- end
- function counter_clockwise2(NPC)
- local x = GetX(NPC)
- local y = GetY(NPC)
- local z = GetZ(NPC)
- MovementLoopAddLocation(NPC, x - 2 , y, z + 8 , 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x + 7 , y, z + 5 , 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x , y, z - 6 , 2, math.random(5, 15))
- MovementLoopAddLocation(NPC, x - 9 , y, z - 1 , 2, math.random(5, 15))
- end
|