├── .github └── workflows │ ├── GLuaLint.yml │ ├── WorkshopPublish.yml │ ├── WorkshopPublishRelease.yml │ └── WorkshopPublishTest.yml ├── .glualint.json ├── CI └── PreparePackage.sh ├── LICENSE.md ├── README.md ├── addon.json ├── art └── lambda512.jpg ├── backgrounds └── 1.jpg ├── changelog.md ├── content ├── materials │ ├── killicons │ │ ├── combine_mine_killicon.vmt │ │ ├── combine_mine_killicon.vtf │ │ ├── env_explosion_killicon.vmt │ │ ├── env_explosion_killicon.vtf │ │ ├── env_fire_killicon.vmt │ │ ├── env_fire_killicon.vtf │ │ ├── env_laser_killicon.vmt │ │ ├── env_laser_killicon.vtf │ │ ├── func_door_killicon.vmt │ │ ├── func_door_killicon.vtf │ │ ├── func_physbox_killicon.vmt │ │ ├── func_physbox_killicon.vtf │ │ ├── npc_barnacle_killicon.vmt │ │ ├── npc_barnacle_killicon.vtf │ │ ├── npc_manhack_killicon.vmt │ │ ├── npc_manhack_killicon.vtf │ │ ├── point_hurt_killicon.vmt │ │ ├── point_hurt_killicon.vtf │ │ ├── radiation_killicon.vmt │ │ ├── radiation_killicon.vtf │ │ ├── worldspawn_killicon.vmt │ │ └── worldspawn_killicon.vtf │ ├── lambda │ │ ├── blocked.vmt │ │ ├── blocked.vtf │ │ ├── checkpoint.vmt │ │ ├── checkpoint.vtf │ │ ├── cross.png │ │ ├── death_point.vmt │ │ ├── death_point.vtf │ │ ├── failed.png │ │ ├── icons │ │ │ ├── admin_settings.png │ │ │ ├── gun.png │ │ │ ├── help.png │ │ │ ├── info.png │ │ │ ├── ping.png │ │ │ ├── player_settings.png │ │ │ ├── poll.png │ │ │ ├── settings.png │ │ │ ├── skull.png │ │ │ ├── sort2.png │ │ │ ├── sort3.png │ │ │ ├── stopwatch.png │ │ │ └── tick.png │ │ ├── logo_512.png │ │ ├── ring1.png │ │ ├── ring2.png │ │ ├── ring3.png │ │ ├── run_point.vmt │ │ ├── run_point.vtf │ │ ├── success.png │ │ ├── uiskin.png │ │ ├── vehicle.vmt │ │ └── vehicle.vtf │ ├── models │ │ └── decay │ │ │ └── cockroach │ │ │ ├── roach.vmt │ │ │ └── roach.vtf │ ├── nature │ │ └── toxicslime002a.vmt │ └── sprites │ │ ├── physcannon_beam.vmt │ │ ├── physcannon_blast.vmt │ │ ├── physcannon_core.vmt │ │ ├── physcannon_glow1.vmt │ │ ├── physcannon_glow1noz.vmt │ │ └── physcannon_glow2.vmt ├── models │ ├── barney_animat_ep1.ani │ ├── barney_animat_ep1.mdl │ ├── barney_animat_hl2.ani │ ├── barney_animat_hl2.mdl │ ├── barney_animations.mdl │ ├── barney_gest_ep1.ani │ ├── barney_gest_ep1.mdl │ ├── barney_gest_ep2.ani │ ├── barney_gest_ep2.mdl │ ├── barney_gest_hl2.ani │ ├── barney_gest_hl2.mdl │ ├── barney_gestures.mdl │ ├── barney_post_ep1.ani │ ├── barney_post_ep1.mdl │ ├── barney_post_hl2.ani │ ├── barney_post_hl2.mdl │ ├── barney_postures.mdl │ └── decay │ │ ├── cockroach.dx80.vtx │ │ ├── cockroach.dx90.vtx │ │ ├── cockroach.mdl │ │ └── cockroach.vvd └── sound │ ├── lambda │ ├── defibrillator_charge.wav │ ├── defibrillator_release.wav │ ├── physics │ │ └── flesh │ │ │ ├── flesh_impact_bullet1.wav │ │ │ ├── flesh_impact_bullet2.wav │ │ │ ├── flesh_impact_bullet3.wav │ │ │ ├── flesh_impact_bullet4.wav │ │ │ └── flesh_impact_bullet5.wav │ └── roundover.mp3 │ └── roach │ ├── rch_die.wav │ ├── rch_smash.wav │ └── rch_walk.wav ├── data ├── ep2 │ └── credits.txt ├── episodic │ └── credits.txt └── hl2 │ └── credits.txt ├── entities ├── effects │ ├── lambda_blood_explosion.lua │ ├── lambda_death.lua │ ├── lambda_physcannon_impact.lua │ └── lambda_pointer.lua ├── entities │ ├── base_gmodentity.lua │ ├── env_credits.lua │ ├── env_hudhint.lua │ ├── env_screenoverlay.lua │ ├── env_zoom.lua │ ├── info_npc_spawn_destination.lua │ ├── lambda_checkpoint.lua │ ├── lambda_client_sound.lua │ ├── lambda_clientcommand.lua │ ├── lambda_cockroach_manager.lua │ ├── lambda_entity.lua │ ├── lambda_lua_logic.lua │ ├── lambda_motioncontroller.lua │ ├── lambda_npc_interactions.lua │ ├── lambda_npcmaker.lua │ ├── lambda_path_tracker.lua │ ├── lambda_player_tracker.lua │ ├── lambda_ragdollmanager.lua │ ├── lambda_trigger.lua │ ├── lambda_vehicle_companion.lua │ ├── lambda_vehicle_tracker.lua │ ├── logic_auto.lua │ ├── npc_lambda_cockroach.lua │ ├── npc_maker.lua │ ├── npc_template_maker.lua │ ├── player_loadsaved.lua │ ├── player_speedmod.lua │ ├── point_teleport.lua │ ├── point_viewcontrol.lua │ ├── prop_physics_respawnable.lua │ ├── trigger_auto.lua │ ├── trigger_changelevel.lua │ ├── trigger_hurt.lua │ ├── trigger_multiple.lua │ ├── trigger_once.lua │ ├── trigger_teleport.lua │ └── trigger_transition.lua └── weapons │ ├── weapon_lambda_medkit.lua │ └── weapon_physcannon.lua ├── gamemode ├── cl_hud.lua ├── cl_init.lua ├── cl_lang.lua ├── cl_postprocess.lua ├── cl_ragdoll_ext.lua ├── cl_skin_lambda.lua ├── cl_taunts.lua ├── gametypes │ ├── base │ │ └── cl_localisation.lua │ ├── gametype_base.lua │ ├── hl1s.lua │ ├── hl1s │ │ ├── cl_localisation.lua │ │ └── mapscripts │ │ │ ├── c0a0.lua │ │ │ ├── c0a0a.lua │ │ │ ├── c0a0b.lua │ │ │ ├── c0a0c.lua │ │ │ ├── c0a0d.lua │ │ │ ├── c0a0e.lua │ │ │ ├── c1a0.lua │ │ │ ├── c1a0a.lua │ │ │ ├── c1a0b.lua │ │ │ ├── c1a0d.lua │ │ │ ├── c1a0e.lua │ │ │ └── template.lua │ ├── hl2.lua │ ├── hl2 │ │ ├── cl_localisation.lua │ │ └── mapscripts │ │ │ ├── d1_canals_01.lua │ │ │ ├── d1_canals_01a.lua │ │ │ ├── d1_canals_02.lua │ │ │ ├── d1_canals_03.lua │ │ │ ├── d1_canals_05.lua │ │ │ ├── d1_canals_06.lua │ │ │ ├── d1_canals_07.lua │ │ │ ├── d1_canals_08.lua │ │ │ ├── d1_canals_09.lua │ │ │ ├── d1_canals_10.lua │ │ │ ├── d1_canals_11.lua │ │ │ ├── d1_canals_12.lua │ │ │ ├── d1_canals_13.lua │ │ │ ├── d1_eli_01.lua │ │ │ ├── d1_eli_02.lua │ │ │ ├── d1_town_01.lua │ │ │ ├── d1_town_01a.lua │ │ │ ├── d1_town_02.lua │ │ │ ├── d1_town_02a.lua │ │ │ ├── d1_town_03.lua │ │ │ ├── d1_town_04.lua │ │ │ ├── d1_town_05.lua │ │ │ ├── d1_trainstation_01.lua │ │ │ ├── d1_trainstation_02.lua │ │ │ ├── d1_trainstation_03.lua │ │ │ ├── d1_trainstation_04.lua │ │ │ ├── d1_trainstation_05.lua │ │ │ ├── d1_trainstation_06.lua │ │ │ ├── d2_coast_01.lua │ │ │ ├── d2_coast_03.lua │ │ │ ├── d2_coast_04.lua │ │ │ ├── d2_coast_05.lua │ │ │ ├── d2_coast_07.lua │ │ │ ├── d2_coast_08.lua │ │ │ ├── d2_coast_09.lua │ │ │ ├── d2_coast_10.lua │ │ │ ├── d2_coast_11.lua │ │ │ ├── d2_coast_12.lua │ │ │ ├── d2_prison_01.lua │ │ │ ├── d2_prison_02.lua │ │ │ ├── d2_prison_03.lua │ │ │ ├── d2_prison_04.lua │ │ │ ├── d2_prison_05.lua │ │ │ ├── d2_prison_06.lua │ │ │ ├── d2_prison_07.lua │ │ │ ├── d2_prison_08.lua │ │ │ ├── d3_breen_01.lua │ │ │ ├── d3_c17_01.lua │ │ │ ├── d3_c17_02.lua │ │ │ ├── d3_c17_03.lua │ │ │ ├── d3_c17_04.lua │ │ │ ├── d3_c17_05.lua │ │ │ ├── d3_c17_06a.lua │ │ │ ├── d3_c17_06b.lua │ │ │ ├── d3_c17_07.lua │ │ │ ├── d3_c17_08.lua │ │ │ ├── d3_c17_09.lua │ │ │ ├── d3_c17_10a.lua │ │ │ ├── d3_c17_10b.lua │ │ │ ├── d3_c17_11.lua │ │ │ ├── d3_c17_12.lua │ │ │ ├── d3_c17_12b.lua │ │ │ ├── d3_c17_13.lua │ │ │ ├── d3_citadel_01.lua │ │ │ ├── d3_citadel_02.lua │ │ │ ├── d3_citadel_03.lua │ │ │ ├── d3_citadel_04.lua │ │ │ ├── d3_citadel_05.lua │ │ │ └── template.lua │ ├── hl2dm.lua │ ├── hl2dm │ │ └── cl_localisation.lua │ ├── hl2ep1.lua │ ├── hl2ep1 │ │ ├── cl_localisation.lua │ │ └── mapscripts │ │ │ ├── ep1_c17_00.lua │ │ │ ├── ep1_c17_00a.lua │ │ │ ├── ep1_c17_01.lua │ │ │ ├── ep1_c17_02.lua │ │ │ ├── ep1_c17_02a.lua │ │ │ ├── ep1_c17_02b.lua │ │ │ ├── ep1_c17_05.lua │ │ │ ├── ep1_c17_06.lua │ │ │ ├── ep1_citadel_00.lua │ │ │ ├── ep1_citadel_01.lua │ │ │ ├── ep1_citadel_02.lua │ │ │ ├── ep1_citadel_02b.lua │ │ │ ├── ep1_citadel_03.lua │ │ │ └── ep1_citadel_04.lua │ ├── hl2ep2.lua │ └── hl2ep2 │ │ ├── cl_localisation.lua │ │ └── mapscripts │ │ ├── ep2_outland_01.lua │ │ ├── ep2_outland_01a.lua │ │ ├── ep2_outland_02.lua │ │ ├── ep2_outland_03.lua │ │ ├── ep2_outland_04.lua │ │ ├── ep2_outland_05.lua │ │ ├── ep2_outland_06.lua │ │ ├── ep2_outland_06a.lua │ │ ├── ep2_outland_07.lua │ │ ├── ep2_outland_08.lua │ │ ├── ep2_outland_09.lua │ │ ├── ep2_outland_10.lua │ │ ├── ep2_outland_10a.lua │ │ ├── ep2_outland_11.lua │ │ ├── ep2_outland_11a.lua │ │ ├── ep2_outland_11b.lua │ │ ├── ep2_outland_12.lua │ │ └── ep2_outland_12a.lua ├── huds │ ├── hud_ammo.lua │ ├── hud_armor.lua │ ├── hud_aux.lua │ ├── hud_credits.lua │ ├── hud_crosshair.lua │ ├── hud_deathnotice.lua │ ├── hud_health.lua │ ├── hud_hint.lua │ ├── hud_lambda.lua │ ├── hud_lambda_admin.lua │ ├── hud_lambda_info.lua │ ├── hud_lambda_player.lua │ ├── hud_lambda_settings.lua │ ├── hud_lambda_vote.lua │ ├── hud_numeric.lua │ ├── hud_pickup.lua │ ├── hud_primary_ammo.lua │ ├── hud_quickinfo.lua │ ├── hud_roundinfo.lua │ ├── hud_scoreboard.lua │ ├── hud_secondary_ammo.lua │ ├── hud_suit.lua │ └── hud_vote.lua ├── init.lua ├── sh_admin_config.lua ├── sh_animations.lua ├── sh_bullets.lua ├── sh_collisions.lua ├── sh_compatibility.lua ├── sh_convars.lua ├── sh_debug.lua ├── sh_difficulty.lua ├── sh_entity_extend.lua ├── sh_ents_extend.lua ├── sh_gametypes.lua ├── sh_globalstate.lua ├── sh_gma.lua ├── sh_hudhint.lua ├── sh_interpvalue.lua ├── sh_lambda.lua ├── sh_lambda_build.lua ├── sh_lambda_npc.lua ├── sh_lambda_player.lua ├── sh_mapdata.lua ├── sh_maplist.lua ├── sh_metrics.lua ├── sh_npc_extend.lua ├── sh_player_extend.lua ├── sh_player_list.lua ├── sh_playermodels.lua ├── sh_roundsystem.lua ├── sh_settings.lua ├── sh_sound_env.lua ├── sh_spectate.lua ├── sh_string_extend.lua ├── sh_surfaceproperties.lua ├── sh_taunts.lua ├── sh_temp.lua ├── sh_timestamp.lua ├── sh_userauth.lua ├── sh_utils.lua ├── sh_vehicles.lua ├── sh_voting.lua ├── sh_weapon_extend.lua ├── shared.lua ├── sv_changelevel.lua ├── sv_checkpoints.lua ├── sv_commands.lua ├── sv_damage.lua ├── sv_inputoutput.lua ├── sv_player_pickup.lua ├── sv_playerspeech.lua ├── sv_resource.lua ├── sv_taunts.lua ├── sv_transition.lua ├── sv_votefuncs.lua └── sv_weapontracking.lua ├── icon24.png ├── lambda.txt └── logo.png /.github/workflows/GLuaLint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/.github/workflows/GLuaLint.yml -------------------------------------------------------------------------------- /.github/workflows/WorkshopPublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/.github/workflows/WorkshopPublish.yml -------------------------------------------------------------------------------- /.github/workflows/WorkshopPublishRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/.github/workflows/WorkshopPublishRelease.yml -------------------------------------------------------------------------------- /.github/workflows/WorkshopPublishTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/.github/workflows/WorkshopPublishTest.yml -------------------------------------------------------------------------------- /.glualint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/.glualint.json -------------------------------------------------------------------------------- /CI/PreparePackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/CI/PreparePackage.sh -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/README.md -------------------------------------------------------------------------------- /addon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/addon.json -------------------------------------------------------------------------------- /art/lambda512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/art/lambda512.jpg -------------------------------------------------------------------------------- /backgrounds/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/backgrounds/1.jpg -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/changelog.md -------------------------------------------------------------------------------- /content/materials/killicons/combine_mine_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/combine_mine_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/combine_mine_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/combine_mine_killicon.vtf -------------------------------------------------------------------------------- /content/materials/killicons/env_explosion_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/env_explosion_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/env_explosion_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/env_explosion_killicon.vtf -------------------------------------------------------------------------------- /content/materials/killicons/env_fire_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/env_fire_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/env_fire_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/env_fire_killicon.vtf -------------------------------------------------------------------------------- /content/materials/killicons/env_laser_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/env_laser_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/env_laser_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/env_laser_killicon.vtf -------------------------------------------------------------------------------- /content/materials/killicons/func_door_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/func_door_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/func_door_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/func_door_killicon.vtf -------------------------------------------------------------------------------- /content/materials/killicons/func_physbox_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/func_physbox_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/func_physbox_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/func_physbox_killicon.vtf -------------------------------------------------------------------------------- /content/materials/killicons/npc_barnacle_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/npc_barnacle_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/npc_barnacle_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/npc_barnacle_killicon.vtf -------------------------------------------------------------------------------- /content/materials/killicons/npc_manhack_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/npc_manhack_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/npc_manhack_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/npc_manhack_killicon.vtf -------------------------------------------------------------------------------- /content/materials/killicons/point_hurt_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/point_hurt_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/point_hurt_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/point_hurt_killicon.vtf -------------------------------------------------------------------------------- /content/materials/killicons/radiation_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/radiation_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/radiation_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/radiation_killicon.vtf -------------------------------------------------------------------------------- /content/materials/killicons/worldspawn_killicon.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/worldspawn_killicon.vmt -------------------------------------------------------------------------------- /content/materials/killicons/worldspawn_killicon.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/killicons/worldspawn_killicon.vtf -------------------------------------------------------------------------------- /content/materials/lambda/blocked.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/blocked.vmt -------------------------------------------------------------------------------- /content/materials/lambda/blocked.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/blocked.vtf -------------------------------------------------------------------------------- /content/materials/lambda/checkpoint.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/checkpoint.vmt -------------------------------------------------------------------------------- /content/materials/lambda/checkpoint.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/checkpoint.vtf -------------------------------------------------------------------------------- /content/materials/lambda/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/cross.png -------------------------------------------------------------------------------- /content/materials/lambda/death_point.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/death_point.vmt -------------------------------------------------------------------------------- /content/materials/lambda/death_point.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/death_point.vtf -------------------------------------------------------------------------------- /content/materials/lambda/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/failed.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/admin_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/admin_settings.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/gun.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/help.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/info.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/ping.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/player_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/player_settings.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/poll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/poll.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/settings.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/skull.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/sort2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/sort2.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/sort3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/sort3.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/stopwatch.png -------------------------------------------------------------------------------- /content/materials/lambda/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/icons/tick.png -------------------------------------------------------------------------------- /content/materials/lambda/logo_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/logo_512.png -------------------------------------------------------------------------------- /content/materials/lambda/ring1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/ring1.png -------------------------------------------------------------------------------- /content/materials/lambda/ring2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/ring2.png -------------------------------------------------------------------------------- /content/materials/lambda/ring3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/ring3.png -------------------------------------------------------------------------------- /content/materials/lambda/run_point.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/run_point.vmt -------------------------------------------------------------------------------- /content/materials/lambda/run_point.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/run_point.vtf -------------------------------------------------------------------------------- /content/materials/lambda/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/success.png -------------------------------------------------------------------------------- /content/materials/lambda/uiskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/uiskin.png -------------------------------------------------------------------------------- /content/materials/lambda/vehicle.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/vehicle.vmt -------------------------------------------------------------------------------- /content/materials/lambda/vehicle.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/lambda/vehicle.vtf -------------------------------------------------------------------------------- /content/materials/models/decay/cockroach/roach.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/models/decay/cockroach/roach.vmt -------------------------------------------------------------------------------- /content/materials/models/decay/cockroach/roach.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/models/decay/cockroach/roach.vtf -------------------------------------------------------------------------------- /content/materials/nature/toxicslime002a.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/nature/toxicslime002a.vmt -------------------------------------------------------------------------------- /content/materials/sprites/physcannon_beam.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/sprites/physcannon_beam.vmt -------------------------------------------------------------------------------- /content/materials/sprites/physcannon_blast.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/sprites/physcannon_blast.vmt -------------------------------------------------------------------------------- /content/materials/sprites/physcannon_core.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/sprites/physcannon_core.vmt -------------------------------------------------------------------------------- /content/materials/sprites/physcannon_glow1.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/sprites/physcannon_glow1.vmt -------------------------------------------------------------------------------- /content/materials/sprites/physcannon_glow1noz.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/sprites/physcannon_glow1noz.vmt -------------------------------------------------------------------------------- /content/materials/sprites/physcannon_glow2.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/materials/sprites/physcannon_glow2.vmt -------------------------------------------------------------------------------- /content/models/barney_animat_ep1.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_animat_ep1.ani -------------------------------------------------------------------------------- /content/models/barney_animat_ep1.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_animat_ep1.mdl -------------------------------------------------------------------------------- /content/models/barney_animat_hl2.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_animat_hl2.ani -------------------------------------------------------------------------------- /content/models/barney_animat_hl2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_animat_hl2.mdl -------------------------------------------------------------------------------- /content/models/barney_animations.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_animations.mdl -------------------------------------------------------------------------------- /content/models/barney_gest_ep1.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_gest_ep1.ani -------------------------------------------------------------------------------- /content/models/barney_gest_ep1.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_gest_ep1.mdl -------------------------------------------------------------------------------- /content/models/barney_gest_ep2.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_gest_ep2.ani -------------------------------------------------------------------------------- /content/models/barney_gest_ep2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_gest_ep2.mdl -------------------------------------------------------------------------------- /content/models/barney_gest_hl2.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_gest_hl2.ani -------------------------------------------------------------------------------- /content/models/barney_gest_hl2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_gest_hl2.mdl -------------------------------------------------------------------------------- /content/models/barney_gestures.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_gestures.mdl -------------------------------------------------------------------------------- /content/models/barney_post_ep1.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_post_ep1.ani -------------------------------------------------------------------------------- /content/models/barney_post_ep1.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_post_ep1.mdl -------------------------------------------------------------------------------- /content/models/barney_post_hl2.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_post_hl2.ani -------------------------------------------------------------------------------- /content/models/barney_post_hl2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_post_hl2.mdl -------------------------------------------------------------------------------- /content/models/barney_postures.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/barney_postures.mdl -------------------------------------------------------------------------------- /content/models/decay/cockroach.dx80.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/decay/cockroach.dx80.vtx -------------------------------------------------------------------------------- /content/models/decay/cockroach.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/decay/cockroach.dx90.vtx -------------------------------------------------------------------------------- /content/models/decay/cockroach.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/decay/cockroach.mdl -------------------------------------------------------------------------------- /content/models/decay/cockroach.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/models/decay/cockroach.vvd -------------------------------------------------------------------------------- /content/sound/lambda/defibrillator_charge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/lambda/defibrillator_charge.wav -------------------------------------------------------------------------------- /content/sound/lambda/defibrillator_release.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/lambda/defibrillator_release.wav -------------------------------------------------------------------------------- /content/sound/lambda/physics/flesh/flesh_impact_bullet1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/lambda/physics/flesh/flesh_impact_bullet1.wav -------------------------------------------------------------------------------- /content/sound/lambda/physics/flesh/flesh_impact_bullet2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/lambda/physics/flesh/flesh_impact_bullet2.wav -------------------------------------------------------------------------------- /content/sound/lambda/physics/flesh/flesh_impact_bullet3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/lambda/physics/flesh/flesh_impact_bullet3.wav -------------------------------------------------------------------------------- /content/sound/lambda/physics/flesh/flesh_impact_bullet4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/lambda/physics/flesh/flesh_impact_bullet4.wav -------------------------------------------------------------------------------- /content/sound/lambda/physics/flesh/flesh_impact_bullet5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/lambda/physics/flesh/flesh_impact_bullet5.wav -------------------------------------------------------------------------------- /content/sound/lambda/roundover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/lambda/roundover.mp3 -------------------------------------------------------------------------------- /content/sound/roach/rch_die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/roach/rch_die.wav -------------------------------------------------------------------------------- /content/sound/roach/rch_smash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/roach/rch_smash.wav -------------------------------------------------------------------------------- /content/sound/roach/rch_walk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/content/sound/roach/rch_walk.wav -------------------------------------------------------------------------------- /data/ep2/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/data/ep2/credits.txt -------------------------------------------------------------------------------- /data/episodic/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/data/episodic/credits.txt -------------------------------------------------------------------------------- /data/hl2/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/data/hl2/credits.txt -------------------------------------------------------------------------------- /entities/effects/lambda_blood_explosion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/effects/lambda_blood_explosion.lua -------------------------------------------------------------------------------- /entities/effects/lambda_death.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/effects/lambda_death.lua -------------------------------------------------------------------------------- /entities/effects/lambda_physcannon_impact.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/effects/lambda_physcannon_impact.lua -------------------------------------------------------------------------------- /entities/effects/lambda_pointer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/effects/lambda_pointer.lua -------------------------------------------------------------------------------- /entities/entities/base_gmodentity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/base_gmodentity.lua -------------------------------------------------------------------------------- /entities/entities/env_credits.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/env_credits.lua -------------------------------------------------------------------------------- /entities/entities/env_hudhint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/env_hudhint.lua -------------------------------------------------------------------------------- /entities/entities/env_screenoverlay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/env_screenoverlay.lua -------------------------------------------------------------------------------- /entities/entities/env_zoom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/env_zoom.lua -------------------------------------------------------------------------------- /entities/entities/info_npc_spawn_destination.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/info_npc_spawn_destination.lua -------------------------------------------------------------------------------- /entities/entities/lambda_checkpoint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_checkpoint.lua -------------------------------------------------------------------------------- /entities/entities/lambda_client_sound.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_client_sound.lua -------------------------------------------------------------------------------- /entities/entities/lambda_clientcommand.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_clientcommand.lua -------------------------------------------------------------------------------- /entities/entities/lambda_cockroach_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_cockroach_manager.lua -------------------------------------------------------------------------------- /entities/entities/lambda_entity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_entity.lua -------------------------------------------------------------------------------- /entities/entities/lambda_lua_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_lua_logic.lua -------------------------------------------------------------------------------- /entities/entities/lambda_motioncontroller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_motioncontroller.lua -------------------------------------------------------------------------------- /entities/entities/lambda_npc_interactions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_npc_interactions.lua -------------------------------------------------------------------------------- /entities/entities/lambda_npcmaker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_npcmaker.lua -------------------------------------------------------------------------------- /entities/entities/lambda_path_tracker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_path_tracker.lua -------------------------------------------------------------------------------- /entities/entities/lambda_player_tracker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_player_tracker.lua -------------------------------------------------------------------------------- /entities/entities/lambda_ragdollmanager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_ragdollmanager.lua -------------------------------------------------------------------------------- /entities/entities/lambda_trigger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_trigger.lua -------------------------------------------------------------------------------- /entities/entities/lambda_vehicle_companion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_vehicle_companion.lua -------------------------------------------------------------------------------- /entities/entities/lambda_vehicle_tracker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/lambda_vehicle_tracker.lua -------------------------------------------------------------------------------- /entities/entities/logic_auto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/logic_auto.lua -------------------------------------------------------------------------------- /entities/entities/npc_lambda_cockroach.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/npc_lambda_cockroach.lua -------------------------------------------------------------------------------- /entities/entities/npc_maker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/npc_maker.lua -------------------------------------------------------------------------------- /entities/entities/npc_template_maker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/npc_template_maker.lua -------------------------------------------------------------------------------- /entities/entities/player_loadsaved.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/player_loadsaved.lua -------------------------------------------------------------------------------- /entities/entities/player_speedmod.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/player_speedmod.lua -------------------------------------------------------------------------------- /entities/entities/point_teleport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/point_teleport.lua -------------------------------------------------------------------------------- /entities/entities/point_viewcontrol.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/point_viewcontrol.lua -------------------------------------------------------------------------------- /entities/entities/prop_physics_respawnable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/prop_physics_respawnable.lua -------------------------------------------------------------------------------- /entities/entities/trigger_auto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/trigger_auto.lua -------------------------------------------------------------------------------- /entities/entities/trigger_changelevel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/trigger_changelevel.lua -------------------------------------------------------------------------------- /entities/entities/trigger_hurt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/trigger_hurt.lua -------------------------------------------------------------------------------- /entities/entities/trigger_multiple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/trigger_multiple.lua -------------------------------------------------------------------------------- /entities/entities/trigger_once.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/trigger_once.lua -------------------------------------------------------------------------------- /entities/entities/trigger_teleport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/trigger_teleport.lua -------------------------------------------------------------------------------- /entities/entities/trigger_transition.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/entities/trigger_transition.lua -------------------------------------------------------------------------------- /entities/weapons/weapon_lambda_medkit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/weapons/weapon_lambda_medkit.lua -------------------------------------------------------------------------------- /entities/weapons/weapon_physcannon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/entities/weapons/weapon_physcannon.lua -------------------------------------------------------------------------------- /gamemode/cl_hud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/cl_hud.lua -------------------------------------------------------------------------------- /gamemode/cl_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/cl_init.lua -------------------------------------------------------------------------------- /gamemode/cl_lang.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/cl_lang.lua -------------------------------------------------------------------------------- /gamemode/cl_postprocess.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/cl_postprocess.lua -------------------------------------------------------------------------------- /gamemode/cl_ragdoll_ext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/cl_ragdoll_ext.lua -------------------------------------------------------------------------------- /gamemode/cl_skin_lambda.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/cl_skin_lambda.lua -------------------------------------------------------------------------------- /gamemode/cl_taunts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/cl_taunts.lua -------------------------------------------------------------------------------- /gamemode/gametypes/base/cl_localisation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/base/cl_localisation.lua -------------------------------------------------------------------------------- /gamemode/gametypes/gametype_base.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/gametype_base.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/cl_localisation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/cl_localisation.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c0a0.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c0a0.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c0a0a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c0a0a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c0a0b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c0a0b.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c0a0c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c0a0c.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c0a0d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c0a0d.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c0a0e.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c0a0e.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c1a0.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c1a0.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c1a0a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c1a0a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c1a0b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c1a0b.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c1a0d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c1a0d.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/c1a0e.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/c1a0e.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl1s/mapscripts/template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl1s/mapscripts/template.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/cl_localisation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/cl_localisation.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_01a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_01a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_02.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_02.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_03.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_03.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_05.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_05.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_06.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_06.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_07.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_07.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_08.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_08.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_09.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_09.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_10.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_10.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_11.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_11.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_12.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_canals_13.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_canals_13.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_eli_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_eli_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_eli_02.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_eli_02.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_town_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_town_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_town_01a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_town_01a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_town_02.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_town_02.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_town_02a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_town_02a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_town_03.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_town_03.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_town_04.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_town_04.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_town_05.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_town_05.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_trainstation_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_trainstation_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_trainstation_02.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_trainstation_02.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_trainstation_03.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_trainstation_03.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_trainstation_04.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_trainstation_04.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_trainstation_05.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_trainstation_05.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d1_trainstation_06.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d1_trainstation_06.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_coast_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_coast_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_coast_03.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_coast_03.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_coast_04.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_coast_04.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_coast_05.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_coast_05.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_coast_07.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_coast_07.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_coast_08.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_coast_08.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_coast_09.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_coast_09.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_coast_10.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_coast_10.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_coast_11.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_coast_11.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_coast_12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_coast_12.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_prison_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_prison_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_prison_02.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_prison_02.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_prison_03.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_prison_03.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_prison_04.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_prison_04.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_prison_05.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_prison_05.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_prison_06.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_prison_06.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_prison_07.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_prison_07.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d2_prison_08.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d2_prison_08.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_breen_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_breen_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_02.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_02.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_03.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_03.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_04.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_04.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_05.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_05.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_06a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_06a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_06b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_06b.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_07.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_07.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_08.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_08.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_09.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_09.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_10a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_10a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_10b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_10b.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_11.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_11.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_12.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_12b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_12b.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_c17_13.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_c17_13.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_citadel_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_citadel_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_citadel_02.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_citadel_02.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_citadel_03.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_citadel_03.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_citadel_04.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_citadel_04.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/d3_citadel_05.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/d3_citadel_05.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2/mapscripts/template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2/mapscripts/template.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2dm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2dm.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2dm/cl_localisation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2dm/cl_localisation.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/cl_localisation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/cl_localisation.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_00.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_00.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_00a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_00a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_02.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_02.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_02a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_02a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_02b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_02b.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_05.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_05.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_06.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_c17_06.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_00.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_00.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_02.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_02.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_02b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_02b.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_03.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_03.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_04.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep1/mapscripts/ep1_citadel_04.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/cl_localisation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/cl_localisation.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_01.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_01.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_01a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_01a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_02.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_02.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_03.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_03.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_04.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_04.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_05.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_05.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_06.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_06.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_06a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_06a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_07.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_07.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_08.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_08.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_09.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_09.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_10.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_10.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_10a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_10a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_11.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_11.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_11a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_11a.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_11b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_11b.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_12.lua -------------------------------------------------------------------------------- /gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_12a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/gametypes/hl2ep2/mapscripts/ep2_outland_12a.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_ammo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_ammo.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_armor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_armor.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_aux.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_aux.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_credits.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_credits.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_crosshair.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_crosshair.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_deathnotice.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_deathnotice.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_health.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_health.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_hint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_hint.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_lambda.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_lambda.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_lambda_admin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_lambda_admin.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_lambda_info.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_lambda_info.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_lambda_player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_lambda_player.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_lambda_settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_lambda_settings.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_lambda_vote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_lambda_vote.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_numeric.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_numeric.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_pickup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_pickup.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_primary_ammo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_primary_ammo.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_quickinfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_quickinfo.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_roundinfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_roundinfo.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_scoreboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_scoreboard.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_secondary_ammo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_secondary_ammo.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_suit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_suit.lua -------------------------------------------------------------------------------- /gamemode/huds/hud_vote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/huds/hud_vote.lua -------------------------------------------------------------------------------- /gamemode/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/init.lua -------------------------------------------------------------------------------- /gamemode/sh_admin_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_admin_config.lua -------------------------------------------------------------------------------- /gamemode/sh_animations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_animations.lua -------------------------------------------------------------------------------- /gamemode/sh_bullets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_bullets.lua -------------------------------------------------------------------------------- /gamemode/sh_collisions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_collisions.lua -------------------------------------------------------------------------------- /gamemode/sh_compatibility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_compatibility.lua -------------------------------------------------------------------------------- /gamemode/sh_convars.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_convars.lua -------------------------------------------------------------------------------- /gamemode/sh_debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_debug.lua -------------------------------------------------------------------------------- /gamemode/sh_difficulty.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_difficulty.lua -------------------------------------------------------------------------------- /gamemode/sh_entity_extend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_entity_extend.lua -------------------------------------------------------------------------------- /gamemode/sh_ents_extend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_ents_extend.lua -------------------------------------------------------------------------------- /gamemode/sh_gametypes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_gametypes.lua -------------------------------------------------------------------------------- /gamemode/sh_globalstate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_globalstate.lua -------------------------------------------------------------------------------- /gamemode/sh_gma.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_gma.lua -------------------------------------------------------------------------------- /gamemode/sh_hudhint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_hudhint.lua -------------------------------------------------------------------------------- /gamemode/sh_interpvalue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_interpvalue.lua -------------------------------------------------------------------------------- /gamemode/sh_lambda.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_lambda.lua -------------------------------------------------------------------------------- /gamemode/sh_lambda_build.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_lambda_build.lua -------------------------------------------------------------------------------- /gamemode/sh_lambda_npc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_lambda_npc.lua -------------------------------------------------------------------------------- /gamemode/sh_lambda_player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_lambda_player.lua -------------------------------------------------------------------------------- /gamemode/sh_mapdata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_mapdata.lua -------------------------------------------------------------------------------- /gamemode/sh_maplist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_maplist.lua -------------------------------------------------------------------------------- /gamemode/sh_metrics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_metrics.lua -------------------------------------------------------------------------------- /gamemode/sh_npc_extend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_npc_extend.lua -------------------------------------------------------------------------------- /gamemode/sh_player_extend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_player_extend.lua -------------------------------------------------------------------------------- /gamemode/sh_player_list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_player_list.lua -------------------------------------------------------------------------------- /gamemode/sh_playermodels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_playermodels.lua -------------------------------------------------------------------------------- /gamemode/sh_roundsystem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_roundsystem.lua -------------------------------------------------------------------------------- /gamemode/sh_settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_settings.lua -------------------------------------------------------------------------------- /gamemode/sh_sound_env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_sound_env.lua -------------------------------------------------------------------------------- /gamemode/sh_spectate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_spectate.lua -------------------------------------------------------------------------------- /gamemode/sh_string_extend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_string_extend.lua -------------------------------------------------------------------------------- /gamemode/sh_surfaceproperties.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_surfaceproperties.lua -------------------------------------------------------------------------------- /gamemode/sh_taunts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_taunts.lua -------------------------------------------------------------------------------- /gamemode/sh_temp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_temp.lua -------------------------------------------------------------------------------- /gamemode/sh_timestamp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_timestamp.lua -------------------------------------------------------------------------------- /gamemode/sh_userauth.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_userauth.lua -------------------------------------------------------------------------------- /gamemode/sh_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_utils.lua -------------------------------------------------------------------------------- /gamemode/sh_vehicles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_vehicles.lua -------------------------------------------------------------------------------- /gamemode/sh_voting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_voting.lua -------------------------------------------------------------------------------- /gamemode/sh_weapon_extend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sh_weapon_extend.lua -------------------------------------------------------------------------------- /gamemode/shared.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/shared.lua -------------------------------------------------------------------------------- /gamemode/sv_changelevel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_changelevel.lua -------------------------------------------------------------------------------- /gamemode/sv_checkpoints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_checkpoints.lua -------------------------------------------------------------------------------- /gamemode/sv_commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_commands.lua -------------------------------------------------------------------------------- /gamemode/sv_damage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_damage.lua -------------------------------------------------------------------------------- /gamemode/sv_inputoutput.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_inputoutput.lua -------------------------------------------------------------------------------- /gamemode/sv_player_pickup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_player_pickup.lua -------------------------------------------------------------------------------- /gamemode/sv_playerspeech.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_playerspeech.lua -------------------------------------------------------------------------------- /gamemode/sv_resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_resource.lua -------------------------------------------------------------------------------- /gamemode/sv_taunts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_taunts.lua -------------------------------------------------------------------------------- /gamemode/sv_transition.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_transition.lua -------------------------------------------------------------------------------- /gamemode/sv_votefuncs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_votefuncs.lua -------------------------------------------------------------------------------- /gamemode/sv_weapontracking.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/gamemode/sv_weapontracking.lua -------------------------------------------------------------------------------- /icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/icon24.png -------------------------------------------------------------------------------- /lambda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/lambda.txt -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMLambda/Lambda/HEAD/logo.png --------------------------------------------------------------------------------