Bem dei uma pequena olhada,vocк poderia diminuir um pouco de linha nesta parte :
PHP код:
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[0]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[1]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[2]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[3]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[4]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[5]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[6]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[7]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[8]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[9]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[10]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[11]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[12]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[13]);
TextDrawShowForPlayer(playerid, Text:TDEditor_TD[14]);
Usando um looping.
Exemplo :
PHP код:
for(new i = 0; i <= sizeof(TDEditor_TD); i++)
{
TextDrawShowForPlayer(playerid, TDEditor_TD[i]);
}
Isso aqui compilou ? Text:TDEditor_TD[0] remova o Text.
As condiзхes que verifica se o jogador й Administrador em vez disto :
PHP код:
if(pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5)
Poderia Usar
PHP код:
if(pAdmin[playerid] >= 3)
Nestas linhas :
PHP код:
if(clickedid == MenuADM[9])//veiculos
{
CancelSelectTextDraw(playerid);
TextdrawsF(playerid);
SendClientMessage(playerid, Amarelo, "| INFO | Sistema Desativado Para Correзхes!");
return 1;
}
if(clickedid == MenuADM[10])// comandos administrativos
{
CancelSelectTextDraw(playerid);
TextdrawsF(playerid);
SendClientMessage(playerid, Amarelo, "| INFO | Sistema Desativado Para Correзхes!");
return 1;
}
Vocк pode usar o operador OR,pois pelo que vi ambos blocos de cуdigo tem a mesma funзгo.Exemplo :
PHP код:
if(clickedid == MenuADM[9] || clickedid == MenuADM[10])//veiculos
{
CancelSelectTextDraw(playerid);
TextdrawsF(playerid);
SendClientMessage(playerid, Amarelo, "| INFO | Sistema Desativado Para Correзхes!");
return 1;
}
Dei uma pequena olhada,se achar mais dou um edit. As dicas que dei creio que nгo vai alterar muito in Game,й mais questгo de legibilidade.