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?
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?
is there a siply script that the walker turns away from people?
Startet to play 1998/99 [Antica ofc]
Nova
Scool
Askara
Aurora
Morta -> NOW
how the hell can UE be safe if someone can sprint onto your screen? xD
How about turning on safe mode ?
@edit nvm i didnt read it carefully ;P
@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?
Last edited by ljn; 12-22-2014 at 11:26 PM.
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 =)
Startet to play 1998/99 [Antica ofc]
Nova
Scool
Askara
Aurora
Morta -> NOW
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?
Last edited by Iko; 12-24-2014 at 01:52 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
lua code: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)