12.03.2011, 15:51
Okay, well I made a flip command, but I cant seem to get it to work.
I'm figuring its missing a bracket, as I get 26 errors when compiling
Код:
command(flip, playerid, params[])
{
#pragma unused params
if(Player[playerid][AdminLevel] >= 3)
new
currentveh,
Float:angle;
currentveh = GetPlayerVehicleID(playerid);
GetVehicleZAngle(currentveh, angle);
SetVehicleZAngle(currentveh, angle);
SendClientMessage(playerid, WHITE, "Your vehicle has been flipped.");
return 1;
}

