04.06.2013, 20:40
This command i got is not letting me compile My gamemode.. i think its the brackets idk
Код:
CMD:wheels(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] <= 4 || PlayerInfo[playerid][pJob] != 7 || PlayerInfo[playerid][pJob2] != 7)
{
SendClientMessageEx(playerid, COLOR_GREY, " You are not a Car Mechanic or Level 4 Admin!");
return 1;
)
new Player;
if(!IsPlayerInAnyVehicle(Player)) return SendClientMessage(playerid,COLOR_RED, "You are not in any vehicle!");
ShowPlayerDialog(playerid, 199, DIALOG_STYLE_LIST, "Wheels", "Shadow\nMega\nRimshine\nWires\nClassic\nTwist\nCutter\nSwitch\nGrove\nImport\nDollar\nTrance\nAtomic\nAhab\nVirtual\nAccess\nOffroad", "OK", "ESC");
return 1;
}

