car/bike fix?
#5

Quote:
Originally Posted by snoob
pawn Код:
#include <a_samp>
forward FixAllCar();
new FixTimer;

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print(" Blank Filterscript by your name here");
    print("--------------------------------------\n");
    FixTimer = SetTimer("FixAllCar",1000,true);//every 1000 milisecond we call the function "FixAllCar"
    return 1;
}

public OnFilterScriptExit()
{
    KillTimer(FixTimer); // we kill our timer on script unload.
    return 1;
}

public FixAllCar()
{
    for(new playerid = 0; playerid < MAX_PLAYERS; playerid++)
    // loop all possible player
    {
        if(IsPlayerConnected(playerid) && IsPlayerInAnyVehicle(playerid))
        //if the player is connected AND in a car
        {
            new vehicleid = GetPlayerVehicleID(playerid);// gettin the vehicle id
            SetVehicleHealth(vehicleid,1000.0);// set the vehicle healt
        }
    }
}
i hope you know how to compile a script ...

EDIT: if not here is a link for a fully compiled amx ...
http://www.studio2015.ca/fixallcar.amx

thanks
Reply


Messages In This Thread
car/bike fix? - by Eazy_E214 - 17.08.2009, 15:33
Re: car/bike fix? - by Doppeyy - 17.08.2009, 16:25
Re: car/bike fix? - by Eazy_E214 - 17.08.2009, 19:22
Re: car/bike fix? - by snoob - 17.08.2009, 19:51
Re: car/bike fix? - by Eazy_E214 - 18.08.2009, 13:32

Forum Jump:


Users browsing this thread: 1 Guest(s)