14.02.2014, 23:17
a duvida й o seguinte, utilizando isto
й correto usar assim ou assim
por um exemplo em comando
a utilizaзгo dele pode ser sem o == 1 ?
se utilizar sуmente
ele utiliza sу o valor 1, ou alguma vez ele utilize 0 ?
PHP код:
PlayerInfo[playerid][pTeste]
PHP код:
PlayerInfo[playerid][pTeste] == 1
PHP код:
if(strcmp(cmd, "/teste,true) == 0)
{
if(PlayerInfo[playerid][pTeste])
{
Print("oi");
}
return 1;
}
PHP код:
if(strcmp(cmd, "/teste,true) == 0)
{
if(PlayerInfo[playerid][pTeste])
{
Print("oi");
}
return 1;
}
segunda forma .
if(strcmp(cmd, "/teste,true) == 0)
{
if(PlayerInfo[playerid][pTeste] == 1)
{
Print("oi");
}
return 1;
}
se utilizar sуmente
PHP код:
PlayerInfo[playerid][pTeste]