Thank you!
Thank you!
also regarding critical hit chance "critical hit chance increased by" should give you the correct results.
Great script! Works perfectly.
Thanks for the fast reply! Been running it and haven't found problems yet.
Just one question, is there a way to change the levels to look for?
haFilterLevel(60)
This makes it search only for 60 gear. Is there a way to make an interval for exemple from 50 to 55
Thanks in advance
Last edited by Mulambo7; 08-27-2012 at 08:49 PM.
yup
haFilterLevel(50,55)
Can i use haItemStat('Has sockets').value1 > 0 now? Or how can i detect sockets?
I think if socket is empty i can use haItemStat('empty socket').value1 > 0
and if it's not empty? or if it's more than 1 socket and i need to know exact number of empty sockets?
gems=0
if haItemStat('empty socket').value1 > 0 then gems = 1 end
local item = haItem()
for j, socket in pairs(item.sockets) do
if socket.rank > 0 then gems = gems+1 end
end
it's too much code for such a simple check and if item have 3 empty sockets - gems will be == 1
Last edited by ztnko; 08-28-2012 at 12:42 AM.
haItemStat is for searching for a stat... not sockets. you have it right with other half of code
local gems = 0
for j, socket in pairs(haItem().sockets) do
if socket.rank > 0 then gems = gems+1 end
end
yes its a few extra lines but its a specific request. what if someone else asked if an item has all gemmed sockets.
also note that as of d3 1.0.4 that search results dont factor gem stats in. so requiring an item be unsocketed isnt that important (unless you care about the gem removal fees).
deleted
now i understand!Thank you.
Last edited by ztnko; 08-28-2012 at 01:57 AM.
Just got my account banned for using this bot, so don't use it guys..(I set a good delay times....)
4. use haGetInstance() to tell one client from another in script. example: if haGetInstance() == 1 then runbotA else runbotB end
where do I put this?
Last edited by plasticspoon; 08-28-2012 at 04:10 AM.
wherever you want to choose between running different bots. its optional, otherwise each instance will run the same script... also i just updated so you can tell which d3 is running by your account. example: if haGetAccount() == '[email protected]' then ....
what script did you use?
on a similar note
http://us.battle.net/d3/en/forum/topic/5978117806
just shows how sophisticated warden is... lol
Last edited by ChuiChu; 08-28-2012 at 04:48 AM.