16.02.2012, 11:21
try this one:
UNTESTED but i think it should work XD
pawn Code:
CMD:acar(playerid, params[])
{
new Float:x, Float:y, Float:z,Float:angle;
if(PlayerInfo[playerid][pAdmin] >= 1)
{
PutPlayerInVehicle(playerid, CreateVehicle(429, x,y,z,angle, 0, 0, 60), 0);
ChangeVehicleColor(429, 0, 1);
}
else return SendClientMessage(playerid,COLOR_RED,"You have to be level 1 to use that command!");
return 1;
}