Jump to content
  • 0

Comanda vre, can't destroy this car.


adv1337

Question

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

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

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;
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.