car/bike fix?
#1

hi

i need a filterscript witch fix cars/bikes.. automatic




Reply
#2

forward Fixcar;

SetTimer("Fixcar",1000,false);

Public Fixcar(playerid)
{
SetCarHealth(100);
}

this is just straight out of my head so i post any errors here.

/Artix
Reply
#3

Quote:
Originally Posted by [RiFA
Artix ]
forward Fixcar;

SetTimer("Fixcar",1000,false);

Public Fixcar(playerid)
{
SetCarHealth(100);
}

this is just straight out of my head so i post any errors here.

/Artix


dont work pls make a FS
Reply
#4

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
Reply
#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


Forum Jump:


Users browsing this thread: 1 Guest(s)