Log in

View Full Version : Druid Exori Frigo / Exori Gran Frigo / Exori Max Frigo



Elder' Mariusz
02-13-2016, 10:41 AM
Hello guys... I'd like to hunt demons and can you tell me which script for exori frigo , after this exori gran frigo and after this max frigo script is the best for it? I found it

--[[Mages Multiple Strike Spells]]--
local spells = {}
spells[1] = { spell = "exori max frigo" } --Max spell
spells[2] = { spell = "exori gran frigo" } --Gran spell
spells[3] = { spell = "exori frigo" } --Nooby spell (This will be the only spell cast after Target <= 35% HP)
local targets = {"Waspoid", "Crawler", "Swarmer", "Insectoid Worker", "Spitter"}
local range = 3
Module.New("Multiple Strike Spells", function(module)
for _, data in ipairs(spells) do
local c = Creature.GetByID(Self.TargetID())
if table.contains(targets, c:Name()) then
if c:DistanceFromSelf() <= range then
if Self.TargetID() ~= 0 then
if c:HealthPercent() >= 5 then
for x=1, #spells do
if Self.CanCastSpell(data.spell) then
Self.Say(data.spell)
wait(500, 1500)
end
end
elseif c:HealthPercent() <= 5 then
if Self.CanCastSpell(data.spell[3]) then
Self.Say(data.spell[3])
wait(500, 1500)
end
end
end
end
end
end
module:Delay(1000)
end)

but idk about it

Sheradial
02-13-2016, 12:52 PM
Juse use magic shooter ingame and make the gran frigo and max frigo with a higher priority.