Posts: 1,208
Threads: 36
Joined: Apr 2015
if not compile it to show errors ~.~
Posts: 217
Threads: 38
Joined: Jun 2015
Reputation:
0
what errors are u getting?
Posts: 1,208
Threads: 36
Joined: Apr 2015
PHP код:
if(strcmp(cmd, "/gps", true) == 0) //GPS
{
if(PlayerInfo[playerid][pManoDer] != 125 && PlayerInfo[playerid][pManoIzq] != 125){
SendClientMessage(playerid, Rojo, "* You do not have a GPS in hand");
return 1;
}
ShowPlayerDialog(playerid,dGPS,DIALOG_STYLE_LIST, "{FFFFFF}System GPS", "» Jobs\n» Banks\n» Houses", "Accept", "Closet");
}
return 1; //so myself sitting here, no one sees me :P
}
Posts: 85
Threads: 17
Joined: Jul 2015
Код:
if(strcmp(cmd, "/gps", true) == 0) //GPS
{
if(PlayerInfo[playerid][pManoDer] != 125 && PlayerInfo[playerid][pManoIzq] != 125)return SendClientMessage(playerid, Rojo, "* You do not have a GPS in hand");
ShowPlayerDialog(playerid,dGPS,DIALOG_STYLE_LIST, "{FFFFFF}System GPS", "» Jobs\n» Banks\n» Houses", "Accept", "Closet");
return 1;
}