You are
unable to
format a variable with one cell. You need
at least, a variable with
two cells.
PHP Code:
new g_iDecimal;
format( g_iDecimal, 31, "%s", "?????????????" ); // NONONONO
new g_cChar[ 32 ];
format( g_cChar, 31, "%s", "!!!!!!!!!!!!!!!!" );
PHP Code:
new g_iDecimal[ 32 ];
format( g_iDecimal[ 15 ], 31, "%s", "?????????????" ); // NONONONO
new g_cChar[ 32 ][ 32 ];
format( g_cChar[ 15 ], 31, "%s", "!!!!!!!!!!!!!!!!" );