Trucker Mission
#4

Quote:
Originally Posted by BenzoAMG
Посмотреть сообщение
He had an incorrect brace, where he had '}', he should of had a '{'. But instead, you go and put in more closing braces...?

pawn Код:
Trucker_OnPlayerEnterCheckpoint(playerid)
{
    // Check if the player is inside his vehicle while entering a checkpoint
    if (GetPlayerVehicleID(playerid) == APlayerData[playerid][VehicleID])
    {
        // Also check if the player still has his trailer attached
        if (APlayerData[playerid][TrailerID] == GetVehicleTrailer(GetPlayerVehicleID(playerid)))
        {
            // Check the jobstep
            switch (APlayerData[playerid][JobStep])
            {  
                // JobStep is 1 (truckdriver is loading his goods at the checkpoint)
                case 1:
                {
                    format(RouteText, 50, "Loading");
                    TextDrawSetString(APlayerData[playerid][MissionText], RouteText);
                }
                // JobStep is 2 (truckdriver is unloading his goods at the checkpoint) or 3 (unloading for convoys)
                case 2, 3:
                {
                    format(RouteText, 50, "Unloading");
                    TextDrawSetString(APlayerData[playerid][MissionText], RouteText);
                }
            }
            // Disable the player's actions (he cannot move anymore)
            TogglePlayerControllable(playerid, 0);
            // Start a timer (Public function "LoadUnload(playerid)" gets called when the timer runs out)
            APlayerData[playerid][LoadingTimer] = SetTimerEx("Trucker_LoadUnload", 5000, false, "d" , playerid);
        }
        else SendClientMessage(playerid, 0xFFFFFFFF, TXT_NeedTrailerToProceed);
    }
    else SendClientMessage(playerid, 0xFFFFFFFF, TXT_NeedVehicleToProceed);
    return 1;
}
Thanks
Reply


Messages In This Thread
Trucker Mission - by DerickClark - 18.05.2013, 04:18
Re: Trucker Mission - by edgargreat - 18.05.2013, 04:51
Re: Trucker Mission - by Threshold - 18.05.2013, 05:09
Re: Trucker Mission - by DerickClark - 18.05.2013, 15:00
Re: Trucker Mission - by NL-Sultan - 18.05.2013, 15:05

Forum Jump:


Users browsing this thread: 1 Guest(s)