nevermind problem fixed
nevermind problem fixed
I love Auto Mount Function, but You messed up the looter:(Loot first) because it doesn't even try to re open body when healer/targetting disturbed it
Very awesome update!
Works flawlessly, no bugs for me!
Thankx =]
Ran all night without the slightest problem, thanks!
Fast and awsome as always! :)
Running it for like 12 hours now and everthing seems to work good. Really like the mount feature :)
Awesome work darkstar! :D
Looking forward to use this bot even more now!
// CrazySwe
i've been running it the whole night, works flawless.
It was my idea to add auto mount :D great update!! I just noticed small issue - bot ignore now looting priority. I think it should be fixed, but its not important at all now cuz bot dont miss loot anyway :)
Looting priority was never really a thing, more of a fluke of implementation. My loop originally was
Which caused it to apparently have priority. When I re-coded the looter, however, we ended up with this, causing it to loot items in the order they are foundCode:for i each (itemWeWantToLoot)
{
for b each (itemInBody)
if i == b loot()
}
Code:for i each (itemInBody)
{
for b each (itemWeWantToLoot)
if i == b loot()
}
While we're on the topic of looting, will it eat food out of corpses even if the char is out of capacity / space when looting?