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"
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
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?
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
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
Hi, new Realera server coming out on Friday. Can we expect an update/working version on Rifbot? Thanks in advance! Also, have you ever thought about an overlay window to create waypoints that always stays on top?
Would make my life so much easier making scripts, anyway keep it going
check email
ReplyDeleteHey, can you help me?
ReplyDeleteDo 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
Use build in walker -> label -> goto -> soul, then in wpts type action -> step
DeleteAnyways reading soul points required little patch i post soon.
patch out? v2.58?
Deletedownload 2.59
Deletehey, you have a script:
ReplyDeletedisable targeting when 0 spears, enable when spears is refilled? :)
it is hard to train paladins in trainer room
You can do it in walker here code:
Deletetrain
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
Hi,
Deleteit doesn't stop attacking when spear is empty. the walker is "stuck" in label train, when targetting activated
It works fine for me, make sure that spear id is valid on your server.
Deletewhen 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"
Deleteit seems like the walker gets ignored when targetting is enabled, and therefore it wont go to next line
DeleteOk i understood, here is lua script (i don't tested it fast coding) because targeting when keep focusing on attack stopping walker.
Deletehttps://github.com/Ascerr/Lua-Scripts/blob/master/On%20off%20targeting%20if%20item%20count.lua
Works great, you the man!
DeleteThanks alot!
any chance of an update for LikeRetro or tibiantis
ReplyDeleteLike retro is supported and bot works there, Tibiantis not.
DeleteMedivia updated and is no longer compatible
ReplyDeleteupdated bot.
DeleteRealera update is ok? Cavebot is not running
ReplyDeleteUpdate done.
DeleteOlders online got updated (V3), no longer compatible
ReplyDeleteUpdate your bot.
DeleteNostalther fun ?
ReplyDeleteHi Ascer,
ReplyDeleteI 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
Hello,
DeleteSure, send it via mail and i'll update script on Github with your name.
bot working in soe?
ReplyDeleteYeah it works.
Deleteis this serv compatibile? https://evotron.us/
ReplyDeletenope
Deletehow can I set the mf % with a cavebot waypoint? I want to mana up to 95% at a particular wpt
ReplyDeleteYou can use one line lua script:
Deletemf
lua: if Self.ManaPercent() < 95 then Self.UseItemWithMe(MANA_FLUID.id, 1200) Walker.Goto("mf") end
This comment has been removed by the author.
ReplyDeleteNope, this server won't be added due not compatible with my PC
ReplyDeleteWhat 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?
ReplyDeleteTry with thi lua:
Deletehttps://github.com/Ascerr/Lua-Scripts/blob/master/Restore%20Mana%20with%20conditions.lua
Works perfectly, thanks.
Delete1 quick one - what kinda script would it be if I want to SD target above 10% hp, and wand only after that?
Try with this lua:
Deletehttps://github.com/Ascerr/Lua-Scripts/blob/master/Runemax%20%26%20SpellMax.lua
Morning
ReplyDeleteWas 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
Hello,
DeleteScript on Github with ID 3049 for stealth ring works, just tested. Also you can use build in inside bot Tools section -> AutoRing
This comment has been removed by the author.
ReplyDeleteI 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.
DeleteYou need to proper copy and paste code from Github to run script.
DeleteAbout exori use magic shooter in cavebot secion for this:
Target spell -> exori con -> min mana: 500
Are there functions to show things on the HUD like a magic wall timer or other things?
ReplyDeleteThere is no HUD options in Rifbot.
Deleterifbot is the best but need (HUD like a magic wall timer)
ReplyDeleteHUD required direct hook into game lua scripts, i try avoid it, easy detectable.
DeleteHi, new Realera server coming out on Friday. Can we expect an update/working version on Rifbot? Thanks in advance! Also, have you ever thought about an overlay window to create waypoints that always stays on top?
ReplyDeleteWould make my life so much easier making scripts, anyway keep it going
Hello,
DeleteRifbot is up to date for Realera. Check new shortkey: SHOWBOT 1, it allows to show window bot always on top