26.04.2010, 04:47
Tenta assim
ou assim
EDIT: Reparei que tem duas chaves "{" para o mesmo lado.......
Vocк tem assim
Tenta assim
pawn Код:
if(!strcmp(cmdtext, "/stunts", true))
pawn Код:
if(strcmp(cmd, "/stunts", true) == 0)
Vocк tem assim
pawn Код:
{
if(strcmp("/stunts", cmd, true) == 0)
{
SetPlayerPos(playerid,1789.4393,-2494.4978,13.1246);
return 1;
pawn Код:
}
if(strcmp("/stunts", cmd, true) == 0)
{
SetPlayerPos(playerid,1789.4393,-2494.4978,13.1246);
return 1;
}