10.02.2017, 20:29
pawn Код:
if(Player[playerid][Emprego] != "Nenhum")
Й possнvel?
if(Player[playerid][Emprego] != "Nenhum")
new string[124]
format(string, sizeof(string), "Nenhum");
if(strcmp(string,Player[playerid][Emprego],false))
{
//Nгo й igual
}
else
{
//Й igual
}
Sim й!
PHP код:
|
if(strcmp("Nenhum", Player[playerid][Emprego], false))
{
//Nгo й igual
}
else
{
//Й igual
}
#define Nenhum 0
#define Gari 1
#define Jubileu 2
if(strcmp("Nenhum", Player[playerid][Emprego], false))
{
//Sгo diferentes
}
else
{
//Sгo iguais
}
strcmp(const string1[], const string2[], bool:ignorecase=false);
// const string1 comparar se й igual a const string2[]
// bool:ignorecase=false == vocк quer que entre a comparaзгo ignore letras maiъsculas e minuscula. (false == nгo || true == sim).