20.06.2010, 02:52
What is this?
An simple automatic vehicle repair filterscript.
Where to download?
CLICK ME
Code .PWN
Have a happy coding!
An simple automatic vehicle repair filterscript.
Where to download?
CLICK ME
Code .PWN
Код:
#include <a_samp> #define COLOR_YELLOW 0xFFFF00AA forward FixAllCar(); new FixTimer; public OnFilterScriptInit() { print("\n--------------------------------------"); print(" Auto Car Repair By : Brian Gutierrez "); 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 } } }