├── .gitignore ├── ACS.sp ├── AI_HardSI.sp ├── AI_HardSI ├── AI_Boomer.sp ├── AI_Charger.sp ├── AI_Hunter.sp ├── AI_Jockey.sp ├── AI_Smoker.sp ├── AI_Spitter.sp ├── AI_Tank.sp ├── AI_Witch.sp └── hardcoop_util.sp ├── CommandShortcut.sp ├── HunterSkeetSound.sp ├── all4dead2.sp ├── autowipe.sp ├── challenge.sp ├── confogl_autoloader.sp ├── difficulty_adjustment_system.sp ├── include ├── admin.inc ├── adminmenu.inc ├── adt.inc ├── adt_array.inc ├── adt_stack.inc ├── adt_trie.inc ├── banning.inc ├── basecomm.inc ├── bitbuffer.inc ├── builtinvotes.inc ├── caster_system.inc ├── clientprefs.inc ├── clients.inc ├── code_patcher.inc ├── collisionhook.inc ├── colors.inc ├── commandfilters.inc ├── commandline.inc ├── confogl.inc ├── connect.inc ├── console.inc ├── convars.inc ├── core.inc ├── cstrike.inc ├── datapack.inc ├── dbi.inc ├── dhooks.inc ├── entity.inc ├── entity_prop_stocks.inc ├── events.inc ├── files.inc ├── float.inc ├── functions.inc ├── gamerules.inc ├── geoip.inc ├── godframecontrol.inc ├── halflife.inc ├── handles.inc ├── helpers.inc ├── holdout_bonus.inc ├── implodeexplode.inc ├── keyvalues.inc ├── l4d2_boss_percents.inc ├── l4d2_changelevel.inc ├── l4d2_direct.inc ├── l4d2_health_temp_bonus.inc ├── l4d2_hittable_control.inc ├── l4d2_hybrid_scoremod.inc ├── l4d2_penalty_bonus.inc ├── l4d2_playstats.inc ├── l4d2_saferoom_detect.inc ├── l4d2_scoremod.inc ├── l4d2_sequence.txt ├── l4d2_skill_detect.inc ├── l4d2d_internals.inc ├── l4d2d_timers.inc ├── l4d2director.inc ├── l4d2lib.inc ├── l4d2timers.inc ├── l4d2util.inc ├── l4d2util_constants.inc ├── l4d2util_infected.inc ├── l4d2util_rounds.inc ├── l4d2util_stocks.inc ├── l4d2util_survivors.inc ├── l4d2util_tanks.inc ├── l4d2util_weapons.inc ├── l4d2weapons.inc ├── l4d_boss_vote.inc ├── l4d_tank_control_eq.inc ├── lang.inc ├── left4dhooks.inc ├── left4dhooks_anim.inc ├── left4dhooks_lux_library.inc ├── left4dhooks_silver.inc ├── left4dhooks_stocks.inc ├── left4downtown.inc ├── left4framework.inc ├── lerpmonitor.inc ├── lgofnoc.inc ├── logging.inc ├── mapchooser.inc ├── mapinfo.inc ├── menus.inc ├── morecolors.inc ├── multicolors.inc ├── multicolors │ ├── colors.inc │ └── morecolors.inc ├── nativevotes.inc ├── nextmap.inc ├── pause.inc ├── profiler.inc ├── protobuf.inc ├── readyup.inc ├── regex.inc ├── rounds.inc ├── rounds_l4d2util.inc ├── sceneprocessor.inc ├── sdkhooks.inc ├── sdktools.inc ├── sdktools_client.inc ├── sdktools_engine.inc ├── sdktools_entinput.inc ├── sdktools_entoutput.inc ├── sdktools_functions.inc ├── sdktools_gamerules.inc ├── sdktools_hooks.inc ├── sdktools_sound.inc ├── sdktools_stocks.inc ├── sdktools_stringtables.inc ├── sdktools_tempents.inc ├── sdktools_tempents_stocks.inc ├── sdktools_trace.inc ├── sdktools_variant_t.inc ├── sdktools_voice.inc ├── smac.inc ├── smac_cvars.inc ├── smac_stocks.inc ├── smac_wallhack.inc ├── smlib.inc ├── smlib │ ├── arrays.inc │ ├── clients.inc │ ├── colors.inc │ ├── concommands.inc │ ├── convars.inc │ ├── crypt.inc │ ├── debug.inc │ ├── dynarrays.inc │ ├── edicts.inc │ ├── effects.inc │ ├── entities.inc │ ├── files.inc │ ├── game.inc │ ├── general.inc │ ├── math.inc │ ├── menus.inc │ ├── server.inc │ ├── sql.inc │ ├── strings.inc │ ├── teams.inc │ ├── vehicles.inc │ ├── weapons.inc │ └── world.inc ├── smrcon.inc ├── socket.inc ├── sorting.inc ├── sourcemod.inc ├── sourcescramble.inc ├── string.inc ├── survivors.inc ├── tanks.inc ├── tanks_l4d2util.inc ├── testing.inc ├── textparse.inc ├── tf2.inc ├── tf2_stocks.inc ├── timers.inc ├── topmenus.inc ├── usermessages.inc ├── vector.inc ├── version.inc ├── version_auto.inc ├── vscript_replacer.inc ├── weapons.inc └── witch_and_tankifier.inc ├── jointeam.sp ├── jointeam_hunter.sp ├── l4d2_bot_spit_ignite_gascan.sp ├── l4d2_drop.sp ├── l4d2_hunter_no_deadstops.sp ├── l4d2_sniper_stats.sp ├── l4d2_votetospec.sp ├── l4d_boss_percent.sp ├── l4d_boss_percent_hunter.sp ├── l4d_boss_vote_hunter.sp ├── l4d_drop.sp ├── mob_interval_limit.sp ├── nativevotes ├── data-keyvalues.sp └── game.sp ├── pause.sp ├── pills_giver.sp ├── script_reloader.sp ├── server.sp ├── survivor_mvp.sp ├── versus2coop.sp ├── vote.sp ├── weapon_slowdown.sp └── wingman.sp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/.gitignore -------------------------------------------------------------------------------- /ACS.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/ACS.sp -------------------------------------------------------------------------------- /AI_HardSI.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/AI_HardSI.sp -------------------------------------------------------------------------------- /AI_HardSI/AI_Boomer.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/AI_HardSI/AI_Boomer.sp -------------------------------------------------------------------------------- /AI_HardSI/AI_Charger.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/AI_HardSI/AI_Charger.sp -------------------------------------------------------------------------------- /AI_HardSI/AI_Hunter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/AI_HardSI/AI_Hunter.sp -------------------------------------------------------------------------------- /AI_HardSI/AI_Jockey.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/AI_HardSI/AI_Jockey.sp -------------------------------------------------------------------------------- /AI_HardSI/AI_Smoker.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/AI_HardSI/AI_Smoker.sp -------------------------------------------------------------------------------- /AI_HardSI/AI_Spitter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/AI_HardSI/AI_Spitter.sp -------------------------------------------------------------------------------- /AI_HardSI/AI_Tank.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/AI_HardSI/AI_Tank.sp -------------------------------------------------------------------------------- /AI_HardSI/AI_Witch.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/AI_HardSI/AI_Witch.sp -------------------------------------------------------------------------------- /AI_HardSI/hardcoop_util.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/AI_HardSI/hardcoop_util.sp -------------------------------------------------------------------------------- /CommandShortcut.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/CommandShortcut.sp -------------------------------------------------------------------------------- /HunterSkeetSound.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/HunterSkeetSound.sp -------------------------------------------------------------------------------- /all4dead2.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/all4dead2.sp -------------------------------------------------------------------------------- /autowipe.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/autowipe.sp -------------------------------------------------------------------------------- /challenge.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/challenge.sp -------------------------------------------------------------------------------- /confogl_autoloader.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/confogl_autoloader.sp -------------------------------------------------------------------------------- /difficulty_adjustment_system.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/difficulty_adjustment_system.sp -------------------------------------------------------------------------------- /include/admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/admin.inc -------------------------------------------------------------------------------- /include/adminmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/adminmenu.inc -------------------------------------------------------------------------------- /include/adt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/adt.inc -------------------------------------------------------------------------------- /include/adt_array.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/adt_array.inc -------------------------------------------------------------------------------- /include/adt_stack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/adt_stack.inc -------------------------------------------------------------------------------- /include/adt_trie.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/adt_trie.inc -------------------------------------------------------------------------------- /include/banning.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/banning.inc -------------------------------------------------------------------------------- /include/basecomm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/basecomm.inc -------------------------------------------------------------------------------- /include/bitbuffer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/bitbuffer.inc -------------------------------------------------------------------------------- /include/builtinvotes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/builtinvotes.inc -------------------------------------------------------------------------------- /include/caster_system.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/caster_system.inc -------------------------------------------------------------------------------- /include/clientprefs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/clientprefs.inc -------------------------------------------------------------------------------- /include/clients.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/clients.inc -------------------------------------------------------------------------------- /include/code_patcher.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/code_patcher.inc -------------------------------------------------------------------------------- /include/collisionhook.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/collisionhook.inc -------------------------------------------------------------------------------- /include/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/colors.inc -------------------------------------------------------------------------------- /include/commandfilters.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/commandfilters.inc -------------------------------------------------------------------------------- /include/commandline.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/commandline.inc -------------------------------------------------------------------------------- /include/confogl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/confogl.inc -------------------------------------------------------------------------------- /include/connect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/connect.inc -------------------------------------------------------------------------------- /include/console.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/console.inc -------------------------------------------------------------------------------- /include/convars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/convars.inc -------------------------------------------------------------------------------- /include/core.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/core.inc -------------------------------------------------------------------------------- /include/cstrike.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/cstrike.inc -------------------------------------------------------------------------------- /include/datapack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/datapack.inc -------------------------------------------------------------------------------- /include/dbi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/dbi.inc -------------------------------------------------------------------------------- /include/dhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/dhooks.inc -------------------------------------------------------------------------------- /include/entity.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/entity.inc -------------------------------------------------------------------------------- /include/entity_prop_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/entity_prop_stocks.inc -------------------------------------------------------------------------------- /include/events.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/events.inc -------------------------------------------------------------------------------- /include/files.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/files.inc -------------------------------------------------------------------------------- /include/float.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/float.inc -------------------------------------------------------------------------------- /include/functions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/functions.inc -------------------------------------------------------------------------------- /include/gamerules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/gamerules.inc -------------------------------------------------------------------------------- /include/geoip.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/geoip.inc -------------------------------------------------------------------------------- /include/godframecontrol.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/godframecontrol.inc -------------------------------------------------------------------------------- /include/halflife.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/halflife.inc -------------------------------------------------------------------------------- /include/handles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/handles.inc -------------------------------------------------------------------------------- /include/helpers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/helpers.inc -------------------------------------------------------------------------------- /include/holdout_bonus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/holdout_bonus.inc -------------------------------------------------------------------------------- /include/implodeexplode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/implodeexplode.inc -------------------------------------------------------------------------------- /include/keyvalues.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/keyvalues.inc -------------------------------------------------------------------------------- /include/l4d2_boss_percents.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_boss_percents.inc -------------------------------------------------------------------------------- /include/l4d2_changelevel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_changelevel.inc -------------------------------------------------------------------------------- /include/l4d2_direct.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_direct.inc -------------------------------------------------------------------------------- /include/l4d2_health_temp_bonus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_health_temp_bonus.inc -------------------------------------------------------------------------------- /include/l4d2_hittable_control.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_hittable_control.inc -------------------------------------------------------------------------------- /include/l4d2_hybrid_scoremod.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_hybrid_scoremod.inc -------------------------------------------------------------------------------- /include/l4d2_penalty_bonus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_penalty_bonus.inc -------------------------------------------------------------------------------- /include/l4d2_playstats.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_playstats.inc -------------------------------------------------------------------------------- /include/l4d2_saferoom_detect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_saferoom_detect.inc -------------------------------------------------------------------------------- /include/l4d2_scoremod.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_scoremod.inc -------------------------------------------------------------------------------- /include/l4d2_sequence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_sequence.txt -------------------------------------------------------------------------------- /include/l4d2_skill_detect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2_skill_detect.inc -------------------------------------------------------------------------------- /include/l4d2d_internals.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2d_internals.inc -------------------------------------------------------------------------------- /include/l4d2d_timers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2d_timers.inc -------------------------------------------------------------------------------- /include/l4d2director.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2director.inc -------------------------------------------------------------------------------- /include/l4d2lib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2lib.inc -------------------------------------------------------------------------------- /include/l4d2timers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2timers.inc -------------------------------------------------------------------------------- /include/l4d2util.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2util.inc -------------------------------------------------------------------------------- /include/l4d2util_constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2util_constants.inc -------------------------------------------------------------------------------- /include/l4d2util_infected.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2util_infected.inc -------------------------------------------------------------------------------- /include/l4d2util_rounds.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2util_rounds.inc -------------------------------------------------------------------------------- /include/l4d2util_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2util_stocks.inc -------------------------------------------------------------------------------- /include/l4d2util_survivors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2util_survivors.inc -------------------------------------------------------------------------------- /include/l4d2util_tanks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2util_tanks.inc -------------------------------------------------------------------------------- /include/l4d2util_weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2util_weapons.inc -------------------------------------------------------------------------------- /include/l4d2weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d2weapons.inc -------------------------------------------------------------------------------- /include/l4d_boss_vote.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d_boss_vote.inc -------------------------------------------------------------------------------- /include/l4d_tank_control_eq.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/l4d_tank_control_eq.inc -------------------------------------------------------------------------------- /include/lang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/lang.inc -------------------------------------------------------------------------------- /include/left4dhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/left4dhooks.inc -------------------------------------------------------------------------------- /include/left4dhooks_anim.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/left4dhooks_anim.inc -------------------------------------------------------------------------------- /include/left4dhooks_lux_library.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/left4dhooks_lux_library.inc -------------------------------------------------------------------------------- /include/left4dhooks_silver.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/left4dhooks_silver.inc -------------------------------------------------------------------------------- /include/left4dhooks_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/left4dhooks_stocks.inc -------------------------------------------------------------------------------- /include/left4downtown.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/left4downtown.inc -------------------------------------------------------------------------------- /include/left4framework.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/left4framework.inc -------------------------------------------------------------------------------- /include/lerpmonitor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/lerpmonitor.inc -------------------------------------------------------------------------------- /include/lgofnoc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/lgofnoc.inc -------------------------------------------------------------------------------- /include/logging.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/logging.inc -------------------------------------------------------------------------------- /include/mapchooser.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/mapchooser.inc -------------------------------------------------------------------------------- /include/mapinfo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/mapinfo.inc -------------------------------------------------------------------------------- /include/menus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/menus.inc -------------------------------------------------------------------------------- /include/morecolors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/morecolors.inc -------------------------------------------------------------------------------- /include/multicolors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/multicolors.inc -------------------------------------------------------------------------------- /include/multicolors/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/multicolors/colors.inc -------------------------------------------------------------------------------- /include/multicolors/morecolors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/multicolors/morecolors.inc -------------------------------------------------------------------------------- /include/nativevotes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/nativevotes.inc -------------------------------------------------------------------------------- /include/nextmap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/nextmap.inc -------------------------------------------------------------------------------- /include/pause.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/pause.inc -------------------------------------------------------------------------------- /include/profiler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/profiler.inc -------------------------------------------------------------------------------- /include/protobuf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/protobuf.inc -------------------------------------------------------------------------------- /include/readyup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/readyup.inc -------------------------------------------------------------------------------- /include/regex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/regex.inc -------------------------------------------------------------------------------- /include/rounds.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/rounds.inc -------------------------------------------------------------------------------- /include/rounds_l4d2util.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/rounds_l4d2util.inc -------------------------------------------------------------------------------- /include/sceneprocessor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sceneprocessor.inc -------------------------------------------------------------------------------- /include/sdkhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdkhooks.inc -------------------------------------------------------------------------------- /include/sdktools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools.inc -------------------------------------------------------------------------------- /include/sdktools_client.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_client.inc -------------------------------------------------------------------------------- /include/sdktools_engine.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_engine.inc -------------------------------------------------------------------------------- /include/sdktools_entinput.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_entinput.inc -------------------------------------------------------------------------------- /include/sdktools_entoutput.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_entoutput.inc -------------------------------------------------------------------------------- /include/sdktools_functions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_functions.inc -------------------------------------------------------------------------------- /include/sdktools_gamerules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_gamerules.inc -------------------------------------------------------------------------------- /include/sdktools_hooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_hooks.inc -------------------------------------------------------------------------------- /include/sdktools_sound.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_sound.inc -------------------------------------------------------------------------------- /include/sdktools_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_stocks.inc -------------------------------------------------------------------------------- /include/sdktools_stringtables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_stringtables.inc -------------------------------------------------------------------------------- /include/sdktools_tempents.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_tempents.inc -------------------------------------------------------------------------------- /include/sdktools_tempents_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_tempents_stocks.inc -------------------------------------------------------------------------------- /include/sdktools_trace.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_trace.inc -------------------------------------------------------------------------------- /include/sdktools_variant_t.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_variant_t.inc -------------------------------------------------------------------------------- /include/sdktools_voice.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sdktools_voice.inc -------------------------------------------------------------------------------- /include/smac.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smac.inc -------------------------------------------------------------------------------- /include/smac_cvars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smac_cvars.inc -------------------------------------------------------------------------------- /include/smac_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smac_stocks.inc -------------------------------------------------------------------------------- /include/smac_wallhack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smac_wallhack.inc -------------------------------------------------------------------------------- /include/smlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib.inc -------------------------------------------------------------------------------- /include/smlib/arrays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/arrays.inc -------------------------------------------------------------------------------- /include/smlib/clients.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/clients.inc -------------------------------------------------------------------------------- /include/smlib/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/colors.inc -------------------------------------------------------------------------------- /include/smlib/concommands.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/concommands.inc -------------------------------------------------------------------------------- /include/smlib/convars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/convars.inc -------------------------------------------------------------------------------- /include/smlib/crypt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/crypt.inc -------------------------------------------------------------------------------- /include/smlib/debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/debug.inc -------------------------------------------------------------------------------- /include/smlib/dynarrays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/dynarrays.inc -------------------------------------------------------------------------------- /include/smlib/edicts.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/edicts.inc -------------------------------------------------------------------------------- /include/smlib/effects.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/effects.inc -------------------------------------------------------------------------------- /include/smlib/entities.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/entities.inc -------------------------------------------------------------------------------- /include/smlib/files.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/files.inc -------------------------------------------------------------------------------- /include/smlib/game.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/game.inc -------------------------------------------------------------------------------- /include/smlib/general.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/general.inc -------------------------------------------------------------------------------- /include/smlib/math.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/math.inc -------------------------------------------------------------------------------- /include/smlib/menus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/menus.inc -------------------------------------------------------------------------------- /include/smlib/server.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/server.inc -------------------------------------------------------------------------------- /include/smlib/sql.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/sql.inc -------------------------------------------------------------------------------- /include/smlib/strings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/strings.inc -------------------------------------------------------------------------------- /include/smlib/teams.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/teams.inc -------------------------------------------------------------------------------- /include/smlib/vehicles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/vehicles.inc -------------------------------------------------------------------------------- /include/smlib/weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/weapons.inc -------------------------------------------------------------------------------- /include/smlib/world.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smlib/world.inc -------------------------------------------------------------------------------- /include/smrcon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/smrcon.inc -------------------------------------------------------------------------------- /include/socket.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/socket.inc -------------------------------------------------------------------------------- /include/sorting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sorting.inc -------------------------------------------------------------------------------- /include/sourcemod.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sourcemod.inc -------------------------------------------------------------------------------- /include/sourcescramble.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/sourcescramble.inc -------------------------------------------------------------------------------- /include/string.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/string.inc -------------------------------------------------------------------------------- /include/survivors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/survivors.inc -------------------------------------------------------------------------------- /include/tanks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/tanks.inc -------------------------------------------------------------------------------- /include/tanks_l4d2util.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/tanks_l4d2util.inc -------------------------------------------------------------------------------- /include/testing.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/testing.inc -------------------------------------------------------------------------------- /include/textparse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/textparse.inc -------------------------------------------------------------------------------- /include/tf2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/tf2.inc -------------------------------------------------------------------------------- /include/tf2_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/tf2_stocks.inc -------------------------------------------------------------------------------- /include/timers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/timers.inc -------------------------------------------------------------------------------- /include/topmenus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/topmenus.inc -------------------------------------------------------------------------------- /include/usermessages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/usermessages.inc -------------------------------------------------------------------------------- /include/vector.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/vector.inc -------------------------------------------------------------------------------- /include/version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/version.inc -------------------------------------------------------------------------------- /include/version_auto.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/version_auto.inc -------------------------------------------------------------------------------- /include/vscript_replacer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/vscript_replacer.inc -------------------------------------------------------------------------------- /include/weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/weapons.inc -------------------------------------------------------------------------------- /include/witch_and_tankifier.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/include/witch_and_tankifier.inc -------------------------------------------------------------------------------- /jointeam.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/jointeam.sp -------------------------------------------------------------------------------- /jointeam_hunter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/jointeam_hunter.sp -------------------------------------------------------------------------------- /l4d2_bot_spit_ignite_gascan.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/l4d2_bot_spit_ignite_gascan.sp -------------------------------------------------------------------------------- /l4d2_drop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/l4d2_drop.sp -------------------------------------------------------------------------------- /l4d2_hunter_no_deadstops.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/l4d2_hunter_no_deadstops.sp -------------------------------------------------------------------------------- /l4d2_sniper_stats.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/l4d2_sniper_stats.sp -------------------------------------------------------------------------------- /l4d2_votetospec.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/l4d2_votetospec.sp -------------------------------------------------------------------------------- /l4d_boss_percent.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/l4d_boss_percent.sp -------------------------------------------------------------------------------- /l4d_boss_percent_hunter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/l4d_boss_percent_hunter.sp -------------------------------------------------------------------------------- /l4d_boss_vote_hunter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/l4d_boss_vote_hunter.sp -------------------------------------------------------------------------------- /l4d_drop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/l4d_drop.sp -------------------------------------------------------------------------------- /mob_interval_limit.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/mob_interval_limit.sp -------------------------------------------------------------------------------- /nativevotes/data-keyvalues.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/nativevotes/data-keyvalues.sp -------------------------------------------------------------------------------- /nativevotes/game.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/nativevotes/game.sp -------------------------------------------------------------------------------- /pause.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/pause.sp -------------------------------------------------------------------------------- /pills_giver.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/pills_giver.sp -------------------------------------------------------------------------------- /script_reloader.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/script_reloader.sp -------------------------------------------------------------------------------- /server.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/server.sp -------------------------------------------------------------------------------- /survivor_mvp.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/survivor_mvp.sp -------------------------------------------------------------------------------- /versus2coop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/versus2coop.sp -------------------------------------------------------------------------------- /vote.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/vote.sp -------------------------------------------------------------------------------- /weapon_slowdown.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/weapon_slowdown.sp -------------------------------------------------------------------------------- /wingman.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sglight/L4D2-AstMod-Scriptings/HEAD/wingman.sp --------------------------------------------------------------------------------