Skip to content

Instantly share code, notes, and snippets.

@kimoto
kimoto / gist:446124
Created June 20, 2010 21:19
Left4Dead2 - userconfig.cfg
//==============================================================================================
// userconfig.cfg
// boot parameter:
// -novid -toconsole -lv -language english -sw -noforcemaccel -noforcemparms -noipx -nojoy
//
// note
// t_* -> alias for toggle
// r_* -> alias for repeat
// for 90 fps environment
//==============================================================================================
@kimoto
kimoto / gist:455561
Created June 28, 2010 07:50
Left4Dead2 - training.cfg
//===========================================
// training.cfg
// author: kimoto
//===========================================
//sm plugins refresh // reload source mod plugins, for plugin debug
// sm plugins unload plugin_name
// sm plugins load plugin_name
// hud_reloadscheme // for hud debug
sm plugins unload example
@kimoto
kimoto / gist:455634
Created June 28, 2010 09:29
Left4Dead2 - zombie.cfg
//===========================================
// zombie.cfg
// author: kimoto
//===========================================
sv_cheats 1; nb_delete_all;
buddha 1 // 体力は減るがダウンはしないgodモード
// 近接武器と任意の武器のみ
z_removeitems // 既に持っているアイテムをすべて破棄する
give pistol; give pistol; give smg_silenced; give health
//------------------------------------------------------
// textchat communication
// textchat.cfg
//------------------------------------------------------
// keyboard
bind "1" "say_team 1"
bind "2" "say_team 2"
bind "3" "say_team 3"
bind "4" "say_team 4"
bind "e" "say_team check this!; vocalize SmartLook"
@kimoto
kimoto / gist:524968
Created August 15, 2010 02:04
L4D2のHUD改造方法
//--------------------------------------------
// Subject: L4D2のHUD改造方法
// Author: KIMOTO
// Updated At: 2011/03/22
// Created At: 2010/08/15
//--------------------------------------------
■概要
Left4Dead2のHUD(Head Up Display)についての変更、カスタマイズ方法についてまとめた資料です
#include <sourcemod>
#define PLUGIN_VERSION "1.0.0"
public Plugin:myinfo =
{
name = "cant say plugin",
author = "kimoto",
description = "cant use console command: say",
version = PLUGIN_VERSION,
url = ""
//
// Name: everywhere ghost respawn SourceMod plugin
// History:
// ver0.2:
// cleanup source code
// added debug mode
// added keyconfig
// ver0.1:
// first release
//
# name:
# auto-team-balance(all shuffle mode) concept code
# spec:
# spectators is need more +1 slot
# if under 2 player then not enable auto balanced function, why? should be server shutting down
# known bugs:
# *fixed: unbalance size teams so error
# history:
# bug fixed
# cleanup code
//
// Name: auto team balance plugin
// History:
// ver0.3:
// refactoring:
// cleanup source code
// ver0.2:
// make base routines
// ver0.1:
// first edit
//Competitive Confogl by philogl, Surgica1, D4rKr0W, Mr. Zero, CanadaRox, ProdigySim
//Project Home: http://code.google.com/p/confogl
//License CC-BY-SA 3.0
//Version 2.2.0
//General Server Cvars
sv_cheats 0
sm_cvar vs_max_team_switches 9999
sv_consistency 1
sv_pure 2