Skip to content

Instantly share code, notes, and snippets.

@roflmuffin
roflmuffin / parachute.py
Created December 21, 2015 08:59
L'In20Cible's Parachute.py updated for Source.Python 205
# ../addons/source-python/plugins/parachute/parachute.py
# ============================================================================
# >> IMPORTS
# ============================================================================
# Source.Python Imports
from cvars import ConVarFlags
from entities.constants import MoveType
from players.constants import PlayerStates
@roflmuffin
roflmuffin / timeleft.sp
Last active September 12, 2016 20:54
Block command if time left in round is less than 5 seconds. (Sourcemod, CSGO)
#include <sdktools>
#pragma newdecls required
#pragma semicolon 1
#include <sourcemod>
int g_roundStartedTime = -1;
public void OnPluginStart()