Log in

View Full Version : <50 cap command



knusi
05-01-2012, 19:35
IfTrue ($mycap$#number<=#50) Goto $nlineoflabel:depo$

i´m having problem with this, is it written correctly? xD

provocate
05-02-2012, 13:31
IfTrue ($mycap$#number<=#5000) Goto $nlineoflabel:depo$

This will work.

5000 = 50 cap ... 50.00 ... Now you can set up bot leaving even at 0.01 cap left, that's why you have to add two aditional zeros.

:)

And for example, if you wanted your bot to leave at 13 or less cap you would write as such:

IfTrue ($mycap$#number<=#1300) Goto $nlineoflabel:depo$

Enjoy! :)