30.07.2013, 21:33
I have this:
But this is what it shows.
It only shows the "t" and the top line agian.
And instead of the "t" there should be "test2" and without the ------[.. crimes] thing.
pawn Код:
crime1 = PlayerInfo[targetid][pWanted1];
crime2 = PlayerInfo[targetid][pWanted2];
crime3 = PlayerInfo[targetid][pWanted3];
crime4 = PlayerInfo[targetid][pWanted4];
crime5 = PlayerInfo[targetid][pWanted5];
crime6 = PlayerInfo[targetid][pWanted6];
crimes = PlayerInfo[targetid][pCrimes];
arrests = PlayerInfo[targetid][pArrested];
format(string, sizeof(string), "______________________________[%s Crimes]_____________________________", RPNU(targetid));
SendClientMessage(playerid, COLOR_ORANGE, string);
format(string, sizeof(string), "Crime 1: {FFFFFF}%s", crime1);
SendClientMessage(playerid, COLOR_ORANGE, string);
format(string, sizeof(string), "Crime 2: {FFFFFF}%s", crime2);
SendClientMessage(playerid, COLOR_ORANGE, string);
format(string, sizeof(string), "Crime 3: {FFFFFF}%s", crime3);
SendClientMessage(playerid, COLOR_ORANGE, string);
format(string, sizeof(string), "Crime 4: {FFFFFF}%s", crime4);
SendClientMessage(playerid, COLOR_ORANGE, string);
format(string, sizeof(string), "Crime 5: {FFFFFF}%s", crime5);
SendClientMessage(playerid, COLOR_ORANGE, string);
format(string, sizeof(string), "Crime 6: {FFFFFF}%s", crime6);
SendClientMessage(playerid, COLOR_ORANGE, string);
format(string, sizeof(string), "Crimes: {FFFFFF}%i", crimes);
SendClientMessage(playerid, COLOR_ORANGE, string);
format(string, sizeof(string), "Arrests: {FFFFFF}%i", arrests);
SendClientMessage(playerid, COLOR_ORANGE, string);
Quote:
[23:23:50] ______________________________[Henk Crimes]_____________________________ [23:23:50] Crime 1: {FFFFFF}t______________________________[Henk Crimes]_____________________________ [23:23:50] Crime 2: {FFFFFF} [23:23:50] Crime 3: {FFFFFF} [23:23:50] Crime 4: {FFFFFF} [23:23:50] Crime 5: {FFFFFF} [23:23:50] Crime 6: {FFFFFF} [23:23:50] Crimes: {FFFFFF}1 [23:23:50] Arrests: {FFFFFF}0 |
And instead of the "t" there should be "test2" and without the ------[.. crimes] thing.