Results 1 to 15 of 15

Thread: something simple please make

  1. #1
    Join Date
    Apr 2007
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default something simple please make

    can anyone make me a simple script that will do all this, i give all color's and cord's.
    YOU CAN USE MOVEMOUSE. this needs no antiban/random implements
    please it wont take to much time.

    find color (2175372) click , then find color (16776960) at (x,y,80, 32) click , then click at (x,y,182, 112) , then find color (16777215) at (x,y,408, 278) and click 28 times with 1 second intervals , then click at (x,y,424, 73) then click at (x,y,492, 38) then click (x,y,387, 75) click 28 times with 1 second intervals. and make it repeat.

  2. #2
    Join Date
    Oct 2007
    Location
    The deep web
    Posts
    2,496
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    can i ask why?
    Did someone say GDK?

  3. #3
    Join Date
    Apr 2007
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by jakeyboy29 View Post
    can i ask why?
    you can.

    for a game

  4. #4
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ...Why can't you do it? You said all of the functions that you would use.

  5. #5
    Join Date
    Apr 2007
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by TViYH View Post
    ...Why can't you do it? You said all of the functions that you would use.
    incorrect. i dont know how to use the functions or procedures needed

  6. #6
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Do you want a procedure or a script?

  7. #7
    Join Date
    Apr 2007
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  8. #8
    Join Date
    Apr 2007
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    will someone make for meeee

  9. #9
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Don't double post.

    Read a basic tutorial and make it yourself.

  10. #10
    Join Date
    Apr 2007
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by TViYH View Post
    Don't double post.

    Read a basic tutorial and make it yourself.
    i have read all the beginner tutorials. i've tried to make it , this is my last resort...

    dont understand why nonoe can do it. its simple. and i cant understand how to do it myself.

  11. #11
    Join Date
    Dec 2007
    Posts
    2,766
    Mentioned
    2 Post(s)
    Quoted
    37 Post(s)

    Default

    I'll do it. I'll edit this post with the script just cus I'm happy 2day

  12. #12
    Join Date
    Apr 2007
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Dr D. Dervish View Post
    I'll do it. I'll edit this post with the script just cus I'm happy 2day
    oo thank you

  13. #13
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If it's that simple, then you should be able to do it.

    The SCAR manual contains all of the information. You need FindColor, repeat, and GetColor.

  14. #14
    Join Date
    Dec 2007
    Posts
    2,766
    Mentioned
    2 Post(s)
    Quoted
    37 Post(s)

    Default

    Okay, now since you didn't define the search boxes for the colors, you'll have to insert them in the const.
    Also, you didn't tell me how many times it should repeat all the clicking and stuff, so I put it to infinite.

    Here you have it...
    SCAR Code:
    program New;
    var
      x,y,I: Integer;
     
    const
      CBX1 = 0;//Define where the upper left corner of the search box
      CBY1 = 0;//for the color should be.
      CBX2 = 700;//Define where the lower right corner of the search box
      CBY2 = 500;//for the color should be.
     
    Procedure ClickCustom(coordx,coordy: Integer);
    begin
      ClickMouseSpline(coordx,coordy,0,0,true);
      Wait(50);
    end;

    Procedure ClickStuff;
    begin
      If FindColor(x,y,2175372,CBX1,CBY1,CBX2,CBY2) then
      begin
        ClickCustom(x,y);
      end;
      If FindColor(x,y,16776960,CBX1,CBY1,CBX2,CBY2) then
      begin
        ClickCustom(x,y);
      end;
      ClickCustom(182,112);
      If FindColor(x,y,16777215,CBX1,CBY1,CBX2,CBY2) then
      begin
        repeat
          ClickCustom(x,y);
          Wait(1000);
          I := I+1;
        until(I = 28);
        I := 0;
      end;
      ClickCustom(424,73);
      repeat
        ClickCustom(387,75);
        Wait(1000);
        I:=I+1;
      until(I=28);
      I := 0;
    end;

    begin
      repeat
        ClickStuff;
      until(false);
    end.

    That should work, if it doesn't , explain more in detail what it should do XD.

    EDIT : also, if you don't know how to fill in the consts, I'm sorry but then I find you to be a real leecher with all your longevity and all... Sorry...

  15. #15
    Join Date
    Apr 2007
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Dr D. Dervish View Post
    Okay, now since you didn't define the search boxes for the colors, you'll have to insert them in the const.
    Also, you didn't tell me how many times it should repeat all the clicking and stuff, so I put it to infinite.

    Here you have it...
    SCAR Code:
    program New;
    var
      x,y,I: Integer;
     
    const
      CBX1 = 0;//Define where the upper left corner of the search box
      CBY1 = 0;//for the color should be.
      CBX2 = 700;//Define where the lower right corner of the search box
      CBY2 = 500;//for the color should be.
     
    Procedure ClickCustom(coordx,coordy: Integer);
    begin
      ClickMouseSpline(coordx,coordy,0,0,true);
      Wait(50);
    end;

    Procedure ClickStuff;
    begin
      If FindColor(x,y,2175372,CBX1,CBY1,CBX2,CBY2) then
      begin
        ClickCustom(x,y);
      end;
      If FindColor(x,y,16776960,CBX1,CBY1,CBX2,CBY2) then
      begin
        ClickCustom(x,y);
      end;
      ClickCustom(182,112);
      If FindColor(x,y,16777215,CBX1,CBY1,CBX2,CBY2) then
      begin
        repeat
          ClickCustom(x,y);
          Wait(1000);
          I := I+1;
        until(I = 28);
        I := 0;
      end;
      ClickCustom(424,73);
      repeat
        ClickCustom(387,75);
        Wait(1000);
        I:=I+1;
      until(I=28);
      I := 0;
    end;

    begin
      repeat
        ClickStuff;
      until(false);
    end.

    That should work, if it doesn't , explain more in detail what it should do XD.

    EDIT : also, if you don't know how to fill in the consts, I'm sorry but then I find you to be a real leecher with all your longevity and all... Sorry...
    thanks alot


    *edit*
    well it didn't turn out

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How To Make A Simple PowerMiner
    By Blumblebee in forum OSR Intermediate Scripting Tutorials
    Replies: 18
    Last Post: 07-19-2009, 04:17 AM
  2. how to make a simple powerminer script
    By solemn wishes in forum OSR Intermediate Scripting Tutorials
    Replies: 31
    Last Post: 03-07-2009, 09:36 PM
  3. Simple Fast Script, Can Someone Make?
    By siroober in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 04-25-2008, 11:42 PM
  4. can somebody please make me a simple script
    By qwertywert in forum RS3 Outdated / Broken Scripts
    Replies: 14
    Last Post: 09-06-2007, 03:39 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
  •