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

28
gospec.sp Normal file
View File

@@ -0,0 +1,28 @@
/* Plugin Template generated by Pawn Studio */
#include <sourcemod>
public Plugin:myinfo =
{
name = "L4D2 Spec",
author = "Chefe",
description = "<- Description ->",
version = "1.0",
url = "<- URL ->"
}
public OnPluginStart()
{
RegAdminCmd("admin_gospec", Command_GoSpec, ADMFLAG_CHEATS, "go to spec");
RegAdminCmd("admin_goua", Command_GoUA, ADMFLAG_CHEATS, "go to spec");
}
public Action:Command_GoSpec(client, args)
{
ChangeClientTeam(client, 1);
}
public Action:Command_GoUA(client, args)
{
ChangeClientTeam(client, 0);
}