[Ajuda] Ajuda nos "if" - 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] Ajuda nos "if" (
/showthread.php?tid=430353)
Ajuda nos "if" -
Juniiro3 - 13.04.2013
Olб, estou aqui para pedir uma pequena ajuda a vocкs. Estava codando um comando e foi tentar diminuir o tamnha dele colocando isso:
pawn Код:
if (APlayerData[OtherPlayer][PlayerClass] != ClassTaxista) return SendClientMessage(playerid, 0xFF0000FF, "Nгo hб taxistas online");
Ao invйs disso:
pawn Код:
if (APlayerData[OtherPlayer][PlayerClass] == ClassTaxista)
{
//Resto do code, que nгo hб necessidade de postar
}
else
return SendClientMessage(playerid, 0xFF0000FF, "Nгo hб taxistas online");
OBS: Nгo houve erros de compilacao; ClassTaxista й a Classe, profissao, como ClassMedico, por exemplo.
Mas, quando fui testar, ele executava o comando, e mesmo com taxistas online ele retornava o erro! Alguйm pode por favor me ajudar com isso.
Re: Ajuda nos "if" -
Jumper. - 13.04.2013
se deu arrado assim, tente trocar para ==
pawn Код:
if (APlayerData[OtherPlayer][PlayerClass] == ClassTaxista) return SendClientMessage(playerid, 0xFF0000FF, "Nгo hб taxistas online");
ouuu
pawn Код:
if (!APlayerData[OtherPlayer][PlayerClass] != ClassTaxista) return SendClientMessage(playerid, 0xFF0000FF, "Nгo hб taxistas online");
ouuu
pawn Код:
if (!APlayerData[OtherPlayer][PlayerClass] == ClassTaxista) return SendClientMessage(playerid, 0xFF0000FF, "Nгo hб taxistas online");
tenta os 3, fica dificil sem saber o que й ClassTaxista ;P
Re: Ajuda nos "if" -
Juniiro3 - 13.04.2013
ClassTaxista e a classe, a profissao.
Re: Ajuda nos "if" -
feliphemort - 13.04.2013
pawn Код:
if (APlayerData[OtherPlayer][PlayerClass] == ClassTaxista)
{
//Resto do code
}
else
SendClientMessage(playerid, 0xFF0000FF, "Nгo hб taxistas online");