I wan't to make my bot like.. you know.. like I can minimize the rsclient and do other stuff in my computer and at the same time it is botting. Is there any tutorial somewhere? And yes I'm new, made my first script YESTERDAY.
Printable View
I wan't to make my bot like.. you know.. like I can minimize the rsclient and do other stuff in my computer and at the same time it is botting. Is there any tutorial somewhere? And yes I'm new, made my first script YESTERDAY.
If you are using SMART you should be able to do that by default. Just plug this in to the top of your script if it already isn't.Simba Code:{$DEFINE SMART}
SMART exists for this very convenience :) It allows you to bot RuneScape while minimized, and is the default usage method for pretty much every script here.
If you are using any script posted as released, you are probably using SMART already.
You can get started with setting up Simba and SRL here: https://villavu.com/forum/showthread.php?t=47714
I find having a custom default canvas the best way to use Simba. This is just a basic one below.
Simba Code:program new;
{$DEFINE SMART} // comment this line out if you don't want to use SMART
{$i srl-6/srl.simba}
begin
clearDebug();
setupSRL();
end.
Well, I hope I can handle this all information :D Like I said I'm newbie, yesterday I made my first script. I've never been scripting before but that one looked so easy.
Quote:
Program Flaxbot;
Procedure KorjaFlax;
var
X,Y:Integer;
begin
if FindColorTolerance(X, Y, 1144845, 16, 26, 500, 320, 5) then
begin
movemouse(x, y);
wait(250);
ClickMouse(X, Y, mouse_Left)
end;
end;
procedure Repea;
var
numberOfWaits: Integer;
begin
repeat
Wait(3000);
Inc(numberOfWaits);
KorjaFlax;
until(numberOfWaits = 28);
end;
procedure WalkTobank
var
x, y:integer
begin
Movemouse(569,52);
Wait(1000);
Clickmouse(569,52, mouse_Left);
Wait(7300);
Movemouse(625,17);
Wait(200);
Clickmouse(625,17, mouse_Left);
Wait(5500);
Movemouse(641,18);
Wait(200);
Clickmouse(641,18, mouse_Left);
Wait(5500);
if FindColorTolerance(x, y, 3032660, 19, 20, 470, 320, 5) then
begin
movemouse(x, y);
wait(200);
clickmouse(x, y, mouse_Left);
wait(2000);
end;
end;
Procedure Panka
Begin
Movemouse(442,302);
Wait(1000);
Clickmouse(442,302, mouse_Left);
Wait(200);
end;
Procedure TagasiFlax
Begin
Movemouse(619,152);
Wait(200);
Clickmouse(619,152, mouse_Left);
Wait(5500);
Movemouse(631,151);
Wait(200);
Clickmouse(531,151, mouse_Left);
Wait(5500);
Movemouse(686,120);
Wait(200);
Clickmouse(686,120, mouse_Left);
Wait(7500);
end;
Begin
Repeat
TagasiFlax;
KorjaFlax;
Repea;
WalkTobank;
Panka;
Until(false)
end.
I still dont get that, I have no damn clue what I'm doing :D
Here have a read through these threads, they should get you setup pretty well!
SRL Frequently Asked Questions https://villavu.com/forum/showthread.php?p=851555
How to install/setup Simba for RS3 https://villavu.com/forum/showthread.php?t=47714
All-In-One RS3 and SRL6 Scripting Tutorial! https://villavu.com/forum/showthread.php?t=107757
How To Write Your First Script: Collecting and Banking Cabbages! https://villavu.com/forum/showthread.php?t=113433
Simplistic Beginners Guide To RS3 Scripting https://villavu.com/forum/showthread.php?t=109161
RuneScape 3 Help and Tutorials https://villavu.com/forum/forumdisplay.php?f=642
Old School RuneScape Help and Tutorials https://villavu.com/forum/forumdisplay.php?f=490