Hi.
Just curious the statistics claimed to have gotten 6 sets but none in bank or bags..
Checking ini file there's no option for vendoring sets/legendaries for true/false.
Does that mean it will never sell those by default ?
Has anyone made pngs for 800*600? Would really appreciate if you would contact me in that case. I could give you some gold if it works as it should![]()
for some reason the script won't pick up rares. It's almost that it takes forever to check for loot, how do I fix this?
if the loot on the ground name disappears. you should add what i added in red to the 3 functions i pasted below. It will force the item names to stay on the screen until its completely done looting.
Func LootGear($color, $tolerance = 2)
$count = 0
send("{Alt}")
$Loot = PixelSearch(Round(400 * $x_ratio), 0, Round(1690 * $x_ratio), Round(900 * $y_ratio), $color, $tolerance)
If Not @error Then
While Not @error
$count += 1
MouseClick('left', $Loot[0], $Loot[1], 1, 3)
Sleep(50)
MouseMove(Round(Random(0, 400) * $x_ratio), Round(Random(700, 1080) * $y_ratio), 3) ;Moves mouse out of the way
Sleep(1000)
;Run at max 10 times per quality
If $count >= 10 Then
ExitLoop
EndIf
$Loot = PixelSearch(Round(400 * $x_ratio), 0, Round(1690 * $x_ratio), Round(900 * $y_ratio), $color, $tolerance)
WEnd
EndIf
Return $count
EndFunc ;==>LootGear
Func LootGems()
$count = 0
$gX = 0
$gY = 0
send("{Alt}")
While _ImageSearchArea($pngLoc & "square.png", 1, 0, 0, @DesktopWidth, @DesktopHeight, $gX, $gY, 90)
$count += 1
MouseClick("left", $gX, $gY - 3, 1, 3)
Sleep(50)
MouseMove(Round(Random(0, 400) * $x_ratio), Round(Random(700, 1080) * $y_ratio), 3) ;Moves mouse out of the way
$GemCount += 1
Sleep(1000)
If $count >= 10 Then
ExitLoop
EndIf
WEnd
EndFunc ;==>LootGems
Func LootTomes()
$count = 0
$gX = 0
$gY = 0
send("{Alt}")
While _ImageSearchArea($pngLoc & "tome.png", 1, 0, 0, @DesktopWidth, @DesktopHeight, $gX, $gY, 90)
$count += 1
MouseClick("left", $gX, $gY - 3, 1, 3)
Sleep(50)
MouseMove(Round(Random(0, 400) * $x_ratio), Round(Random(700, 1080) * $y_ratio), 3) ;Moves mouse out of the way
$TomeCount += 1
Sleep(1000)
If $count >= 10 Then
ExitLoop
EndIf
WEnd
EndFunc ;==>LootTomes
thank you so much, I hope this works :LD
Or you can do what I did, I set the loot to be always on. It can get annoying if you actually play using it, but it you use it mainly for botting (Like I do on the VM ware) it works out great.
I Turned off always show item labels on drop and change Item Label Display to Push to toggle.
The default is alt, I changed that as the keybind for vmware to get out of it is ctrl + alt.
I changed it to ' (Apostrophe) and just make sure its turned on when you start the bot.
(If you do do this the bot will take the text that says you turned it on/off as a rare item drop, if you hit it when you start it may show an extra few rares until it disappears (about 20 seconds))
Last edited by jjrsept; 06-24-2012 at 02:08 PM.
Hopefully is, cause the amount of rares, gems, magic etc all add up and it does sell blues and stash yellows so got bit scared
Below is my .ini file, vendoring section, default is to sell rares but i changed it
[Vendoring]
Loot=True
Rares=False
Magic=True
All=False
All-Rows=5
What the actual ****. My entire D drive seems to have been write-protected by W7. No wonder stuff aint working as it should. It can't even create a new .ini. Godamnit microsoft...
Could someone upload the default .ini generated by the script somewhere? It seems my HD wont allow autoIT-scripts to create new files, I'll have to do it myself...
Anyone know what is wrong with mine?
I click resume and enter the game. The script waits 2-4 seconds then tps out and exit. Tried changing the oldruins.png but nothing.