View Full Version : Fast walker solution
desche188
01-11-2013, 05:17 PM
since map clicks are the fastest way around, would it be possible to have a new pathfinder option to have it map click and if it cant get to next waypoint it will walk over fire/furniture? just a suggestion to improve walker speed. dont hate
Raziol
01-11-2013, 07:15 PM
signed
desche188
01-14-2013, 07:44 PM
no one else would like this feature?
Infernal Bolt
01-14-2013, 07:47 PM
Considering I walk the same speed with arrowkeys and mapclicks, no I don't really need this feature.
desche188
01-14-2013, 08:11 PM
Considering I walk the same speed with arrowkeys and mapclicks, no I don't really need this feature.
its really needed for people with higher ping ;/
fdwsch
01-15-2013, 05:14 AM
hmm so the ping is making me walk slower? That would be one hell of a feature.
pixie_frigo
01-23-2013, 09:30 PM
hmm so the ping is making me walk slower? That would be one hell of a feature.
lol you don't get it xD
People with more lagg/ping walk a lot slower when they use the arrows instead of map clicking. So would be nicer if the bot used map clicking too and if it says "cant pass" it should try with the arrows and try again in a few seconds.
Signed.!
moshis
01-24-2013, 12:30 AM
signed
sucks being from australia :/
also would be amazing for something other then keys when following a low hp running away mob, i just can't catch them on my ping :(
thorekz
06-30-2013, 12:53 PM
cant this be done like...walk using mapclick but also be able to walk over furniture/fields with mapclicks?
Sycho
07-05-2013, 05:51 PM
signed
sucks being from australia :/
also would be amazing for something other then keys when following a low hp running away mob, i just can't catch them on my ping :(
yea mate it does suck lol
signed.
soul4soul
07-05-2013, 09:56 PM
signed
sucks being from australia :/
also would be amazing for something other then keys when following a low hp running away mob, i just can't catch them on my ping :(
depending on what your hunting you can set targeting to "do nothing" and turn on the follow target option in the tibia client.
Aka Puppets
07-10-2013, 10:57 AM
cant this be done like...walk using mapclick but also be able to walk over furniture/fields with mapclicks?
That's impossible, try to do it without bot, manually click trying to walk through fire or something. Tibia doesn't allow that.
shinchan
07-10-2013, 11:26 AM
Signed. My ping sucks in relation to all that. It would be amazing having it at mapclick speed and automatically switch to walk over fire/furniture if stuck.
thorekz
07-10-2013, 03:35 PM
That's impossible, try to do it without bot, manually click trying to walk through fire or something. Tibia doesn't allow that.
There was a way to do this way back, i mean when i was using NG bot. LoW somehow foudn a way to modify the client to make fires walkables and other fields.
Signed although my internet is so fast that it won't make a big difference. But it surely helps alot of ppl out there.
Abuse
07-15-2013, 10:39 PM
There was a way to do this way back, i mean when i was using NG bot. LoW somehow foudn a way to modify the client to make fires walkables and other fields.
You can do that right now, just need to open up Tibia dat files and change the characteristics of the fire field!
Or you used to be able to..
Syntax
07-16-2013, 01:12 AM
You can do that right now, just need to open up Tibia dat files and change the characteristics of the fire field!
Or you used to be able to..
You can, but obv it's detectable.
minebot
10-08-2013, 08:14 PM
yes, i need it 2, here ping goes to space xd
Ungoliant
10-08-2013, 09:14 PM
This would also help with invisible creatures, as the client will walk around / try another path if it can't move a certain way. The bot doesn't.
depending on what your hunting you can set targeting to "do nothing" and turn on the follow target option in the tibia client.
The issue with that method is that people will firebomb you / shoot fire walls etc and you will stop moving. =/
Milice
10-08-2013, 10:11 PM
That's impossible, try to do it without bot, manually click trying to walk through fire or something. Tibia doesn't allow that.
Actually, this would be possible by modding the dat file and remove the blocking part of the item. But if you are unlucky when tampering with shit it can cause debug.
Also the walking around and shit can be done easily with the correct script, IMO the bot is perfect but most scripts have missed the small details that may be very useful.
dinmamma
10-08-2013, 10:32 PM
You can, but obv it's detectable.
You think it's detectable?
I mean it would be a good way to detect a cheater, but would Cip rly do that? Would require the fieldwalking to send some info to the server.
sotos
10-08-2013, 10:38 PM
The fastest walk are Right Click!!
Try it and you'll see :)
Gahariet
10-08-2013, 11:02 PM
Considering I walk the same speed with arrowkeys and mapclicks, no I don't really need this feature.
What a selfish way of thinking.
Milice
10-08-2013, 11:32 PM
You can, but obv it's detectable.
Syntax, i am dissapoint. Tibia doesn't have any clientsided anti-cheat do they?><
Spectrus
10-09-2013, 02:26 AM
local pos = Self.Position()
local time = os.clock()
local stuck = false
Module.New('pathfinder_ifstuck', function()
if (Self.DistanceFromPosition(pos.x, pos.y, pos.z) > 0) then
if (os.difftime(os.clock(), time) > 30) and (stuck) then
loadsettings('PathfinderMapClick', 'Pathfinder')
stuck = false
end
pos = Self.Position()
time = os.clock()
elseif (os.difftime(os.clock(), time) > 30) and not (stuck) then
loadsettings('PathfinderStuck', 'Pathfinder')
time = os.clock()
stuck = true
end
end)
Syntax
10-09-2013, 04:16 AM
Syntax, i am dissapoint. Tibia doesn't have any clientsided anti-cheat do they?><
Here you go, be disappointed:
This is not possible. A mapclick sends data differently than a normal arrow key step would. Due to this, the server can detect the difference in mapclicks and arrow keys. Also, mapclicks never normally walk over fire/furniture, so if they end up doing so, the server can detect that you are botting.
Milice
10-09-2013, 04:41 AM
Here you go, be disappointed:
Well f**k me running. Didnd't think fo that. But then again it's serversided xD
ameradude
10-09-2013, 08:14 AM
depending on what your hunting you can set targeting to "do nothing" and turn on the follow target option in the tibia client.
Hmm i never thought of this, ill give it a try tommarrow. But are there any downsides to this? someone latter said something about ppl can throw fire on u & ur stuck?
local pos = Self.Position()
local time = os.clock()
local stuck = false
Module.New('pathfinder_ifstuck', function()
if (Self.DistanceFromPosition(pos.x, pos.y, pos.z) > 0) then
if (os.difftime(os.clock(), time) > 30) and (stuck) then
loadsettings('PathfinderMapClick', 'Pathfinder')
stuck = false
end
pos = Self.Position()
time = os.clock()
elseif (os.difftime(os.clock(), time) > 30) and not (stuck) then
loadsettings('PathfinderStuck', 'Pathfinder')
time = os.clock()
stuck = true
end
end)
so you run this as a lua file with any script and it will run everything as a map click until it gets stuck?
Spectrus
10-09-2013, 08:36 AM
You need to create two xbst files, one with pathfinder set for mapclicks, one with pathfinder set for walk on fire/furniture.
I see so the load settings lines are where I need to place the name of the 2 xbst files
ameradude
10-10-2013, 01:29 AM
The put targeting to Do nothing & use tibias follow atk for botting doesn't work. If its killing say a mutated human and a acid blob is far away itll start atking the blob & try to loot the human, so the follow atk will go off & just sit there.....Idk just annoying how my walker is slow as fuck, im almost positive it has to do with my shitty internet tho.
Kamoblindside77
10-29-2013, 08:16 PM
damn yea this would be handy, walker goes reallly slow down here in nz
thenick
11-05-2013, 10:54 PM
This can be fixed in Several ways.
1. Use a proxy tunneling service.
2. modify Tibia.dat to walk overfield.( I have done that once with a ms 450 and bug speed.. was HILARIOUS)
3.darkstar modify his pathfinder algorithm to in case it has fire and U MUST walk .The bot walk by arrowkey and comes back to mapclick.
5.darkstar modify his pathfinder algorithm to in case it has fire and U MUST walk . your char click 1sqm distance.(go ahead on inquistion clean the entire respaw. it gonna be shitloads of fire. now try to go back by clicking as fast as u can 1sqm distance infront of you.)
DotheC
11-06-2013, 09:35 AM
signed
sucks being from australia :/
also would be amazing for something other then keys when following a low hp running away mob, i just can't catch them on my ping :(
dude you live in an awesome country where almost everyone from germany wants to go some day... :/
vinitrix
11-14-2013, 09:25 PM
Signed
Exilded
11-20-2013, 09:27 AM
What about a script that pauses targeting after each kill for x seconds (enough time to loot corpse) and then resumes targeter, With tibias follow attack. Might have enough time to loot corpse and then move to next monster?
dinmamma
11-20-2013, 10:54 AM
What about a script that pauses targeting after each kill for x seconds (enough time to loot corpse) and then resumes targeter, With tibias follow attack. Might have enough time to loot corpse and then move to next monster?
http://i.imgur.com/x0mIR8Q.png
This is a temporary solution to keep auto-chase turned on even if you walk/click while chasing.
shortboy1990
11-20-2013, 02:15 PM
i agree this would be very useful.
another aussie here but i use battle ping and sit on about 160 ping so it doesnt affect me AS much but its still a great idea
Signed.
Jonny
Ropiderz
11-20-2013, 03:51 PM
Simply go to Windows Start > type "regedit" > HKEY_CURRENT_USER > Control Panel > Keyboard > KeyboardSpeed > Change to 100 or more and use only arrow keys, now you'll have lesser lags when walking with it. It doesn't modify Tibia client. Works on WinXP up to Win 8.1
Simply go to Windows Start > type "regedit" > HKEY_CURRENT_USER > Control Panel > Keyboard > KeyboardSpeed > Change to 100 or more and use only arrow keys, now you'll have lesser lags when walking with it. It doesn't modify Tibia client. Works on WinXP up to Win 8.1
http://technet.microsoft.com/en-us/library/cc978659.aspx
Alastorsz
11-20-2013, 05:30 PM
well mine is alredy at 31, and im stil walking faster with mapclicks than with arrow :S
like ppl said... there should be an option that detect with map click "there is no way" then turn on the arrow keys, untill the next waypoint is reached, then activate again the mapclick, is that possible DarkstaR ?
Ropiderz
11-20-2013, 06:35 PM
http://technet.microsoft.com/en-us/library/cc978659.aspx
It makes difference for me.
Exilded
11-21-2013, 06:07 AM
http://i.imgur.com/x0mIR8Q.png
This is a temporary solution to keep auto-chase turned on even if you walk/click while chasing.
That wasnt the point. People are saying that their ping is too high for using the keyboard arrows on the targeter to keep up with the monster and if you enable auto chase on tibia then you kill a monster, and either open it, dont loot it and move to the next monster. Even with the "loot bodies last" enabled you run of screen chasing other monsters and the looter doesnt loot the monster.
IF you had a script that paused targeter after each kill (Even with tibia autochase enabled) the bot would be able to loot the monster and then resume targeting after looting.
Does anyone understand what i mean or am i mumbling
Spectrus
11-21-2013, 06:15 AM
That wasnt the point. People are saying that their ping is too high for using the keyboard arrows on the targeter to keep up with the monster and if you enable auto chase on tibia then you kill a monster, and either open it, dont loot it and move to the next monster. Even with the "loot bodies last" enabled you run of screen chasing other monsters and the looter doesnt loot the monster.
IF you had a script that paused targeter after each kill (Even with tibia autochase enabled) the bot would be able to loot the monster and then resume targeting after looting.
Does anyone understand what i mean or am i mumbling
while (true) do
local targ = Creature.New(Self.TargetID())
if (targ:isAlive() and targ:isOnScreen()) then
repeat
wait(5)
until (not targ:isAlive())
Targeting.Stop()
wait(2000, 4000)
Targeting.Start()
end
end
Exilded
11-21-2013, 06:46 AM
perfect
Exilded
11-21-2013, 06:47 AM
Ok so sometimes it works sometimes it doesnt pause the targeter. are there any other variables that pause targeting??
nichjeremy
12-17-2013, 10:45 AM
Considering I walk the same speed with arrowkeys and mapclicks, no I don't really need this feature.
sounds like a load of crap never in tibia have i ever been able to walk as fast as my mapclicks. and xenobot deffintly moves slow. compared to elfbot. - just saying dont hate. and it would be nice to be able to actually switch stance to follow monsters. tired of a barbarian brutamer outrunning my level 195 ek when i dont have mapclicks on
nichjeremy
12-17-2013, 10:49 AM
The put targeting to Do nothing & use tibias follow atk for botting doesn't work. If its killing say a mutated human and a acid blob is far away itll start atking the blob & try to loot the human, so the follow atk will go off & just sit there.....Idk just annoying how my walker is slow as fuck, im almost positive it has to do with my shitty internet tho.
i have a great internet package and i was slow as shit too useing xenobot. its not you
Infernal Bolt
12-17-2013, 04:35 PM
i have a great internet package and i was slow as shit too useing xenobot. its not you
tried leatrix?
also nice double post.
jeggett
02-18-2017, 07:02 PM
Was there ever a resolution here?
mariorton
04-14-2017, 11:29 PM
might be nice
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.