[AJUDA]Transformar cmd em textdraw
#1

Quero fazer uma textdraw com os presos q sao exibidos nesse cmd:
PHP код:
if(strcmp(cmdtext"/presos"true) == 0){
SendClientMessage(playerid,0x008000AA,".:: Presos ::.");
new 
Jogador[24];
new 
count 0;
new 
msg[120];
for(new 
i=0i<MAX_PLAYERSi++){
if(
IsPlayerConnected(i) && preso[i]){
GetPlayerName(i,Jogador,24);
format(msg,sizeof(msg),"%s (ID: %d)"Jogador,i);
SendClientMessage(playerid0x0088CAAAmsg);
count++;
}
}
if(
count == 0){
SendClientMessage(playerid0xFF0000AA"Ninguйm online esta Preso!");
}
return 
1;

de uma forma q fike parecido com isso
Код:
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]);
Reply
#2

pawn Код:
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);
TextDrawSetString(oi[i],msg);
TextDrawShowForPlayer(i, oi[i]);
count++;
}
}
if(count == 0){
SendClientMessage(playerid, 0xFF0000AA, "Ninguйm online esta Preso!");
}
return 1;
}
ONGAMEMODEINIT
pawn Код:
oi[i] = TextDrawCreate(198.000000,396.000000," ");//coordenada
        TextDrawAlignment(oi[i],0);//alinhamento
        TextDrawBackgroundColor(oi[i],0x000000ff); //cor do fundo
        TextDrawFont(oii],1);// tipo de fonte
        TextDrawLetterSize(oi[i],0.299999,1.000000); // tamnho do letra
        TextDrawColor(oi[i],0xffffffff); //cor do texto
        TextDrawSetOutline(oi[i],1); // linha de contorno
        TextDrawSetProportional(oi[i],1); // proporзхes
        TextDrawSetShadow(oi[i],1); // sombra
@edit : Esqueci disso:

Код:
 new Text:oi[MAX_PLAYERS]; //topo do gm
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)