i cant find the console command for "Display info about current cart weight"
the only reference i can find about weight is :
Code: Select all
weight [<number>]
<number>
- any number.
Gives a report about your inventory weight.
from : http://wiki.openkore.com/index.php/Weight
Code: Select all
cartMaxWeight [<number>]
If you have a cart and you set Kore to automatically put items in it (see items_control.txt), Kore will stop putting items to your cart if the cart weight is greater than or equal to the specified number.
from : http://wiki.openkore.com/index.php/CartMaxWeight
automacro, tells the bot to move items from inventory to cart with 3 conditions :
1. bot weight is >40%
2. cart weight is < 80%
3. location is NOT payon_in
when those 3 conditions arent met, the bot will do the basic sellAuto at weight > 60%
when the bot walks into pay_in to sell another automacro with location trigger
1. location IS payon_in
2. cart weight is > 20%
so the bot will keep adding item from inventory to cart until the cart reach weight 20%, while the bot will keeps selling the stuff to npc
maybe something like this ?
Code: Select all
automacro invcart {
if (location [not] location pay_in01 && weight > 40% && cartWeight < 80%)
class Merchant
run-once 1
call {
pause 1
do cart add @rand(3,20)
do cart add @rand(3,20)
do cart add @rand(3,20)
do cart add @rand(3,20)
do cart add @rand(3,20)
pause 1
release all
}
}
automacro cartinv {
if (location pay_in01 && cartWeight >20%)
class Merchant
run-once 1
call {
pause 1
do cart add @rand(3,30)
do cart add @rand(3,30)
do cart add @rand(3,30)
do cart add @rand(3,30)
do cart add @rand(3,30)
pause 1
release all
}
}

ps: thank you chocobrowny for answering my last question
