Cars Blowing up ?
#1

i want it so the cars dont blow up because then if someone is doing a mission then it is is annoying if you blow up .

i no that when the damage gets to 250 or below you blow up

i want it so that instead of blow up it says your vehicle broken down use /assistance

so no blowing up .
Reply
#2

anyone?
Reply
#3

Make it that if the vehicle health is less that 250 to turn off the engine (SetVehParamsEx or something like that, idk) and show an appropriate message.
Reply
#4

Код:
if(GetVehicleHealth(vehicleid) <= 250)
{
     new engine, lights, alarm, doors, bonnet, boot, objective;
     GetVehicleParamsEx(vehicleid,engine,lights,alarm,doors,bonnet,boot,objective);
     SetVehicleParamsEx(vehicleid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
     GameTextForPlayer(playerid, "Use ~r~ /assistance ~w~ to get help fixing you're car!", 3500, 4);
     return 1;
}
if you need help with the ENTIRE script with the /assitance and everything then you can PM me, i can help you.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)