02.03.2012, 18:04
(
Последний раз редактировалось [Cali]ChrOnic_T; 12.03.2012 в 18:06.
Причина: Forgot sum dont bug me.
)
Today Imma Show You My FilterScript I Made.
I Mostly Made it For Beginner Server Owners..
/Rules Command FilterScript.
Download
MediaFire: http://www.mediafire.com/?bxxhx2f6eu558sq
PasteBin : http://pastebin.com/CqjW3jAD
__________________________________________________ _______________________________________________
How to Install?
1. Download The File.
2. Copy the lsgw3.amx and paste it in your FilterScripts Folder
3. Add lsgw3 to your server.cfg (Example: filterscripts lsgw3)
__________________________________________________ _______________________________________________
CREDITS
_____________________________________________
LuiisRubio - Thought of the FilterScript
[K4L]Fox - Helped with Making
SA:MP Team - For Creating SA:MP
__________________________________________________ _______________________________________________
Other Info
If yall dont wont those Colors Heres some Better ones
__________________________________________________ _______________________________________________
Pictures
__________________________________________________ _______________________________________________
/Help Command + /credits
__________________________________________________ _______________________________________________
How to Install?
1. Copy the Code
2. Open your Pawn Compliter
3. Paste it There
4. Save it In anyplace you want
5. Go Back to Your PAWN Compliter and Click on "Build" Then click on "Compile"
If it says
Then it compiled now it will be in the Folder you saved it in But it will be , The name of the FS .amx For example
FS.amx So Go to your server add the file in your filterscripts folder then add the name of the filterscript on your filterscript line
Example : filterscripts NameOfIt
__________________________________________________ _______________________________________________
Code:
/help cmd:
Code:
I Mostly Made it For Beginner Server Owners..
/Rules Command FilterScript.
Download
MediaFire: http://www.mediafire.com/?bxxhx2f6eu558sq
PasteBin : http://pastebin.com/CqjW3jAD
__________________________________________________ _______________________________________________
How to Install?
1. Download The File.
2. Copy the lsgw3.amx and paste it in your FilterScripts Folder
3. Add lsgw3 to your server.cfg (Example: filterscripts lsgw3)
__________________________________________________ _______________________________________________
CREDITS
_____________________________________________
LuiisRubio - Thought of the FilterScript
[K4L]Fox - Helped with Making
SA:MP Team - For Creating SA:MP
__________________________________________________ _______________________________________________
Other Info
If yall dont wont those Colors Heres some Better ones
Код:
#define COLOR_BLUE 0x0000FF00 #define COLOR_GREEN 0x33AA33AA #define COLOR_YELLOW 0xFFFF00AA
Pictures
__________________________________________________ _______________________________________________
/Help Command + /credits
__________________________________________________ _______________________________________________
How to Install?
1. Copy the Code
2. Open your Pawn Compliter
3. Paste it There
4. Save it In anyplace you want
5. Go Back to Your PAWN Compliter and Click on "Build" Then click on "Compile"
If it says
Код:
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
FS.amx So Go to your server add the file in your filterscripts folder then add the name of the filterscript on your filterscript line
Example : filterscripts NameOfIt
__________________________________________________ _______________________________________________
Code:
pawn Код:
#include <a_samp>
#define FILTERSCRIPT
#define G 0x99FF9900
#define R 0xAA3333AA
public OnFilterScriptInit()
{
print("\n-----------------------------------------");
print("---- | /Credits CMD Loaded On Your | -----");
print("----- | Shitty Dum Fucking Server | ---- ");
print("-------------------------------------------\n");
//Credits are for telling the players who's the owner of the server and shit
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext,"/credits",true)==0)
{
SendClientMessage(playerid,R,">>> | Server Name Credits | <<<");
SendClientMessage(playerid,G,"_----Owners----_");
SendClientMessage(playerid,G,"Your Credits");
SendClientMessage(playerid,G,"Your credits Here");
SendClientMessage(playerid,G,"Your credits Here");
SendClientMessage(playerid,G,"Your credits Here");
SendClientMessage(playerid,G,"Your credits Here");
SendClientMessage(playerid,G,"Your credits Here");
SendClientMessage(playerid,R,"_--------------------------------_");
return 1;
}
return 0;
}
// ___________________________________________________
// Dont remove this shit okay Bitch?
// I sware if i find this shit missing in a mirror u will be Fucked up.
/help cmd:
Code:
pawn Код:
#include <a_samp>
#define FILTERSCRIPT
#define G 0x99FF9900
#define R 0xAA3333AA
public OnFilterScriptInit()
{
print("\n-----------------------------------------");
print("---- | /Credits CMD Loaded On Your | -----");
print("----- | Shitty Dum Fucking Server | ---- ");
print("-------------------------------------------\n");
//Credits are for telling the players who's the owner of the server and shit
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext,"/Help",true)==0)
{
SendClientMessage(playerid,R,">>> | Server Name Credits | <<<");
SendClientMessage(playerid,G,"This is a ______ Server");
SendClientMessage(playerid,G,"As You see you must ____ For Money");
SendClientMessage(playerid,G,"Change this to anything");
SendClientMessage(playerid,G,"Change this");
SendClientMessage(playerid,G,"Change This");
SendClientMessage(playerid,G,"Change This");
SendClientMessage(playerid,G,"Change This");
SendClientMessage(playerid,R,"_--------------------------------_");
return 1;
}
return 0;
}
// ___________________________________________________
// Dont remove this shit okay Bitch?
// I sware if i find this shit missing in a mirror u will be Fucked up.