Simple "Fix Car" Command
#1

Код:
FixCar(playerid)
{
    if(IsPlayerInAnyVehicle(playerid) == 1)
    {
        if(GetPlayerState(playerid) == 2)
        {
        SetVehicleHealth(GetPlayerVehicleID(playerid),1000.0);
        SendClientMessage(playerid,COLOR_GREEN,"Car fixed!");
        }
        else
        {
        SendClientMessage(playerid,COLOR_YELLOW,"You need to be the driver to fix your car");
        }
    }
    else
    {
        SendClientMessage(playerid,COLOR_YELLOW,"You need to be in a vehicle to fix it!");
    }
}
I got this from the following link: http://weedarr.wikidot.com/cfunctions
Reply


Messages In This Thread
Simple "Fix Car" Command - by stormchaser206 - 18.01.2012, 19:11
Re: Simple "Fix Car" Command - by Konstantinos - 18.01.2012, 19:17
Re: Simple "Fix Car" Command - by stormchaser206 - 18.01.2012, 19:25
Re: Simple "Fix Car" Command - by Konstantinos - 18.01.2012, 19:27

Forum Jump:


Users browsing this thread: 4 Guest(s)