[Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

Discussion in 'RuneScape 3 Cheating' started by poopy2177, Feb 26, 2012.

[Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba
  1. Unread #1 - Feb 26, 2012 at 5:25 PM
  2. poopy2177
    Joined:
    Jan 17, 2009
    Posts:
    1,359
    Referrals:
    1
    Sythe Gold:
    0

    poopy2177 Guru
    $5 USD Donor New

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    Hello so everyone wants to bot for more than just a lousy 6 hours. I'm here to tell you how. o_O
    IF YOU USE THIS: YOU HAVE TO HAVE EPIC BOT OPEN AND VISIBLE WITH SIMBA OPEN AND NOTHING ELSE OPEN
    example of what I mean: http://i39.tinypic.com/dxy1xg.jpg
    So basically only useful if you don't use a vps or whatever and you are sleeping/at school/at work or somthing
    Requirments:
    Simba
    download from here: http://villavu.com/forum/showthread.php?t=68981
    knowing how to copy and paste
    *Hint for below: copy and paste code into simba (=

    Okay so you downloaded simba, here's what you do now:
    1
    [​IMG]
    2
    [​IMG]
    3
    [​IMG]
    now SRL will install:::::::
    Okay now we are done with the hard part, Now lets make our code for simba to open up our bot after 6 hours!

    Step 1: So heres what you have
    Code:
    program SixHourer; //name doesn't matter
    {$i srl/srl.simba}
    
    begin  //the begining 
      SetUpSRL; //Need to add
    end.  //the end
    step 2: Code we need to know
    [​IMG]
    Notice^ how do we use this:
    Mouse:(clicks the mouse)
    Code:
    Mouse(474,221,0,0,mouse_Left); //try putting that after setupsrl ignore the ,0,0 also mouse_Left clicks left moue button
    ya see now the other thing is this:
    Wait:(waits in ms)
    Code:
    Wait(21600000); //This Waits 6 hours in ms lol use a calc if ya want
    and finally:
    TypeSend:(types human like)
    Code:
    TypeSend('username'); //types human like
    TypeSend('Password');
    Okay so now your like WTF! I don't know what to do with this!
    Here is what ya do:
    [​IMG]
    Now I want to click close after 6 hours so so far my code looks like this:
    Code:
    program sixhourer;
    {$i srl/srl.simba}
    
    begin
    SetUpSRL;
      Wait(21600000);//waits 6 hours
      Mouse(1017,39,0,0,mouse_Left);//clicks where I want
      Wait(500);//Waites half a second IMPORTANT
    end.
    Okay now we need to click the are you sure you want to click the are ya sure
    [​IMG]
    Now We have:
    Code:
    program sixhourer;
    {$i srl/srl.simba}
    
    begin
    SetUpSRL;
      Wait(21600000);//waits 6 hours
      Mouse(1017,39,0,0,mouse_Left);//clicks where I want
      Wait(500);//Waites half a second IMPORTANT
      Mouse(611,435,0,0,mouse_Left); //clicks ok
      Wait(1000); IMPORTANT INCASE OF LAG 1
    end.
    Okay so now I think you get the hang of it: Now we want a double click of your epic bot app from your desktop so heres what we do:
    Code:
    program sixhourer;
    {$i srl/srl.simba}
    
    begin
    SetUpSRL;
      Wait(21600000);//waits 6 hours
      Mouse(1017,39,0,0,mouse_Left);//clicks where I want
      Wait(500);//Waites half a second IMPORTANT
      Mouse(611,435,0,0,mouse_Left); //clicks ok
      Wait(1000); //IMPORTANT INCASE OF LAG 1 sec
      Mouse(442,123,0,0,mouse_Left);//<-- yours will be in dif place!!
      Wait(100);// waits one tenth of a second
      Mouse(442,123,0,0,mouse_Left);// clicks in the same place again
    end.
    Now We need a HUGE WAIT incase it takes forevor to load the bot then we need to click username:, then password:, then type our username and pass,then click login,then click login again. SHOOF heres what we may have:
    Code:
    program sixhourer;
    {$i srl/srl.simba}
    
    begin
    SetUpSRL;
      Wait(21600000);//waits 6 hours
      Mouse(1017,39,0,0,mouse_Left);//clicks where I want
      Wait(500);//Waites half a second IMPORTANT
      Mouse(611,435,0,0,mouse_Left); //clicks ok
      Wait(1000); //IMPORTANT INCASE OF LAG 1 sec
      Mouse(442,123,0,0,mouse_Left);//<-- yours will be in dif place!!
      Wait(100);// waits one tenth of a second
      Mouse(442,123,0,0,mouse_Left);// clicks in the same place again
      Wait(40000); //waits 40 seconds for rs to load
      Mouse(615,317,0,0,mouse_Left); //clicks the log in box yours may be dif
      TypeSend('[email protected]'); //Types your username
      Wait(100); //little human wait
      Mouse(597,369,0,0,mouse_Left);//Clicks Pass Box yours may be dif
      TypeSend('EditThisWithPass'); //your pass
      Mouse(634,412,0,0,mouse_Left); //clicks login yours may be dif
      Wait(1200);//waiting for second log in screen
      Mouse(616,594,0,0,mouse_Left); //clicks log in
    end.
    MMMkay thats really the hardest parts all done now you just need it to click the play button, script you want to run, settings, and click start script.
    Heres the rest of my code:
    Code:
    program sixhourer;
    {$i srl/srl.simba}
    
    begin
    SetUpSRL;
      Wait(21600000);//waits 6 hours
      Mouse(1017,39,0,0,mouse_Left);//clicks where I want
      Wait(500);//Waites half a second IMPORTANT
      Mouse(611,435,0,0,mouse_Left); //clicks ok
      Wait(1000); //IMPORTANT INCASE OF LAG 1 sec
      Mouse(442,123,0,0,mouse_Left);//<-- yours will be in dif place!!
      Wait(100);// waits one tenth of a second
      Mouse(442,123,0,0,mouse_Left);// clicks in the same place again
      Wait(40000); //waits 40 seconds for rs to load
      Mouse(615,317,0,0,mouse_Left); //clicks the log in box yours may be dif
      TypeSend('[email protected]'); //Types your username
      Wait(100); //little human wait
      Mouse(597,369,0,0,mouse_Left);//Clicks Pass Box yours may be dif
      TypeSend('EditThisWithPass'); //your pass
      Mouse(634,412,0,0,mouse_Left); //clicks login yours may be dif
      Wait(1200);//waiting for second log in screen
      Mouse(616,594,0,0,mouse_Left); //clicks log in
      Wait(5500);//Waits for log in
      Mouse(409,83,0,0,mouse_Left); //Clicks play button
      Wait(5500); //waiting for scripts to open
      Mouse(443,365,0,0,mouse_Left); //clicks fishing script in my case
      Wait(5000);//waits for lag
      Mouse(837,557,0,0,mouse_Left); //clicks start
      Wait(5000); //lag wait
      Mouse(193,152,0,0,mouse_Left);//clicks karajama in my case
      Wait(5000); //lag wait
      Mouse(138,240,0,0,mouse_Left); //clicks swordies in my case
      Wait(5000);//lag wait
      Mouse(199,225,0,0,mouse_Left); //clicks start script
      wait(400);//dont need we are done!
    end.
    Hope you liked this and it helped you!:D

    IMPORTANT: DONT MOVE EPIC BOT LIKE AT ALL! OR RARE BOT or whatever you are using this for.

    Press play on simba right when you start your epic bot script...then move simba off to the side.

    If you have any questions post here
     
  3. Unread #2 - Feb 26, 2012 at 5:33 PM
  4. YoHoJo
    Joined:
    Sep 4, 2005
    Posts:
    6,379
    Referrals:
    15
    Sythe Gold:
    2,625
    St. Patrick's Day 2013 Christmas 2015 Halloween 2014 Lawrence Easter 2013 Heidy Halloween 2013

    YoHoJo Hero
    Scar Programmers $25 USD Donor New

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    Lol very funny, a bit of a messy guide for those who don't know simba etc but it does work.
    Only problem is that in order for this to work, the user must leave their Epicbot unimimized and open, which most people won't like.
     
  5. Unread #3 - Feb 26, 2012 at 5:58 PM
  6. poopy2177
    Joined:
    Jan 17, 2009
    Posts:
    1,359
    Referrals:
    1
    Sythe Gold:
    0

    poopy2177 Guru
    $5 USD Donor New

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    That's true it would be easier if there was simba tags here lol, but ya I guess it's for those at school or asleep or somthing
     
  7. Unread #4 - Feb 26, 2012 at 7:23 PM
  8. lol12345
    Joined:
    Apr 30, 2007
    Posts:
    585
    Referrals:
    1
    Sythe Gold:
    0

    lol12345 Forum Addict

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    This is awesome, thanks for sharing :)
     
  9. Unread #5 - Feb 26, 2012 at 10:20 PM
  10. poopy2177
    Joined:
    Jan 17, 2009
    Posts:
    1,359
    Referrals:
    1
    Sythe Gold:
    0

    poopy2177 Guru
    $5 USD Donor New

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    Np! If ya got any questions just feel free to ask
     
  11. Unread #6 - Feb 26, 2012 at 11:11 PM
  12. Reeser
    Joined:
    May 23, 2010
    Posts:
    740
    Referrals:
    0
    Sythe Gold:
    7

    Reeser Apprentice

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    Does simba automatically fix the 6 hour limit issue?
    Or do I have to put in a script or something.
    I'm currently running a script in simba, and it's at 4 hours.
    I just want to know if I need to restart it after 6, and how I can get around that.
     
  13. Unread #7 - Feb 26, 2012 at 11:38 PM
  14. YoHoJo
    Joined:
    Sep 4, 2005
    Posts:
    6,379
    Referrals:
    15
    Sythe Gold:
    2,625
    St. Patrick's Day 2013 Christmas 2015 Halloween 2014 Lawrence Easter 2013 Heidy Halloween 2013

    YoHoJo Hero
    Scar Programmers $25 USD Donor New

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    You can download a mod/tweak/hack/fix for simba that handles the 6 hour update so you can go as long as you wish.
    http://villavu.com/forum/showthread.php?t=67864
     
  15. Unread #8 - Jul 10, 2012 at 6:29 PM
  16. xjoemanx
    Joined:
    Jun 26, 2012
    Posts:
    16
    Referrals:
    0
    Sythe Gold:
    0

    xjoemanx Newcomer

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    hey dud i need help with this add my skype please? joeman2856
     
  17. Unread #9 - Jul 10, 2012 at 7:01 PM
  18. M_A_I_N_FTW
    Joined:
    Dec 22, 2007
    Posts:
    1,336
    Referrals:
    1
    Sythe Gold:
    0

    M_A_I_N_FTW Guru

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

  19. Unread #10 - Jul 10, 2012 at 7:17 PM
  20. darkorb223
    Joined:
    Mar 31, 2012
    Posts:
    1,107
    Referrals:
    0
    Sythe Gold:
    0

    darkorb223 Guru
    Banned

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    image 2 isn't showing for me is that just me or?
     
  21. Unread #11 - Jul 10, 2012 at 9:03 PM
  22. Aonor
    Joined:
    Mar 4, 2012
    Posts:
    1,438
    Referrals:
    0
    Sythe Gold:
    0

    Aonor Guru
    Banned

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    Exactly why i might try on a VM. guessing it will work with PB as well! will just have to go through the setup of the script aswell as the closing and logging in again and what not, which might cause a bit of trouble, but we'll see how it goes!

    Thanks for the guide!
     
  23. Unread #12 - Jul 10, 2012 at 9:35 PM
  24. woodcut ox
    Joined:
    Oct 3, 2011
    Posts:
    1,315
    Referrals:
    1
    Sythe Gold:
    5
    Extreme Homosex Halloween 2013

    woodcut ox Guru
    $5 USD Donor New

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    Wow, a very useful guide for long proggies now im 95 rc :p
    Thanks a million :)
     
  25. Unread #13 - Jul 10, 2012 at 10:49 PM
  26. Hostblapstat
    Joined:
    Feb 21, 2012
    Posts:
    1,847
    Referrals:
    0
    Sythe Gold:
    179

    Hostblapstat Guru
    $5 USD Donor New

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba


    Image 2 doesnt show for me either, im waiting for him to fix it, then I will use this guide.
     
  27. Unread #14 - Jul 10, 2012 at 10:55 PM
  28. YoHoJo
    Joined:
    Sep 4, 2005
    Posts:
    6,379
    Referrals:
    15
    Sythe Gold:
    2,625
    St. Patrick's Day 2013 Christmas 2015 Halloween 2014 Lawrence Easter 2013 Heidy Halloween 2013

    YoHoJo Hero
    Scar Programmers $25 USD Donor New

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

  29. Unread #15 - Jul 11, 2012 at 1:27 AM
  30. Fayded
    Joined:
    Jun 22, 2011
    Posts:
    792
    Referrals:
    0
    Sythe Gold:
    0

    Fayded Apprentice

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    Great Guide. SW Botting to 99 hp/def now. <3 Thanks
     
  31. Unread #16 - Jul 11, 2012 at 4:34 AM
  32. BmwOwner911
    Joined:
    Feb 29, 2012
    Posts:
    223
    Referrals:
    0
    Sythe Gold:
    0

    BmwOwner911 Active Member

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    I prefer smart manager much more simple to use.
     
  33. Unread #17 - Jul 11, 2012 at 4:46 AM
  34. YoHoJo
    Joined:
    Sep 4, 2005
    Posts:
    6,379
    Referrals:
    15
    Sythe Gold:
    2,625
    St. Patrick's Day 2013 Christmas 2015 Halloween 2014 Lawrence Easter 2013 Heidy Halloween 2013

    YoHoJo Hero
    Scar Programmers $25 USD Donor New

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    This tutorial is how to use Simba to write a macro to resat Java bots after 6 hours. Not for Simba/SMART itself. ;]
     
  35. Unread #18 - Jul 17, 2012 at 9:02 AM
  36. adamk016
    Joined:
    Jul 17, 2012
    Posts:
    4
    Referrals:
    0
    Sythe Gold:
    0

    adamk016 Newcomer

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    please someone help me fast!!! i got this message

    [Error] (8:27): Invalid number of parameters at line 7
    Compiling failed.

    this is my text:
    Mouse(1058,7,mouse_Left);

    what is wrong?
     
  37. Unread #19 - Jul 17, 2012 at 12:03 PM
  38. YoHoJo
    Joined:
    Sep 4, 2005
    Posts:
    6,379
    Referrals:
    15
    Sythe Gold:
    2,625
    St. Patrick's Day 2013 Christmas 2015 Halloween 2014 Lawrence Easter 2013 Heidy Halloween 2013

    YoHoJo Hero
    Scar Programmers $25 USD Donor New

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    After mouseleft put ,3 ,3)
     
  39. Unread #20 - Jul 17, 2012 at 4:33 PM
  40. adamk016
    Joined:
    Jul 17, 2012
    Posts:
    4
    Referrals:
    0
    Sythe Gold:
    0

    adamk016 Newcomer

    [Tutorial] How to get past 6 hour limit for Epicbot/Rarebot, using Simba

    what is the ,3,3 for?
    space betweeh ,3-,3?
     
< Whats the most heavily botted item(s) In Runescape atm? | Best Farming Bot? >

Users viewing this thread
1 guest


 
 
Adblock breaks this site