Como puedo hacer cuando estoy cerca del coche me abre el capo de coche. No cundo estoi dentro
Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if(newkeys == KEY_SUBMISSION)
{
new Float:X, Float:Y, Float:Z;
new engine,lights,alarm,doors,bonnet,boot,objective;
for(new vehicles; vehicles < MAX_VEHICLES; vehicles ++ )
{
GetVehiclePos(vehicles, X, Y, Z );
if(IsPlayerInRangeOfPoint(playerid, 7.0, X, Y, Z ) )
{
GetVehicleParamsEx(vehicles,engine,lights,alarm,doors,bonnet,boot,objective);
SetVehicleParamsEx(vehicles,engine,lights,alarm,doors,bonnet,VEHICLE_PARAMS_ON,objective);
SetPVarInt(playerid, "Boot", 1);
}
}
}
return 1;
}
KEY_SUBMISSION es el nъmero 2 por defecto (el que aprietas para hacer misiones de policнa, paramйdico etc), y no funciona estando a pie. Por ese motivo solo funciona cuando estбs en el vehнculo.