| User Gold |
 |
 |
Joined: Tue Jul 09, 2002 5:39 am Location: Arkansas
|
You got banned because 1) Your script wasn't random at all, 2) you probably ran it too long. For what it's worth, I'm not banned, though I didn't use mine for more than a total of 24 hours. A little bit of randomness for click positions: Func clickElement($button) Switch $button Case "AH" $xCoord = Random(70,385,1) $yCoord = Random(618,658,1) Case "Equipment" $xCoord = Random(70,385,1) $yCoord = Random(618,658,1) Case "ddlType" $xCoord = Random(615,631,1) $yCoord = Random(376,390,1) Case "Armor" $xCoord = Random(406,629,1) $yCoord = Random(506,524,1) Case "Quality" $xCoord = Random(617,633,1) $yCoord = Random(501,515,1) Case "Rare" $xCoord = Random(541,629,1) $yCoord = Random(698,711,1) Case "ddlStat1" $xCoord = Random(570,582,1) $yCoord = Random(591,602,1) Case "scrollStat1" $xCoord = Random(749,759,1) $yCoord = Random(911,922,1) Case "valueBox1" $xCoord = Random(605,631,1) $yCoord = Random(587,603,1) Case "allResist1" $xCoord = Random(405,726,1) $yCoord = Random(690,713,1) Case "critDmg1" $xCoord = Random(407,726,1) $yCoord = Random(908,912,1) Case "ddlStat2" $xCoord = Random(570,582,1) $yCoord = Random(629,645,1) Case "scrollStat2" $xCoord = Random(750,760,1) $yCoord = Random(951,963,1) Case "valueBox2" $xCoord = Random(605,630,1) $yCoord = Random(627,642,1) Case "loh" $xCoord = Random(407,652,1) $yCoord = Random(943,962,1) Case "ddlStat3" $xCoord = Random(570,582,1) $yCoord = Random(666,681,1) Case "valueBox3" $xCoord = Random(605,629,1) $yCoord = Random(667,679,1) Case "scrollStat3" $xCoord = Random(674,685,1) $yCoord = Random(989,999,1) Case "intel3" $xCoord = Random(407,651,1) $yCoord = Random(926,945,1) Case "vitality3" $xCoord = Random(407,654,1) $yCoord = Random(989,1002,1) Case "maxBuyout" $xCoord = Random(563,636,1) $yCoord = Random(752,766,1) Case "searchButton" $xCoord = Random(424,609,1) $yCoord = Random(829,845,1) EndSwitch MouseClick("left",$xCoord,$yCoord) EndFunc
and a little bit of delays: $randNoMatches = Random(10,30,1) ; Get a random amount of no buys before taking a break if $noMatch > $randNoMatches then ; If we haven't hit any results after 10 tries, take a short break (3-5 minutes) $break = Random(60000,300000,1) ToolTip("Haven't found any matches in " & $noMatch & "tries... we're taking a "& $break/60000 & " minute break...starting " &_Now(),0,0) sleep($break) $noMatch = 0 ; reset our nomatch counter endif $extendBreak = Random(1,20,1) if $extendBreak == 1 then $extendTime = Random(900000,1800000,1) ; There's a 5% chance we're going to take an extended break between 15 and 30 minutes. ToolTip("To spice things up, we're taking an extended break...back in " & $extendTime/60000 & " minutes...starting " &_Now(),0,0) sleep($extendTime) endif
_________________
lord2800 wrote: I can, but I don't want to run an AV in the first place I'm as likely to get a virus as Bush is to shoot himself in the head, intentionally.
|
|