Lights problem
#1

Well, I have a little problem. My lights are bugged. It works only when is dark outside (night). I don't know what's up but the lights are not working when is day ? I saw on lots of servers that is working when is day outside.

Codes:

Код:
CMD:lights(playerid, param[])
{
 	new string[128], idx;
	if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
	if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER) return SendClientMessage(playerid, COLOR_GREY, "You are not driving a vehicle.");
    idx = GetPlayerVehicleID(playerid);
    new engine, lights, alarm, doors, bonnet, boot, objective;
	if(!lights)
	{
	    GetVehicleParamsEx(idx, engine, lights, alarm, doors, bonnet, boot, objective);
	    SetVehicleParamsEx(idx, engine, 1, alarm, doors, bonnet, boot, objective);
	    format(string, sizeof(string), "* %s turns their vehicle's lights on.", RPN(playerid));
		SendNearbyMessage(playerid, 15, string, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE);
		GameTextForPlayer(playerid, "~g~Lights On", 3500, 3);
	}
	else
	{
	    GetVehicleParamsEx(idx, engine, lights, alarm, doors, bonnet, boot, objective);
	    SetVehicleParamsEx(idx, engine, 0, alarm, doors, bonnet, boot, objective);
	    format(string, sizeof(string), "* %s turns their vehicle's lights off.", RPN(playerid));
		SendNearbyMessage(playerid, 15, string, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE);
		GameTextForPlayer(playerid, "~r~Lights Off", 3500, 3);
	}
	return 1;
}
Reply
#2

Is there anything else in your script limiting the lights?
Reply
#3

No. But I noticed that when I am out of the vehicle the lights is turning on.
Reply
#4

pawn Код:
CMD:lights(playerid, param[])
{
    new string[128], vid;
    if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
    if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER) return SendClientMessage(playerid, COLOR_GREY, "You are not driving a vehicle.");
    vid = GetPlayerVehicleID(playerid);
    new engine, lights, alarm, doors, bonnet, boot, objective;
    if(!lights)
    {
        GetVehicleParamsEx(vid, engine, lights, alarm, doors, bonnet, boot, objective);
        SetVehicleParamsEx(vid, engine, true, alarm, doors, bonnet, boot, objective);
        format(string, sizeof(string), "* %s turns their vehicle's lights on.", RPN(playerid));
        SendClientMessage(playerid,COLOR_PURPLE,string);
        GameTextForPlayer(playerid, "~g~Lights On", 3500, 3);
    }
    else
    {
        GetVehicleParamsEx(vid, engine, lights, alarm, doors, bonnet, boot, objective);
        SetVehicleParamsEx(vid, engine, false, alarm, doors, bonnet, boot, objective);
        format(string, sizeof(string), "* %s turns their vehicle's lights off.", RPN(playerid));
        SendClientMessage(playerid,COLOR_PURPLE,string);
        GameTextForPlayer(playerid, "~r~Lights Off", 3500, 3);
    }
    return 1;
}
Se ajudei da reputation
Reply
#5

Still not working.
Reply
#6

Hmm, maybe they work normally, just unvisable for you. Like ChatBubble for example, you cant see it but others can. Just guessing here.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)