Page 1 of 1
Restock macro messing up [SOLVED]
Posted: Thu Mar 01, 2012 3:49 pm
by Atraxi
Okay, this has been goin on for a while, but I usually just ignore it. I figure its about time for me to figure out what's wrong with it so I can fix it.
I have a restock macro in my current macro. It restocks 1 each of 2 regs from my bank into my pack. I have a 3 second pause after the restock macro in the macro. My object delay is 1000ms. The agent only correctly restocks maybe 50% of the time. I see more "not enough regs" messages than anything else.
What am I doing wrong? What other information do you need from me to figure it out?
Re: Restock macro messing up
Posted: Thu Mar 01, 2012 4:36 pm
by LudKrud
I tried to restock for cooking.It runs fine for awhile then drags the whole stack out and cooks it.......
Re: Restock macro messing up
Posted: Thu Mar 01, 2012 7:13 pm
by Atraxi
^
Re: Restock macro messing up
Posted: Thu Mar 01, 2012 7:24 pm
by the bazookas
I had a macro like that once... and yea, it seemed to fail a lot; I don't recall exactly why, but it seemed to be related to it getting back to the restock agent before it had updated it's counter (after I had cast the spell and the regs were gone)...
I recommend for any macro that requires restocking some regs that you just restock 3 of each reagent. It seemed to solve a lot of these kinds of problems for me.
Re: Restock macro messing up
Posted: Thu Mar 01, 2012 8:03 pm
by Rammar
Atraxi wrote:My object delay is 1000ms. The agent only correctly restocks maybe 50% of the time.
Increase your object delay. 1000ms is server-side, that does not take into account latency -- especially for crappy wireless.
LudKrud wrote:I tried to restock for cooking.It runs fine for awhile then drags the whole stack out and cooks it.......
This is because you are not restocking at all, and instead targeting the full stack using target-by-type (which then gets cooked and moved to your pack). Make a counter and only cook when >= 1.
Re: Restock macro messing up
Posted: Thu Mar 01, 2012 8:17 pm
by Atraxi
Rammar wrote:Atraxi wrote:My object delay is 1000ms. The agent only correctly restocks maybe 50% of the time.
Increase your object delay. 1000ms is server-side, that does not take into account latency -- especially for crappy wireless.
That actually seems to be working. Thanks Rammar.
