storageAuto not in lockMap

For everything NOT server specific support. Do NOT ask for connectivity help here!.

Moderator: Moderators

kalansay
Human
Human
Posts: 39
Joined: 15 Apr 2008, 18:58
Noob?: Yes

storageAuto not in lockMap

#1 Post by kalansay »

Is there a way to do this?
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
   }
}
Or turn of the "itemsMaxWeight_sellOrStore" found in config.txt then use a macro like this?

Code: Select all

automacro Storage1 {
   exclusive 1
   weight >= 85%
   
   call {
      do c @go 0
      do autostorage
   }
}
For your CPU Usage & Memory usage concerns...
http://forums.openkore.com/viewtopic.php?f=10&t=33261
Image
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: storageAuto not in lockMap

#2 Post by EternalHarvest »

What about saveMap_warpToBuyOrSell?
kalansay
Human
Human
Posts: 39
Joined: 15 Apr 2008, 18:58
Noob?: Yes

Re: storageAuto not in lockMap

#3 Post by kalansay »

Done. Problem Solved. Thanks.
For your CPU Usage & Memory usage concerns...
http://forums.openkore.com/viewtopic.php?f=10&t=33261
Image