Results 1 to 8 of 8

Thread: Where can i find ClickToContinue?

  1. #1
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Where can i find ClickToContinue?

    Where can i find ClickToContinue?
    I want to modify it but i can't find it.
    ~Hermen

  2. #2
    Join Date
    Mar 2007
    Posts
    937
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    {*******************************************************************************
    function ClickContinue(Click, Wait: Boolean): Boolean;
    By: Nielsie95
    Description: Returns true if ClickToContinue was found.
    *******************************************************************************}


    function ClickContinue(Click, Wait: Boolean): Boolean;
    var
      i, x, y: Integer;
      Colors: array [0..1] of Integer;
    begin
      Colors[0] := 16711680;
      Colors[1] := 16777215;

      for i := 0 to 1 do
        if FindColor(x, y, Colors[i], MCX1, 427, MCX2, MCY2) then
          if IsTextAtEx(x -5, y -1, 'Click her', 0, NPCChars, False, False, 0, 2, Colors[i]) then
          begin
            Result := True;
            Break;
          end;

      if (Result) and (Click) then
      begin
        Mouse(RandomRange(x, x +130), RandomRange(y +3, y +7), 2, 2, True);
        if Wait then
          ChatWait;
      end;
    end;

    In SRL\SRL\Core\AntiRandoms\ChatRandoms.Scar


    -Ashur
    Exam period.

  3. #3
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    SRL\Core\AntiRandoms\Common.scar


  4. #4
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks i didn't know it was an ChatRANDOM lol but yeah thanks!

    Dudes i am making an tut runner but 1 time this thingy hovers Continue
    so i thought clicktocontinues use the word 'ontinue' to find it but now i see it uses
    'lick here' , i am confused why does it hovers and clicks clicktocontinue?
    ~Hermen

  5. #5
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Yes Hermpie, I always got that aswell Thats Why I make A DTM of it.
    It says walk to continue and hovers over there

  6. #6
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by NaumanAkhlaQ View Post
    Yes Hermpie, I always got that aswell Thats Why I make A DTM of it.
    It says walk to continue and hovers over there
    Thanks!
    Might want to give your procedure? i am to lazy
    ~Hermen

  7. #7
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Here

    SCAR Code:
    Function C2C : Boolean;

    Var
    Click2C, cx, cy  : Integer;
    Begin

      Click2C := BitmapFromString(26, 7, 'beNqtkTEKADAIA+//n047FR' +
           'ETHCpOF1FiENz+WCo98kYw/EmV4yHmqFMV1zK9pU1qJ+Vt2ZRLR2t' +
           '3TVIMYsrrAJubOcc=');
      Begin
        Result := FindBitmap(Click2C, cx, cy);
      end;
    end;

    Procedure ClickToContinueX;
    Var
    CX, CY : Integer;
    Begin
      If C2C Then
       Begin
        Mouse(cx, cy, 10, 1, True);
        WriteLn('Clicked');
       Repeat
        Wait(1)
       Until(Not FindBitmap(Click2C, cx, cy))
      end;
    end;

  8. #8
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks, i modified it bymyself because you yet made this and i already knew it wasn't compiling LOL.
    ~Hermen

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Where is ClickToContinue Located?
    By BobboHobbo in forum OSR Help
    Replies: 8
    Last Post: 01-06-2008, 03:50 PM
  2. Find Gas
    By Lacky in forum Research & Development Lounge
    Replies: 4
    Last Post: 11-04-2007, 12:56 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
  •