Hello
Need something like that please!!!
Hello
Need something like that please!!!
Last edited by charms; 10-21-2016 at 09:43 PM.
--Attack Pally
auto(100)
local monsters = {'Dragon', 'Dragon Lord'}
local pvp = false --check pvp
local MasSan = true --exevo mas san
local numberMonsters = 3 --monsters for mas san
local GranCon = true --exori gran con
local Con = true --exori con
local San = true --exori san
----------------------------------------
if MasSan and $level >= 50 and maroundspell('exevo mas san', 'any', unpack(monsters)) >= numberMonsters and cancast('exevo mas san') and (paround(7) == 0 or not pvp) and $attacked.isshootable then
cast('exevo mas san')
wait(300,500)
elseif GranCon and $level >= 90 and maround(7, unpack(monsters)) > 0 and $attacked.dist >= 5 or ($attacked.dist >= 1 and (paround(3) > 0 and pvp)) and cancast('exori gran con') and $attacked.isshootable then
cast('exori gran con')
wait(300,500)
elseif Con and $level >= 23 and maround(7, unpack(monsters)) > 0 and $attacked.dist >= 5 or ($attacked.dist >= 1 and (paround(3) > 0 and pvp)) and cancast('exori con') and $attacked.isshootable then
cast('exori con')
wait(300,500)
elseif San and $level >= 40 and maround(7, unpack(monsters)) > 0 and $attacked.dist <= 4 and cancast('exori san') and $attacked.isshootable then
cast('exori san')
wait(300,500)
end
Last edited by Cisco; 10-22-2016 at 05:08 PM.