├── .gitignore ├── .gitmodules ├── 8ball.sp ├── README.md ├── chat_spam_throttle.sp ├── compile.sh ├── configs ├── 8ball.ini ├── discord_scoreboard.cfg ├── discord_webhook.cfg ├── finalemaps.ini ├── firstmaps.ini └── l4d2_playstats.cfg ├── current.sp ├── decompile.sh ├── discord_scoreboard.sp ├── discord_webhook.sp ├── eq_finale_tanks.sp ├── fortnite_l4d2_rl4d2l.sp ├── fortnite_l4d2_rl4d2l ├── bz2 │ └── models │ │ └── player │ │ └── custom_player │ │ └── foxhound │ │ ├── fortnite_dances_emotes_ok.dx90.vtx.bz2 │ │ ├── fortnite_dances_emotes_ok.mdl.bz2 │ │ └── fortnite_dances_emotes_ok.vvd.bz2 ├── models │ └── player │ │ └── custom_player │ │ └── foxhound │ │ ├── fortnite_dances_emotes_ok.dx90.vtx │ │ ├── fortnite_dances_emotes_ok.mdl │ │ └── fortnite_dances_emotes_ok.vvd └── translations │ └── fnemotes.phrases.txt ├── gamedata ├── l4d2_changelevel.txt ├── rock_lagcomp.txt └── smlib_colors.games.txt ├── include ├── SteamWorks.inc ├── 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 ├── collisionhook.inc ├── colors.inc ├── commandfilters.inc ├── commandline.inc ├── confogl.inc ├── console.inc ├── convars.inc ├── core.inc ├── cstrike.inc ├── datapack.inc ├── dbi.inc ├── dhooks.inc ├── discord_scoreboard.inc ├── discord_webhook.inc ├── entity.inc ├── entity_prop_stocks.inc ├── events.inc ├── files.inc ├── float.inc ├── functions.inc ├── geoip.inc ├── godframecontrol.inc ├── halflife.inc ├── handles.inc ├── helpers.inc ├── keyvalues.inc ├── l4d2_changelevel.inc ├── l4d2_direct.inc ├── l4d2_hybrid_scoremod_zone.inc ├── l4d2_penalty_bonus.inc ├── l4d2_playstats.inc ├── l4d2_saferoom_detect.inc ├── l4d2_sequence.txt ├── l4d2d_internals.inc ├── l4d2d_timers.inc ├── l4d2director.inc ├── l4d2lib.inc ├── l4d2timers.inc ├── l4d2util.inc ├── l4d2util_constants.inc ├── l4d2util_infected.inc ├── l4d2util_rounds.inc ├── l4d2util_survivors.inc ├── l4d2util_tanks.inc ├── l4d2util_weapons.inc ├── l4d2weapons.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 ├── lgofnoc.inc ├── logging.inc ├── mapchooser.inc ├── mapinfo.inc ├── menus.inc ├── nextmap.inc ├── pause.inc ├── plugin_parent_test.inc ├── profiler.inc ├── protobuf.inc ├── readyup.inc ├── regex.inc ├── rounds.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 ├── 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 ├── sorting.inc ├── sourcemod.inc ├── string.inc ├── survivors.inc ├── system2.inc ├── system2 │ ├── legacy.inc │ └── request.inc ├── tanks.inc ├── team_consistency.inc ├── testing.inc ├── textparse.inc ├── tf2.inc ├── tf2_stocks.inc ├── timers.inc ├── topmenus.inc ├── usermessages.inc ├── vector.inc ├── version.inc ├── version_auto.inc ├── weapons.inc └── witch_and_tankifier.inc ├── includes ├── configs.sp ├── constants.sp ├── customtags.inc ├── debug.sp ├── finalemaps.inc ├── firstmaps.inc ├── functions.sp ├── rl4d2l_util.inc └── survivorindex.sp ├── l4d2_ladder_editor.sp ├── l4d2_playstats ├── console.sp ├── database.sp ├── display.sp ├── file.sp ├── game.sp ├── globals.sp ├── skill.sp ├── tracking.sp └── util.sp ├── l4d2_playstats2.sp ├── l4d2_playstats_rl4d2l.sp ├── l4d2_practice.sp ├── l4d2_restartmap.sp ├── l4d2_smg_reload_tweak.sp ├── l4d2_sound_manipulation.sp ├── l4d2_tank_announce_rl4d2l.sp ├── l4d2_tank_spawn_fix.sp ├── l4d_tank_control_eq_rl4d2l.sp ├── l4d_tank_damage_announce_rl4d2l.sp ├── l4d_tank_rush.sp ├── lysis-java.jar ├── mmr_tank_control.sp ├── readyup.sp ├── saferoom_gnome.sp ├── si_cooldown_alert.sp ├── spawn_secondary.sp ├── spcomp ├── spechud.sp ├── static_tank_control.sp ├── suicideblitzfinalefix.sp ├── sync.sh ├── tank_and_nowitch_ifier.sp ├── tank_ban_flow_mapinfo.sp ├── team_consistency.sp ├── team_generator.sp ├── teleport_player.sp ├── teleport_tank.sp ├── test ├── alive_test.sp ├── auth_test.sp ├── award_test.sp ├── bullet_test.sp ├── client_test.sp ├── countdown_test.sp ├── finale_map_test.sp ├── l4d2_horde_equaliser_debug.sp ├── max_score_test.sp ├── melee_test.sp ├── plugin_child_test.sp ├── plugin_end_test.sp ├── plugin_parent_test.sp ├── round_start_test.sp └── stripper_dump_all.sp ├── whitelist_database.sp └── witch_and_tankifier.sp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/.gitmodules -------------------------------------------------------------------------------- /8ball.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/8ball.sp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/README.md -------------------------------------------------------------------------------- /chat_spam_throttle.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/chat_spam_throttle.sp -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/compile.sh -------------------------------------------------------------------------------- /configs/8ball.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/configs/8ball.ini -------------------------------------------------------------------------------- /configs/discord_scoreboard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/configs/discord_scoreboard.cfg -------------------------------------------------------------------------------- /configs/discord_webhook.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/configs/discord_webhook.cfg -------------------------------------------------------------------------------- /configs/finalemaps.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/configs/finalemaps.ini -------------------------------------------------------------------------------- /configs/firstmaps.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/configs/firstmaps.ini -------------------------------------------------------------------------------- /configs/l4d2_playstats.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/configs/l4d2_playstats.cfg -------------------------------------------------------------------------------- /current.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/current.sp -------------------------------------------------------------------------------- /decompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/decompile.sh -------------------------------------------------------------------------------- /discord_scoreboard.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/discord_scoreboard.sp -------------------------------------------------------------------------------- /discord_webhook.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/discord_webhook.sp -------------------------------------------------------------------------------- /eq_finale_tanks.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/eq_finale_tanks.sp -------------------------------------------------------------------------------- /fortnite_l4d2_rl4d2l.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/fortnite_l4d2_rl4d2l.sp -------------------------------------------------------------------------------- /fortnite_l4d2_rl4d2l/bz2/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.dx90.vtx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/fortnite_l4d2_rl4d2l/bz2/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.dx90.vtx.bz2 -------------------------------------------------------------------------------- /fortnite_l4d2_rl4d2l/bz2/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.mdl.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/fortnite_l4d2_rl4d2l/bz2/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.mdl.bz2 -------------------------------------------------------------------------------- /fortnite_l4d2_rl4d2l/bz2/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.vvd.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/fortnite_l4d2_rl4d2l/bz2/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.vvd.bz2 -------------------------------------------------------------------------------- /fortnite_l4d2_rl4d2l/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/fortnite_l4d2_rl4d2l/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.dx90.vtx -------------------------------------------------------------------------------- /fortnite_l4d2_rl4d2l/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/fortnite_l4d2_rl4d2l/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.mdl -------------------------------------------------------------------------------- /fortnite_l4d2_rl4d2l/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/fortnite_l4d2_rl4d2l/models/player/custom_player/foxhound/fortnite_dances_emotes_ok.vvd -------------------------------------------------------------------------------- /fortnite_l4d2_rl4d2l/translations/fnemotes.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/fortnite_l4d2_rl4d2l/translations/fnemotes.phrases.txt -------------------------------------------------------------------------------- /gamedata/l4d2_changelevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/gamedata/l4d2_changelevel.txt -------------------------------------------------------------------------------- /gamedata/rock_lagcomp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/gamedata/rock_lagcomp.txt -------------------------------------------------------------------------------- /gamedata/smlib_colors.games.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/gamedata/smlib_colors.games.txt -------------------------------------------------------------------------------- /include/SteamWorks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/SteamWorks.inc -------------------------------------------------------------------------------- /include/admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/admin.inc -------------------------------------------------------------------------------- /include/adminmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/adminmenu.inc -------------------------------------------------------------------------------- /include/adt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/adt.inc -------------------------------------------------------------------------------- /include/adt_array.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/adt_array.inc -------------------------------------------------------------------------------- /include/adt_stack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/adt_stack.inc -------------------------------------------------------------------------------- /include/adt_trie.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/adt_trie.inc -------------------------------------------------------------------------------- /include/banning.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/banning.inc -------------------------------------------------------------------------------- /include/basecomm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/basecomm.inc -------------------------------------------------------------------------------- /include/bitbuffer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/bitbuffer.inc -------------------------------------------------------------------------------- /include/builtinvotes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/builtinvotes.inc -------------------------------------------------------------------------------- /include/caster_system.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/caster_system.inc -------------------------------------------------------------------------------- /include/clientprefs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/clientprefs.inc -------------------------------------------------------------------------------- /include/clients.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/clients.inc -------------------------------------------------------------------------------- /include/collisionhook.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/collisionhook.inc -------------------------------------------------------------------------------- /include/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/colors.inc -------------------------------------------------------------------------------- /include/commandfilters.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/commandfilters.inc -------------------------------------------------------------------------------- /include/commandline.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/commandline.inc -------------------------------------------------------------------------------- /include/confogl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/confogl.inc -------------------------------------------------------------------------------- /include/console.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/console.inc -------------------------------------------------------------------------------- /include/convars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/convars.inc -------------------------------------------------------------------------------- /include/core.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/core.inc -------------------------------------------------------------------------------- /include/cstrike.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/cstrike.inc -------------------------------------------------------------------------------- /include/datapack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/datapack.inc -------------------------------------------------------------------------------- /include/dbi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/dbi.inc -------------------------------------------------------------------------------- /include/dhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/dhooks.inc -------------------------------------------------------------------------------- /include/discord_scoreboard.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/discord_scoreboard.inc -------------------------------------------------------------------------------- /include/discord_webhook.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/discord_webhook.inc -------------------------------------------------------------------------------- /include/entity.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/entity.inc -------------------------------------------------------------------------------- /include/entity_prop_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/entity_prop_stocks.inc -------------------------------------------------------------------------------- /include/events.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/events.inc -------------------------------------------------------------------------------- /include/files.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/files.inc -------------------------------------------------------------------------------- /include/float.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/float.inc -------------------------------------------------------------------------------- /include/functions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/functions.inc -------------------------------------------------------------------------------- /include/geoip.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/geoip.inc -------------------------------------------------------------------------------- /include/godframecontrol.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/godframecontrol.inc -------------------------------------------------------------------------------- /include/halflife.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/halflife.inc -------------------------------------------------------------------------------- /include/handles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/handles.inc -------------------------------------------------------------------------------- /include/helpers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/helpers.inc -------------------------------------------------------------------------------- /include/keyvalues.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/keyvalues.inc -------------------------------------------------------------------------------- /include/l4d2_changelevel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2_changelevel.inc -------------------------------------------------------------------------------- /include/l4d2_direct.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2_direct.inc -------------------------------------------------------------------------------- /include/l4d2_hybrid_scoremod_zone.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2_hybrid_scoremod_zone.inc -------------------------------------------------------------------------------- /include/l4d2_penalty_bonus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2_penalty_bonus.inc -------------------------------------------------------------------------------- /include/l4d2_playstats.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2_playstats.inc -------------------------------------------------------------------------------- /include/l4d2_saferoom_detect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2_saferoom_detect.inc -------------------------------------------------------------------------------- /include/l4d2_sequence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2_sequence.txt -------------------------------------------------------------------------------- /include/l4d2d_internals.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2d_internals.inc -------------------------------------------------------------------------------- /include/l4d2d_timers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2d_timers.inc -------------------------------------------------------------------------------- /include/l4d2director.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2director.inc -------------------------------------------------------------------------------- /include/l4d2lib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2lib.inc -------------------------------------------------------------------------------- /include/l4d2timers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2timers.inc -------------------------------------------------------------------------------- /include/l4d2util.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2util.inc -------------------------------------------------------------------------------- /include/l4d2util_constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2util_constants.inc -------------------------------------------------------------------------------- /include/l4d2util_infected.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2util_infected.inc -------------------------------------------------------------------------------- /include/l4d2util_rounds.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2util_rounds.inc -------------------------------------------------------------------------------- /include/l4d2util_survivors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2util_survivors.inc -------------------------------------------------------------------------------- /include/l4d2util_tanks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2util_tanks.inc -------------------------------------------------------------------------------- /include/l4d2util_weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2util_weapons.inc -------------------------------------------------------------------------------- /include/l4d2weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d2weapons.inc -------------------------------------------------------------------------------- /include/l4d_tank_control_eq.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/l4d_tank_control_eq.inc -------------------------------------------------------------------------------- /include/lang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/lang.inc -------------------------------------------------------------------------------- /include/left4dhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/left4dhooks.inc -------------------------------------------------------------------------------- /include/left4dhooks_anim.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/left4dhooks_anim.inc -------------------------------------------------------------------------------- /include/left4dhooks_lux_library.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/left4dhooks_lux_library.inc -------------------------------------------------------------------------------- /include/left4dhooks_silver.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/left4dhooks_silver.inc -------------------------------------------------------------------------------- /include/left4dhooks_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/left4dhooks_stocks.inc -------------------------------------------------------------------------------- /include/left4downtown.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/left4downtown.inc -------------------------------------------------------------------------------- /include/lgofnoc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/lgofnoc.inc -------------------------------------------------------------------------------- /include/logging.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/logging.inc -------------------------------------------------------------------------------- /include/mapchooser.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/mapchooser.inc -------------------------------------------------------------------------------- /include/mapinfo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/mapinfo.inc -------------------------------------------------------------------------------- /include/menus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/menus.inc -------------------------------------------------------------------------------- /include/nextmap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/nextmap.inc -------------------------------------------------------------------------------- /include/pause.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/pause.inc -------------------------------------------------------------------------------- /include/plugin_parent_test.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/plugin_parent_test.inc -------------------------------------------------------------------------------- /include/profiler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/profiler.inc -------------------------------------------------------------------------------- /include/protobuf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/protobuf.inc -------------------------------------------------------------------------------- /include/readyup.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/readyup.inc -------------------------------------------------------------------------------- /include/regex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/regex.inc -------------------------------------------------------------------------------- /include/rounds.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/rounds.inc -------------------------------------------------------------------------------- /include/sceneprocessor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sceneprocessor.inc -------------------------------------------------------------------------------- /include/sdkhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdkhooks.inc -------------------------------------------------------------------------------- /include/sdktools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools.inc -------------------------------------------------------------------------------- /include/sdktools_client.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_client.inc -------------------------------------------------------------------------------- /include/sdktools_engine.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_engine.inc -------------------------------------------------------------------------------- /include/sdktools_entinput.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_entinput.inc -------------------------------------------------------------------------------- /include/sdktools_entoutput.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_entoutput.inc -------------------------------------------------------------------------------- /include/sdktools_functions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_functions.inc -------------------------------------------------------------------------------- /include/sdktools_gamerules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_gamerules.inc -------------------------------------------------------------------------------- /include/sdktools_hooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_hooks.inc -------------------------------------------------------------------------------- /include/sdktools_sound.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_sound.inc -------------------------------------------------------------------------------- /include/sdktools_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_stocks.inc -------------------------------------------------------------------------------- /include/sdktools_stringtables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_stringtables.inc -------------------------------------------------------------------------------- /include/sdktools_tempents.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_tempents.inc -------------------------------------------------------------------------------- /include/sdktools_tempents_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_tempents_stocks.inc -------------------------------------------------------------------------------- /include/sdktools_trace.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_trace.inc -------------------------------------------------------------------------------- /include/sdktools_variant_t.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_variant_t.inc -------------------------------------------------------------------------------- /include/sdktools_voice.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sdktools_voice.inc -------------------------------------------------------------------------------- /include/smlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib.inc -------------------------------------------------------------------------------- /include/smlib/arrays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/arrays.inc -------------------------------------------------------------------------------- /include/smlib/clients.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/clients.inc -------------------------------------------------------------------------------- /include/smlib/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/colors.inc -------------------------------------------------------------------------------- /include/smlib/concommands.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/concommands.inc -------------------------------------------------------------------------------- /include/smlib/convars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/convars.inc -------------------------------------------------------------------------------- /include/smlib/crypt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/crypt.inc -------------------------------------------------------------------------------- /include/smlib/debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/debug.inc -------------------------------------------------------------------------------- /include/smlib/dynarrays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/dynarrays.inc -------------------------------------------------------------------------------- /include/smlib/edicts.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/edicts.inc -------------------------------------------------------------------------------- /include/smlib/effects.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/effects.inc -------------------------------------------------------------------------------- /include/smlib/entities.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/entities.inc -------------------------------------------------------------------------------- /include/smlib/files.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/files.inc -------------------------------------------------------------------------------- /include/smlib/game.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/game.inc -------------------------------------------------------------------------------- /include/smlib/general.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/general.inc -------------------------------------------------------------------------------- /include/smlib/math.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/math.inc -------------------------------------------------------------------------------- /include/smlib/menus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/menus.inc -------------------------------------------------------------------------------- /include/smlib/server.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/server.inc -------------------------------------------------------------------------------- /include/smlib/sql.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/sql.inc -------------------------------------------------------------------------------- /include/smlib/strings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/strings.inc -------------------------------------------------------------------------------- /include/smlib/teams.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/teams.inc -------------------------------------------------------------------------------- /include/smlib/vehicles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/vehicles.inc -------------------------------------------------------------------------------- /include/smlib/weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/weapons.inc -------------------------------------------------------------------------------- /include/smlib/world.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/smlib/world.inc -------------------------------------------------------------------------------- /include/sorting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sorting.inc -------------------------------------------------------------------------------- /include/sourcemod.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/sourcemod.inc -------------------------------------------------------------------------------- /include/string.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/string.inc -------------------------------------------------------------------------------- /include/survivors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/survivors.inc -------------------------------------------------------------------------------- /include/system2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/system2.inc -------------------------------------------------------------------------------- /include/system2/legacy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/system2/legacy.inc -------------------------------------------------------------------------------- /include/system2/request.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/system2/request.inc -------------------------------------------------------------------------------- /include/tanks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/tanks.inc -------------------------------------------------------------------------------- /include/team_consistency.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/team_consistency.inc -------------------------------------------------------------------------------- /include/testing.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/testing.inc -------------------------------------------------------------------------------- /include/textparse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/textparse.inc -------------------------------------------------------------------------------- /include/tf2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/tf2.inc -------------------------------------------------------------------------------- /include/tf2_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/tf2_stocks.inc -------------------------------------------------------------------------------- /include/timers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/timers.inc -------------------------------------------------------------------------------- /include/topmenus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/topmenus.inc -------------------------------------------------------------------------------- /include/usermessages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/usermessages.inc -------------------------------------------------------------------------------- /include/vector.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/vector.inc -------------------------------------------------------------------------------- /include/version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/version.inc -------------------------------------------------------------------------------- /include/version_auto.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/version_auto.inc -------------------------------------------------------------------------------- /include/weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/weapons.inc -------------------------------------------------------------------------------- /include/witch_and_tankifier.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/include/witch_and_tankifier.inc -------------------------------------------------------------------------------- /includes/configs.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/includes/configs.sp -------------------------------------------------------------------------------- /includes/constants.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/includes/constants.sp -------------------------------------------------------------------------------- /includes/customtags.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/includes/customtags.inc -------------------------------------------------------------------------------- /includes/debug.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/includes/debug.sp -------------------------------------------------------------------------------- /includes/finalemaps.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/includes/finalemaps.inc -------------------------------------------------------------------------------- /includes/firstmaps.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/includes/firstmaps.inc -------------------------------------------------------------------------------- /includes/functions.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/includes/functions.sp -------------------------------------------------------------------------------- /includes/rl4d2l_util.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/includes/rl4d2l_util.inc -------------------------------------------------------------------------------- /includes/survivorindex.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/includes/survivorindex.sp -------------------------------------------------------------------------------- /l4d2_ladder_editor.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_ladder_editor.sp -------------------------------------------------------------------------------- /l4d2_playstats/console.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats/console.sp -------------------------------------------------------------------------------- /l4d2_playstats/database.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats/database.sp -------------------------------------------------------------------------------- /l4d2_playstats/display.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats/display.sp -------------------------------------------------------------------------------- /l4d2_playstats/file.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats/file.sp -------------------------------------------------------------------------------- /l4d2_playstats/game.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats/game.sp -------------------------------------------------------------------------------- /l4d2_playstats/globals.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats/globals.sp -------------------------------------------------------------------------------- /l4d2_playstats/skill.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats/skill.sp -------------------------------------------------------------------------------- /l4d2_playstats/tracking.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats/tracking.sp -------------------------------------------------------------------------------- /l4d2_playstats/util.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats/util.sp -------------------------------------------------------------------------------- /l4d2_playstats2.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats2.sp -------------------------------------------------------------------------------- /l4d2_playstats_rl4d2l.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_playstats_rl4d2l.sp -------------------------------------------------------------------------------- /l4d2_practice.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_practice.sp -------------------------------------------------------------------------------- /l4d2_restartmap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_restartmap.sp -------------------------------------------------------------------------------- /l4d2_smg_reload_tweak.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_smg_reload_tweak.sp -------------------------------------------------------------------------------- /l4d2_sound_manipulation.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_sound_manipulation.sp -------------------------------------------------------------------------------- /l4d2_tank_announce_rl4d2l.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_tank_announce_rl4d2l.sp -------------------------------------------------------------------------------- /l4d2_tank_spawn_fix.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d2_tank_spawn_fix.sp -------------------------------------------------------------------------------- /l4d_tank_control_eq_rl4d2l.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d_tank_control_eq_rl4d2l.sp -------------------------------------------------------------------------------- /l4d_tank_damage_announce_rl4d2l.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d_tank_damage_announce_rl4d2l.sp -------------------------------------------------------------------------------- /l4d_tank_rush.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/l4d_tank_rush.sp -------------------------------------------------------------------------------- /lysis-java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/lysis-java.jar -------------------------------------------------------------------------------- /mmr_tank_control.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/mmr_tank_control.sp -------------------------------------------------------------------------------- /readyup.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/readyup.sp -------------------------------------------------------------------------------- /saferoom_gnome.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/saferoom_gnome.sp -------------------------------------------------------------------------------- /si_cooldown_alert.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/si_cooldown_alert.sp -------------------------------------------------------------------------------- /spawn_secondary.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/spawn_secondary.sp -------------------------------------------------------------------------------- /spcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/spcomp -------------------------------------------------------------------------------- /spechud.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/spechud.sp -------------------------------------------------------------------------------- /static_tank_control.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/static_tank_control.sp -------------------------------------------------------------------------------- /suicideblitzfinalefix.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/suicideblitzfinalefix.sp -------------------------------------------------------------------------------- /sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/sync.sh -------------------------------------------------------------------------------- /tank_and_nowitch_ifier.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/tank_and_nowitch_ifier.sp -------------------------------------------------------------------------------- /tank_ban_flow_mapinfo.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/tank_ban_flow_mapinfo.sp -------------------------------------------------------------------------------- /team_consistency.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/team_consistency.sp -------------------------------------------------------------------------------- /team_generator.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/team_generator.sp -------------------------------------------------------------------------------- /teleport_player.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/teleport_player.sp -------------------------------------------------------------------------------- /teleport_tank.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/teleport_tank.sp -------------------------------------------------------------------------------- /test/alive_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/alive_test.sp -------------------------------------------------------------------------------- /test/auth_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/auth_test.sp -------------------------------------------------------------------------------- /test/award_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/award_test.sp -------------------------------------------------------------------------------- /test/bullet_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/bullet_test.sp -------------------------------------------------------------------------------- /test/client_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/client_test.sp -------------------------------------------------------------------------------- /test/countdown_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/countdown_test.sp -------------------------------------------------------------------------------- /test/finale_map_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/finale_map_test.sp -------------------------------------------------------------------------------- /test/l4d2_horde_equaliser_debug.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/l4d2_horde_equaliser_debug.sp -------------------------------------------------------------------------------- /test/max_score_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/max_score_test.sp -------------------------------------------------------------------------------- /test/melee_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/melee_test.sp -------------------------------------------------------------------------------- /test/plugin_child_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/plugin_child_test.sp -------------------------------------------------------------------------------- /test/plugin_end_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/plugin_end_test.sp -------------------------------------------------------------------------------- /test/plugin_parent_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/plugin_parent_test.sp -------------------------------------------------------------------------------- /test/round_start_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/round_start_test.sp -------------------------------------------------------------------------------- /test/stripper_dump_all.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/test/stripper_dump_all.sp -------------------------------------------------------------------------------- /whitelist_database.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/whitelist_database.sp -------------------------------------------------------------------------------- /witch_and_tankifier.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilesk/rl4d2l-plugins/HEAD/witch_and_tankifier.sp --------------------------------------------------------------------------------