Results 1 to 8 of 8

Thread: Color clicker script help

  1. #1
    Join Date
    Dec 2010
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Color clicker script help

    I'm trying to make a script where it searches for a color and clicks it. Any ideas how to do this? Its for this game called world of tanks. I am using SCAR.

    This is what I have but its not working

    program Colour;

    var
    x, y : integer;
    begin
    If FindColor(x, y, 59751, 0, 0, 1276, 776) Then
    begin
    movemouse(x, y);
    clickmouse(x, y, true);
    end;
    end.
    any thoughts? I want it to click on this red "battle" button.


  2. #2
    Join Date
    Dec 2010
    Posts
    808
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Dude.. I already gave you a script...

  3. #3
    Join Date
    Dec 2010
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    that script was wrong. It didnt work at all.

    This is what I want it to do its simple:

    1. Search for color
    2. find color
    3. when found left click

  4. #4
    Join Date
    Dec 2010
    Posts
    808
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by omgbeans View Post
    that script was wrong. It didnt work at all.
    Right... Can I take a guess you were at RSBot before this?

  5. #5
    Join Date
    Dec 2010
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    no i dont even know what rsbot it. All i am looking for is help with this!

  6. #6
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Do NOT make multiple thread about the subject.
    There used to be something meaningful here.

  7. #7
    Join Date
    Feb 2007
    Location
    Alberta, Canada
    Posts
    4,615
    Mentioned
    50 Post(s)
    Quoted
    429 Post(s)

    Default

    So much hostility.

    Look, if the colour you picked is right then there have been multiple scripts posted which will work. If you have picked an incorrect colour, it will do nothing.

    Solution 1:
    Make sure you've picked the correct colour and fit it into the script you were given.
    Solution 2:
    Using the same colour you've picked, you may use the following code instead:
    Simba Code:
    program Colour;
    {.include SRL/SRL.scar}
    var
    x, y : integer;
    begin
    If FindColorTolerance(x, y, 59751, 0, 0, 1276, 776, 5) Then
    Mouse(x, y, 1, 1, True);
    end.

    Tell me which one works, if nothing works then PM me and I'll give you my MSN and we can work something else out.

    Scripts: Edgeville Chop & Bank, GE Merchanting Aid
    Tutorials: How to Dominate the Grand Exchange

    Quote Originally Posted by YoHoJo View Post
    I like hentai.

  8. #8
    Join Date
    Sep 2006
    Location
    Canada
    Posts
    1,124
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Does this game run an anti-cheat engine?



Thread Information

Users Browsing this Thread

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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •