Results 1 to 7 of 7

Thread: Won't Click Option..

  1. #1
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default Won't Click Option..

    Well the problem is that, when my script does click on Door with right mouse click, it should after that click Open Door Or Walk Here... But it won't.. Any help

    SCAR Code:
    procedure OpenDoor;
    var
     Boo,x, y, fs, fs2: Integer;
    begin
    begin
     if (not(LoggedIn)) then
      Exit;
    ColorToleranceSpeed(2)
      repeat
       if NearestObjMT(x, y, 'oor', 'Door', 'Door','oor', 'Door', 'oor',
        4347489, 3823463, 3886680, 20) then
        Mouse(x,y,0,0,False)
            Wait(50)
        if(ChooseOption('Open Door')) then Boo:=1;
        Wait(100)
       if(ChooseOption('Walk here'))then FFlag(0) Wait(100) Exit;
        FFlag(0)
         if (not(loggedin)) then
         break;
       fs2:=fs2+1;
      until(fs2>5)or(Boo=1);
      ColorToleranceSpeed(0)
    end;
    end;


    ~Home

  2. #2
    Join Date
    Jun 2007
    Location
    Belgium
    Posts
    333
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Have you tryed without the capital
    SCAR Code:
    if(ChooseOption('pen ')) then Boo:=1;

  3. #3
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Ya i'v tried.. Won't work.. :/


    ~Home

  4. #4
    Join Date
    Mar 2007
    Location
    Netherlands->Amersfoort.
    Posts
    1,615
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Make sure the Color tolerance speed is the normal CTS. otherwise scar can't read

    so on the begin

    SCAR Code:
    procedure OpenDoor;
    var
     Boo,x, y, fs, fs2, CTS: Integer;

    begin
      if (not(LoggedIn)) then Exit;
      CTS := GetcolorToleranceSpeed;
      ColorToleranceSpeed(2);
      repeat
        if NearestObjMT(x, y, 'oor', 'Door', 'Door','oor', 'Door', 'oor', 4347489, 3823463, 3886680, 20) then
          Mouse(x,y,0,0,False);
        Wait(50);
        ColorToleranceSpeed(CTS);
        if(ChooseOption('Open Door')) then Boo:=1;
        Wait(100)
        if(ChooseOption('Walk here'))then FFlag(0) Wait(100) Break;
        FFlag(0)
        if not loggedin then break;
       ColorToleranceSpeed(2);
       fs2 := fs2 + 1;
      until( fs2 > 5 ) or ( Boo = 1 );
      ColorToleranceSpeed(CTS)
    end;

  5. #5
    Join Date
    Jul 2007
    Posts
    1,431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Dem...
    Make sure the Color tolerance speed is the normal CTS. otherwise scar can't read
    Thats it
    [CENTER][SIZE="4"]Inactive[/SIZE]I forgot my password[/CENTER]

  6. #6
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Spam much, negaal?

    It's happened to me a couple of times, but then again I don't know, the functions of mine that have chooseoptioned have worked just fine on CTS 2 :S

  7. #7
    Join Date
    Jul 2007
    Posts
    1,431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Not really, I was going to say it...but then saw rikjess's post...This one was spam...sorry
    [CENTER][SIZE="4"]Inactive[/SIZE]I forgot my password[/CENTER]

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. I got problems with rite click then choose option...
    By Ilikepie1995 in forum OSR Help
    Replies: 6
    Last Post: 04-29-2007, 05:48 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
  •