12.08.2011, 21:21
Quero fazer uma textdraw com os presos q sao exibidos nesse cmd:
de uma forma q fike parecido com isso
PHP код:
if(strcmp(cmdtext, "/presos", true) == 0){
SendClientMessage(playerid,0x008000AA,".:: Presos ::.");
new Jogador[24];
new count = 0;
new msg[120];
for(new i=0; i<MAX_PLAYERS; i++){
if(IsPlayerConnected(i) && preso[i]){
GetPlayerName(i,Jogador,24);
format(msg,sizeof(msg),"%s (ID: %d)", Jogador,i);
SendClientMessage(playerid, 0x0088CAAA, msg);
count++;
}
}
if(count == 0){
SendClientMessage(playerid, 0xFF0000AA, "Ninguйm online esta Preso!");
}
return 1;
}
Код:
format(string, sizeof(string), " ~p~Brasil Pc Games ~p~Level:~w~%d ~p~Estudo:~w~%d",dini_Int(file, "Level"),dini_Int(file, "Faculdade"),dini_Int(file, "Combustivel")); TextDrawSetString(gText3[i], string); TextDrawShowForPlayer(i, gText3[i]);