Quote:
Originally Posted by DraKoN
@SubZero:
Nгo nessecita chamar else,otimize, й melhor
pawn Код:
if(GangID[playerid]==0) format(String, sizeof(String),"Gang: Nгo possui gang. | Registrado: %s",dini_Get(FormatGang(GangID[playerid]),"Nome"),Registrado); if(GangID[playerid]!=0)format(String, sizeof(String),"Gang: %s | Registrado: %s",dini_Get(FormatGang(GangID[playerid]),"Nome"),Registrado);
|
Eu ainda acho que o else serб mais rбpido, pois GangID[playerid] й uma variavel e possuirб 2 ifs.
Й a mesma coisa que:
pawn Код:
if(MeuiD==1) {}
if(MeuiD==2) {}
if(MeuiD==3) {}
if(MeuiD!=3&&MeuID!=2&&MeuID!=1) {}
Que й o mesmo que:
pawn Код:
if(MeuiD==1) {}
else if(MeuiD==2) {}
else if(MeuiD==3) {}
else {}
No 2є exemplo, gasta menos caracteres e ele nгo precisa verificar todos os if's se jб encontrou a resposta.