Making one command
#8

Sorry if it itches you, but I like to work with indentation.
pawn Код:
CMD:dcam(playerid, params[])
{
    if(DashCamActivated[playerid] == false)
    {
        if(IsPlayerInAnyVehicle(playerid))
        {
            new vehid = GetPlayerVehicleID (playerid);
            if(IsACop(playerid))
            {
                if (VehRadarID [vehid] == -1) return 1;
                foreach(Player, i)
                {
                    CheckingSpeed [vehid] = SetTimerEx ("UpdateSpeed", 100, 1, "d", vehid);
                    PlayerTextDrawShow (i,RadarHud[i]);
                    PlayerTextDrawShow (i,VehicleModel[i]);
                    PlayerTextDrawShow (i,DashCamText);
                    DashCamActivated[playerid] = true;
                }
            }
            else
            {
                DashCamActivated[playerid] = false;
                if(CheckingSpeed[vehid] > 0)
                {
                    foreach(Player, i)
                    {
                        KillTimer (CheckingSpeed [vehid]);
                        CheckingSpeed [vehid] = -1;
                        PlayerTextDrawHide (i, RadarHud[i]);
                        PlayerTextDrawHide (i, VehicleModel[i]);
                        PlayerTextDrawHide (i, DashCamText);
                    }
                }
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
Making one command - by lulo356 - 31.12.2014, 01:50
Re: Making one command - by Ciarannn - 31.12.2014, 04:04
Re: Making one command - by Schneider - 31.12.2014, 04:32
Re: Making one command - by lulo356 - 31.12.2014, 11:58
Re: Making one command - by Write - 31.12.2014, 12:05
Re: Making one command - by lulo356 - 31.12.2014, 13:05
Re: Making one command - by lulo356 - 31.12.2014, 14:31
Re: Making one command - by LivingLikeYouDo - 31.12.2014, 14:35
Re: Making one command - by lulo356 - 31.12.2014, 15:15

Forum Jump:


Users browsing this thread: 4 Guest(s)