
/*
FIRST EVER FITERSCRIPT OF MINE
Do WHAT EVER YOU WANT, PLEASE DONT REMOVE THE CREDITS!
____ ____ ___ | ____
| /\ |\ | | | / \ \ / | /
|____ / \ | \ | |__/ | | \/ \____ FILTERSCRIPT
| /____\ | \ | | \ | | / \
| / \ | \| |___| \__/ / ____/
*/
#define FILTERSCRIPT
#include <a_samp>
forward FixAllCar();
new FixTimer;
public OnFilterScriptInit()
{
print("\n----------------------------------------");
print(" Automatic Car Fix Filterscript By Fanboy ");
print("-----------------------------------------\n");
FixTimer = SetTimer("FixAllCar",1000,true);//After Every 1000 Milisecs, It Will Auto Repair All Cars.
}
public OnFilterScriptExit()
{
KillTimer(FixTimer);
return 1;
}
public FixAllCar()
{
for(new playerid = 0; playerid < MAX_PLAYERS; playerid++)
{
if(IsPlayerConnected(playerid) && IsPlayerInAnyVehicle(playerid))
{
new vehicleid = GetPlayerVehicleID(playerid);
SetVehicleHealth(vehicleid,1000.0);
}
}
}
|
Bad release.
If you want to earn reputation points, don't ask for it and release something well scripted, which is useful for the community and not made within a minute. -1 star. |
public FixAllCar()
{
for(new i = 1 , j = GetVehiclePoolSize(); i <= j; i++)
RepairVehicle(i);
}
|
Woah woah woah !
This guy is new, and it's our job to teach him what to do and what Not. So, i appreciate that he shared this eith the community. +Rep |

|
Bad release.
If you want to earn reputation points, don't ask for it and release something well scripted, which is useful for the community and not made within a minute. -1 star. |
|
Yeah, I see it nice that you give points to useless craps to get points in return for being capable of posting a server advertisement. That won't work out buddy, already obvious.
![]() OT: Giving 1-star to this release is pointless, it shouldn't be ranked at all. I wish I could give negative points, unfortunately, not possible. You people think you can earn reputation by posting shits, sharing things you don't even know anything about and asking for points for the awesomely done work done. |
|
This is very easy to do really should not turn into a filterscript
|