[Ajuda] Comando inválido - 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] Comando inválido (
/showthread.php?tid=606280)
Comando inválido -
iFaLLeN - 02.05.2016
Код:
if(strcmp(cmd,"/Previsao",true)==0)
{
if( pInfo[ playerid ][ Prof ] == METEOROLOGISTA || aInfo[ playerid ][ Admin ] == 1 )
{
new string[256];
new i;
new randMSG = random(sizeof(RandomPrevisao));
format(string,sizeof(string),"%s disse %s ",PlayerName( i ),RandomPrevisao[randMSG]);
SendClientMessageToAll( -1, string ); }
else
{
SendClientMessage(playerid, COLOR_ERRO,"| ERRO | Você não tem permissão!");
return 1;
}
}
Manolos o problema é o seguinte, o cmd funfa de boa só que em baixo Aparece Comando inválido, o que tem de errado?
Re: Comando invбlido -
99fe3rnando - 02.05.2016
PHP код:
if(strcmp(cmd,"/Previsao",true)==0)
{
if( pInfo[ playerid ][ Prof ] == METEOROLOGISTA || aInfo[ playerid ][ Admin ] == 1 )
{
new string[256];
new i;
new randMSG = random(sizeof(RandomPrevisao));
format(string,sizeof(string),"%s disse %s ",PlayerName( i ),RandomPrevisao[randMSG]);
SendClientMessageToAll( -1, string );
return 1;// <<<<<<<
}
else
{
SendClientMessage(playerid, COLOR_ERRO,"| ERRO | Vocк nгo tem permissгo!");
return 1;//<<<<<<
}
}
Re: Comando invбlido -
Monotox - 02.05.2016
Vocк usa o else apуs o fechamento de brackets do if.
Veja:
Код:
if(strcmp(cmd,"/Previsao",true)==0)
{
if( pInfo[ playerid ][ Prof ] == METEOROLOGISTA || aInfo[ playerid ][ Admin ] == 1 )
{
new string[256];
new i;
new randMSG = random(sizeof(RandomPrevisao));
format(string,sizeof(string),"%s disse %s ",PlayerName( i ),RandomPrevisao[randMSG]);
SendClientMessageToAll( -1, string ); }
else // ERRADO
{
SendClientMessage(playerid, COLOR_ERRO,"| ERRO | Vocк nгo tem permissгo!");
return 1;
}
}
Код:
if(strcmp(cmd,"/Previsao",true)==0)
{
if( pInfo[ playerid ][ Prof ] == METEOROLOGISTA || aInfo[ playerid ][ Admin ] == 1 )
{
new string[256];
new i;
new randMSG = random(sizeof(RandomPrevisao));
format(string,sizeof(string),"%s disse %s ",PlayerName( i ),RandomPrevisao[randMSG]);
SendClientMessageToAll( -1, string )
}
else{ //CERTO
SendClientMessage(playerid, COLOR_ERRO,"| ERRO | Vocк nгo tem permissгo!");
}
return 1;
}