Results 1 to 5 of 5

Thread: low lvl alcher beta stage

  1. #1
    Join Date
    Dec 2011
    Posts
    571
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Talking low lvl alcher beta stage

    hey guys once more with another alcher thats a little better than my first one
    1.make sure you start in your magic tab and have your alch item in the first inventory spot it has no fail safes but will stop if you move the mouse but i think it has a little color finding but i still need to work on it it did 200 alchs for me flawlessly
    2.
    please tell me if my color finding is bad or wrong and plz tell me were i made a mistake
    idk if im allowed to post here btw this is my second script lol
    Code:
    program proalchbeta;
    {$i SRL\SRL.simba}
    var
      x, y: Integer;
      begin
     //enjoy
    
      ActivateClient;
      SetupSRL;
    Mouse(573, 259, 4, 4, true); //Will move and left-click on (x,y) with a randomness of 1 pixel
    if(FindColor(x, y, 176668, 0, 0, 500, 200))then
    Mouse(573, 281, 4, 4, true); //Will move and left-click on (x,y) with a randomness of 1 pixel
    Wait(1000);  //waits 3500 milliseconds (3.5 seconds)
    ClickMouse2(true);
    clickmouse2(true);
     if(FindColor(x, y, 176668, 0, 0, 500, 200))then
    Mouse(573, 259, 4, 4, true);
    Clickmouse2(true)
    Mouse(573, 259, 4, 4, true); //Will move and left-click on (x,y) with a randomness of 1 pixel
    if(FindColor(x, y, 176668, 0, 0, 500, 200))then
    Mouse(573, 281, 4, 4, true); //Will move and left-click on (x,y) with a randomness of 1 pixel
    Wait(2000);  //waits 3500 milliseconds (3.5 seconds)
    ClickMouse2(true);
    clickmouse2(true);
     wait(randomrange(350,780));
    clickmouse2(true);
     if(FindColor(x, y, 176668, 0, 0, 500, 200))then
    Mouse(573, 259, 4, 4, true);
    Clickmouse2(true)
        repeat
    clickmouse2(true);
      wait(randomrange(177,220));
      wait(randomrange(200,600));
      until (Not loggedIn);
    
    end.
    created my mr[s]

  2. #2
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Give me a few minutes to comment on your script to help you learn. I'll edit this post.

    Simba Code:
    program proalchbeta;
    {$i SRL\SRL.simba}

    var
      x, y: Integer;   // all mouse movements have a randomness of 4 px

    begin
      ActivateClient;  
      SetupSRL;
      Mouse(573, 259, 4, 4, true);                      // moves the mouse to a static location
      if(FindColor(x, y, 176668, 0, 0, 500, 200))then
        Mouse(x, y, 4, 4, true);                        // moves mouse to where it found the color Point (x, y) from above and left clicks
      Wait(1000);                                       // static wait of 1 second
      ClickMouse2(true);
      clickmouse2(true);                                // clicks the mouse left twice
      if(FindColor(x, y, 176668, 0, 0, 500, 200))then
        Mouse(x, y, 4, 4, true);                     // moves mouse to the Point (x, y) and left clicks
      Clickmouse2(true)
      Mouse(573, 259, 4, 4, true);                      // moves the mouse to a static location
      if(FindColor(x, y, 176668, 0, 0, 500, 200))then
        Mouse(x, y, 4, 4, true);                          // moves the mouse to the Point (x, y) and left clicks
      Wait(2000);                                         // static wait of 2 seconds
      ClickMouse2(true);
      clickmouse2(true);                                  // clicks the mouse left twice
      wait(randomrange(350,780));                          // randomized wait, good job!
      clickmouse2(true);
      if(FindColor(x, y, 176668, 0, 0, 500, 200))then
        Mouse(x, y, 4, 4, true);                            // again, moves the mouse to the Point (x, y) and left clicks
      Clickmouse2(true);                                     // left clicks the mouse
      repeat
        clickmouse2(true);                                     // left clicks the mouse
        wait(randomrange(177,220));
        wait(randomrange(200,600));                             // waits between 377 - 820 ms
      until (Not loggedIn);                                       // until you're logged out
    end.

    See some things you don't need?

    Here's how I'd do it..

    Simba Code:
    program proalchbeta;
    {$i SRL\SRL.simba}

    var
      x, y: Integer;

    begin
      ActivateClient;
      SetupSRL;
      repeat
        if (WaitFindColor(x, y, 176668, MIX1, MIY1, MIX2, MIY2, 5, 1000) then
        begin                                                         // if it finds the color in the inventory coordinates with a tolerance of 5
          Mouse(x, y, 4, 4, mouse_left);                               // in a max time of 1 sec, then move the mouse to that location and
          Wait(1500 + RandomRange(-500, 500));                         // left click. Wait 1-2 sec then click the mouse again (on the item)
          ClickMouse2(True);
        end;
      until not LoggedIn;                                              //until you are logged out
    end.
    Last edited by tehq; 08-11-2012 at 02:14 AM.

  3. #3
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

  4. #4
    Join Date
    Dec 2011
    Posts
    571
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by tehq View Post
    Give me a few minutes to comment on your script to help you learn. I'll edit this post.

    Simba Code:
    program proalchbeta;
    {$i SRL\SRL.simba}

    var
      x, y: Integer;   // all mouse movements have a randomness of 4 px

    begin
      ActivateClient;  
      SetupSRL;
      Mouse(573, 259, 4, 4, true);                      // moves the mouse to a static location
      if(FindColor(x, y, 176668, 0, 0, 500, 200))then
        Mouse(x, y, 4, 4, true);                        // moves mouse to where it found the color Point (x, y) from above and left clicks
      Wait(1000);                                       // static wait of 1 second
      ClickMouse2(true);
      clickmouse2(true);                                // clicks the mouse left twice
      if(FindColor(x, y, 176668, 0, 0, 500, 200))then
        Mouse(x, y, 4, 4, true);                     // moves mouse to the Point (x, y) and left clicks
      Clickmouse2(true)
      Mouse(573, 259, 4, 4, true);                      // moves the mouse to a static location
      if(FindColor(x, y, 176668, 0, 0, 500, 200))then
        Mouse(x, y, 4, 4, true);                          // moves the mouse to the Point (x, y) and left clicks
      Wait(2000);                                         // static wait of 2 seconds
      ClickMouse2(true);
      clickmouse2(true);                                  // clicks the mouse left twice
      wait(randomrange(350,780));                          // randomized wait, good job!
      clickmouse2(true);
      if(FindColor(x, y, 176668, 0, 0, 500, 200))then
        Mouse(x, y, 4, 4, true);                            // again, moves the mouse to the Point (x, y) and left clicks
      Clickmouse2(true);                                     // left clicks the mouse
      repeat
        clickmouse2(true);                                     // left clicks the mouse
        wait(randomrange(177,220));
        wait(randomrange(200,600));                             // waits between 377 - 820 ms
      until (Not loggedIn);                                       // until you're logged out
    end.

    See some things you don't need?

    Here's how I'd do it..

    Simba Code:
    program proalchbeta;
    {$i SRL\SRL.simba}

    var
      x, y: Integer;

    begin
      ActivateClient;
      SetupSRL;
      repeat
        if (WaitFindColor(x, y, 176668, MIX1, MIY1, MIX2, MIY2, 5, 1000) then
        begin                                                         // if it finds the color in the inventory coordinates with a tolerance of 5
          Mouse(x, y, 4, 4, mouse_left);                               // in a max time of 1 sec, then move the mouse to that location and
          Wait(1500 + RandomRange(-500, 500));                         // left click. Wait 1-2 sec then click the mouse again (on the item)
          ClickMouse2(True);
        end;
      until not LoggedIn;                                              //until you are logged out
    end.
    so everything i did you made it 10x smaller and took off junk?
    created my mr[s]

  5. #5
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Colors in runescape are constantly changing, so use findcolortolerance And set a tolerance of 10.
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

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
  •