Results 1 to 4 of 4

Thread: Something very easy.

  1. #1
    Join Date
    Sep 2007
    Posts
    413
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Something very easy.

    Hi

    Could someone make a coord clicker that right clicks the same location every 1 second? Using FindColor.

    Color Picked: 5463379 at (225, 176)

    Thanks, I tried it, but this is all I got now the errors are frustrating me..

    BTW, its for strength training in Frugoo Scape Private Server.

    SCAR Code:
    program New;
    {.include SRL\SRL.scar}
    var
    x , y

    procedure Find;
    begin
    repeat
      if(FindColor(x, y , 5594965, 0, 0, 368, 358))then
      begin
        Mouse(x, y, 0, 0, true);
        wait(1000);
      end.

  2. #2
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    why not just do

    SCAR Code:
    begin
      repeat
      clickmouse(225,176,true);
      wait(1000);
      until false;
    end.
    I do visit every 2-6 months

  3. #3
    Join Date
    Oct 2006
    Location
    finland, helsinki
    Posts
    2,501
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    SCAR Code:
    program New;

    {.include SRL\SRL.scar}

    Const
      InsertColor = 5594965;
      InsertTolerance = 5; // If u dont know what this is. Dont touch..

    var
      x, y: Integer;

    procedure Find;
    begin
      repeat
        X := MSCX; Y := MSCY;
        if(FindColorSpiralTolerance(x, y , InsertColor, MSX1, MSY1, MSX2, MSY2, InsertTolerance))then
          Mouse(x, y, 0, 0, true);
        wait(1000);
      Until(False);
    End;

    Begin
      SetupSRL;
      Find;
    End.

    Code:
    • Narcle: I recall Jukka releasing a bunch of scripts like this before... Its how he rolls I think. rofl
    • Solarwind: Dude, you are like... t3h s3x.
    • Hy71194: JuKKa you're a machine! You released 3 scripts in 10 minutes! :O
    • benjaa: woah.... Jukka is the man Guildminer pwns all
    • NaumanAkhlaQ: And JuKKa Is my Her0!

  4. #4
    Join Date
    Sep 2007
    Posts
    413
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks guys

    BTW Jukka, I know what Tol is, but I doubt A RS private server changes their colours...

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Easy
    By Bad Processor in forum Graphics and Multimedia
    Replies: 9
    Last Post: 02-01-2009, 12:10 PM
  2. tug o war easy
    By hamgooof in forum First Scripts
    Replies: 8
    Last Post: 11-01-2008, 03:12 PM
  3. I need some easy help
    By yanix in forum C#/Visual Basic Help and Tutorials
    Replies: 2
    Last Post: 07-04-2008, 06:31 PM
  4. looking for some help (very easy), will pay
    By lolskilla in forum News and General
    Replies: 5
    Last Post: 06-25-2007, 10:37 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
  •