Results 1 to 6 of 6

Thread: Tutorial Request

  1. #1
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Tutorial Request

    I need an srl tutorial because iwanna script for rs not use clickmouse ive read the things the begging tuts dont teach u but ineed a full tut any help please

  2. #2
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    actually I just made a tut for that about 6 days ago click the "things the beginner tuts don't teach you" links in sig. that should help you out (I hope).

  3. #3
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah i tryied that but i dont want a movemouse thing i want it to be completely undectable like i neeed it to click a color but that script did help me

  4. #4
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    clicking a color is moving the mouse to the color, so you would do something (like in the tutorial) like this:
    SCAR Code:
    program WhatEver;
    procedure IDontCare;
    begin
    if(FindColorSpiralTolerance(x,y,color,coords,coords,coords,coords,tolerance))then
    begin
    MMouse(x,y,2,2);
    wait(50+random(100));
    Mouse(x,y,2,2,true);
    end;
    begin
    IDontCare;
    end.
    that would be clicking on a color, and you would have to use MMouse and Mouse to do that (unless your a very advanced scripter, which they use that still, but just not very often) so that is how you click on a color as shown in the example above, and in the tutorial.

  5. #5
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wat i put as the tolerance?

  6. #6
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    SCAR Code:
    MMouse(x,y,2,2);
    wait(50+random(100));
    Mouse(x,y,2,2,true);

    This is bad. Mouse includes MMouse so just
    SCAR Code:
    Mouse(x,y,2,2,true);

    is fine.

    The only reason to separate the moving and clicking is if you want to do something else in between, in that case use this
    SCAR Code:
    MMouse(x,y,2,2);
    //something else, like an uptext check
    GetMousePos(x,y);
    Mouse(x,y,0,0,true);//no randomness here, because it was above

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [REQUEST]Fall For You By Secondhand Serenade [REQUEST]
    By P1nky in forum Music, Movies and TV
    Replies: 0
    Last Post: 08-22-2008, 06:22 AM
  2. Replies: 8
    Last Post: 08-23-2007, 08:13 AM
  3. woodcutting tutorial request?
    By mr grumble in forum OSR Help
    Replies: 6
    Last Post: 05-17-2007, 08:52 AM
  4. [REQUEST]Green Dragon Raper[REQUEST]
    By Zodia in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 04-06-2007, 10:10 PM

Posting Permissions

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