initial commit

This commit is contained in:
BotoX
2016-01-06 02:11:56 +01:00
commit 72f7665358
106 changed files with 17675 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#pragma semicolon 1
#include <sourcemod>
#include <sdktools>
#pragma newdecls required
public Plugin myinfo =
{
name = "sv_gravity fix",
author = "BotoX",
description = "Resets sv_gravity at game_end",
version = "1.0",
url = ""
};
public void OnMapEnd()
{
ConVar SvGravity = FindConVar("sv_gravity");
SvGravity.IntValue = 800;
}