This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// IP Camera supports motion detection, which can be configured to send | |
// emails upon alarm is fired | |
// This go programme serve as a minimal smtp server, listening login requests | |
// from IP Camera, and triggers zmtrigger.pl through unix socket. | |
package main | |
import ( | |
"github.com/op/go-logging" | |
"net" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <sourcemod> | |
#define PLUGIN_VERSION "0.0.1" | |
public Plugin myinfo={ | |
name="L4D2 force_max_intensity", | |
author="hjhee", | |
description="Allow changing sb_force_max_intensity without cheat", | |
version=PLUGIN_VERSION, | |
url="None" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"GameModes" | |
{ | |
"coop" | |
{ | |
"base" "coop" | |
"maxplayers" "8" | |
"x360ctx" "0" | |
"x360matchrule" "0" | |
"x360presence" "5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"GameModes" | |
{ | |
"coop" | |
{ | |
"base" "coop" | |
"maxplayers" "8" | |
"x360ctx" "0" | |
"x360matchrule" "0" | |
"x360presence" "5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bind "g" "abm" | |
bind "v" "sm_admin" | |
mm_dedicated_force_servers 101.200.154.163 | |
net_graph "1" | |
net_graphheight "125" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma semicolon 1 | |
#include <sourcemod> | |
#define PLUGIN_VERSION "1.3" | |
public Plugin myinfo= | |
{ | |
name="L4D2 Automatic Scaling Difficulty Controller(ASDC)", | |
author="Fwoosh/harryhecanada/hjhee", | |
description="Difficulty Controller for the L4D2 AI director, automatically spawns extra zombies to increase difficulty.", | |
version=PLUGIN_VERSION, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* _ | |
* ___ _ __ ___ _ __ ___ ___ __| | | |
* / __| '__/ __| '_ ` _ \ / _ \ / _` | | |
* \__ \ | \__ \ | | | | | (_) | (_| | | |
* |___/_| |___/_| |_| |_|\___/ \__,_| | |
* | |
* _| _ _ _ _ _ . _ |` _ __|_ _ _| | |
* (_|(/__\|_)(_|VV| | || |~|~(/_(_ | (/_(_| | |
* | _ _ _ _| | _ | |
* | | |(_)(_||_||(/_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//# vim: set filetype=cpp : | |
/* | |
ABM a SourceMod L4D2 Plugin | |
Copyright (C) 2016 Victor NgBUCKWANGS Gonzalez | |
This program is free software; you can redistribute it and/or | |
modify it under the terms of the GNU General Public License | |
as published by the Free Software Foundation; either version 2 | |
of the License, or (at your option) any later version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// #pragma newdecls required | |
#include <sourcemod> | |
#include <sdktools> | |
#include <smlib> | |
#define PLUGIN_VERSION "0.1.3" | |
public Plugin myinfo={ | |
name="[L4D] Dissolve Ragdolls", | |
author="hjhee", | |
description="Dissolve Common Infected Ragdolls.", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <libavutil/timestamp.h> | |
#include <libavformat/avformat.h> | |
#include <signal.h> | |
#include <unistd.h> | |
#include <pthread.h> | |
#include <errno.h> | |
static volatile int keep_running=1; | |
static AVOutputFormat *ofmt=NULL; |
OlderNewer