08.01.2012, 16:36
Hey guys,i'm finished with my first filterscript!
I made this with wikis etc..
Hope you like it
NO BAD COMMENTS PLEASE,ITS MY FIRST FILTERSCRIPT!
I compiled it too for you
We only have a few rules
-NEVER edit it wihout my permission.
-Don't say you made it,most credits go to me,others to SAMP wiki xD
Megaupload - Download (click)
I made this with wikis etc..
Hope you like it
NO BAD COMMENTS PLEASE,ITS MY FIRST FILTERSCRIPT!
I compiled it too for you

We only have a few rules
-NEVER edit it wihout my permission.
-Don't say you made it,most credits go to me,others to SAMP wiki xD
Code:
#include <a_samp>
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Repair Filterscript by Lenny ");
print("--------------------------------------\n");
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp("/repairvehicle", cmdtext))
{
if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, COLOR_RED, "You aren't in a vehicle!");
RepairVehicle(GetPlayerVehicleID(playerid));
SendClientMessage(playerid, COLOR_GREEN, "Your vehicle has been repaired!");
return 1;
}
}
Megaupload - Download (click)

