10.04.2010, 12:26
Untested, might work, if it doesn't just re-do it, I guess you got how I ment it.
pawn Код:
new
lic_str[ 3 ][ 5 ],
output[ 94 ];
if(PlayerInfo[playerid][pLicenseA]) lic_str[0] = "Yes"; else lic_str[0] = "No";
if(PlayerInfo[playerid][pLicenseB]) lic_str[1] = "Yes"; else lic_str[1] = "No";
if(PlayerInfo[playerid][pLicenseC]) lic_str[2] = "Yes"; else lic_str[2] = "No";
format(output, sizeof(output), "Flying License: %s | Boat License: %s | Driver License: %s", lic_str[0], lic_str[1], lic_str[2]);
SendClientMessage(playerid, COLOR_WHITE, output);