25.04.2014, 14:32
Like Konstantinos said, remove all unnecessary COL_CYAN and put the string in a seperate line and you are under 500 chars
pawn Код:
// that will compile if you aren't changing any line
format(String,sizeof(String),
COL_CYAN "\
%s (ID: %d)\n\n\
General: \n\
Team: %s\n\
Class: %s\n\
Rank: %s (%d / 15)\n\n\
Score: \n\
PT Score: %d\n\n\
DM Score: %d\n\n\
KD Ratio: %0.2f\n\n\
Game:\n\
Admin Level: %d %s\n\
V.I.P Level: %d %s\n\
Skin: %d\n\n\
Interior: %d\n\
Virtual World: %d\n" COL_WHITE "\
Ping: %d\n" COL_CYAN "\
Admin Level: %d %s\n\n" COL_WHITE "\
Time: (%d) Hours (%d) Minutes (%d) Seconds"
, PlayerName(playerid), playerid, GetPlayerPing(playerid), GetPlayerScore(playerid), s_1
, Rank[playerid], pInfo[playerid][Hours], pInfo[playerid][Minutes], pInfo[playerid][Seconds]
, pInfo[playerid][Kills], pInfo[playerid][Deaths], ratio, s_5, s_2, pInfo[playerid][Adminlevel]
, s_3, pInfo[playerid][VIPlevel], s_4
);