Results 1 to 6 of 6

Thread: Auto Color Clicking?

  1. #1
    Join Date
    Jul 2008
    Posts
    79
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto Color Clicking?

    All the tutorials I've seen online are for runescape. I know SCAR is pretty much designed for runescape but it could be used on other games too. I'm fairly new to SCAR, but I'm a quick learner (though maybe annoying because I ask too many questions, I just like to know what I'm doing ^^). Anyway, I'm trying to make an auto hunter for this game-



    As you can see, I'm trying to hunt Pink Bunnies ^^. And Actually I need to able to kill both bunnies and Bunny Bosses because the Bunny Bosses have preemptive attack (which means they attack you for no reason). I've already gotten the window and colors selected. And I know about MoveMouse and ClickMouse. Here is what I've got

    Code:
    program Goonzu_AutoHunt;
    const
         PinkBunny = 11907831;
         BossBunny = 13023741;
    begin
    
    end.
    lol, yah it's not much. Please help, google isn't in this case ><


  2. #2
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Code:
    program Goonzu_AutoHunt;
    const
         PinkBunny = 11907831;
         BossBunny = 13023741;
    var
    x, y:integer;
    begin
    if findcolor(x, y, PinkBunny, 0, 0, 9999, 9999) then
    repeat
      begin  
        ClickMouse(x, y, true);
        Wait(3000);  
      end;
      if findcolor(x, y, BossBunny, 0, 0, 9999, 9999) then
      begin  
        ClickMouse(x, y, true);
        Wait(3000);
      end;
    until(false);
    end.
    there you go

    ~shut

  3. #3
    Join Date
    Jul 2008
    Posts
    79
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That works pretty good ^^
    Thank you


    I'll also look through it.

  4. #4
    Join Date
    May 2007
    Location
    knoxville
    Posts
    2,873
    Mentioned
    7 Post(s)
    Quoted
    70 Post(s)

    Default

    does the game allow autoing?

  5. #5
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by akwardsaw View Post
    does the game allow autoing?
    Does any game allow autoing?

  6. #6
    Join Date
    May 2007
    Location
    knoxville
    Posts
    2,873
    Mentioned
    7 Post(s)
    Quoted
    70 Post(s)

    Default

    haha, good point.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. mouse clicking on 1 specific bitmap or color
    By mickeymouse in forum OSR Help
    Replies: 7
    Last Post: 12-13-2008, 02:16 AM
  2. i need help with color clicking
    By ummmmm0k in forum OSR Help
    Replies: 2
    Last Post: 02-01-2008, 01:02 AM
  3. Finding a color and clicking it
    By Rriku113 in forum OSR Help
    Replies: 4
    Last Post: 01-26-2008, 09:12 AM
  4. Need help finding & clicking color
    By Jacobdm0 in forum OSR Help
    Replies: 6
    Last Post: 08-16-2007, 02:30 AM

Posting Permissions

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