inital commit

This commit is contained in:
Giovanni Harting
2015-05-02 23:52:19 +02:00
parent 1a038457d4
commit 45b2c6cfff
49 changed files with 14069 additions and 0 deletions

38
fakeclient.sp Normal file
View File

@@ -0,0 +1,38 @@
/* Plugin Template generated by Pawn Studio */
#include <sourcemod>
public Plugin:myinfo =
{
name = "Fakeclients",
author = "Chefe",
description = "",
version = "1.0",
url = "<- URL ->"
}
public OnPluginStart()
{
RegAdminCmd("sm_fakeclient",
Command_Fakeclient,
ADMFLAG_KICK,
"Add a Fakeclient.")
}
public Action:Command_Fakeclient(client_at, args)
{
if (args < 1)
{
PrintToConsole(client_at, "Usage: sm_fakeclient <name>");
return Plugin_Handled;
}
new String:name[256]
GetCmdArg(1, name, sizeof(name));
CreateFakeClient(name);
return Plugin_Handled;
}