I don't think you can add a pause in the automacro but there might be a workaround to this.
First make a macro for the izlude map condition, then... I'll just put the code instead of explaination
Code: Select all
automacro moveto{
run-once 1
map izlude
location not izlude x y ##here x and y are the coordinate something like 5 steps away from the portal so you get some time
call moveThere
}
macro moveThere {
pause 1
do move x y
release all
}
##Now that your bot has taken up some time moving around & the zeny amount might get loaded, now your macro
automacro lowzen {
run-once 1
location izlude x y ##don't forget to change these coordinates.
zeny <= 199999
call quit1
}
macro quit1{
do chat leave
do deal no
pause 1
do quit
release all
}
I haven't tested the above macro, so I'm not sure if it will work, but I think you get the idea and can proceed from here
PS- you can also try the workaround posted in the manual.
Manual wrote:I have an automacro that checks for the amount of an item in my inventory / cart to be less than a given value or equal to zero (e.g. inventory "red potion" <= 30) but that automacro triggers also on map change. Why is that so and what should I do?
When you're changing the map all items vanish from your inventory for a short time. That happens with the official client, too. To avoid this, add an additional check for an item that you always carry with you, like inventory "Jellopy" > 0
PPS- Is this a support thread