25.11.2012, 15:44
I assume SPD is a function that sends a DialogBox. Based on your code, stts will always be
you need to concatenate stts before formating the next line.
so it will be like this:
etc..
Код:
format( stts, sizeof( stts ), "{FFFFFF}Deaths: {FFAE00}%s\n", P_DATA[ playerid ][ Deaths ] );
so it will be like this:
Код:
format( stts, sizeof( stts ), "%s{FFFFFF}V.I.P Level: {FFAE00}%s\n", stts, P_DATA[ playerid ][ Vip ] ); format( stts, sizeof( stts ), "%s{FFFFFF}Score: {FFAE00}%s\n", stts, P_DATA[ playerid ][ Score ] );