08.03.2017, 10:12
ZiGGi, ты гений.
Использовал подобный алгоритм, если кому надо будет:
в кратце, нужна была функция которая бесплалевно снимет капот
Использовал подобный алгоритм, если кому надо будет:
PHP Code:
COMMAND:test(playerid, params[]){
new panels,doors,lights,tires,vehid = GetPlayerVehicleID(playerid),Float:BufPos[6];
GetVehiclePos(vehid,BufPos[0],BufPos[1],BufPos[2]);
GetVehicleVelocity(vehid,BufPos[3],BufPos[4],BufPos[5]);
GetVehicleDamageStatus(vehid, panels, doors, lights, tires);
SetVehiclePos(vehid,BufPos[0],BufPos[1],BufPos[2]-2.0);
UpdateVehicleDamageStatus(vehid, panels, 00000004, lights, tires);
SetVehiclePos(vehid,BufPos[0],BufPos[1],BufPos[2]);
SetVehicleVelocity(vehid,BufPos[3],BufPos[4],BufPos[5]);
return true;
}