29.05.2014, 13:46
hello, is my command will work ? if any wrong please help me 

PHP код:
CMD:removeucar(playerid,params[])
{
if(PlayerInfo[playerid][pAdmin] < 3 && !IsPlayerAdmin(playerid)) return SendClientMessage( playerid, -1, "You Must Be Higher Level To To Use This Command");
{
for(new i = 0; i < MAX_VEHICLE; vv++)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(!IsPlayerInVehicle(ii, vv))
{
DestroyVehicle(vv);
}
}
}
}
return 1;
}