Adblock breaks this site

Pretty easy script ... I guess ?

Discussion in 'Scar/Simba Help' started by L0ngcat, Dec 9, 2009.

  1. L0ngcat

    L0ngcat Newcomer

    Joined:
    Dec 9, 2009
    Posts:
    2
    Referrals:
    0
    Sythe Gold:
    0
    Pretty easy script ... I guess ?

    Hello,
    I need a pretty easy script. Its not for runescape, it would be just clicking in firefox and I would prefer to do not mention any more info :) . So if it is possible, I hope you can help me. I need something like template, then I can set up all the colors and directions by my own). This is how the script would look in "my language" :) :

    -Click IMMEDIATELY on certain spot , IF all of the certain 5 pixels (choosen by their X and Y axis) are the exactly color I choosed .
    -Turn off the script for the 10 seconds after click made. Then turn it on again
    -DO NOT START this script if 1 certain pixel is color I choosed (another color)

    I hope you can understand this. ^_^
    edit : I made a picture :)
    [​IMG]
    As soon as the time counter goes on "1" (those 5 pixels are here because I need several pixels to identify what number it is ) SCAR will IMMEDIATELY click the Green Button. Because I dont want it to click more times than needed, it wont be able to click more often than every 10sec.
    But if the bottom button is color red, the click wont be made.
     
  2. L0ngcat

    L0ngcat Newcomer

    Joined:
    Dec 9, 2009
    Posts:
    2
    Referrals:
    0
    Sythe Gold:
    0
    Pretty easy script ... I guess ?

    I was thinking about it and actually I dont neet that thing with "not clicking if certain button is red".
    So just click on certain spot if several pixels are color I want them to. thats it
     
  3. The Pocked Man

    The Pocked Man Member

    Joined:
    Nov 14, 2009
    Posts:
    29
    Referrals:
    0
    Sythe Gold:
    0
    Pretty easy script ... I guess ?

    Bidpax is a scam ;)
    Please trust me on this one. Anyway, SCAR is not the best way to do this, you would want to write a script for the Firefox addon GreaseMonkey.
    But if you insist on wasting your money.....
    Code:
    program GiveMyHardEarnedMoneyToBidpax;
    begin
     Repeat
         //Fill in X & Y & Color values for your 5 good colors
      If (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color)
         //Fill in X & Y & Color values for your 1 bad color
      and NOT (GetColor(X,Y)=BadColor) then
         //Fill in X & Y values for the Bid Now button
       begin
        ClickMouse(X,Y,True); //AKA, waste my money
        Wait(10000);
       end;
     Until False; //AKA, I run out of bids and blow all my cash then get real mad at myself for being so stupid
    end.
     
  4. The Pocked Man

    The Pocked Man Member

    Joined:
    Nov 14, 2009
    Posts:
    29
    Referrals:
    0
    Sythe Gold:
    0
    Pretty easy script ... I guess ?

    Fixed the above.
    Code:
    program PennyAuctionBidClicker;
    begin
     Repeat
      If (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color)
      and NOT (GetColor(X,Y)=BadColor) then
       begin
        ClickMouse(X,Y,True);
        Wait(8000);
       end;
     Until False;
    end.
    you can remove the 'BAD' color checker part if you want
    Code:
    program PennyAuctionBidClicker;
    begin
     Repeat
      If (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color) and (GetColor(X,Y)=Color) then
       begin
        ClickMouse(X,Y,True);
        Wait(8000);
       end;
     Until False;
    end.
    As discussed, it would be better using a bitmap checker.
    Code:
    program PennyAuctionBidClicker;
    var
    trigger,x,y:integer;
    begin
    Trigger := OUTPUT FROM BITMAP TO STRING TOOL;
     Repeat
      if FindBitMapTolerance(trigger,x,y,20) then //x & y not used
       begin
        ClickMouse(ButtonX,ButtonY,True); //Location of BID button
        Wait(8000); //Does nothing for 8 secs, then starts checking again.
       end;
     Until False;
    end.
    you just need to take a screen cap of the 'Trigger' like when it says "GOING GOING GONE" or "1 Second left!" or whatever, and convert it to a string in SCAR (Tools, Bitmap To String). then then copy and paste it into the script.

    Don't think for a second that there aren't other people doing the EXACT same thing as you. Trust me, when I first heard about penny auctions, you don't think I thought of doing what you are planning? I did, and I watched and watched auctions for a while and I recorded stats. I came to the conclusion that regardless of what I did, I would lose out.
    The whole penny auction thing smells real bad like a scam. You don't think they have shill bidders? c'mon man, they are all based in China where they couldn't care less about 'fraudulent' activity, just care about the almighty dollar. I reckon they have bots that autobid on auctions if they are unprofitable.

    At the end of the day, IF it is LEGIT and there are no shill bidding bots from the auction site, there will be many many people with their own bots, or using the websites 'auto bidding' bots. The outcome of any auction then is totally random.

    But please, if you have success, let me know, because as yet I have not heard about any REAL winners on any penny auction site.
     
< how to make a script click just a ladder? | SCAR download, which one? >


 
 
Adblock breaks this site