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;
}
Question
adv1337
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
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 accountSign in
Already have an account? Sign in here.
Sign In Now