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

27
buffreloader.sp Normal file
View File

@@ -0,0 +1,27 @@
/* Plugin Template generated by Pawn Studio */
#include <sourcemod>
public Plugin:myinfo =
{
name = "buffReloader",
author = "Chefe",
description = "<- Description ->",
version = "1.0",
url = "<- URL ->"
}
public OnPluginStart()
{
RegAdminCmd("sm_reloadbuff", Command_RB, ADMFLAG_CHEATS, "reloads buffbanner");
}
public Action:Command_RB(client, args)
{
if (IsPlayerAlive(client) && IsClientInGame(client))
{
SetEntPropFloat(client, Prop_Send, "m_flRageMeter", 100.0);
return Plugin_Handled;
}
return Plugin_Handled;
}