Always if of the formula is incorrectly composed, loading it into the poker robot, it produces a code error.
It looks like this.
There are two ways to find an error.
1. Search in the text editor for the line that is indicated in the error message.
2. Repeat the mistake in the search engine of the text editor.
Examples of errors in formulas.
Wrong
WHEN ((hand$AA))
WHEN (BotsLastaction = Raise AND Raises >= 1 AND Calls = 0 AND StillToAct = 0 AND BetSize > 20) Call FORCE
Correctly
WHEN ((hand$AA))
WHEN (BotsLastAction = Raise AND Raises >= 1 AND Calls = 0 AND StillToAct = 0 AND BetSize > 20) Call FORCE
Wrong
WHEN ((hand$AA))
WHEN (BotsLastAction = Raise AND Raises >= 1 AND Calls = 0 AND StillToAct = 0 AND BetSize > 20 Call FORCE
Correctly
WHEN ((hand$AA))
WHEN (BotsLastAction = Raise AND Raises >= 1 AND Calls = 0 AND StillToAct = 0 AND BetSize > 20) Call FORCE
Leave a Comment