Actually, you only need BEGIN/END Statements when you want the IF Statement to perform more than 1 Operation.
So this (Stolen from JJJ) would work fine.
%CHANCE := 1D100
IF %CHANCE > 0 THEN $DEST := @P2
IF %CHANCE > 20 THEN $DEST := @P3
IF %CHANCE > 40 THEN $DEST := @P4
IF %CHANCE > 60 THEN $DEST := @P5
IF %CHANCE > 80 THEN $DEST := @P6
Also not that the system only redirrects your page to the last true statement, so, if you entered the above like this -
%CHANCE := 1D100
IF %CHANCE > 80 THEN $DEST := @P6
IF %CHANCE > 60 THEN $DEST := @P5
IF %CHANCE > 40 THEN $DEST := @P4
IF %CHANCE > 20 THEN $DEST := @P3
IF %CHANCE > 0 THEN $DEST := @P2
It would always go to page 2 (no matter what the result of %CHANCE was).