Results 1 to 12 of 12

Thread: About the client

  1. #1
    Join Date
    Jun 2015
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default About the client

    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.

  2. #2
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    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}
    Scripting with ogLib

  3. #3
    Join Date
    Jun 2015
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by srlMW View Post
    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}
    Thanks for the reply! And no, I don't use SMART.

  4. #4
    Join Date
    Dec 2011
    Posts
    2,147
    Mentioned
    221 Post(s)
    Quoted
    1068 Post(s)

    Default

    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

  5. #5
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    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.
    Scripting with ogLib

  6. #6
    Join Date
    Jun 2015
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Well, I hope I can handle this all information Like I said I'm newbie, yesterday I made my first script. I've never been scripting before but that one looked so easy.

    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.

  7. #7
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    Quote Originally Posted by Wallenberg View Post
    Well, I hope I can handle this all information Like I said I'm newbie, yesterday I made my first script. I've never been scripting before but that one looked so easy.
    Nice work! If you want an easy way to correctly setup your script just follow these steps.
    -> enable formatter.sex in exstentions
    -> go to Parser
    -> click format script
    Scripting with ogLib

  8. #8
    Join Date
    Jun 2015
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by srlMW View Post
    Nice work! If you want an easy way to correctly setup your script just follow these steps.
    -> enable formatter.sex in exstentions
    -> go to Parser
    -> click format script
    Thanks! Also I got a error with your code. It says it cant find java.exe

  9. #9
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    Quote Originally Posted by Wallenberg View Post
    Thanks! Also I got a error with your code. It says it cant find java.exe
    Check out this thread, it will help you properly setup everything you need!
    Quote Originally Posted by Clarity View Post
    You can get started with setting up Simba and SRL here: https://villavu.com/forum/showthread.php?t=47714
    Scripting with ogLib

  10. #10
    Join Date
    Jun 2015
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by srlMW View Post
    Check out this thread, it will help you properly setup everything you need!
    I look out for that. I am thankful to y'all helpers!

  11. #11
    Join Date
    Jun 2015
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    I still dont get that, I have no damn clue what I'm doing

  12. #12
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    Quote Originally Posted by Wallenberg View Post
    I still dont get that, I have no damn clue what I'm doing
    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
    Scripting with ogLib

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •