Results 1 to 12 of 12

Thread: Turning off bots

  1. #1
    Join Date
    Apr 2013
    Posts
    40
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default Turning off bots

    I sort of looked for a solution for this but didn't find any...I'm assuming this is a pretty easy question to answer and it may be answered somewhere but it's lost in the massive number of posts here.

    How can I stop a script from running? I hovered over the stop buttong and it says f2. I started a runescape script in a browser, so that it took over my mouse. Then it clicked on the chrome window, and pressing f2 did nothing to stop the script. I usually have to hit ctrl+alt+delete and either restart or log off, which is a real pain in the ass. Is there any good way to fix this?

    thanks

  2. #2
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    just alt+tab to simba screen and then press F2 swiftly

    Creds to DannyRS for this wonderful sig!

  3. #3
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Simba Code:
    Until IsKeyDown(113);

  4. #4
    Join Date
    Apr 2013
    Posts
    40
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by Officer Barbrady View Post
    Simba Code:
    Until IsKeyDown(113);
    where do I put that and what does that do

  5. #5
    Join Date
    Apr 2013
    Posts
    40
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by Sjoe View Post
    just alt+tab to simba screen and then press F2 swiftly
    thanks that should work

  6. #6
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by drub View Post
    where do I put that and what does that do
    at the end of the main loop, when you press F2 the script will stop

  7. #7
    Join Date
    Apr 2013
    Posts
    40
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by Officer Barbrady View Post
    Simba Code:
    Until IsKeyDown(113);
    oh yeah i asked you about this problem I'm having i posted it on a pretty old thread but i replied to you so i thought u'd get a notification... can u look at it?
    http://villavu.com/forum/showthread.php?t=99994

    and whats the main loop? i don't know coding

  8. #8
    Join Date
    Sep 2012
    Location
    Australia.
    Posts
    839
    Mentioned
    16 Post(s)
    Quoted
    225 Post(s)

    Default

    The main loop is the loop at the very bottom of your script. It will start with begin and end with end.

    Simba Code:
    program Example;

    Insert random procs/functions here.

    begin  //Start of main loop
      Do stuff;
    end.   //End of it.

  9. #9
    Join Date
    Apr 2013
    Posts
    40
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by Chris! View Post
    The main loop is the loop at the very bottom of your script. It will start with begin and end with end.

    Simba Code:
    program Example;

    Insert random procs/functions here.

    begin  //Start of main loop
      Do stuff;
    end.   //End of it.
    I'm using Autorangeguild v1.5 there are like at least 100 begin and ends its insane...i have no idea which one is the main one...

  10. #10
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by drub View Post
    I'm using Autorangeguild v1.5 there are like at least 100 begin and ends its insane...i have no idea which one is the main one...
    the very last.

    Creds to DannyRS for this wonderful sig!

  11. #11
    Join Date
    Sep 2012
    Location
    Australia.
    Posts
    839
    Mentioned
    16 Post(s)
    Quoted
    225 Post(s)

    Default

    Quote Originally Posted by drub View Post
    I'm using Autorangeguild v1.5 there are like at least 100 begin and ends its insane...i have no idea which one is the main one...
    Scroll down to the VERY BOTTOM of the script. It's the one with a period at the end of the end.

    Simba Code:
    end.

  12. #12
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    I personally use Ctrl+Alt+S.
    Doesn't matter what window you are on.

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
  •