Sitout/sitin settings

Open Formula Editor – Hopper Functions — f$sitout (f$sitin):

  • f0 ? 0 : — if the “0” button is pressed, the bot will never go into sit-out:
  • //[ bblind < 10 ] &&[ nchairs < 9 ] && [ nopponentsactive < 2 ] ? 1: — when big blind < 10 (cash tables) and table is less than 9-max (6-max for example) and the number of active opponents < 2 the bot will go into sit-out, uncomment this line for activation (delete // before it);
    Attention! To play at fast tables, the lines with nopponentsactive must be commented out or deleted, since at a certain moment nopponentsactive = 0 and the bot goes into sit-out anyway!
  • //[ bblind < 10 ] && [ nchairs >= 9 ] && [ nopponentsactive < 3 ]? 1 : — when big blind < 10 and table is 9-max and the number of active opponents < 3 the bot will go into sit-out;
  • //[ bblind < 10 ] && [StackSize >= 300] ? 1 : — when big blind < 10 and your stack more than 300 big blinds, the bot will go into sit-out;
  • //[ bblind < 10 ] && [(elapsed % 3700) > 3600] ? 1 : — the bot goes into sit-out every hour (3600 seconds) on cash tables;
  • 0 — in other cases the bot is never goes into sit-out.
  • [ bblind >= 10 ] ? 1 : — in tournaments the bot always sitin;
  • //[ elapsedauto >= 300 ] ? 1 : — the bot press sitin button after 5 min break;
  • //[ bblind < 10 ] && [ nchairs >= 9 ] && [ nopponentsactive >= 3 ]? 1 : — the bot goes sitin when the number of opponents more than 2 on 9-max tables in cash games (big blind < 10);
  • //[ bblind < 10 ] && [ nchairs < 9 ] && [ nopponentsactive >= 2 ]? 1 : — the bot goes sitin when the number of opponents more than 1 on 6-max tables in cash games;
  • 0 — the bot is never sitin in any other cases.

Прокрутить вверх