i got 2 macros.. first one it work, but i need manually take item from storage when it done..
this one i itry to make kore to auto take item from storage using commands @storage
Code: Select all
automacro talking {
inventory "Meat" > 1
call npc
timeout 1
}
macro npc{
pause 1
do talk @npc (46 80)
do talk resp 0
release talking
}
automacro c_meat{
inventory "Meat" < 50
storage "Meat" > 0
exclusive 1
call g_meat
timeout 10
}
macro g_meat{
do storage get @storage(Meat) @eval(530 - @cartamount(Meat))
do cart add @inventory (Meat) @invamount(Meat))
}
