Jump to content
  • 0

Comanda vre, can't destroy this car.


Question

Posted

CMD:vre(playerid, params[])
{
    if(gPlayerLogged[playerid] == 0) return SendClientMessage(playerid, COLOR_ERROR, "You need to login first.");
    if(PlayerInfo[playerid][pAdmin] < 5) return SendClientMessage(playerid, COLOR_ERROR, "Nu ai gradul necesar ca sa folosesti aceasta comanda!");
    if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, COLOR_ERROR, "You need to be in a vehicle.");
    new found = 0;
    for(new i = 0; i < sizeof(VehToDestroy) && found == 0; i++)
    {
        if(VehToDestroy == GetPlayerVehicleID(playerid))
        {
            vDBID[ VehToDestroy ] = 0;
            DestroyVehicle(VehToDestroy);
            VehToDestroy = 1;
            found = 1;
        }
    }
    if(found == 0)SendClientMessage(playerid, COLOR_ERROR, "You can't destroy this vehicle.");
    return 1;
}

Can't destroy this car, si e masina simpla

1 answer to this question

Recommended Posts

  • 0
Posted

De ce te chinui atata pentru o comanda foarte simpla un cod de genu ar fi 

Citat

CMD:vre(playerid, params[]) {
    if(PlayerInfo[playerid][pAdmin] < 3)return SCM(playerid, -1, "Nu ai acces!");
    if(!IsPlayerInAnyVehicle(playerid))return SCM(playerid, -1, "Nu esti intr-un vehicul!");
    DestroyVehicle(GetPlayerVehicleID(playerid)), SCM(playerid, -1, "Vehicul distrus!");
    return 1;
}

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.