I've got a fulltime job, simple as that.
Note to you noobs out there:
- A high end bidding script has been added to the guide.
A normal bidding script will be released in a couple of days if guys are interested in that.
I've got a fulltime job, simple as that.
Note to you noobs out there:
- A high end bidding script has been added to the guide.
A normal bidding script will be released in a couple of days if guys are interested in that.
Last edited by CHandest; 10-20-2013 at 06:03 AM.
Read my ultimate guide on how to AH bot in the guide section here at ownedcore :-)
@ alcor - Same thoughs man.
@Chandest - If you plan on continuing botting why not just keep whatever information you have found to yourself, and let other people who want to try find out things for themselves? What is the point of giving out this information, I don't see you gaining anything from that, just losing.
The bot crash when i hit CTRL + F12 :/
You will get no help here. Your chances for help are better at www.blizzhackers.cc or www.e litepvpers.com (without the seperation).
Send me your setup in a PM and I'll help you out
Read my ultimate guide on how to AH bot in the guide section here at ownedcore :-)
Great guide! I've wanted to do the disabling rendering for the longest time but never managed to figure out how. Due to laziness & procrastination. Thank you for sharing info with the community!
disabling rendering is great for farm bots, as well as the mip cofigs in d3prefs, but overall, these modifications give no edge or performance boost when we are talking about AH botting. just sayin'![]()
anybody got a clue why local item = xGetSearchItem(i,false) sometimes returns a null pointer? any quick fixes?
and one more thing. if you set the buyout to 2billion do you still get fresh results every cycle? i thought id need to randomize the buyout or else it would be cached?
Last edited by Zoort; 10-24-2013 at 09:31 AM.
Deleted..for personal reasons
Last edited by alcor75; 10-24-2013 at 02:50 PM.
Last edited by CHandest; 10-29-2013 at 12:21 PM.
Read my ultimate guide on how to AH bot in the guide section here at ownedcore :-)
alright i call
every cycle so i should be alrightlocal buyOut = 2000000000
if xSetBuyout(buyOut,true) then
if xSearch() then
xSortSearch('time left','down')
oh btw ive written a pretty raw autoit relogger because i cant figure out how to stop d3 from crashing.
Worked the last day on one account..Global $p1[5] = ["X:\\XXX\Diablo III.exe -launch","Workingdir","Null","account","password"]
Func d3Starter(ByRef $path,ByRef $dir,ByRef $login,ByRef $pass)
local $pid = Run ( $path,$dir)
Sleep(10000)
WinActivate ( "Diablo III")
ClipPut ($login)
Sleep(100)
Send("{CTRLDOWN}v{CTRLUP}")
Sleep(100)
ClipPut ($pass)
Sleep(100)
Send("{TAB}")
Sleep(100)
Send("{CTRLDOWN}v{CTRLUP}")
Sleep(100)
Send("{Enter}")
Sleep(100)
ClipPut ("")
Return $pid
EndFunc
Func happyAuction()
Sleep(8000)
Local $PID = ProcessExists("HappyAuction.exe")
If $PID Then
ProcessClose($PID)
Sleep ( 600 )
EndIf
Shellexecute("C:\HappyAuction\bin\HappyAuction.exe","","C:\HappyAuction\bin","", @SW_MINIMIZE) ; Path to HA , WorkingDir(Has dir)
Sleep(500)
Send("^{F12}") ;Send HA Keys
EndFunc
While True
if not ProcessExists ( $p1[2] ) then
$p1[2] = d3Starter($p1[0],$p1[1],$p1[3],$p1[4])
happyAuction()
EndIf
WEnd
You have to edit the paths and the timings depending on your machine speed. Did not test it with multiclients, might get a little tricky. Right now im close to giving up im still getting null pointers from HA on local bO = xGetSearchItem(i).buyout and have no idea why, and as long as i cant get it to run stable im not going to use more accounts for ha.
Last edited by Zoort; 10-30-2013 at 05:11 AM.
zoort, right logic , but it can be make simply, add me and i can help u and we discuss(on skype) about ur questions![]()
nah replace your if xSetBuyout(buyOut,true) with xSortSearch('time left','down')
Add me if you need help
Last edited by CHandest; 10-30-2013 at 09:51 AM.
Read my ultimate guide on how to AH bot in the guide section here at ownedcore :-)
yes figured id have to call the sort before the search. thats no longer an issue. biggest problem is that i cant get d3 to run 24/7 and the occasional crashes will screw multibotting![]()
Hi, I tried this example
Where do I have to add the next item and where can i put the number of searches of this item before moving to the next and begin at the start after searching the last item?function SnipeBuyout()
xSetGlobalDelay(100)
xLocate('Auction')
xSetBuyout(20000000)
-- get user buyout
local buyout = xGetBuyout()
local varLoginTime = os.time()
local varTimeDiff = 0
local varRelogInterval = 55
local found = 0
xSetUnique('Temperance', 1 )
xSetStat(1,'Strength', 80 )
xSetStat(2,'Vitality', 1 )
xSetGlobalDelay(0)
xSetInputDelay(0)
while true do
-- update buyout with randomize
xSetBuyout(buyout, true)
-- search and select first item in list
if xSearch() then
-- get item object
local item = xGetSearchItem(1)
xBuyout(1)
xSetInputDelay(100)
xSendToStash()
xSetInputDelay(0)
end
varTimeDiff = os.difftime(os.time(), varLoginTime)
if varTimeDiff > varRelogInterval then
varLoginTime = os.time()
xSetInputDelay(100)
haLogout()
end
end
end
Thanks