local MonsterToShootCon = {'Draken Elite', 'Draken Spellweaver'}
local MonsterToShootSan = {"Ghastly Dragon", "Draken Abomination", "Undead Dragon"}
if Self.CoolDown(SPELL_GROUP_ATTACK) == 0 then
if ((paround(10, true) >= 0) or not PvP_Server) then
if maround(3, unpack(MonsterToShootSan)) >= 1 and cancast('exori san') and target.dist <= 3 and target.id ~= 0 then
cast('exori san')
elseif target.dist >= 4 and cancast('exori con') then
cast('exori con')
end
if maround(10, unpack(MonsterToShootCon)) >= 1 and cancast('exori con') and target.dist <= 6 and target.id ~= 0 then
cast('exori con')
end
elseif ((paround(10, true)) >= 1 and PvP_Server) and target.id ~= 0 then
if cancast('exori con') then
cast('exori con')
end
end
end