Rifbot Realera 8.0 Revalia

 


Hello,

Rifbot is up to date for new Realera 8.0 server Revalia, make sure you using bot v2.58 released 21:25.

41 comments:

  1. Hey, can you help me?
    Do you have a "script" that enables walker to go south?
    when soul =0 , enable walker to go south.

    The positions in trainers is different every time

    ReplyDelete
    Replies
    1. Use build in walker -> label -> goto -> soul, then in wpts type action -> step
      Anyways reading soul points required little patch i post soon.

      Delete
  2. hey, you have a script:
    disable targeting when 0 spears, enable when spears is refilled? :)
    it is hard to train paladins in trainer room

    ReplyDelete
    Replies
    1. You can do it in walker here code:

      train
      wait: 1000
      lua: if not Targeting.isEnabled() then Targeting.Enabled(true) end
      goto: train, item(3277) >= 1
      state: targeting(off)
      node: 32444, 34344, 7
      wait: 999999

      Delete
    2. Hi,
      it doesn't stop attacking when spear is empty. the walker is "stuck" in label train, when targetting activated

      Delete
    3. It works fine for me, make sure that spear id is valid on your server.

      Delete
    4. when its attacking it seems like the walker doesnt go to next line, it keeps focusing on targeting instead of walker. the walker keeps on staying at "train"

      Delete
    5. it seems like the walker gets ignored when targetting is enabled, and therefore it wont go to next line

      Delete
    6. Ok i understood, here is lua script (i don't tested it fast coding) because targeting when keep focusing on attack stopping walker.
      https://github.com/Ascerr/Lua-Scripts/blob/master/On%20off%20targeting%20if%20item%20count.lua

      Delete
    7. Works great, you the man!
      Thanks alot!

      Delete
  3. any chance of an update for LikeRetro or tibiantis

    ReplyDelete
    Replies
    1. Like retro is supported and bot works there, Tibiantis not.

      Delete
  4. Medivia updated and is no longer compatible

    ReplyDelete
  5. Realera update is ok? Cavebot is not running

    ReplyDelete
  6. Olders online got updated (V3), no longer compatible

    ReplyDelete
  7. Hi Ascer,

    I have improved a little one of your scripts to make it more generic so it can be used for many purposes appart of sailing and buy blessings, let's say it is like a OnLabelAction where on the cavebot you can give and order, separated by a semi colon ";" and then the parameters to that function in case of sailing it woulds be sail;edron->thais

    added a couple of functions to split string and find values inside of arrays so you can split multiple parameters and having other options or maybe envelope all the OnLabel scripts in a global one.

    Is there a way where I can send it to you so you can update it in your github of lua scripts?

    Regards

    ReplyDelete
    Replies
    1. Hello,

      Sure, send it via mail and i'll update script on Github with your name.

      Delete
  8. is this serv compatibile? https://evotron.us/

    ReplyDelete
  9. how can I set the mf % with a cavebot waypoint? I want to mana up to 95% at a particular wpt

    ReplyDelete
    Replies
    1. You can use one line lua script:

      mf
      lua: if Self.ManaPercent() < 95 then Self.UseItemWithMe(MANA_FLUID.id, 1200) Walker.Goto("mf") end

      Delete
  10. This comment has been removed by the author.

    ReplyDelete
  11. Nope, this server won't be added due not compatible with my PC

    ReplyDelete
  12. What would a lua script to mana up to 90% if not killing a monster, and set to 30% if killing (i.e. so not using mf while trying to sd monster) be?

    ReplyDelete
    Replies
    1. Try with thi lua:
      https://github.com/Ascerr/Lua-Scripts/blob/master/Restore%20Mana%20with%20conditions.lua

      Delete
    2. Works perfectly, thanks.
      1 quick one - what kinda script would it be if I want to SD target above 10% hp, and wand only after that?

      Delete
    3. Try with this lua:
      https://github.com/Ascerr/Lua-Scripts/blob/master/Runemax%20%26%20SpellMax.lua

      Delete
  13. Morning

    Was scrollin github;s scripts ,there aint anything for auto stealth ring,

    i tried replace ID from auto ring script ,but doesnt work
    do i miss something over here?

    --[[
    Script Name: Auto Ring
    Description: Equip ring when ring_slot is empty e.g. refil life ring to speed up mana regen
    Author: Ascer - example
    ]]

    local RINGID = 3049 -- life ring (not used)
    local MAIN_DELAY = {700, 2000} -- random delay reading loop. You can increase it for personal usage.

    -- DON'T EDIT BELOW THIS LINE

    Module.New("Auto Ring", function (mod)
    if Self.isConnected() then -- check for connection to game
    local slot = Self.Ring()
    if slot.id <= 0 then
    Self.EquipItem(SLOT_RING, RINGID, 1)
    end
    end
    mod:Delay(MAIN_DELAY[1], MAIN_DELAY[2])
    end

    thanks in advance for help

    ReplyDelete
    Replies
    1. Hello,

      Script on Github with ID 3049 for stealth ring works, just tested. Also you can use build in inside bot Tools section -> AutoRing

      Delete
  14. This comment has been removed by the author.

    ReplyDelete
    Replies
    1. I also struggle to make scrpit to cast exori con when mana above 500. Im newbie in this kind of stuff, if anyone could help i will be greatful.

      Delete
    2. You need to proper copy and paste code from Github to run script.
      About exori use magic shooter in cavebot secion for this:
      Target spell -> exori con -> min mana: 500

      Delete