.

Originally Posted by
IfOnlyYouKnew
...
Last bot i used was Cetera bot, which was about 3-4 years ago. Before that i used Le bot 8.4 which was even longer time ago. They both no longer work.
i checked the code, when you walk from room to room, and you dont reach the destination, it waits 15 seconds. i kinda made plugin to fix it, it still needs some polishing.
Code:
public async Task Execute(IBotEngine instance)
{
float x = this.PosX;
float y = this.PosY;
string CellName = Player.Cell;
string PadName = Player.Pad;
Player.WalkToPoint(x.ToString(), y.ToString());
await Task.Delay(500);
for (int i = 0; i < 50; i++)
{
if ((CellName != Player.Cell || PadName != Player.Pad) || (Player.Position[0] == x && Player.Position[1] == y))
{
break;
}
await Task.Delay(100);
}
}
In short what its intended to do, stores the X and Y position, tells u to go there, after 0.5 seconds starts checking if you are still in same cell or if youve reached the destination. It runs that check for 5 seconds, 50 times. If it fails, the task ends, and you proceed to next task.
Ill see about adding some random variation or something, to fix the problem where in few cases, it skips the walking. (thats why i have added 0.5 wait time before checks)
It happens kinda smoothly, walks from room to room, without much time wasted. A good way to grind pvp trophies.
Also. maybe you could make more stuff public, not private? So plugin can change or add things to the bot, overwrite some functions etc. i wanted to add a new button in the bot window which wouldnt wait as long for the walking, but it has to be a new window atm.
Also, about them knowing im botting, maybe they check the client? Cause using artix launcher i was botting as well, but doing it with auto clicker