I want my bot to not activate autostorage when in lockmap, I want it to warp to savemap first then do the autostorage there.
Or the only way is a hard work-around using macros like this?
Code: Select all
automacro Storage1 {
exclusive 1
console "Auto-storaging due to excess weight"
call {
do c @go 0
do autostorage
}
}
Code: Select all
automacro Storage1 {
exclusive 1
weight >= 85%
call {
do c @go 0
do autostorage
}
}