SA-MP Forums Archive
[AJUDA] Com vip na text draw ! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Com vip na text draw ! (/showthread.php?tid=516302)



[AJUDA] Com vip na text draw ! - lukinhasantos1 - 30.05.2014

Olб, queria pedir ajuda com uma textdraw que eu e meu amigo estamos tentando fazer...
Na nossa gm possuem DOIS vips e queremos saber como coloca os DOIS...
Agente conseguiu por um deles, mas nгo conseguimos por os dois juntos, poderiam nos ajudar?

new viptext[20];
if(dini_Int(file, "VIPDIAMANTE") == 1){format(viptext,20,"~p~Diamante");}
else{format(viptext,20,"~r~N/A");}
new string[256];
format(string, sizeof(string), " ~r~~h~Vip: ~w~~h~%s ",viptext);

(Um dos vips se chama "VIPDIAMANTE" e o outro "VIP"
Desde jб, obrigado !


Re: [AJUDA] Com vip na text draw ! - Saw_BR - 30.05.2014

pawn Код:
new viptext[20];
new string[256];
if(dini_Int(file, "VIPDIAMANTE") == 1){
    format(viptext,20,"~p~Diamante");
} else {
    format(viptext,20,"~r~N/A");
}
format(string, sizeof(string), " ~r~~h~Vip: ~w~~h~%s ",viptext);
esse
pawn Код:
format(string, sizeof(string), " ~r~~h~Vip: ~w~~h~%s ",viptext);
estб solto?


Re: [AJUDA] Com vip na text draw ! - KlausM - 31.05.2014

Veja se funciona nгo testei:
PHP код:
new viptext[13];
new 
string[34];
new
    
pVip[MAX_PLAYERS];
    
if(
pVip[playerid] == 1){format(viptext,20,"~p~Vip");}
else if(
pVip[playerid] == 2){viptext,20,"~p~Diamante");}
else{
format(viptext,20,"~r~N/A");}
format(stringsizeof(string), " ~r~~h~Vip: ~w~~h~%s ",viptext); 



Respuesta: [AJUDA] Com vip na text draw ! - [BWL]Chamaleon - 31.05.2014

pawn Код:
new viptext[20];
if(dini_Int(file, "VIPDIAMANTE") == 1){format(viptext,20,"~p~Diamante");}
if(dini_Int(file, "VIP") == 1){format(viptext,20,"~p~VIP");}
else{format(viptext,20,"~r~N/A");}
new string[256];
format(string, sizeof(string), " ~r~~h~Vip: ~w~~h~%s ",viptext);
Atenciosamente,