28.10.2011, 17:45
Try this:
But, from what I know, { and } replaces with ( and ) in 0.3c+ ...
Код:
public OnPlayerText( playerid, text[ ] ) { for( new i; i < 129; i ++ ) { if( text[ i ] == '{' ) text[ i ] = '('; if( text[ i ] == '}' ) text[ i ] = ')'; } // your codes }