XenoBot Forums - Powered by vBulletin

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Is Exori/Ue Spells Safe?

  1. #1

    Join Date
    Dec 2012
    Posts
    8
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Question Is Exori/Ue Spells Safe?

    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?

  2. #2
    Curunir's Avatar
    Join Date
    Feb 2013
    Location
    Austria
    Posts
    75
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  3. #3
    Roarz's Avatar
    Join Date
    Oct 2012
    Location
    New Zealand
    Posts
    114
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    how the hell can UE be safe if someone can sprint onto your screen? xD

  4. #4
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)
    Quote Originally Posted by Roarz View Post
    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.

  5. #5

    Join Date
    Dec 2011
    Posts
    66
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    How about turning on safe mode ?
    @edit nvm i didnt read it carefully ;P

  6. #6

    Join Date
    Jun 2014
    Posts
    27
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    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?
    Last edited by ljn; 12-22-2014 at 11:26 PM.

  7. #7
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)
    Area spells are 2 SQM padding. There's nothing for Exori Vis, though. Need to tweak that.

  8. #8
    Curunir's Avatar
    Join Date
    Feb 2013
    Location
    Austria
    Posts
    75
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    ?

    Quote Originally Posted by DarkstaR View Post
    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 =)
    Startet to play 1998/99 [Antica ofc]
    Nova
    Scool
    Askara
    Aurora
    Morta -> NOW

  9. #9
    Iko's Avatar
    Join Date
    Mar 2012
    Location
    The Netherlands
    Posts
    148
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Curunir View Post
    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?
    Last edited by Iko; 12-24-2014 at 01:52 AM.

  10. #10
    King Furpan Furpan's Avatar
    Join Date
    Jul 2012
    Location
    Thais
    Posts
    984
    Mentioned
    267 Post(s)
    Tagged
    3 Thread(s)
    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)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •