Hi.
%s - String.
Example:
PHP Code:
new szString[ 32 ]
format( szString, sizeof ( szString ) - 1, "String Phrase" )
client_print( 0, print_chat, "This is your phrase: %s", szString )
%d or %i - Integer / cell.
Example:
PHP Code:
new iValue = 1
client_print( 0, print_chat, "This is your Integer: %d", iValue )
or
PHP Code:
new szString[ 32 ]
format( szString, sizeof ( szString ) - 1, "1" )
client_print( 0, print_chat, "This is your Integer: %d", str_to_num ( szString ) )