View Full Version : Is Exori/Ue Spells Safe?
eduardo123ju
11-16-2014, 06:00 AM
I was wondering if on the new servers Morta/Mortera is it safe to use Xenobot's magic shooter (absolute spells ,Exori,Gran,Mas Frigo,Mas Flam etc...) and not getting black skulled?
Curunir
12-22-2014, 07:52 AM
is there a siply script that the walker turns away from people?
Roarz
12-22-2014, 08:38 AM
how the hell can UE be safe if someone can sprint onto your screen? xD
DarkstaR
12-22-2014, 06:22 PM
how the hell can UE be safe if someone can sprint onto your screen? xD
It will make sure nobody is in range. But if you have high ping, yes, this can happen, so you should just turn UE off.
Elocze
12-22-2014, 08:52 PM
How about turning on safe mode ?
edit nvm i didnt read it carefully ;P
It will make sure nobody is in range. But if you have high ping, yes, this can happen, so you should just turn UE off.
DarkstaR Could you give us some more info?
For example, what is the minimum distance another player must be in order for the bot to cast "exori"? 2 sqm? 1sqm?
I got skull the other day, I was not having lag. How much is "high" ping? As long as we have green-ball its ok?
Seems to me a very fast mage with gran hur, etc, could step in your exori, also avalanches etc...
What about the "kill monster at the same time the bot does exori vis" so I exori vis the guy in front of me instead the (dead) monster?
DarkstaR
12-22-2014, 11:38 PM
Area spells are 2 SQM padding. There's nothing for Exori Vis, though. Need to tweak that.
Curunir
12-23-2014, 08:37 AM
Area spells are 2 SQM padding. There's nothing for Exori Vis, though. Need to tweak that.
hmm... some days ago i saw a guy who was botting at WE... i was so pissed off (he went in my spawn ) that i tryed to make whim ws... BUT he got a script or something that he turns away (like left right etc) when some guy was moving infront of him... it was impossible to make him ws.. (also tryed to sidestep before he did the last "exori vis" ) nothing!.. he turns away every time ...
So do he got another bot or jsut a good script???
I use xenobot now 4 yeras.. (when i play) but never got a problem like that =)
hmm... some days ago i saw a guy who was botting at WE... i was so pissed off (he went in my spawn ) that i tryed to make whim ws... BUT he got a script or something that he turns away (like left right etc) when some guy was moving infront of him... it was impossible to make him ws.. (also tryed to sidestep before he did the last "exori vis" ) nothing!.. he turns away every time ...
So do he got another bot or jsut a good script???
I use xenobot now 4 yeras.. (when i play) but never got a problem like that =)
I need this as well and can't find anything on the forums.
Anyone I can try to convince to make one?
EDIT: I'm using jxscripts' Water Elementals script and it just casts exori vis without it being safe (can't disable shooter and create my own in magic shooter, got skulled 1x while trying the script) - Is there any script that just turns my character when someone is in front of me or anything so that I can make it safer?
Furpan
12-24-2014, 01:50 AM
I'll just leave this here (ps. it'll use the spell after you've dealt wand damage, wand+spell comboer)
It doesn't turn anywhere, it just checks the distance from self, using it on Calva atm
local Spells = {
{words = 'exori gran vis', hppc = 20, range = 3, mana = 70, list = {'crystal spider'}},
{words = 'exori gran vis', hppc = 50, range = 3, mana = 70, list = {'water elemental'}},
{words = 'exori gran vis', hppc = 60, range = 3, mana = 70, list = {'ice golem'}},
{words = 'exori vis', hppc = 0, range = 3, mana = 20, list = {'crystal spider', 'ice golem', 'water elemental', 'quara mantassin scout'}}
}
local PvPRadiusSafety = 3
function SafeRadius(radius)
for n, c in Creature.iPlayers() do
if c:DistanceFromSelf() < radius then
return true
end
end
end
BattleMessageProxy.OnReceive('shooter', function(proxy, message)
local givendmg = string.match(message, "(.+) due to your attack.")
if (givendmg) then
local id = Self.TargetID()
if (id ~= 0) then
local mp = Self.Mana()
local c = Creature.New(id)
for i = 1, #Spells do
if table.contains(Spells[i].list, c:Name():lower()) then
if Self.CanCastSpell(Spells[i].words) and mp > Spells[i].mana and c:HealthPercent() >= Spells[i].hppc then
local isUnsafe = SafeRadius(PvPRadiusSafety)
if not (isUnsafe) and c:DistanceFromSelf() <= Spells[i].range then
if c:isTarget() then
Self.Cast(Spells[i].words, Spells[i].mana)
end
end
break
end
end
end
end
end
end)
Dagon
12-24-2014, 05:53 AM
Thank me later, Credits to original creator.
Also, now that I'm posting this. Would anyone like to tell me how to make this like the comment from above. "Lua Code:" Etc...
local safeStrike = true
registerEventListener(TIMER_TICK, "onTick")
function onTick()
if safeStrike then
local pos = Self.LookPos()
for i = CREATURES_LOW, CREATURES_HIGH do
local c = Creature.GetFromIndex(i)
if c:isAlive() and c:isPlayer() and (c:Position().x == pos.x and c:Position().y == pos.y and c:Position().z == pos.z) then
Self.Turn(math.abs(Self.LookDirection() + 1))
end
end
end
end
adamexistenz
02-10-2015, 05:52 PM
So nowadays i can i use the Gfb shooter in the magicshooter without getting skulled if its says Pvp Safe Enabled?
puccagaru
02-18-2015, 01:24 PM
I need this as well and can't find anything on the forums.
Anyone I can try to convince to make one?
EDIT: I'm using jxscripts' Water Elementals script and it just casts exori vis without it being safe (can't disable shooter and create my own in magic shooter, got skulled 1x while trying the script) - Is there any script that just turns my character when someone is in front of me or anything so that I can make it safer?
i search for it too. is there a scrpt for turn another side?
jollebollen
12-22-2015, 10:28 AM
I'll just leave this here (ps. it'll use the spell after you've dealt wand damage, wand+spell comboer)
It doesn't turn anywhere, it just checks the distance from self, using it on Calva atm
local Spells = {
{words = 'exori gran vis', hppc = 20, range = 3, mana = 70, list = {'crystal spider'}},
{words = 'exori gran vis', hppc = 50, range = 3, mana = 70, list = {'water elemental'}},
{words = 'exori gran vis', hppc = 60, range = 3, mana = 70, list = {'ice golem'}},
{words = 'exori vis', hppc = 0, range = 3, mana = 20, list = {'crystal spider', 'ice golem', 'water elemental', 'quara mantassin scout'}}
}
local PvPRadiusSafety = 3
function SafeRadius(radius)
for n, c in Creature.iPlayers() do
if c:DistanceFromSelf() < radius then
return true
end
end
end
BattleMessageProxy.OnReceive('shooter', function(proxy, message)
local givendmg = string.match(message, "(.+) due to your attack.")
if (givendmg) then
local id = Self.TargetID()
if (id ~= 0) then
local mp = Self.Mana()
local c = Creature.New(id)
for i = 1, #Spells do
if table.contains(Spells[i].list, c:Name():lower()) then
if Self.CanCastSpell(Spells[i].words) and mp > Spells[i].mana and c:HealthPercent() >= Spells[i].hppc then
local isUnsafe = SafeRadius(PvPRadiusSafety)
if not (isUnsafe) and c:DistanceFromSelf() <= Spells[i].range then
if c:isTarget() then
Self.Cast(Spells[i].words, Spells[i].mana)
end
end
break
end
end
end
end
end
end)
hello, nice script i use it everyday! it is possible to add a count like amount of mosnters to use the spell? thanks in advance,
jollebollen
12-28-2015, 02:21 AM
it is possible to add a count like amount of mosnters to use the spell? thanks in advance,
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.