I made an autoit v3 macro to clear out my inventory while i was asleep. And later on I made it so i could keep the adhesiaves i looted so i could sell them and make a little more money. I make roughy 100k an hour doing this which is totaly afk killing the spawns outside coronet. You need to have your inventor max to cover you whole screed and the icons can not rotates and need to be as big as they can be the way my macro is set up. also i hvae 2 clothes then a back back and the necklace and it checks the 5 spot in the inventory and the move it to the back back if its an adhesiaves. The macros very simple since i am not to good with the language yet but itt works. You could alwasy change the coord to suit your needs. Well hope this is good enought to get me an account( IF these are even being checked anymore)
Sleep(10000) $t = 4 $x = 595 $y = 149 $var = PixelGetColor( $x , $y ) $color = $var Send("M") Sleep(1000) MouseClick("right" , $x, $y) Sleep(1000) MouseClickDrag("left", $x, $y, 338, 114) Sleep(3000)
Sleep(5000)
While $t == 4
$var = PixelGetColor( $x , $y )
if $var < $color Then $t = 1 EndIf
if $var > $color Then $t = 1 EndIf
if $t == 1 Then Sleep(250) MouseClick("right" , $x, $y) Sleep(100) Send("2") Sleep(250) MouseClick("right" , $x, $y) Sleep(50) Send("3") Sleep(250) $t = 3 EndIf
if $t == 4 Then Send("M") Sleep(1000) MouseClick("right" , $x, $y) Sleep(1000) MouseClickDrag("left", $x, $y, 338, 114) Sleep(1000) EndIf
Sleep(1000) Send("{BACKSPACE}") Sleep(200) Send("{BACKSPACE}") Sleep(3000)
$t = 4
WEnd
|