Results 1 to 7 of 7

Thread: I got problems with rite click then choose option...

  1. #1
    Join Date
    Mar 2007
    Location
    In your computer
    Posts
    244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default I got problems with rite click then choose option...

    I need help with this: How do u make scar to right click on a color then choose an option?i have tryed this..:

    if FindColor(x,y,thecolor,1,1,500,500) then
    MoveMouseSmooth(x,y,);
    Wait(100)
    HoldMouse(x,y,true);
    Wait(100);
    ReleaseMouse(x,y,true)
    Wait(1000);
    chooseoption('Attack Man')

    I dont think its right thats y it dont works lol loll
    Well could someone help me please? if someone does then it would be easier for me to script lol hehe

  2. #2
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    move mouse smooth is really bad...
    SCAR Code:
    begin
    if(FindColorTolerance(x,y,thecolor,1,1,500,500,5))then
    Mouse(x,y,2,2,false);
    Wait(1000+Random(500))
    ChooseOption('Attack Man')
    end

    change "thecolor" to the acutal number of the color

  3. #3
    ronny.m.p Guest

    Default

    You forgot to include srl

    use this:

    SCAR Code:
    {.include srl\srl.scar}
    var
    ox,oy : integer;
    begin
    Mouse(x,y,0,0,false);
    ChooseOption(ox,oy,'Attack Man');
    end.

  4. #4
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    mines better cuz he didnt notice how crappy movemousesmooth is...and that u want tolerance

    this was gonna be my origional advice cuz i didnt have ur whole script
    SCAR Code:
    Program FindColor;
    {.include srl/srl.scar}
    const TheColor=424563555;
    begin
    if(FindColorTolerance(x,y,13027278,241,65,424,203,5))then
    Mouse(x,y,2,2,false);
    Wait(1000+Random(500))
    ChooseOption('Attack Man')
    end.

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

    Default

    whats the difference between this besides less code.

    all the code you wrote to right click and then choose option and my way would be PopUp('blah'); if your only tryign to click an option..?

  6. #6
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    what the heck do u mean

  7. #7
    Join Date
    Apr 2007
    Location
    Finland
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Ilikepie1995 View Post
    I need help with this: How do u make scar to right click on a color then choose an option?i have tryed this..:

    if FindColor(x,y,thecolor,1,1,500,500) then
    MoveMouseSmooth(x,y,);
    Wait(100)
    HoldMouse(x,y,true);
    Wait(100);
    ReleaseMouse(x,y,true)
    Wait(1000);
    chooseoption('Attack Man')

    I dont think its right thats y it dont works lol loll
    Well could someone help me please? if someone does then it would be easier for me to script lol hehe
    NEVER And I mean NEVER use MoveMouse, MoveMouseSmooth, MoveMouseSmoothEx. Because they're all to get you BANNED

    EDIT: Use MMouse and Mouse

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 4
    Last Post: 12-15-2007, 02:16 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
  •