01.05.2018, 13:26
Hello guys, can you turn on the daytime car lights? I need the code, very thx friends...
I have this code but only turn on the lights at night:
I have this code but only turn on the lights at night:
Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys) { if(newkeys == KEY_SUBMISSION) { if(IsPlayerInAnyVehicle(playerid)) { if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER) { new vehicleid, engine, lights, alarm, doors, bonnet, boot, objective; vehicleid = GetPlayerVehicleID(playerid); GetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective); if(lights) { SetVehicleParamsEx(vehicleid, engine, false, alarm, doors, bonnet, boot, objective); } else { SetVehicleParamsEx(vehicleid, engine, true, alarm, doors, bonnet, boot, objective); } } } return 1; }