Quote:
Originally Posted by addicted2sex
Except cases when there are objects that overlap 
|

Show me an example of what you are arguing. I guarantee it can be handled with formatex().
PHP Code:
new szTest[ 55 ] , iPos;
copy( szTest , charsmax( szTest ) , "Hello" );
format( szTest , charsmax( szTest ) , "%s %s" , szTest , "bugsy" );
format( szTest , charsmax( szTest ) , "%s %s" , szTest , "whats up" );
server_print( "Format: %s" , szTest );
iPos = copy( szTest , charsmax( szTest ) , "Hello" );
iPos += formatex( szTest[ iPos ] , charsmax( szTest ) - iPos , " %s" , "bugsy" );
iPos += formatex( szTest[ iPos ] , charsmax( szTest ) - iPos , " %s" , "whats up" );
server_print( "FormatEx: %s" , szTest );
__________________