├── .gitignore ├── Libraries ├── Admins │ ├── API_Admins.sp │ └── admins.inc ├── BlockMaker │ ├── API_BlockMaker.sp │ ├── block_maker.inc │ └── sql_blockmaker_blocks.txt ├── ClientCookies │ ├── API_ClientCookies.sp │ ├── client_cookies.inc │ └── sql_gs_user_cookies.txt ├── ClientSettings │ ├── API_ClientSettings.sp │ └── client_settings.inc ├── ClientTimes │ ├── API_ClientTimes.sp │ └── client_times.inc ├── DatabaseBridge │ ├── API_DatabaseBridge.sp │ └── database_bridge.inc ├── DatabaseCore │ ├── API_DatabaseCore.sp │ └── database_core.inc ├── DatabaseMapSessions │ ├── API_DatabaseMapSessions.sp │ ├── database_map_sessions.inc │ └── sql_gs_map_sessions.txt ├── DatabaseMapStats │ ├── API_DatabaseMapStats.sp │ ├── database_map_stats.inc │ └── sql_gs_map_stats.txt ├── DatabaseMaps │ ├── API_DatabaseMaps.sp │ ├── database_maps.inc │ └── sql_gs_maps.txt ├── DatabaseServers │ ├── API_DatabaseServers.sp │ ├── database_servers.inc │ ├── sql_core_games.txt │ └── sql_core_servers.txt ├── DatabaseUserBans │ ├── API_DatabaseUserBans.sp │ └── database_user_bans.inc ├── DatabaseUserSessions │ ├── API_DatabaseUserSessions.sp │ ├── database_user_sessions.inc │ └── sql_gs_user_sessions.txt ├── DatabaseUserStats │ ├── API_DatabaseUserStats.sp │ ├── database_user_stats.inc │ ├── sql_gs_user_stats.txt │ ├── sql_gs_user_stats_global.txt │ └── sql_stats_procedure.txt ├── DatabaseUsernameStats │ ├── API_DatabaseUsernameStats.sp │ └── sql_gs_username_stats.txt ├── DatabaseUsers │ ├── API_DatabaseUsers.sp │ ├── database_users.inc │ └── sql_core_users.txt ├── DemoSessions │ ├── API_DemoSessions.sp │ ├── demo_sessions.inc │ └── sql_demo_sessions.txt ├── Donators │ ├── API_Donators.sp │ ├── donators.inc │ ├── sql_donator_amounts.txt │ ├── sql_donator_logs.txt │ ├── sql_donator_packages.txt │ ├── sql_donator_server_bills.txt │ ├── sql_donator_servers.txt │ └── sql_donator_titles.txt ├── EntityHooker │ ├── API_EntityHooker.sp │ ├── entity_hooker.inc │ └── sql_plugin_entity_hooker.txt ├── FileDownloader │ ├── API_FileDownloader.sp │ └── file_downloader.inc ├── MapCookies │ ├── API_MapCookies.sp │ ├── map_cookies.inc │ └── sql_gs_map_cookies.txt ├── ModelSkinManager │ ├── API_ModelSkinManager.sp │ └── model_skin_manager.inc ├── MovementStyles │ ├── API_MovementStyles.sp │ └── movement_styles.inc ├── ParticleManager │ ├── API_ParticleManager.sp │ ├── files │ │ └── particles │ │ │ └── particle_manager │ │ │ ├── pm_plugin_v2.pcf │ │ │ └── pm_plugin_v2.pcf.bz2 │ └── particle_manager.inc ├── PathPoints │ ├── API_PathPoints.sp │ ├── path_points.inc │ └── sql_pathpoints_points.txt ├── PlayerChat │ ├── API_PlayerChat.sp │ └── player_chat.inc ├── Replays │ ├── API_Replays.sp │ └── replays.inc ├── SquelchManager │ ├── API_SquelchManager.sp │ ├── sql_gs_user_squelches.txt │ └── squelch_manager.inc ├── Store │ ├── API_Store.sp │ ├── sql_tables_bridge │ │ ├── sql_store_files.txt │ │ ├── sql_store_inventory.txt │ │ ├── sql_store_items.txt │ │ └── sql_store_server_check.txt │ ├── sql_tables_game_servers │ │ ├── sql_store_user_items.txt │ │ └── sql_store_user_items_active.txt │ └── store.inc ├── TimedPunishments │ ├── API_TimedPunishments.sp │ ├── sql_gs_user_timed_punishment.txt │ └── timed_punishments.inc ├── UserLogs │ ├── API_UserLogs.sp │ └── user_logs.inc ├── WebPageViewer │ ├── API_WebPageViewer.sp │ ├── sql_plugin_webpage_viewer.txt │ └── web_page_viewer.inc └── ZoneManager │ ├── API_ZoneManager.sp │ ├── sql_zonemanager_data.txt │ └── zone_manager.inc ├── Mods ├── HideAndSeek │ └── HideAndSeek.sp ├── SpeedRuns │ ├── Includes │ │ ├── speed_runs.inc │ │ ├── speed_runs_checkpoints.inc │ │ ├── speed_runs_experience.inc │ │ └── speed_runs_teleport.inc │ ├── SQL Structure │ │ ├── sql_sr_map_tiers.txt │ │ └── sql_sr_records.txt │ ├── SpeedRuns_Checkpoints.sp │ ├── SpeedRuns_Core.sp │ ├── SpeedRuns_Experience.sp │ ├── SpeedRuns_MapTiersForMapVotes.sp │ ├── SpeedRuns_Points.sp │ ├── SpeedRuns_Ranks.sp │ ├── SpeedRuns_Scoreboard.sp │ ├── SpeedRuns_Spectate.sp │ ├── SpeedRuns_Stats.sp │ ├── SpeedRuns_Teleport.sp │ ├── ZoneTypes │ │ ├── ZoneTypeHelper_StartEndLines.sp │ │ ├── ZoneType_Timer_End.sp │ │ ├── ZoneType_Timer_EndStart.sp │ │ ├── ZoneType_Timer_Start.sp │ │ └── zonetype_helper_startendlines.inc │ └── files │ │ ├── addons │ │ └── sourcemod │ │ │ └── configs │ │ │ └── allowed_tiers.txt │ │ ├── materials │ │ └── swoobles │ │ │ └── speed_runs │ │ │ ├── end.vmt │ │ │ ├── end.vmt.bz2 │ │ │ ├── end.vtf │ │ │ ├── end.vtf.bz2 │ │ │ ├── start.vmt │ │ │ ├── start.vmt.bz2 │ │ │ ├── start.vtf │ │ │ └── start.vtf.bz2 │ │ └── sound │ │ └── swoobles │ │ └── speed_runs │ │ ├── map_excellent.mp3 │ │ ├── map_excellent.mp3.bz2 │ │ ├── map_impressive.mp3 │ │ ├── map_impressive.mp3.bz2 │ │ ├── map_outstanding.mp3 │ │ ├── map_outstanding.mp3.bz2 │ │ ├── map_speed.mp3 │ │ ├── map_speed.mp3.bz2 │ │ ├── stage_very_nice.mp3 │ │ ├── stage_very_nice.mp3.bz2 │ │ ├── stage_whos_the_man.mp3 │ │ ├── stage_whos_the_man.mp3.bz2 │ │ ├── user_damn_im_good.mp3 │ │ ├── user_damn_im_good.mp3.bz2 │ │ ├── user_hail_to_the_king_baby.mp3 │ │ ├── user_hail_to_the_king_baby.mp3.bz2 │ │ ├── user_stage_clap.mp3 │ │ └── user_stage_clap.mp3.bz2 └── UltimateJailbreak │ ├── Commands │ ├── UltJB_Command_CTBan.sp │ ├── UltJB_Command_CTMessage.sp │ ├── UltJB_Command_Freekill.sp │ ├── UltJB_Command_OneUp.sp │ ├── UltJB_Command_Roll.sp │ ├── UltJB_Command_Rules.sp │ ├── UltJB_Command_Speed.sp │ ├── UltJB_Command_Timer.sp │ └── UltJB_Command_Xray.sp │ ├── Days │ ├── UltJB_Freeday_AutoBhop.sp │ ├── UltJB_Freeday_Classic.sp │ ├── UltJB_Freeday_LowGravity.sp │ ├── UltJB_Freeday_Speed.sp │ ├── UltJB_Warday_CTRetake.sp │ ├── UltJB_Warday_CaptureTheFlag.sp │ ├── UltJB_Warday_Classic.sp │ ├── UltJB_Warday_FatKid.sp │ ├── UltJB_Warday_FreezeTag.sp │ ├── UltJB_Warday_Gang.sp │ ├── UltJB_Warday_HeavyAssault.sp │ ├── UltJB_Warday_HorrorMovie.sp │ ├── UltJB_Warday_HungerGames.sp │ ├── UltJB_Warday_Jihad.sp │ ├── UltJB_Warday_LowGravity.sp │ ├── UltJB_Warday_NoScope.sp │ ├── UltJB_Warday_OneInTheChamber.sp │ ├── UltJB_Warday_RPG.sp │ ├── UltJB_Warday_ScoutzKnivez.sp │ ├── UltJB_Warday_Taser.sp │ ├── UltJB_Warday_ThrowingKnives.sp │ ├── UltJB_Warday_WeaponSelection.sp │ └── UltJB_Warday_Zombie.sp │ ├── Effects │ ├── UltJB_Effect_Drugs.sp │ ├── UltJB_Effect_Drunk.sp │ ├── UltJB_Effect_FarOut.sp │ ├── UltJB_Effect_HeadshotsOnly.sp │ ├── UltJB_Effect_LowGravity.sp │ ├── UltJB_Effect_Speed.sp │ └── UltJB_Effect_ThirdPerson.sp │ ├── Includes │ ├── ultjb_cell_doors.inc │ ├── ultjb_days.inc │ ├── ultjb_effects.inc │ ├── ultjb_jihad.inc │ ├── ultjb_last_guard.inc │ ├── ultjb_last_request.inc │ ├── ultjb_logger.inc │ ├── ultjb_player_models.inc │ ├── ultjb_settings.inc │ ├── ultjb_warden.inc │ ├── ultjb_wardenmenu.inc │ └── ultjb_weapon_selection.inc │ ├── LastRequests │ ├── UltJB_LR_Contest_FallDamage.sp │ ├── UltJB_LR_Contest_FallDamage_OldSchool.sp │ ├── UltJB_LR_Contest_GunToss.sp │ ├── UltJB_LR_Contest_GunToss_OldSchool.sp │ ├── UltJB_LR_Contest_MostJumps.sp │ ├── UltJB_LR_Contest_Race.sp │ ├── UltJB_LR_Contest_RussianRoulette.sp │ ├── UltJB_LR_EndRound_Draw.sp │ ├── UltJB_LR_Freeday_AutoBhop.sp │ ├── UltJB_LR_Freeday_Classic.sp │ ├── UltJB_LR_Freeday_LowGravity.sp │ ├── UltJB_LR_Freeday_Speed.sp │ ├── UltJB_LR_Rebel_AWP.sp │ ├── UltJB_LR_Rebel_CokedTaser.sp │ ├── UltJB_LR_Rebel_DrugDealer.sp │ ├── UltJB_LR_Rebel_Ghost.sp │ ├── UltJB_LR_Rebel_MachineGunner.sp │ ├── UltJB_LR_Rebel_PhatKid.sp │ ├── UltJB_LR_Rebel_Scout.sp │ ├── UltJB_LR_Rebel_WildCowboy.sp │ ├── UltJB_LR_WeaponBattle_Classic.sp │ ├── UltJB_LR_WeaponBattle_KnifeBackstab.sp │ ├── UltJB_LR_WeaponBattle_MagForMag.sp │ ├── UltJB_LR_WeaponBattle_NoScope.sp │ └── UltJB_LR_WeaponBattle_ShotForShot.sp │ ├── UltJB_API_CellDoors.sp │ ├── UltJB_API_Days.sp │ ├── UltJB_API_Effects.sp │ ├── UltJB_API_LastRequest.sp │ ├── UltJB_API_WeaponSelection.sp │ ├── UltJB_CellDoors.sp │ ├── UltJB_Jihad.sp │ ├── UltJB_LastGuard.sp │ ├── UltJB_Logger.sp │ ├── UltJB_MuteManager.sp │ ├── UltJB_PlayerModels.sp │ ├── UltJB_Points.sp │ ├── UltJB_Settings.sp │ ├── UltJB_TeamRatio.sp │ ├── UltJB_VoiceChat.sp │ ├── UltJB_Warden.sp │ ├── UltJB_WardenMenu.sp │ └── files │ ├── addons │ └── sourcemod │ │ └── configs │ │ └── cell_doors │ │ ├── ba_ace_jail_v3g.txt │ │ ├── ba_atlas_jail_b3.txt │ │ ├── ba_atlas_jail_swbs.txt │ │ ├── ba_atlas_jail_swbs_v1.txt │ │ ├── ba_atlas_jail_swbs_v3.txt │ │ ├── ba_dreamjail_watchtower_v2-1.txt │ │ ├── ba_jail_alcatraz_redux_go.txt │ │ ├── ba_jail_blackout_csgo.txt │ │ ├── ba_jail_bliss.txt │ │ ├── ba_jail_canyondam_csgo_v7-2.txt │ │ ├── ba_jail_downview_csgo_v3.txt │ │ ├── ba_jail_dubai.txt │ │ ├── ba_jail_electric_vip_v3_swbs.txt │ │ ├── ba_jail_futurouta.txt │ │ ├── ba_jail_kajoly_v2.txt │ │ ├── ba_jail_leoben_csgo_v3-1.txt │ │ ├── ba_jail_lockdown_csgo_final.txt │ │ ├── ba_jail_minecraftparty_v6.txt │ │ ├── ba_jail_mini_gregor_v6.txt │ │ ├── ba_jail_modern_castle_csgo.txt │ │ ├── ba_jail_soar_beta2.txt │ │ ├── ba_jail_stationx_csgo.txt │ │ ├── ba_jail_umbrella_f6.txt │ │ ├── ba_jail_umbrella_ff5.txt │ │ ├── ba_jail_uprise_csgo_v2-5.txt │ │ ├── ba_jail_voodoo_b5.txt │ │ ├── ba_jail_voodoo_final.txt │ │ ├── ba_jail_voodoo_v5.txt │ │ ├── ba_jailbreak_rectangle.txt │ │ ├── ba_mlcastle_se.txt │ │ ├── ba_texture_jail_go5.txt │ │ ├── ba_toobalot_v6.txt │ │ ├── jb_adventuretime_swbs_beta.txt │ │ ├── jb_adventuretime_swbs_v1-1.txt │ │ ├── jb_adventuretime_swbs_v1.txt │ │ ├── jb_airship_csgo_b3.txt │ │ ├── jb_august.txt │ │ ├── jb_avalanche_csgo_b6.txt │ │ ├── jb_battleforce_jail_csgo.txt │ │ ├── jb_blank_b4.txt │ │ ├── jb_blue_v2.txt │ │ ├── jb_brixx_v1.txt │ │ ├── jb_carceris_018.txt │ │ ├── jb_carceris_021.txt │ │ ├── jb_castleguarddev_v5.txt │ │ ├── jb_cavern_v1b.txt │ │ ├── jb_classy.txt │ │ ├── jb_classy_final.txt │ │ ├── jb_classy_v1.txt │ │ ├── jb_classy_v3.txt │ │ ├── jb_classy_v4.txt │ │ ├── jb_clean_v2.txt │ │ ├── jb_clouds_beta01.txt │ │ ├── jb_clouds_beta02.txt │ │ ├── jb_clouds_final4.txt │ │ ├── jb_clouds_swbs_v1.txt │ │ ├── jb_coldcampus_sb1.txt │ │ ├── jb_daolonwong_v1-b.txt │ │ ├── jb_daolonwong_v3.txt │ │ ├── jb_dust2.txt │ │ ├── jb_dystopian_b1.txt │ │ ├── jb_eckz_dee_v1a.txt │ │ ├── jb_fairway_csgo.txt │ │ ├── jb_fg_justizanstalt_v3.txt │ │ ├── jb_fortify.txt │ │ ├── jb_fortify_beta.txt │ │ ├── jb_fortify_v2-2.txt │ │ ├── jb_hotel_final_hiatusfix.txt │ │ ├── jb_hype_a1.txt │ │ ├── jb_hype_a2.txt │ │ ├── jb_industry_beta01.txt │ │ ├── jb_industry_beta03.txt │ │ ├── jb_irodoggo.txt │ │ ├── jb_jail_ultimatum_v1-1.txt │ │ ├── jb_jailberd_v4_final.txt │ │ ├── jb_jailberd_v5_final_fix.txt │ │ ├── jb_jong_final.txt │ │ ├── jb_jungle_beta_4.txt │ │ ├── jb_junglejail_v6.txt │ │ ├── jb_lactose_intolerant_v3.txt │ │ ├── jb_lactose_intolerant_v4fix.txt │ │ ├── jb_last_encounter_csgo.txt │ │ ├── jb_lego_jail_2k17.txt │ │ ├── jb_lego_jail_2k17b.txt │ │ ├── jb_lego_jail_v8.txt │ │ ├── jb_legoland_v1c.txt │ │ ├── jb_mangaroons_prison_bh.txt │ │ ├── jb_minecraft_beta_v4-2.txt │ │ ├── jb_minecraft_beta_v4-2_swbs.txt │ │ ├── jb_minecraft_beta_v4-2c.txt │ │ ├── jb_minecraft_fippin_beta.txt │ │ ├── jb_minecraft_hb_edit.txt │ │ ├── jb_mist.txt │ │ ├── jb_mist_v1.txt │ │ ├── jb_moon_v1.txt │ │ ├── jb_moonjail_v2.txt │ │ ├── jb_mountaincraft_v3.txt │ │ ├── jb_mountaincraft_v4.txt │ │ ├── jb_mountaincraft_v5.txt │ │ ├── jb_newera_b3_swbs.txt │ │ ├── jb_newke_b1.txt │ │ ├── jb_nsa_detainment_facility_0-4.txt │ │ ├── jb_obama_v5_beta.txt │ │ ├── jb_outdoorjail_v2.txt │ │ ├── jb_overcore_v5.txt │ │ ├── jb_papas_kingdom_rebirth_v1.txt │ │ ├── jb_papas_kingdom_swbs.txt │ │ ├── jb_papas_kingdom_swbs_rebirth.txt │ │ ├── jb_paradise_island_v1.txt │ │ ├── jb_peanut_v3.txt │ │ ├── jb_peanut_v3r.txt │ │ ├── jb_pleaseworkv420a.txt │ │ ├── jb_potato_final3.txt │ │ ├── jb_potato_v7-1.txt │ │ ├── jb_potato_v7.txt │ │ ├── jb_precipice_v4.txt │ │ ├── jb_prisonhouse_v8.txt │ │ ├── jb_renegade_v3.txt │ │ ├── jb_russian_concrete.txt │ │ ├── jb_sg_dojo_v4.txt │ │ ├── jb_sg_dojo_v5-6.txt │ │ ├── jb_sg_papas_kingdom_csgo_final_r.txt │ │ ├── jb_sketchy_beta_v1.txt │ │ ├── jb_snow.txt │ │ ├── jb_snow_v2.txt │ │ ├── jb_spy_v1-3.txt │ │ ├── jb_spy_vs_spy_beta7.txt │ │ ├── jb_spy_vs_spy_v1-3.txt │ │ ├── jb_tactics_v4.txt │ │ ├── jb_tan_beta_v2.txt │ │ ├── jb_tan_beta_v3.txt │ │ ├── jb_tan_beta_v4.txt │ │ ├── jb_tan_beta_v5.txt │ │ ├── jb_tan_final.txt │ │ ├── jb_tan_final_v2.txt │ │ ├── jb_tan_update.txt │ │ ├── jb_tan_v2.txt │ │ ├── jb_tensu_v4-2.txt │ │ ├── jb_tng_epik_v2.txt │ │ ├── jb_tomatoes_dev_beta_v1.txt │ │ ├── jb_tomatoes_dev_beta_v3fix.txt │ │ ├── jb_tomatoes_dev_beta_v4.txt │ │ ├── jb_tomatoes_dev_final.txt │ │ ├── jb_tomatoes_v1-0-1.txt │ │ ├── jb_tomatoes_v1-1.txt │ │ ├── jb_tomatoes_v1.txt │ │ ├── jb_tower_b7.txt │ │ ├── jb_undertale_b1_workshop.txt │ │ ├── jb_undertale_b2.txt │ │ ├── jb_undertale_b5.txt │ │ ├── jb_undertale_v1.txt │ │ ├── jb_vice_beta.txt │ │ ├── jb_waterside_v5_1.txt │ │ └── jb_zeroday_24.txt │ ├── materials │ ├── models │ │ └── weapons │ │ │ └── rocket_launcher │ │ │ ├── dm_base.vmt │ │ │ ├── dm_base.vmt.bz2 │ │ │ ├── dm_base.vtf │ │ │ ├── dm_base.vtf.bz2 │ │ │ ├── rocketl.vmt │ │ │ ├── rocketl.vmt.bz2 │ │ │ ├── rocketl.vtf │ │ │ └── rocketl.vtf.bz2 │ └── swoobles │ │ ├── particles │ │ ├── flare_002.vmt │ │ ├── flare_002.vmt.bz2 │ │ ├── flare_002.vtf │ │ ├── flare_002.vtf.bz2 │ │ ├── heal_cross_1.vmt │ │ ├── heal_cross_1.vmt.bz2 │ │ ├── heal_cross_1.vtf │ │ ├── heal_cross_1.vtf.bz2 │ │ ├── ring_wave_10_water.vtf │ │ ├── ring_wave_10_water.vtf.bz2 │ │ ├── ring_wave_10_water_add.vmt │ │ └── ring_wave_10_water_add.vmt.bz2 │ │ ├── player │ │ └── prisoners │ │ │ ├── female_asian │ │ │ ├── denise_head01_d.vmt │ │ │ ├── denise_head01_d.vmt.bz2 │ │ │ ├── denise_head01_d.vtf │ │ │ ├── denise_head01_d.vtf.bz2 │ │ │ ├── denise_head01_normal.vtf │ │ │ ├── denise_head01_normal.vtf.bz2 │ │ │ ├── lara_brow_d.vmt │ │ │ ├── lara_brow_d.vmt.bz2 │ │ │ ├── lara_brow_d.vtf │ │ │ ├── lara_brow_d.vtf.bz2 │ │ │ ├── lara_eye_d.vmt │ │ │ ├── lara_eye_d.vmt.bz2 │ │ │ ├── lara_eye_d.vtf │ │ │ ├── lara_eye_d.vtf.bz2 │ │ │ ├── lara_eye_normal.vtf │ │ │ ├── lara_eye_normal.vtf.bz2 │ │ │ ├── lara_face_d.vmt │ │ │ ├── lara_face_d.vmt.bz2 │ │ │ ├── lara_face_d.vtf │ │ │ ├── lara_face_d.vtf.bz2 │ │ │ ├── lara_face_normal.vtf │ │ │ ├── lara_face_normal.vtf.bz2 │ │ │ ├── lara_hair1_d.vmt │ │ │ ├── lara_hair1_d.vmt.bz2 │ │ │ ├── lara_hair1_d.vtf │ │ │ ├── lara_hair1_d.vtf.bz2 │ │ │ ├── lara_hair1_d_tr.vmt │ │ │ ├── lara_hair1_d_tr.vmt.bz2 │ │ │ ├── lara_hair1_normal.vtf │ │ │ ├── lara_hair1_normal.vtf.bz2 │ │ │ ├── lara_hair2_d.vmt │ │ │ ├── lara_hair2_d.vmt.bz2 │ │ │ ├── lara_hair2_d.vtf │ │ │ ├── lara_hair2_d.vtf.bz2 │ │ │ ├── lara_hair2_d_tr.vmt │ │ │ ├── lara_hair2_d_tr.vmt.bz2 │ │ │ ├── lara_hair2_normal.vtf │ │ │ ├── lara_hair2_normal.vtf.bz2 │ │ │ ├── lara_lashes_d.vmt │ │ │ ├── lara_lashes_d.vmt.bz2 │ │ │ ├── lara_lashes_d.vtf │ │ │ ├── lara_lashes_d.vtf.bz2 │ │ │ ├── lara_mouth_d.vmt │ │ │ ├── lara_mouth_d.vmt.bz2 │ │ │ ├── lara_mouth_d.vtf │ │ │ ├── lara_mouth_d.vtf.bz2 │ │ │ ├── lara_sh_d.vmt │ │ │ ├── lara_sh_d.vmt.bz2 │ │ │ ├── lara_sh_d.vtf │ │ │ ├── lara_sh_d.vtf.bz2 │ │ │ ├── shirt_d.vmt │ │ │ ├── shirt_d.vmt.bz2 │ │ │ ├── shirt_d.vtf │ │ │ └── shirt_d.vtf.bz2 │ │ │ ├── male_black_big │ │ │ ├── eye_d.vmt │ │ │ ├── eye_d.vmt.bz2 │ │ │ ├── eye_d.vtf │ │ │ ├── eye_d.vtf.bz2 │ │ │ ├── prisoner_lt_bottom_d.vmt │ │ │ ├── prisoner_lt_bottom_d.vmt.bz2 │ │ │ ├── prisoner_lt_bottom_d.vtf │ │ │ ├── prisoner_lt_bottom_d.vtf.bz2 │ │ │ ├── prisoner_lt_bottom_d_white.vmt │ │ │ ├── prisoner_lt_bottom_d_white.vmt.bz2 │ │ │ ├── prisoner_lt_bottom_d_white.vtf │ │ │ ├── prisoner_lt_bottom_d_white.vtf.bz2 │ │ │ ├── prisoner_lt_bottom_normal.vtf │ │ │ ├── prisoner_lt_bottom_normal.vtf.bz2 │ │ │ ├── prisoner_lt_head_d.vmt │ │ │ ├── prisoner_lt_head_d.vmt.bz2 │ │ │ ├── prisoner_lt_head_d.vtf │ │ │ ├── prisoner_lt_head_d.vtf.bz2 │ │ │ ├── prisoner_lt_head_normal.vtf │ │ │ ├── prisoner_lt_head_normal.vtf.bz2 │ │ │ ├── prisoner_lt_top_d.vmt │ │ │ ├── prisoner_lt_top_d.vmt.bz2 │ │ │ ├── prisoner_lt_top_d.vtf │ │ │ ├── prisoner_lt_top_d.vtf.bz2 │ │ │ ├── prisoner_lt_top_d_white.vmt │ │ │ ├── prisoner_lt_top_d_white.vmt.bz2 │ │ │ ├── prisoner_lt_top_d_white.vtf │ │ │ ├── prisoner_lt_top_d_white.vtf.bz2 │ │ │ ├── prisoner_lt_top_normal.vtf │ │ │ ├── prisoner_lt_top_normal.vtf.bz2 │ │ │ ├── prisoners_torso_d.vmt │ │ │ ├── prisoners_torso_d.vmt.bz2 │ │ │ ├── prisoners_torso_d.vtf │ │ │ └── prisoners_torso_d.vtf.bz2 │ │ │ ├── male_white_hair │ │ │ ├── charles01_body01_au_d.vmt │ │ │ ├── charles01_body01_au_d.vmt.bz2 │ │ │ ├── charles01_body01_au_d.vtf │ │ │ ├── charles01_body01_au_d.vtf.bz2 │ │ │ ├── charles01_body01_au_normal.vtf │ │ │ ├── charles01_body01_au_normal.vtf.bz2 │ │ │ ├── charles01_head01_au_d.vmt │ │ │ ├── charles01_head01_au_d.vmt.bz2 │ │ │ ├── charles01_head01_au_d.vtf │ │ │ ├── charles01_head01_au_d.vtf.bz2 │ │ │ ├── charles01_head01_au_normal.vtf │ │ │ ├── charles01_head01_au_normal.vtf.bz2 │ │ │ ├── hair01_au_d.vmt │ │ │ ├── hair01_au_d.vmt.bz2 │ │ │ ├── hair01_au_d.vtf │ │ │ ├── hair01_au_d.vtf.bz2 │ │ │ ├── hair01_au_normal.vtf │ │ │ ├── hair01_au_normal.vtf.bz2 │ │ │ ├── hair02_au_d.vmt │ │ │ └── hair02_au_d.vmt.bz2 │ │ │ └── shared │ │ │ ├── brown_eye01_an_d.vmt │ │ │ ├── brown_eye01_an_d.vmt.bz2 │ │ │ ├── brown_eye01_an_d.vtf │ │ │ ├── brown_eye01_an_d.vtf.bz2 │ │ │ ├── brown_eye_normal.vtf │ │ │ ├── brown_eye_normal.vtf.bz2 │ │ │ ├── prisoner1_body.vmt │ │ │ ├── prisoner1_body.vmt.bz2 │ │ │ ├── prisoner1_body.vtf │ │ │ ├── prisoner1_body.vtf.bz2 │ │ │ ├── prisoner1_body_normal.vtf │ │ │ ├── prisoner1_body_normal.vtf.bz2 │ │ │ ├── prisoner1_body_white.vmt │ │ │ ├── prisoner1_body_white.vmt.bz2 │ │ │ ├── prisoner1_body_white.vtf │ │ │ └── prisoner1_body_white.vtf.bz2 │ │ ├── rocket_jumping │ │ └── missile │ │ │ ├── missile.vmt │ │ │ ├── missile.vmt.bz2 │ │ │ ├── missile.vtf │ │ │ └── missile.vtf.bz2 │ │ └── ultimate_jailbreak │ │ ├── capture_point │ │ ├── block.vmt │ │ ├── block.vmt.bz2 │ │ ├── block.vtf │ │ └── block.vtf.bz2 │ │ ├── finish_line │ │ ├── checkers.vmt │ │ ├── checkers.vmt.bz2 │ │ ├── checkers.vtf │ │ ├── checkers.vtf.bz2 │ │ ├── poles.vmt │ │ ├── poles.vmt.bz2 │ │ ├── poles.vtf │ │ └── poles.vtf.bz2 │ │ ├── flag │ │ ├── flag_fx_yellow.vmt │ │ ├── flag_fx_yellow.vmt.bz2 │ │ ├── flag_glow.vtf │ │ ├── flag_glow.vtf.bz2 │ │ ├── flag_glow_normal.vtf │ │ ├── flag_glow_normal.vtf.bz2 │ │ ├── flag_yellow.vmt │ │ ├── flag_yellow.vmt.bz2 │ │ ├── flag_yellow.vtf │ │ └── flag_yellow.vtf.bz2 │ │ ├── overlay_guards_win_v15.vmt │ │ ├── overlay_guards_win_v15.vmt.bz2 │ │ ├── overlay_guards_win_v15.vtf │ │ ├── overlay_guards_win_v15.vtf.bz2 │ │ ├── overlay_prisoners_win_v15.vmt │ │ ├── overlay_prisoners_win_v15.vmt.bz2 │ │ ├── overlay_prisoners_win_v15.vtf │ │ ├── overlay_prisoners_win_v15.vtf.bz2 │ │ ├── paintballs │ │ ├── splat_blue.vmt │ │ ├── splat_blue.vmt.bz2 │ │ ├── splat_blue.vtf │ │ ├── splat_blue.vtf.bz2 │ │ ├── splat_green.vmt │ │ ├── splat_green.vmt.bz2 │ │ ├── splat_green.vtf │ │ ├── splat_green.vtf.bz2 │ │ ├── splat_pink.vmt │ │ ├── splat_pink.vmt.bz2 │ │ ├── splat_pink.vtf │ │ └── splat_pink.vtf.bz2 │ │ ├── wall_beam.vmt │ │ └── wall_beam.vmt.bz2 │ ├── models │ ├── player │ │ └── custom_player │ │ │ └── swoobles │ │ │ ├── guard │ │ │ ├── guard.dx90.vtx │ │ │ ├── guard.dx90.vtx.bz2 │ │ │ ├── guard.mdl │ │ │ ├── guard.mdl.bz2 │ │ │ ├── guard.phy │ │ │ ├── guard.phy.bz2 │ │ │ ├── guard.vvd │ │ │ └── guard.vvd.bz2 │ │ │ └── prisoners │ │ │ ├── female_asian_new │ │ │ ├── female_asian_new.dx90.vtx │ │ │ ├── female_asian_new.dx90.vtx.bz2 │ │ │ ├── female_asian_new.mdl │ │ │ ├── female_asian_new.mdl.bz2 │ │ │ ├── female_asian_new.phy │ │ │ ├── female_asian_new.phy.bz2 │ │ │ ├── female_asian_new.vvd │ │ │ └── female_asian_new.vvd.bz2 │ │ │ ├── male_black_big_new │ │ │ ├── male_black_big_new.dx90.vtx │ │ │ ├── male_black_big_new.dx90.vtx.bz2 │ │ │ ├── male_black_big_new.mdl │ │ │ ├── male_black_big_new.mdl.bz2 │ │ │ ├── male_black_big_new.phy │ │ │ ├── male_black_big_new.phy.bz2 │ │ │ ├── male_black_big_new.vvd │ │ │ └── male_black_big_new.vvd.bz2 │ │ │ └── male_white_hair_new │ │ │ ├── male_white_hair_new.dx90.vtx │ │ │ ├── male_white_hair_new.dx90.vtx.bz2 │ │ │ ├── male_white_hair_new.mdl │ │ │ ├── male_white_hair_new.mdl.bz2 │ │ │ ├── male_white_hair_new.phy │ │ │ ├── male_white_hair_new.phy.bz2 │ │ │ ├── male_white_hair_new.vvd │ │ │ └── male_white_hair_new.vvd.bz2 │ ├── swoobles │ │ ├── rocket_jumping │ │ │ └── missile │ │ │ │ ├── missile.dx80.vtx │ │ │ │ ├── missile.dx80.vtx.bz2 │ │ │ │ ├── missile.dx90.vtx │ │ │ │ ├── missile.dx90.vtx.bz2 │ │ │ │ ├── missile.mdl │ │ │ │ ├── missile.mdl.bz2 │ │ │ │ ├── missile.sw.vtx │ │ │ │ ├── missile.sw.vtx.bz2 │ │ │ │ ├── missile.vvd │ │ │ │ └── missile.vvd.bz2 │ │ └── ultimate_jailbreak │ │ │ ├── capture_point │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── finish_line │ │ │ ├── finish_line.dx90.vtx │ │ │ ├── finish_line.dx90.vtx.bz2 │ │ │ ├── finish_line.mdl │ │ │ ├── finish_line.mdl.bz2 │ │ │ ├── finish_line.phy │ │ │ ├── finish_line.phy.bz2 │ │ │ ├── finish_line.vvd │ │ │ └── finish_line.vvd.bz2 │ │ │ └── flag │ │ │ ├── flag.dx90.vtx │ │ │ ├── flag.dx90.vtx.bz2 │ │ │ ├── flag.mdl │ │ │ ├── flag.mdl.bz2 │ │ │ ├── flag.phy │ │ │ ├── flag.phy.bz2 │ │ │ ├── flag.vvd │ │ │ └── flag.vvd.bz2 │ └── weapons │ │ └── rocket_launcher │ │ ├── rocket_launcher.ani │ │ ├── rocket_launcher.ani.bz2 │ │ ├── rocket_launcher.dx90.vtx │ │ ├── rocket_launcher.dx90.vtx.bz2 │ │ ├── rocket_launcher.mdl │ │ ├── rocket_launcher.mdl.bz2 │ │ ├── rocket_launcher.vvd │ │ ├── rocket_launcher.vvd.bz2 │ │ ├── w_rocket_launcher.dx90.vtx │ │ ├── w_rocket_launcher.dx90.vtx.bz2 │ │ ├── w_rocket_launcher.mdl │ │ ├── w_rocket_launcher.mdl.bz2 │ │ ├── w_rocket_launcher.phy │ │ ├── w_rocket_launcher.phy.bz2 │ │ ├── w_rocket_launcher.vvd │ │ └── w_rocket_launcher.vvd.bz2 │ ├── particles │ └── swoobles │ │ ├── defrag_v1.pcf │ │ ├── defrag_v1.pcf.bz2 │ │ ├── jailbreak_v1.pcf │ │ └── jailbreak_v1.pcf.bz2 │ └── sound │ └── swoobles │ ├── rocket_jumping │ ├── death.mp3 │ ├── death.mp3.bz2 │ ├── explode1.mp3 │ ├── explode1.mp3.bz2 │ ├── explode2.mp3 │ ├── explode2.mp3.bz2 │ ├── explode3.mp3 │ ├── explode3.mp3.bz2 │ ├── explode4.mp3 │ ├── explode4.mp3.bz2 │ ├── pain1.mp3 │ ├── pain1.mp3.bz2 │ ├── pain2.mp3 │ ├── pain2.mp3.bz2 │ ├── shoot_v1.mp3 │ └── shoot_v1.mp3.bz2 │ └── ultimate_jailbreak │ ├── chat_alert.mp3 │ ├── chat_alert.mp3.bz2 │ ├── cowbell.mp3 │ ├── cowbell.mp3.bz2 │ ├── freekill.mp3 │ ├── freekill.mp3.bz2 │ ├── guards_win_v5.mp3 │ ├── guards_win_v5.mp3.bz2 │ ├── last_request_activated.mp3 │ ├── last_request_activated.mp3.bz2 │ ├── prisoners_win_v5.mp3 │ └── prisoners_win_v5.mp3.bz2 ├── Plugins ├── AFKManager │ ├── AFKManager.sp │ └── afk_manager.inc ├── AdminTags │ └── AdminTags.sp ├── AllowMorePlayers │ ├── AllowMorePlayers.sp │ └── allow_more_players.inc ├── AutoBhop │ ├── AutoBhop.sp │ └── auto_bhop.inc ├── AutoStrafe │ ├── AutoStrafe.sp │ └── auto_strafe.inc ├── BhopCap │ └── BhopCap.sp ├── BhopCheck │ └── BhopCheck.sp ├── BlockGameStart │ └── BlockGameStart.sp ├── BlockSpamMessages │ └── BlockSpamMessages.sp ├── Blocks │ ├── Block_Arrow.sp │ ├── Block_Boost.sp │ ├── Block_Bunnyhop.sp │ ├── Block_Camouflage.sp │ ├── Block_CautionTape.sp │ ├── Block_Chicken.sp │ ├── Block_Death.sp │ ├── Block_Freeze.sp │ ├── Block_Glass.sp │ ├── Block_GodMode.sp │ ├── Block_Healing.sp │ ├── Block_Ice.sp │ ├── Block_Ladder.sp │ ├── Block_Lava.sp │ ├── Block_Letters.sp │ ├── Block_Light.sp │ ├── Block_LowGravity.sp │ ├── Block_Magnet.sp │ ├── Block_NoFallDamage.sp │ ├── Block_Nuke.sp │ ├── Block_PlatformDisappearing.sp │ ├── Block_PortalDoor.sp │ ├── Block_Slap.sp │ ├── Block_Slime.sp │ ├── Block_Speed.sp │ ├── Block_TeamBarrier.sp │ ├── Block_Teleport.sp │ ├── Block_Train.sp │ ├── Block_Trampoline.sp │ ├── Block_Weapons.sp │ └── files │ │ ├── materials │ │ └── swoobles │ │ │ └── blocks │ │ │ ├── arrow │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── boost │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── bunnyhop │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── camouflage │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── cautiontape │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── chicken │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── death │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── freeze │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── glass │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── godmode │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── healing │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── ice │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── ladder │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── lava │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── letters │ │ │ ├── A.vmt │ │ │ ├── A.vmt.bz2 │ │ │ ├── A.vtf │ │ │ ├── A.vtf.bz2 │ │ │ ├── B.vmt │ │ │ ├── B.vmt.bz2 │ │ │ ├── B.vtf │ │ │ ├── B.vtf.bz2 │ │ │ ├── C.vmt │ │ │ ├── C.vmt.bz2 │ │ │ ├── C.vtf │ │ │ ├── C.vtf.bz2 │ │ │ ├── D.vmt │ │ │ ├── D.vmt.bz2 │ │ │ ├── D.vtf │ │ │ ├── D.vtf.bz2 │ │ │ ├── E.vmt │ │ │ ├── E.vmt.bz2 │ │ │ ├── E.vtf │ │ │ ├── E.vtf.bz2 │ │ │ ├── F.vmt │ │ │ ├── F.vmt.bz2 │ │ │ ├── F.vtf │ │ │ ├── F.vtf.bz2 │ │ │ ├── G.vmt │ │ │ ├── G.vmt.bz2 │ │ │ ├── G.vtf │ │ │ ├── G.vtf.bz2 │ │ │ ├── H.vmt │ │ │ ├── H.vmt.bz2 │ │ │ ├── H.vtf │ │ │ ├── H.vtf.bz2 │ │ │ ├── I.vmt │ │ │ ├── I.vmt.bz2 │ │ │ ├── I.vtf │ │ │ ├── I.vtf.bz2 │ │ │ ├── J.vmt │ │ │ ├── J.vmt.bz2 │ │ │ ├── J.vtf │ │ │ ├── J.vtf.bz2 │ │ │ ├── K.vmt │ │ │ ├── K.vmt.bz2 │ │ │ ├── K.vtf │ │ │ ├── K.vtf.bz2 │ │ │ ├── L.vmt │ │ │ ├── L.vmt.bz2 │ │ │ ├── L.vtf │ │ │ ├── L.vtf.bz2 │ │ │ ├── M.vmt │ │ │ ├── M.vmt.bz2 │ │ │ ├── M.vtf │ │ │ ├── M.vtf.bz2 │ │ │ ├── N.vmt │ │ │ ├── N.vmt.bz2 │ │ │ ├── N.vtf │ │ │ ├── N.vtf.bz2 │ │ │ ├── O.vmt │ │ │ ├── O.vmt.bz2 │ │ │ ├── O.vtf │ │ │ ├── O.vtf.bz2 │ │ │ ├── P.vmt │ │ │ ├── P.vmt.bz2 │ │ │ ├── P.vtf │ │ │ ├── P.vtf.bz2 │ │ │ ├── Q.vmt │ │ │ ├── Q.vmt.bz2 │ │ │ ├── Q.vtf │ │ │ ├── Q.vtf.bz2 │ │ │ ├── R.vmt │ │ │ ├── R.vmt.bz2 │ │ │ ├── R.vtf │ │ │ ├── R.vtf.bz2 │ │ │ ├── S.vmt │ │ │ ├── S.vmt.bz2 │ │ │ ├── S.vtf │ │ │ ├── S.vtf.bz2 │ │ │ ├── T.vmt │ │ │ ├── T.vmt.bz2 │ │ │ ├── T.vtf │ │ │ ├── T.vtf.bz2 │ │ │ ├── U.vmt │ │ │ ├── U.vmt.bz2 │ │ │ ├── U.vtf │ │ │ ├── U.vtf.bz2 │ │ │ ├── V.vmt │ │ │ ├── V.vmt.bz2 │ │ │ ├── V.vtf │ │ │ ├── V.vtf.bz2 │ │ │ ├── W.vmt │ │ │ ├── W.vmt.bz2 │ │ │ ├── W.vtf │ │ │ ├── W.vtf.bz2 │ │ │ ├── X.vmt │ │ │ ├── X.vmt.bz2 │ │ │ ├── X.vtf │ │ │ ├── X.vtf.bz2 │ │ │ ├── Y.vmt │ │ │ ├── Y.vmt.bz2 │ │ │ ├── Y.vtf │ │ │ ├── Y.vtf.bz2 │ │ │ ├── Z.vmt │ │ │ ├── Z.vmt.bz2 │ │ │ ├── Z.vtf │ │ │ └── Z.vtf.bz2 │ │ │ ├── light │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── lowgravity │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── magnet │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── nofalldamage │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── nuke │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── platform │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── platformdisappearing │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── portaldoor │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── random │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── slap │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── slime │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── speed │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── teambarrier │ │ │ ├── allow_ct.vmt │ │ │ ├── allow_ct.vmt.bz2 │ │ │ ├── allow_ct.vtf │ │ │ ├── allow_ct.vtf.bz2 │ │ │ ├── allow_t.vmt │ │ │ ├── allow_t.vmt.bz2 │ │ │ ├── allow_t.vtf │ │ │ └── allow_t.vtf.bz2 │ │ │ ├── teleport │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── test │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── train │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── trainpath │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ ├── trampoline │ │ │ ├── block.vmt │ │ │ ├── block.vmt.bz2 │ │ │ ├── block.vtf │ │ │ └── block.vtf.bz2 │ │ │ └── weapons │ │ │ ├── ak47.vmt │ │ │ ├── ak47.vmt.bz2 │ │ │ ├── ak47.vtf │ │ │ ├── ak47.vtf.bz2 │ │ │ ├── aug.vmt │ │ │ ├── aug.vmt.bz2 │ │ │ ├── aug.vtf │ │ │ ├── aug.vtf.bz2 │ │ │ ├── awp.vmt │ │ │ ├── awp.vmt.bz2 │ │ │ ├── awp.vtf │ │ │ ├── awp.vtf.bz2 │ │ │ ├── cz75.vmt │ │ │ ├── cz75.vmt.bz2 │ │ │ ├── cz75.vtf │ │ │ ├── cz75.vtf.bz2 │ │ │ ├── deagle.vmt │ │ │ ├── deagle.vmt.bz2 │ │ │ ├── deagle.vtf │ │ │ ├── deagle.vtf.bz2 │ │ │ ├── decoy.vmt │ │ │ ├── decoy.vmt.bz2 │ │ │ ├── decoy.vtf │ │ │ ├── decoy.vtf.bz2 │ │ │ ├── dualies.vmt │ │ │ ├── dualies.vmt.bz2 │ │ │ ├── dualies.vtf │ │ │ ├── dualies.vtf.bz2 │ │ │ ├── famas.vmt │ │ │ ├── famas.vmt.bz2 │ │ │ ├── famas.vtf │ │ │ ├── famas.vtf.bz2 │ │ │ ├── fiveseven.vmt │ │ │ ├── fiveseven.vmt.bz2 │ │ │ ├── fiveseven.vtf │ │ │ ├── fiveseven.vtf.bz2 │ │ │ ├── flashbang.vmt │ │ │ ├── flashbang.vmt.bz2 │ │ │ ├── flashbang.vtf │ │ │ ├── flashbang.vtf.bz2 │ │ │ ├── g3sg1.vmt │ │ │ ├── g3sg1.vmt.bz2 │ │ │ ├── g3sg1.vtf │ │ │ ├── g3sg1.vtf.bz2 │ │ │ ├── galil.vmt │ │ │ ├── galil.vmt.bz2 │ │ │ ├── galil.vtf │ │ │ ├── galil.vtf.bz2 │ │ │ ├── glock.vmt │ │ │ ├── glock.vmt.bz2 │ │ │ ├── glock.vtf │ │ │ ├── glock.vtf.bz2 │ │ │ ├── healthshot.vmt │ │ │ ├── healthshot.vmt.bz2 │ │ │ ├── healthshot.vtf │ │ │ ├── healthshot.vtf.bz2 │ │ │ ├── hegrenade.vmt │ │ │ ├── hegrenade.vmt.bz2 │ │ │ ├── hegrenade.vtf │ │ │ ├── hegrenade.vtf.bz2 │ │ │ ├── incgrenade.vmt │ │ │ ├── incgrenade.vmt.bz2 │ │ │ ├── incgrenade.vtf │ │ │ ├── incgrenade.vtf.bz2 │ │ │ ├── knife.vmt │ │ │ ├── knife.vmt.bz2 │ │ │ ├── knife.vtf │ │ │ ├── knife.vtf.bz2 │ │ │ ├── m249.vmt │ │ │ ├── m249.vmt.bz2 │ │ │ ├── m249.vtf │ │ │ ├── m249.vtf.bz2 │ │ │ ├── m4a1.vmt │ │ │ ├── m4a1.vmt.bz2 │ │ │ ├── m4a1.vtf │ │ │ ├── m4a1.vtf.bz2 │ │ │ ├── m4a4.vmt │ │ │ ├── m4a4.vmt.bz2 │ │ │ ├── m4a4.vtf │ │ │ ├── m4a4.vtf.bz2 │ │ │ ├── mac10.vmt │ │ │ ├── mac10.vmt.bz2 │ │ │ ├── mac10.vtf │ │ │ ├── mac10.vtf.bz2 │ │ │ ├── mag7.vmt │ │ │ ├── mag7.vmt.bz2 │ │ │ ├── mag7.vtf │ │ │ ├── mag7.vtf.bz2 │ │ │ ├── molotov.vmt │ │ │ ├── molotov.vmt.bz2 │ │ │ ├── molotov.vtf │ │ │ ├── molotov.vtf.bz2 │ │ │ ├── mp7.vmt │ │ │ ├── mp7.vmt.bz2 │ │ │ ├── mp7.vtf │ │ │ ├── mp7.vtf.bz2 │ │ │ ├── mp9.vmt │ │ │ ├── mp9.vmt.bz2 │ │ │ ├── mp9.vtf │ │ │ ├── mp9.vtf.bz2 │ │ │ ├── negev.vmt │ │ │ ├── negev.vmt.bz2 │ │ │ ├── negev.vtf │ │ │ ├── negev.vtf.bz2 │ │ │ ├── none.vmt │ │ │ ├── none.vmt.bz2 │ │ │ ├── none.vtf │ │ │ ├── none.vtf.bz2 │ │ │ ├── nova.vmt │ │ │ ├── nova.vmt.bz2 │ │ │ ├── nova.vtf │ │ │ ├── nova.vtf.bz2 │ │ │ ├── p2000.vmt │ │ │ ├── p2000.vmt.bz2 │ │ │ ├── p2000.vtf │ │ │ ├── p2000.vtf.bz2 │ │ │ ├── p250.vmt │ │ │ ├── p250.vmt.bz2 │ │ │ ├── p250.vtf │ │ │ ├── p250.vtf.bz2 │ │ │ ├── p90.vmt │ │ │ ├── p90.vmt.bz2 │ │ │ ├── p90.vtf │ │ │ ├── p90.vtf.bz2 │ │ │ ├── ppbizon.vmt │ │ │ ├── ppbizon.vmt.bz2 │ │ │ ├── ppbizon.vtf │ │ │ ├── ppbizon.vtf.bz2 │ │ │ ├── r8.vmt │ │ │ ├── r8.vmt.bz2 │ │ │ ├── r8.vtf │ │ │ ├── r8.vtf.bz2 │ │ │ ├── sawedoff.vmt │ │ │ ├── sawedoff.vmt.bz2 │ │ │ ├── sawedoff.vtf │ │ │ ├── sawedoff.vtf.bz2 │ │ │ ├── scar20.vmt │ │ │ ├── scar20.vmt.bz2 │ │ │ ├── scar20.vtf │ │ │ ├── scar20.vtf.bz2 │ │ │ ├── sg553.vmt │ │ │ ├── sg553.vmt.bz2 │ │ │ ├── sg553.vtf │ │ │ ├── sg553.vtf.bz2 │ │ │ ├── smokegrenade.vmt │ │ │ ├── smokegrenade.vmt.bz2 │ │ │ ├── smokegrenade.vtf │ │ │ ├── smokegrenade.vtf.bz2 │ │ │ ├── ssg08.vmt │ │ │ ├── ssg08.vmt.bz2 │ │ │ ├── ssg08.vtf │ │ │ ├── ssg08.vtf.bz2 │ │ │ ├── tagrenade.vmt │ │ │ ├── tagrenade.vmt.bz2 │ │ │ ├── tagrenade.vtf │ │ │ ├── tagrenade.vtf.bz2 │ │ │ ├── taser.vmt │ │ │ ├── taser.vmt.bz2 │ │ │ ├── taser.vtf │ │ │ ├── taser.vtf.bz2 │ │ │ ├── tec9.vmt │ │ │ ├── tec9.vmt.bz2 │ │ │ ├── tec9.vtf │ │ │ ├── tec9.vtf.bz2 │ │ │ ├── ump.vmt │ │ │ ├── ump.vmt.bz2 │ │ │ ├── ump.vtf │ │ │ ├── ump.vtf.bz2 │ │ │ ├── usps.vmt │ │ │ ├── usps.vmt.bz2 │ │ │ ├── usps.vtf │ │ │ ├── usps.vtf.bz2 │ │ │ ├── xm1014.vmt │ │ │ ├── xm1014.vmt.bz2 │ │ │ ├── xm1014.vtf │ │ │ └── xm1014.vtf.bz2 │ │ ├── models │ │ └── swoobles │ │ │ └── blocks │ │ │ ├── arrow │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── blockseat │ │ │ ├── blockseat.dx90.vtx │ │ │ ├── blockseat.dx90.vtx.bz2 │ │ │ ├── blockseat.mdl │ │ │ ├── blockseat.mdl.bz2 │ │ │ ├── blockseat.phy │ │ │ ├── blockseat.phy.bz2 │ │ │ ├── blockseat.vvd │ │ │ └── blockseat.vvd.bz2 │ │ │ ├── boost │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ ├── block.vvd.bz2 │ │ │ ├── block_v2.dx90.vtx │ │ │ ├── block_v2.dx90.vtx.bz2 │ │ │ ├── block_v2.mdl │ │ │ ├── block_v2.mdl.bz2 │ │ │ ├── block_v2.phy │ │ │ ├── block_v2.phy.bz2 │ │ │ ├── block_v2.vvd │ │ │ └── block_v2.vvd.bz2 │ │ │ ├── bunnyhop │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── camouflage │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── cautiontape │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── chicken │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── death │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── freeze │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── glass │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── godmode │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── healing │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── ice │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── ladder │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── lava │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── letters │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── light │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── lowgravity │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── magnet │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── nofalldamage │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── nuke │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── platform │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── platformdisappearing │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── portaldoor │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── random │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── slap │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── slime │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── speed │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── teambarrier │ │ │ ├── allow_ct.dx90.vtx │ │ │ ├── allow_ct.dx90.vtx.bz2 │ │ │ ├── allow_ct.mdl │ │ │ ├── allow_ct.mdl.bz2 │ │ │ ├── allow_ct.phy │ │ │ ├── allow_ct.phy.bz2 │ │ │ ├── allow_ct.vvd │ │ │ ├── allow_ct.vvd.bz2 │ │ │ ├── allow_t.dx90.vtx │ │ │ ├── allow_t.dx90.vtx.bz2 │ │ │ ├── allow_t.mdl │ │ │ ├── allow_t.mdl.bz2 │ │ │ ├── allow_t.phy │ │ │ ├── allow_t.phy.bz2 │ │ │ ├── allow_t.vvd │ │ │ └── allow_t.vvd.bz2 │ │ │ ├── teleport │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ ├── block.vvd.bz2 │ │ │ ├── in │ │ │ │ ├── block.dx90.vtx │ │ │ │ ├── block.dx90.vtx.bz2 │ │ │ │ ├── block.mdl │ │ │ │ ├── block.mdl.bz2 │ │ │ │ ├── block.phy │ │ │ │ ├── block.phy.bz2 │ │ │ │ ├── block.vvd │ │ │ │ └── block.vvd.bz2 │ │ │ └── out │ │ │ │ ├── block.dx90.vtx │ │ │ │ ├── block.dx90.vtx.bz2 │ │ │ │ ├── block.mdl │ │ │ │ ├── block.mdl.bz2 │ │ │ │ ├── block.phy │ │ │ │ ├── block.phy.bz2 │ │ │ │ ├── block.vvd │ │ │ │ └── block.vvd.bz2 │ │ │ ├── test │ │ │ ├── test.dx90.vtx │ │ │ ├── test.dx90.vtx.bz2 │ │ │ ├── test.mdl │ │ │ ├── test.mdl.bz2 │ │ │ ├── test.phy │ │ │ ├── test.phy.bz2 │ │ │ ├── test.vvd │ │ │ └── test.vvd.bz2 │ │ │ ├── train │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ ├── block.vvd.bz2 │ │ │ ├── blockseat.dx90.vtx │ │ │ ├── blockseat.dx90.vtx.bz2 │ │ │ ├── blockseat.mdl │ │ │ ├── blockseat.mdl.bz2 │ │ │ ├── blockseat.phy │ │ │ ├── blockseat.phy.bz2 │ │ │ ├── blockseat.vvd │ │ │ └── blockseat.vvd.bz2 │ │ │ ├── trainpath │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ ├── trampoline │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ │ └── weapons │ │ │ ├── block.dx90.vtx │ │ │ ├── block.dx90.vtx.bz2 │ │ │ ├── block.mdl │ │ │ ├── block.mdl.bz2 │ │ │ ├── block.phy │ │ │ ├── block.phy.bz2 │ │ │ ├── block.vvd │ │ │ └── block.vvd.bz2 │ │ ├── particles │ │ └── swoobles │ │ │ └── blocks │ │ │ ├── teleport.pcf │ │ │ └── teleport.pcf.bz2 │ │ └── sound │ │ └── swoobles │ │ └── blocks │ │ ├── boost │ │ ├── boost_v1.mp3 │ │ └── boost_v1.mp3.bz2 │ │ ├── bunnyhop │ │ ├── bunnyhop.mp3 │ │ └── bunnyhop.mp3.bz2 │ │ ├── ice │ │ ├── ice4.mp3 │ │ └── ice4.mp3.bz2 │ │ ├── lowgravity │ │ ├── lowgravity.mp3 │ │ └── lowgravity.mp3.bz2 │ │ ├── magnet │ │ ├── magnet.mp3 │ │ ├── magnet.mp3.bz2 │ │ ├── magnethead2.mp3 │ │ └── magnethead2.mp3.bz2 │ │ ├── slap │ │ ├── slap2.mp3 │ │ └── slap2.mp3.bz2 │ │ ├── teleport │ │ ├── teleport.mp3 │ │ └── teleport.mp3.bz2 │ │ └── trampoline │ │ ├── trampoline.mp3 │ │ └── trampoline.mp3.bz2 ├── ClanTagFilter │ ├── ClanTagFilter.sp │ └── files │ │ └── addons │ │ └── sourcemod │ │ └── configs │ │ └── swoobles │ │ └── clan_tag_blacklist.txt ├── ClientAirAccelerate │ ├── ClientAirAccelerate.sp │ └── client_air_accelerate.inc ├── ClientFootsteps │ ├── ClientFootsteps.sp │ └── client_footsteps.inc ├── CoinPoints │ └── CoinPoints.sp ├── CommandList │ └── CommandList.sp ├── CourseAutoRespawn │ ├── CourseAutoRespawn.sp │ └── course_auto_respawn.inc ├── CustomWeapons │ ├── RPG │ │ ├── CustomWeapon_RPG.sp │ │ └── custom_weapon_rpg.inc │ └── files │ │ ├── materials │ │ ├── models │ │ │ └── weapons │ │ │ │ └── rocket_launcher │ │ │ │ ├── dm_base.vmt │ │ │ │ ├── dm_base.vmt.bz2 │ │ │ │ ├── dm_base.vtf │ │ │ │ ├── dm_base.vtf.bz2 │ │ │ │ ├── rocketl.vmt │ │ │ │ ├── rocketl.vmt.bz2 │ │ │ │ ├── rocketl.vtf │ │ │ │ └── rocketl.vtf.bz2 │ │ └── swoobles │ │ │ └── rocket_jumping │ │ │ └── missile │ │ │ ├── missile.vmt │ │ │ ├── missile.vmt.bz2 │ │ │ ├── missile.vtf │ │ │ └── missile.vtf.bz2 │ │ ├── models │ │ ├── swoobles │ │ │ └── rocket_jumping │ │ │ │ └── missile │ │ │ │ ├── missile.dx80.vtx │ │ │ │ ├── missile.dx80.vtx.bz2 │ │ │ │ ├── missile.dx90.vtx │ │ │ │ ├── missile.dx90.vtx.bz2 │ │ │ │ ├── missile.mdl │ │ │ │ ├── missile.mdl.bz2 │ │ │ │ ├── missile.sw.vtx │ │ │ │ ├── missile.sw.vtx.bz2 │ │ │ │ ├── missile.vvd │ │ │ │ └── missile.vvd.bz2 │ │ └── weapons │ │ │ └── rocket_launcher │ │ │ ├── rocket_launcher.ani │ │ │ ├── rocket_launcher.ani.bz2 │ │ │ ├── rocket_launcher.dx90.vtx │ │ │ ├── rocket_launcher.dx90.vtx.bz2 │ │ │ ├── rocket_launcher.mdl │ │ │ ├── rocket_launcher.mdl.bz2 │ │ │ ├── rocket_launcher.vvd │ │ │ ├── rocket_launcher.vvd.bz2 │ │ │ ├── w_rocket_launcher.dx90.vtx │ │ │ ├── w_rocket_launcher.dx90.vtx.bz2 │ │ │ ├── w_rocket_launcher.mdl │ │ │ ├── w_rocket_launcher.mdl.bz2 │ │ │ ├── w_rocket_launcher.phy │ │ │ ├── w_rocket_launcher.phy.bz2 │ │ │ ├── w_rocket_launcher.vvd │ │ │ └── w_rocket_launcher.vvd.bz2 │ │ ├── particles │ │ └── swoobles │ │ │ ├── defrag_v1.pcf │ │ │ └── defrag_v1.pcf.bz2 │ │ └── sound │ │ └── swoobles │ │ └── rocket_jumping │ │ ├── death.mp3 │ │ ├── death.mp3.bz2 │ │ ├── explode1.mp3 │ │ ├── explode1.mp3.bz2 │ │ ├── explode2.mp3 │ │ ├── explode2.mp3.bz2 │ │ ├── explode3.mp3 │ │ ├── explode3.mp3.bz2 │ │ ├── explode4.mp3 │ │ ├── explode4.mp3.bz2 │ │ ├── pain1.mp3 │ │ ├── pain1.mp3.bz2 │ │ ├── pain2.mp3 │ │ ├── pain2.mp3.bz2 │ │ ├── shoot_v1.mp3 │ │ └── shoot_v1.mp3.bz2 ├── DeathrunQueue │ └── DeathrunQueue.sp ├── DetectTeleportHacking │ └── DetectTeleportHacking.sp ├── DisableDuckDelay │ └── DisableDuckDelay.sp ├── DisableFallDrownDamage │ └── DisableFallDrownDamage.sp ├── DisableKillFeed │ └── DisableKillFeed.sp ├── DisablePlayerDamage │ └── DisablePlayerDamage.sp ├── DonatorItems │ ├── BodySize │ │ └── DonatorItem_BodySize.sp │ ├── BodyTransparency │ │ └── DonatorItem_BodyTransparency.sp │ ├── ColoredChat │ │ ├── DonatorItem_ColoredChat.sp │ │ └── donatoritem_colored_chat.inc │ ├── PlayerModels │ │ ├── DonatorItem_PlayerModels.sp │ │ └── donatoritem_player_models.inc │ └── Titles │ │ ├── DonatorItem_Titles.sp │ │ └── donatoritem_titles.inc ├── EntityPatches │ ├── AutoUse │ │ └── AutoUse.sp │ ├── DisableBhopPlatforms │ │ └── DisableBhopPlatforms.sp │ ├── DisableUserControlledPlatforms │ │ └── DisableUserControlledPlatforms.sp │ ├── FixCSGOTriggerGravity │ │ └── FixCSGOTriggerGravity.sp │ ├── FixFuncRotating │ │ └── FixFuncRotating.sp │ ├── FixTeleportAngles │ │ └── FixTeleportAngles.sp │ ├── FixTriggerPush │ │ ├── FixTriggerPush.sp │ │ └── fix_trigger_push.inc │ ├── LockState │ │ └── LockState.sp │ ├── MultigamesGameSelect │ │ └── MultigamesGameSelect.sp │ ├── OpenAreaportals │ │ └── OpenAreaportals.sp │ ├── RemoveEntities │ │ └── RemoveEntities.sp │ ├── RemoveSparks │ │ └── RemoveSparks.sp │ └── TeleportStateLock │ │ └── TeleportStateLock.sp ├── FixCameraBug │ └── FixCameraBug.sp ├── FixGravityOnNewRound │ └── FixGravityOnNewRound.sp ├── FixRoundEndClassnames │ └── FixRoundEndClassnames.sp ├── FootstepsMenu │ └── FootstepsMenu.sp ├── ForceMapEnd │ ├── ForceMapEnd.sp │ └── force_map_end.inc ├── GrenadeNoblock │ └── GrenadeNoblock.sp ├── GrenadesForSkillServers │ └── GrenadesForSkillServers.sp ├── Heal │ └── Heal.sp ├── HelpMenu │ └── HelpMenu.sp ├── HideHud │ └── HideHud.sp ├── HidePlayers │ ├── HidePlayers.sp │ └── hide_players.inc ├── InfoMenus │ ├── InfoMenus.sp │ └── files │ │ └── addons │ │ └── sourcemod │ │ └── configs │ │ └── info_menus.txt ├── Information │ └── Information.sp ├── Jetpacks │ ├── Jetpacks.sp │ └── files │ │ └── sound │ │ └── swoobles │ │ └── jetpack │ │ ├── jetpack_v1.mp3 │ │ └── jetpack_v1.mp3.bz2 ├── LogAdminActivity │ ├── LogAdminActivity.sp │ ├── files │ │ └── addons │ │ │ └── sourcemod │ │ │ └── configs │ │ │ └── swoobles │ │ │ └── admin_activity_filtered_commands.txt │ └── sql_gs_admin_activity.txt ├── MOTD │ └── MOTD.sp ├── MagicTargetFilter │ ├── MagicTargetFilter.sp │ └── files │ │ └── addons │ │ └── sourcemod │ │ └── configs │ │ └── swoobles │ │ └── magic_target_commands_allowed.txt ├── MapArmour │ └── MapArmour.sp ├── MapRatings │ ├── MapRatings.sp │ └── sql_plugin_map_ratings.txt ├── MapStats │ └── MapStats.sp ├── MapVoting │ ├── MapVoting.sp │ ├── files │ │ └── sound │ │ │ └── swoobles │ │ │ └── map_vote │ │ │ ├── choose1.mp3 │ │ │ ├── choose1.mp3.bz2 │ │ │ ├── choose2.mp3 │ │ │ ├── choose2.mp3.bz2 │ │ │ ├── one.mp3 │ │ │ ├── one.mp3.bz2 │ │ │ ├── three.mp3 │ │ │ ├── three.mp3.bz2 │ │ │ ├── two.mp3 │ │ │ └── two.mp3.bz2 │ ├── map_voting.inc │ ├── sql_plugin_mapvote_categories.txt │ └── sql_plugin_mapvote_maps.txt ├── MeasureGap │ └── MeasureGap.sp ├── MinigamesAutoBhop │ ├── MinigamesAutoBhop.sp │ └── files │ │ └── addons │ │ └── sourcemod │ │ └── configs │ │ ├── bhop_force_teams.txt │ │ └── bhop_triggers.txt ├── MovementStyles │ ├── SKZIncludes │ │ ├── movement.inc │ │ ├── movementapi.inc │ │ └── movementhud.inc │ ├── Style_AutoBhop.sp │ ├── Style_AutoStrafe.sp │ ├── Style_BackwardOnly.sp │ ├── Style_Backwards.sp │ ├── Style_BumpMines.sp │ ├── Style_ForceAutoBhop.sp │ ├── Style_ForwardOnly.sp │ ├── Style_HalfSidewaysBhopOnly.sp │ ├── Style_HighFOV.sp │ ├── Style_Legit.sp │ ├── Style_LowFOV.sp │ ├── Style_LowGravity.sp │ ├── Style_NoLandCap.sp │ ├── Style_NoSpeedCap.sp │ ├── Style_OneStrafeOnly.sp │ ├── Style_Parkour.sp │ ├── Style_ProTimer.sp │ ├── Style_RocketJump.sp │ ├── Style_SetDefaultStyle.sp │ ├── Style_SidewaysBhopOnly.sp │ ├── Style_SimpleKZ.sp │ ├── Style_StockCap.sp │ ├── Style_StrafeOnly.sp │ ├── Style_TAS.sp │ ├── Style_ThirdPerson.sp │ └── Style_Vanilla.sp ├── MultigamesQueue │ └── MultigamesQueue.sp ├── NoBlock │ └── hlstriker_noblock.sp ├── NoScopeRounds │ └── NoScopeRounds.sp ├── NoTextSpam │ └── NoTextSpam.sp ├── Noclip │ └── Noclip.sp ├── Parachute │ ├── Parachute.sp │ ├── gamedata │ │ └── parachute.games.txt │ ├── notes linux.txt │ ├── notes windows.txt │ └── parachute.inc ├── PlayerModelsForSkillServers │ └── PlayerModelsForSkillServers.sp ├── PreStrafe │ └── PreStrafe.sp ├── RadioSpamBlock │ └── radio_spam_block.sp ├── Respawn │ └── Respawn.sp ├── RotatingMessages │ ├── RotatingMessages.sp │ └── sql_plugin_rotating_messages.txt ├── ServerNeed │ ├── ServerNeed.sp │ └── sql_server_need_queue.txt ├── ServerRules │ └── ServerRules.sp ├── ShowForumThreads │ └── ShowForumThreads.sp ├── ShowSpectators │ └── ShowSpectators.sp ├── SkillServerWeapons │ └── SkillServerWeapons.sp ├── SkinsForMapWeapons │ ├── SkinsForMapWeapons.sp │ └── skins_for_map_weapons.inc ├── SpectateMenu │ └── SpectateMenu.sp ├── SteamIdToConsole │ └── SteamIdToConsole.sp ├── StopMapMusic │ └── StopMapMusic.sp ├── StopWeaponSounds │ └── StopWeaponSounds.sp ├── StoreItems │ ├── BulletTracers │ │ └── Item_BulletTracers.sp │ ├── Equipment │ │ ├── Item_Equipment.sp │ │ └── item_equipment.inc │ ├── EquipmentColors │ │ └── Item_EquipmentColors.sp │ ├── EquipmentEffects │ │ └── Item_EquipmentEffects.sp │ ├── GrenadeSounds │ │ └── Item_GrenadeSounds.sp │ ├── KillEffects │ │ └── Item_KillEffects.sp │ ├── KillSounds │ │ └── Item_KillSounds.sp │ ├── Paintballs │ │ ├── Item_Paintballs.sp │ │ └── item_paintballs.inc │ └── PlayerEffects │ │ └── Item_PlayerEffects.sp ├── Teamswitch │ └── Teamswitch.sp ├── ThrowingKnife │ └── ThrowingKnife.sp ├── TimedMuteGag │ └── TimedMuteGag.sp ├── TokensUpdate │ ├── TokensUpdate.sp │ └── tokens_update.inc ├── UnlimitedReserveAmmo │ └── UnlimitedReserveAmmo.sp ├── Unsafe │ ├── Unsafe_Gloves.sp │ ├── Unsafe_Knives.sp │ ├── Unsafe_WeaponSkins.sp │ ├── csgo_lang_file_encoder.php │ ├── sql_plugin_weapon_skins.txt │ ├── unsafe_gloves.inc │ └── unsafe_knives.inc ├── UserPoints │ ├── UserPoints.sp │ └── user_points.inc ├── UserPointsForMinigamesWinner │ └── UserPointsForMinigamesWinner.sp ├── UserStats │ └── UserStats.sp └── ZoneTypes │ ├── Includes │ ├── zonetype_named.inc │ └── zonetype_teleport.inc │ ├── ZoneType_Blockade.sp │ ├── ZoneType_DamageBlocker.sp │ ├── ZoneType_Flashlight.sp │ ├── ZoneType_HideToggle.sp │ ├── ZoneType_Kill.sp │ ├── ZoneType_Named.sp │ ├── ZoneType_Respawn.sp │ ├── ZoneType_Teleport.sp │ └── ZoneType_WeaponStrip.sp ├── README.md ├── RandomIncludes └── kztimer.inc └── _SourceMod 1.6 Compiler ├── admin-flatfile ├── admin-flatfile.sp ├── admin-groups.sp ├── admin-overrides.sp ├── admin-simple.sp └── admin-users.sp ├── admin-sql-prefetch.sp ├── admin-sql-threaded.sp ├── adminhelp.sp ├── adminmenu.sp ├── adminmenu └── dynamicmenu.sp ├── antiflood.sp ├── autoexecconfig.sp ├── basebans.sp ├── basebans └── ban.sp ├── basechat.sp ├── basecomm.sp ├── basecomm ├── forwards.sp ├── gag.sp └── natives.sp ├── basecommands.sp ├── basecommands ├── cancelvote.sp ├── execcfg.sp ├── kick.sp ├── map.sp ├── reloadadmins.sp └── who.sp ├── basetriggers.sp ├── basevotes.sp ├── basevotes ├── voteban.sp ├── votekick.sp └── votemap.sp ├── clientprefs.sp ├── compile.sh ├── compile_script.bat ├── constraints.sp ├── dhooks-test.sp ├── example.sp ├── funcommands.sp ├── funcommands ├── beacon.sp ├── blind.sp ├── drug.sp ├── fire.sp ├── gravity.sp ├── ice.sp ├── noclip.sp └── timebomb.sp ├── funvotes.sp ├── funvotes ├── votealltalk.sp ├── voteburn.sp ├── voteff.sp ├── votegravity.sp └── voteslay.sp ├── include ├── EasyHTTP.inc ├── admin.inc ├── adminmenu.inc ├── adt.inc ├── adt_array.inc ├── adt_stack.inc ├── adt_trie.inc ├── autoexecconfig.inc ├── banning.inc ├── base64.inc ├── basecomm.inc ├── bitbuffer.inc ├── clientprefs.inc ├── clients.inc ├── clientvoice.inc ├── colors.inc ├── commandfilters.inc ├── commandline.inc ├── console.inc ├── convars.inc ├── core.inc ├── csteamid.inc ├── cstrike.inc ├── datapack.inc ├── dbi.inc ├── dhooks.inc ├── emitsoundany.inc ├── entity.inc ├── entity_prop_stocks.inc ├── events.inc ├── files.inc ├── float.inc ├── functions.inc ├── geoip.inc ├── gungame_const.inc ├── halflife.inc ├── handles.inc ├── helpers.inc ├── hls_color_chat.inc ├── keyvalues.inc ├── lang.inc ├── logging.inc ├── mapchooser.inc ├── menus.inc ├── morecolors.inc ├── nextmap.inc ├── profiler.inc ├── protobuf.inc ├── regex.inc ├── sdkhooks.inc ├── sdktools.inc ├── sdktools_client.inc ├── sdktools_engine.inc ├── sdktools_entinput.inc ├── sdktools_entoutput.inc ├── sdktools_functions.inc ├── sdktools_gamerules.inc ├── sdktools_hooks.inc ├── sdktools_sound.inc ├── sdktools_stocks.inc ├── sdktools_stringtables.inc ├── sdktools_tempents.inc ├── sdktools_tempents_stocks.inc ├── sdktools_trace.inc ├── sdktools_variant_t.inc ├── sdktools_voice.inc ├── smlib.inc ├── smlib │ ├── arrays.inc │ ├── clients.inc │ ├── colors.inc │ ├── concommands.inc │ ├── convars.inc │ ├── crypt.inc │ ├── debug.inc │ ├── dynarrays.inc │ ├── edicts.inc │ ├── effects.inc │ ├── entities.inc │ ├── files.inc │ ├── game.inc │ ├── general.inc │ ├── math.inc │ ├── menus.inc │ ├── server.inc │ ├── sql.inc │ ├── strings.inc │ ├── teams.inc │ ├── vehicles.inc │ ├── weapons.inc │ └── world.inc ├── socket.inc ├── sorting.inc ├── soundlib.inc ├── sourcemod.inc ├── sourcetvmanager.inc ├── steamtools.inc ├── steamworks.inc ├── string.inc ├── testing.inc ├── textparse.inc ├── tf2.inc ├── tf2_stocks.inc ├── tf2items.inc ├── timers.inc ├── topmenus.inc ├── updater.inc ├── usermessages.inc ├── vector.inc ├── version.inc ├── version_auto.inc └── vphysics.inc ├── listenexample.sp ├── mapchooser.sp ├── nextmap.sp ├── nominations.sp ├── playercommands.sp ├── playercommands ├── rename.sp ├── slap.sp └── slay.sp ├── randomcycle.sp ├── reservedslots.sp ├── rockthevote.sp ├── saysounds.sp ├── selftest.sp ├── sounds.sp ├── spcomp ├── spcomp.exe ├── sql-admin-manager.sp ├── swag.sp ├── tests ├── test_colors.sp ├── test_compile-all.sh └── test_compile-all.sp ├── testsuite ├── benchmark.sp ├── bug4059.sp ├── callfunctest.sp ├── capstest.sp ├── clientprefstest.sp ├── cstrike-test.sp ├── entpropelements.sp ├── fakenative1.sp ├── fakenative2.sp ├── filetest.sp ├── fwdtest1.sp ├── fwdtest2.sp ├── gamerules-props.sp ├── goto_test.sp ├── keyvalues.sp ├── outputtest.sp ├── ptstest.sp ├── sorttest.sp ├── sqltest.sp ├── sqltest.sql ├── stacktest.sp ├── structtest.sp ├── tf2-test.sp └── tries.sp └── vphysics.sp /.gitignore: -------------------------------------------------------------------------------- 1 | bz2 recursive.bat* 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /Libraries/Admins/API_Admins.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Admins/API_Admins.sp -------------------------------------------------------------------------------- /Libraries/Admins/admins.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Admins/admins.inc -------------------------------------------------------------------------------- /Libraries/BlockMaker/API_BlockMaker.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/BlockMaker/API_BlockMaker.sp -------------------------------------------------------------------------------- /Libraries/BlockMaker/block_maker.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/BlockMaker/block_maker.inc -------------------------------------------------------------------------------- /Libraries/BlockMaker/sql_blockmaker_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/BlockMaker/sql_blockmaker_blocks.txt -------------------------------------------------------------------------------- /Libraries/ClientCookies/API_ClientCookies.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ClientCookies/API_ClientCookies.sp -------------------------------------------------------------------------------- /Libraries/ClientCookies/client_cookies.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ClientCookies/client_cookies.inc -------------------------------------------------------------------------------- /Libraries/ClientCookies/sql_gs_user_cookies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ClientCookies/sql_gs_user_cookies.txt -------------------------------------------------------------------------------- /Libraries/ClientSettings/API_ClientSettings.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ClientSettings/API_ClientSettings.sp -------------------------------------------------------------------------------- /Libraries/ClientSettings/client_settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ClientSettings/client_settings.inc -------------------------------------------------------------------------------- /Libraries/ClientTimes/API_ClientTimes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ClientTimes/API_ClientTimes.sp -------------------------------------------------------------------------------- /Libraries/ClientTimes/client_times.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ClientTimes/client_times.inc -------------------------------------------------------------------------------- /Libraries/DatabaseBridge/API_DatabaseBridge.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseBridge/API_DatabaseBridge.sp -------------------------------------------------------------------------------- /Libraries/DatabaseBridge/database_bridge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseBridge/database_bridge.inc -------------------------------------------------------------------------------- /Libraries/DatabaseCore/API_DatabaseCore.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseCore/API_DatabaseCore.sp -------------------------------------------------------------------------------- /Libraries/DatabaseCore/database_core.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseCore/database_core.inc -------------------------------------------------------------------------------- /Libraries/DatabaseMapSessions/API_DatabaseMapSessions.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseMapSessions/API_DatabaseMapSessions.sp -------------------------------------------------------------------------------- /Libraries/DatabaseMapSessions/database_map_sessions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseMapSessions/database_map_sessions.inc -------------------------------------------------------------------------------- /Libraries/DatabaseMapSessions/sql_gs_map_sessions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseMapSessions/sql_gs_map_sessions.txt -------------------------------------------------------------------------------- /Libraries/DatabaseMapStats/API_DatabaseMapStats.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseMapStats/API_DatabaseMapStats.sp -------------------------------------------------------------------------------- /Libraries/DatabaseMapStats/database_map_stats.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseMapStats/database_map_stats.inc -------------------------------------------------------------------------------- /Libraries/DatabaseMapStats/sql_gs_map_stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseMapStats/sql_gs_map_stats.txt -------------------------------------------------------------------------------- /Libraries/DatabaseMaps/API_DatabaseMaps.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseMaps/API_DatabaseMaps.sp -------------------------------------------------------------------------------- /Libraries/DatabaseMaps/database_maps.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseMaps/database_maps.inc -------------------------------------------------------------------------------- /Libraries/DatabaseMaps/sql_gs_maps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseMaps/sql_gs_maps.txt -------------------------------------------------------------------------------- /Libraries/DatabaseServers/API_DatabaseServers.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseServers/API_DatabaseServers.sp -------------------------------------------------------------------------------- /Libraries/DatabaseServers/database_servers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseServers/database_servers.inc -------------------------------------------------------------------------------- /Libraries/DatabaseServers/sql_core_games.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseServers/sql_core_games.txt -------------------------------------------------------------------------------- /Libraries/DatabaseServers/sql_core_servers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseServers/sql_core_servers.txt -------------------------------------------------------------------------------- /Libraries/DatabaseUserBans/API_DatabaseUserBans.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUserBans/API_DatabaseUserBans.sp -------------------------------------------------------------------------------- /Libraries/DatabaseUserBans/database_user_bans.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUserBans/database_user_bans.inc -------------------------------------------------------------------------------- /Libraries/DatabaseUserSessions/API_DatabaseUserSessions.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUserSessions/API_DatabaseUserSessions.sp -------------------------------------------------------------------------------- /Libraries/DatabaseUserSessions/database_user_sessions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUserSessions/database_user_sessions.inc -------------------------------------------------------------------------------- /Libraries/DatabaseUserSessions/sql_gs_user_sessions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUserSessions/sql_gs_user_sessions.txt -------------------------------------------------------------------------------- /Libraries/DatabaseUserStats/API_DatabaseUserStats.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUserStats/API_DatabaseUserStats.sp -------------------------------------------------------------------------------- /Libraries/DatabaseUserStats/database_user_stats.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUserStats/database_user_stats.inc -------------------------------------------------------------------------------- /Libraries/DatabaseUserStats/sql_gs_user_stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUserStats/sql_gs_user_stats.txt -------------------------------------------------------------------------------- /Libraries/DatabaseUserStats/sql_gs_user_stats_global.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUserStats/sql_gs_user_stats_global.txt -------------------------------------------------------------------------------- /Libraries/DatabaseUserStats/sql_stats_procedure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUserStats/sql_stats_procedure.txt -------------------------------------------------------------------------------- /Libraries/DatabaseUsernameStats/API_DatabaseUsernameStats.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUsernameStats/API_DatabaseUsernameStats.sp -------------------------------------------------------------------------------- /Libraries/DatabaseUsernameStats/sql_gs_username_stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUsernameStats/sql_gs_username_stats.txt -------------------------------------------------------------------------------- /Libraries/DatabaseUsers/API_DatabaseUsers.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUsers/API_DatabaseUsers.sp -------------------------------------------------------------------------------- /Libraries/DatabaseUsers/database_users.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUsers/database_users.inc -------------------------------------------------------------------------------- /Libraries/DatabaseUsers/sql_core_users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DatabaseUsers/sql_core_users.txt -------------------------------------------------------------------------------- /Libraries/DemoSessions/API_DemoSessions.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DemoSessions/API_DemoSessions.sp -------------------------------------------------------------------------------- /Libraries/DemoSessions/demo_sessions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DemoSessions/demo_sessions.inc -------------------------------------------------------------------------------- /Libraries/DemoSessions/sql_demo_sessions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/DemoSessions/sql_demo_sessions.txt -------------------------------------------------------------------------------- /Libraries/Donators/API_Donators.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Donators/API_Donators.sp -------------------------------------------------------------------------------- /Libraries/Donators/donators.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Donators/donators.inc -------------------------------------------------------------------------------- /Libraries/Donators/sql_donator_amounts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Donators/sql_donator_amounts.txt -------------------------------------------------------------------------------- /Libraries/Donators/sql_donator_logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Donators/sql_donator_logs.txt -------------------------------------------------------------------------------- /Libraries/Donators/sql_donator_packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Donators/sql_donator_packages.txt -------------------------------------------------------------------------------- /Libraries/Donators/sql_donator_server_bills.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Donators/sql_donator_server_bills.txt -------------------------------------------------------------------------------- /Libraries/Donators/sql_donator_servers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Donators/sql_donator_servers.txt -------------------------------------------------------------------------------- /Libraries/Donators/sql_donator_titles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Donators/sql_donator_titles.txt -------------------------------------------------------------------------------- /Libraries/EntityHooker/API_EntityHooker.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/EntityHooker/API_EntityHooker.sp -------------------------------------------------------------------------------- /Libraries/EntityHooker/entity_hooker.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/EntityHooker/entity_hooker.inc -------------------------------------------------------------------------------- /Libraries/EntityHooker/sql_plugin_entity_hooker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/EntityHooker/sql_plugin_entity_hooker.txt -------------------------------------------------------------------------------- /Libraries/FileDownloader/API_FileDownloader.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/FileDownloader/API_FileDownloader.sp -------------------------------------------------------------------------------- /Libraries/FileDownloader/file_downloader.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/FileDownloader/file_downloader.inc -------------------------------------------------------------------------------- /Libraries/MapCookies/API_MapCookies.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/MapCookies/API_MapCookies.sp -------------------------------------------------------------------------------- /Libraries/MapCookies/map_cookies.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/MapCookies/map_cookies.inc -------------------------------------------------------------------------------- /Libraries/MapCookies/sql_gs_map_cookies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/MapCookies/sql_gs_map_cookies.txt -------------------------------------------------------------------------------- /Libraries/ModelSkinManager/API_ModelSkinManager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ModelSkinManager/API_ModelSkinManager.sp -------------------------------------------------------------------------------- /Libraries/ModelSkinManager/model_skin_manager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ModelSkinManager/model_skin_manager.inc -------------------------------------------------------------------------------- /Libraries/MovementStyles/API_MovementStyles.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/MovementStyles/API_MovementStyles.sp -------------------------------------------------------------------------------- /Libraries/MovementStyles/movement_styles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/MovementStyles/movement_styles.inc -------------------------------------------------------------------------------- /Libraries/ParticleManager/API_ParticleManager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ParticleManager/API_ParticleManager.sp -------------------------------------------------------------------------------- /Libraries/ParticleManager/particle_manager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ParticleManager/particle_manager.inc -------------------------------------------------------------------------------- /Libraries/PathPoints/API_PathPoints.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/PathPoints/API_PathPoints.sp -------------------------------------------------------------------------------- /Libraries/PathPoints/path_points.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/PathPoints/path_points.inc -------------------------------------------------------------------------------- /Libraries/PathPoints/sql_pathpoints_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/PathPoints/sql_pathpoints_points.txt -------------------------------------------------------------------------------- /Libraries/PlayerChat/API_PlayerChat.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/PlayerChat/API_PlayerChat.sp -------------------------------------------------------------------------------- /Libraries/PlayerChat/player_chat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/PlayerChat/player_chat.inc -------------------------------------------------------------------------------- /Libraries/Replays/API_Replays.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Replays/API_Replays.sp -------------------------------------------------------------------------------- /Libraries/Replays/replays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Replays/replays.inc -------------------------------------------------------------------------------- /Libraries/SquelchManager/API_SquelchManager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/SquelchManager/API_SquelchManager.sp -------------------------------------------------------------------------------- /Libraries/SquelchManager/sql_gs_user_squelches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/SquelchManager/sql_gs_user_squelches.txt -------------------------------------------------------------------------------- /Libraries/SquelchManager/squelch_manager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/SquelchManager/squelch_manager.inc -------------------------------------------------------------------------------- /Libraries/Store/API_Store.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Store/API_Store.sp -------------------------------------------------------------------------------- /Libraries/Store/sql_tables_bridge/sql_store_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Store/sql_tables_bridge/sql_store_files.txt -------------------------------------------------------------------------------- /Libraries/Store/sql_tables_bridge/sql_store_inventory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Store/sql_tables_bridge/sql_store_inventory.txt -------------------------------------------------------------------------------- /Libraries/Store/sql_tables_bridge/sql_store_items.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Store/sql_tables_bridge/sql_store_items.txt -------------------------------------------------------------------------------- /Libraries/Store/sql_tables_bridge/sql_store_server_check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Store/sql_tables_bridge/sql_store_server_check.txt -------------------------------------------------------------------------------- /Libraries/Store/store.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/Store/store.inc -------------------------------------------------------------------------------- /Libraries/TimedPunishments/API_TimedPunishments.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/TimedPunishments/API_TimedPunishments.sp -------------------------------------------------------------------------------- /Libraries/TimedPunishments/sql_gs_user_timed_punishment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/TimedPunishments/sql_gs_user_timed_punishment.txt -------------------------------------------------------------------------------- /Libraries/TimedPunishments/timed_punishments.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/TimedPunishments/timed_punishments.inc -------------------------------------------------------------------------------- /Libraries/UserLogs/API_UserLogs.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/UserLogs/API_UserLogs.sp -------------------------------------------------------------------------------- /Libraries/UserLogs/user_logs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/UserLogs/user_logs.inc -------------------------------------------------------------------------------- /Libraries/WebPageViewer/API_WebPageViewer.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/WebPageViewer/API_WebPageViewer.sp -------------------------------------------------------------------------------- /Libraries/WebPageViewer/sql_plugin_webpage_viewer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/WebPageViewer/sql_plugin_webpage_viewer.txt -------------------------------------------------------------------------------- /Libraries/WebPageViewer/web_page_viewer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/WebPageViewer/web_page_viewer.inc -------------------------------------------------------------------------------- /Libraries/ZoneManager/API_ZoneManager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ZoneManager/API_ZoneManager.sp -------------------------------------------------------------------------------- /Libraries/ZoneManager/sql_zonemanager_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ZoneManager/sql_zonemanager_data.txt -------------------------------------------------------------------------------- /Libraries/ZoneManager/zone_manager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Libraries/ZoneManager/zone_manager.inc -------------------------------------------------------------------------------- /Mods/HideAndSeek/HideAndSeek.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/HideAndSeek/HideAndSeek.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/Includes/speed_runs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/Includes/speed_runs.inc -------------------------------------------------------------------------------- /Mods/SpeedRuns/Includes/speed_runs_checkpoints.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/Includes/speed_runs_checkpoints.inc -------------------------------------------------------------------------------- /Mods/SpeedRuns/Includes/speed_runs_experience.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/Includes/speed_runs_experience.inc -------------------------------------------------------------------------------- /Mods/SpeedRuns/Includes/speed_runs_teleport.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/Includes/speed_runs_teleport.inc -------------------------------------------------------------------------------- /Mods/SpeedRuns/SQL Structure/sql_sr_map_tiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SQL Structure/sql_sr_map_tiers.txt -------------------------------------------------------------------------------- /Mods/SpeedRuns/SQL Structure/sql_sr_records.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SQL Structure/sql_sr_records.txt -------------------------------------------------------------------------------- /Mods/SpeedRuns/SpeedRuns_Checkpoints.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SpeedRuns_Checkpoints.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/SpeedRuns_Core.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SpeedRuns_Core.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/SpeedRuns_Experience.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SpeedRuns_Experience.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/SpeedRuns_MapTiersForMapVotes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SpeedRuns_MapTiersForMapVotes.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/SpeedRuns_Points.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SpeedRuns_Points.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/SpeedRuns_Ranks.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SpeedRuns_Ranks.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/SpeedRuns_Scoreboard.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SpeedRuns_Scoreboard.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/SpeedRuns_Spectate.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SpeedRuns_Spectate.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/SpeedRuns_Stats.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SpeedRuns_Stats.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/SpeedRuns_Teleport.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/SpeedRuns_Teleport.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/ZoneTypes/ZoneTypeHelper_StartEndLines.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/ZoneTypes/ZoneTypeHelper_StartEndLines.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/ZoneTypes/ZoneType_Timer_End.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/ZoneTypes/ZoneType_Timer_End.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/ZoneTypes/ZoneType_Timer_EndStart.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/ZoneTypes/ZoneType_Timer_EndStart.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/ZoneTypes/ZoneType_Timer_Start.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/ZoneTypes/ZoneType_Timer_Start.sp -------------------------------------------------------------------------------- /Mods/SpeedRuns/ZoneTypes/zonetype_helper_startendlines.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/ZoneTypes/zonetype_helper_startendlines.inc -------------------------------------------------------------------------------- /Mods/SpeedRuns/files/materials/swoobles/speed_runs/end.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/files/materials/swoobles/speed_runs/end.vmt -------------------------------------------------------------------------------- /Mods/SpeedRuns/files/materials/swoobles/speed_runs/end.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/files/materials/swoobles/speed_runs/end.vtf -------------------------------------------------------------------------------- /Mods/SpeedRuns/files/materials/swoobles/speed_runs/start.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/files/materials/swoobles/speed_runs/start.vmt -------------------------------------------------------------------------------- /Mods/SpeedRuns/files/materials/swoobles/speed_runs/start.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/files/materials/swoobles/speed_runs/start.vtf -------------------------------------------------------------------------------- /Mods/SpeedRuns/files/sound/swoobles/speed_runs/map_speed.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/SpeedRuns/files/sound/swoobles/speed_runs/map_speed.mp3 -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Commands/UltJB_Command_CTBan.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Commands/UltJB_Command_CTBan.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Commands/UltJB_Command_CTMessage.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Commands/UltJB_Command_CTMessage.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Commands/UltJB_Command_Freekill.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Commands/UltJB_Command_Freekill.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Commands/UltJB_Command_OneUp.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Commands/UltJB_Command_OneUp.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Commands/UltJB_Command_Roll.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Commands/UltJB_Command_Roll.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Commands/UltJB_Command_Rules.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Commands/UltJB_Command_Rules.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Commands/UltJB_Command_Speed.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Commands/UltJB_Command_Speed.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Commands/UltJB_Command_Timer.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Commands/UltJB_Command_Timer.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Commands/UltJB_Command_Xray.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Commands/UltJB_Command_Xray.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Freeday_AutoBhop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Freeday_AutoBhop.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Freeday_Classic.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Freeday_Classic.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Freeday_LowGravity.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Freeday_LowGravity.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Freeday_Speed.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Freeday_Speed.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_CTRetake.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_CTRetake.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_CaptureTheFlag.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_CaptureTheFlag.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_Classic.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_Classic.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_FatKid.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_FatKid.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_FreezeTag.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_FreezeTag.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_Gang.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_Gang.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_HeavyAssault.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_HeavyAssault.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_HorrorMovie.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_HorrorMovie.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_HungerGames.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_HungerGames.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_Jihad.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_Jihad.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_LowGravity.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_LowGravity.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_NoScope.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_NoScope.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_OneInTheChamber.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_OneInTheChamber.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_RPG.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_RPG.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_ScoutzKnivez.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_ScoutzKnivez.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_Taser.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_Taser.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_ThrowingKnives.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_ThrowingKnives.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_WeaponSelection.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_WeaponSelection.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Days/UltJB_Warday_Zombie.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Days/UltJB_Warday_Zombie.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Effects/UltJB_Effect_Drugs.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Effects/UltJB_Effect_Drugs.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Effects/UltJB_Effect_Drunk.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Effects/UltJB_Effect_Drunk.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Effects/UltJB_Effect_FarOut.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Effects/UltJB_Effect_FarOut.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Effects/UltJB_Effect_HeadshotsOnly.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Effects/UltJB_Effect_HeadshotsOnly.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Effects/UltJB_Effect_LowGravity.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Effects/UltJB_Effect_LowGravity.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Effects/UltJB_Effect_Speed.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Effects/UltJB_Effect_Speed.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Effects/UltJB_Effect_ThirdPerson.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Effects/UltJB_Effect_ThirdPerson.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_cell_doors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_cell_doors.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_days.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_days.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_effects.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_effects.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_jihad.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_jihad.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_last_guard.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_last_guard.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_last_request.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_last_request.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_logger.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_logger.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_player_models.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_player_models.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_settings.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_warden.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_warden.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_wardenmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_wardenmenu.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/Includes/ultjb_weapon_selection.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/Includes/ultjb_weapon_selection.inc -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/LastRequests/UltJB_LR_Contest_Race.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/LastRequests/UltJB_LR_Contest_Race.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/LastRequests/UltJB_LR_EndRound_Draw.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/LastRequests/UltJB_LR_EndRound_Draw.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/LastRequests/UltJB_LR_Rebel_AWP.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/LastRequests/UltJB_LR_Rebel_AWP.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/LastRequests/UltJB_LR_Rebel_Ghost.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/LastRequests/UltJB_LR_Rebel_Ghost.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/LastRequests/UltJB_LR_Rebel_Scout.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/LastRequests/UltJB_LR_Rebel_Scout.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_API_CellDoors.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_API_CellDoors.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_API_Days.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_API_Days.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_API_Effects.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_API_Effects.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_API_LastRequest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_API_LastRequest.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_API_WeaponSelection.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_API_WeaponSelection.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_CellDoors.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_CellDoors.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_Jihad.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_Jihad.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_LastGuard.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_LastGuard.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_Logger.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_Logger.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_MuteManager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_MuteManager.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_PlayerModels.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_PlayerModels.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_Points.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_Points.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_Settings.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_Settings.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_TeamRatio.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_TeamRatio.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_VoiceChat.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_VoiceChat.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_Warden.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_Warden.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/UltJB_WardenMenu.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Mods/UltimateJailbreak/UltJB_WardenMenu.sp -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_ace_jail_v3g.txt: -------------------------------------------------------------------------------- 1 | door1 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_blackout_csgo.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_bliss.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_canyondam_csgo_v7-2.txt: -------------------------------------------------------------------------------- 1 | door_cells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_dubai.txt: -------------------------------------------------------------------------------- 1 | jail door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_electric_vip_v3_swbs.txt: -------------------------------------------------------------------------------- 1 | cell_door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_leoben_csgo_v3-1.txt: -------------------------------------------------------------------------------- 1 | door_cell 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_minecraftparty_v6.txt: -------------------------------------------------------------------------------- 1 | door_jails 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_stationx_csgo.txt: -------------------------------------------------------------------------------- 1 | cell_door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_umbrella_f6.txt: -------------------------------------------------------------------------------- 1 | jail_portes 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_umbrella_ff5.txt: -------------------------------------------------------------------------------- 1 | jail_portes 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_voodoo_b5.txt: -------------------------------------------------------------------------------- 1 | cell 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_voodoo_final.txt: -------------------------------------------------------------------------------- 1 | cell 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jail_voodoo_v5.txt: -------------------------------------------------------------------------------- 1 | cell 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_jailbreak_rectangle.txt: -------------------------------------------------------------------------------- 1 | hucre_door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_mlcastle_se.txt: -------------------------------------------------------------------------------- 1 | cd 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_texture_jail_go5.txt: -------------------------------------------------------------------------------- 1 | cells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/ba_toobalot_v6.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_adventuretime_swbs_beta.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_adventuretime_swbs_v1-1.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_adventuretime_swbs_v1.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_airship_csgo_b3.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_august.txt: -------------------------------------------------------------------------------- 1 | celldoor1 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_avalanche_csgo_b6.txt: -------------------------------------------------------------------------------- 1 | Cell Slider 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_battleforce_jail_csgo.txt: -------------------------------------------------------------------------------- 1 | cely door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_blue_v2.txt: -------------------------------------------------------------------------------- 1 | jail 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_castleguarddev_v5.txt: -------------------------------------------------------------------------------- 1 | cell_door_1 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_classy.txt: -------------------------------------------------------------------------------- 1 | cell_doors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_classy_v1.txt: -------------------------------------------------------------------------------- 1 | cell_doors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_classy_v3.txt: -------------------------------------------------------------------------------- 1 | cell_doors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_classy_v4.txt: -------------------------------------------------------------------------------- 1 | cell_doors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_clean_v2.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_coldcampus_sb1.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_daolonwong_v1-b.txt: -------------------------------------------------------------------------------- 1 | Cell_Door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_daolonwong_v3.txt: -------------------------------------------------------------------------------- 1 | Cell_Door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_dust2.txt: -------------------------------------------------------------------------------- 1 | cela 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_eckz_dee_v1a.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_fairway_csgo.txt: -------------------------------------------------------------------------------- 1 | dvere 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_fg_justizanstalt_v3.txt: -------------------------------------------------------------------------------- 1 | c1 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_fortify.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_fortify_beta.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_fortify_v2-2.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_hype_a1.txt: -------------------------------------------------------------------------------- 1 | cells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_hype_a2.txt: -------------------------------------------------------------------------------- 1 | cells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_industry_beta01.txt: -------------------------------------------------------------------------------- 1 | zelle_doors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_irodoggo.txt: -------------------------------------------------------------------------------- 1 | c1 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_jailberd_v4_final.txt: -------------------------------------------------------------------------------- 1 | Celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_jailberd_v5_final_fix.txt: -------------------------------------------------------------------------------- 1 | Celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_jong_final.txt: -------------------------------------------------------------------------------- 1 | cell_door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_junglejail_v6.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_lactose_intolerant_v3.txt: -------------------------------------------------------------------------------- 1 | Cell 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_lactose_intolerant_v4fix.txt: -------------------------------------------------------------------------------- 1 | Cell 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_last_encounter_csgo.txt: -------------------------------------------------------------------------------- 1 | cely dvere 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_lego_jail_2k17.txt: -------------------------------------------------------------------------------- 1 | c1 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_lego_jail_2k17b.txt: -------------------------------------------------------------------------------- 1 | c1 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_lego_jail_v8.txt: -------------------------------------------------------------------------------- 1 | c1 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_legoland_v1c.txt: -------------------------------------------------------------------------------- 1 | cdoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_mangaroons_prison_bh.txt: -------------------------------------------------------------------------------- 1 | cell_door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_minecraft_beta_v4-2.txt: -------------------------------------------------------------------------------- 1 | doors_cell 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_minecraft_beta_v4-2_swbs.txt: -------------------------------------------------------------------------------- 1 | doors_cell 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_minecraft_beta_v4-2c.txt: -------------------------------------------------------------------------------- 1 | doors_cell 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_minecraft_fippin_beta.txt: -------------------------------------------------------------------------------- 1 | cell_doors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_minecraft_hb_edit.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_mist.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_mist_v1.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_newera_b3_swbs.txt: -------------------------------------------------------------------------------- 1 | jaildoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_nsa_detainment_facility_0-4.txt: -------------------------------------------------------------------------------- 1 | Cell Doors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_obama_v5_beta.txt: -------------------------------------------------------------------------------- 1 | cell_doors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_outdoorjail_v2.txt: -------------------------------------------------------------------------------- 1 | Cell_doors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_overcore_v5.txt: -------------------------------------------------------------------------------- 1 | jaildoor 2 | privatedisco 3 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_papas_kingdom_rebirth_v1.txt: -------------------------------------------------------------------------------- 1 | cells 2 | Luxury_cell_door1 3 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_papas_kingdom_swbs_rebirth.txt: -------------------------------------------------------------------------------- 1 | cells 2 | Luxury_cell_door1 3 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_paradise_island_v1.txt: -------------------------------------------------------------------------------- 1 | cells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_peanut_v3.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_peanut_v3r.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_pleaseworkv420a.txt: -------------------------------------------------------------------------------- 1 | cell_door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_potato_final3.txt: -------------------------------------------------------------------------------- 1 | Cells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_potato_v7-1.txt: -------------------------------------------------------------------------------- 1 | Cells 2 | Drawing1 3 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_potato_v7.txt: -------------------------------------------------------------------------------- 1 | Cells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_precipice_v4.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_prisonhouse_v8.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_russian_concrete.txt: -------------------------------------------------------------------------------- 1 | prisoncelldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_sg_dojo_v4.txt: -------------------------------------------------------------------------------- 1 | maincells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_sg_dojo_v5-6.txt: -------------------------------------------------------------------------------- 1 | maincells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_sketchy_beta_v1.txt: -------------------------------------------------------------------------------- 1 | CellDoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_snow.txt: -------------------------------------------------------------------------------- 1 | jails 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_snow_v2.txt: -------------------------------------------------------------------------------- 1 | jails 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_spy_v1-3.txt: -------------------------------------------------------------------------------- 1 | cell_door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_spy_vs_spy_beta7.txt: -------------------------------------------------------------------------------- 1 | cell_door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_spy_vs_spy_v1-3.txt: -------------------------------------------------------------------------------- 1 | cell_door 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tactics_v4.txt: -------------------------------------------------------------------------------- 1 | cellwall 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tan_beta_v2.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tan_beta_v3.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tan_beta_v4.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tan_beta_v5.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tan_final.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tan_final_v2.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tan_update.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tan_v2.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tensu_v4-2.txt: -------------------------------------------------------------------------------- 1 | cellblock_celldoors_breakable 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tng_epik_v2.txt: -------------------------------------------------------------------------------- 1 | cells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tomatoes_dev_beta_v1.txt: -------------------------------------------------------------------------------- 1 | Celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tomatoes_dev_beta_v3fix.txt: -------------------------------------------------------------------------------- 1 | Celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tomatoes_dev_beta_v4.txt: -------------------------------------------------------------------------------- 1 | Celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tomatoes_dev_final.txt: -------------------------------------------------------------------------------- 1 | Celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tomatoes_v1-0-1.txt: -------------------------------------------------------------------------------- 1 | CellDoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tomatoes_v1-1.txt: -------------------------------------------------------------------------------- 1 | CellDoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tomatoes_v1.txt: -------------------------------------------------------------------------------- 1 | CellDoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_tower_b7.txt: -------------------------------------------------------------------------------- 1 | door_cells 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_undertale_b1_workshop.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_undertale_b2.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_undertale_b5.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_undertale_v1.txt: -------------------------------------------------------------------------------- 1 | celldoor 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_vice_beta.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_waterside_v5_1.txt: -------------------------------------------------------------------------------- 1 | celldoors 2 | -------------------------------------------------------------------------------- /Mods/UltimateJailbreak/files/addons/sourcemod/configs/cell_doors/jb_zeroday_24.txt: -------------------------------------------------------------------------------- 1 | cell_door 2 | -------------------------------------------------------------------------------- /Plugins/AFKManager/AFKManager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/AFKManager/AFKManager.sp -------------------------------------------------------------------------------- /Plugins/AFKManager/afk_manager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/AFKManager/afk_manager.inc -------------------------------------------------------------------------------- /Plugins/AdminTags/AdminTags.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/AdminTags/AdminTags.sp -------------------------------------------------------------------------------- /Plugins/AllowMorePlayers/AllowMorePlayers.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/AllowMorePlayers/AllowMorePlayers.sp -------------------------------------------------------------------------------- /Plugins/AllowMorePlayers/allow_more_players.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/AllowMorePlayers/allow_more_players.inc -------------------------------------------------------------------------------- /Plugins/AutoBhop/AutoBhop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/AutoBhop/AutoBhop.sp -------------------------------------------------------------------------------- /Plugins/AutoBhop/auto_bhop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/AutoBhop/auto_bhop.inc -------------------------------------------------------------------------------- /Plugins/AutoStrafe/AutoStrafe.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/AutoStrafe/AutoStrafe.sp -------------------------------------------------------------------------------- /Plugins/AutoStrafe/auto_strafe.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/AutoStrafe/auto_strafe.inc -------------------------------------------------------------------------------- /Plugins/BhopCap/BhopCap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/BhopCap/BhopCap.sp -------------------------------------------------------------------------------- /Plugins/BhopCheck/BhopCheck.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/BhopCheck/BhopCheck.sp -------------------------------------------------------------------------------- /Plugins/BlockGameStart/BlockGameStart.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/BlockGameStart/BlockGameStart.sp -------------------------------------------------------------------------------- /Plugins/BlockSpamMessages/BlockSpamMessages.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/BlockSpamMessages/BlockSpamMessages.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Arrow.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Arrow.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Boost.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Boost.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Bunnyhop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Bunnyhop.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Camouflage.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Camouflage.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_CautionTape.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_CautionTape.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Chicken.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Chicken.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Death.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Death.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Freeze.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Freeze.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Glass.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Glass.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_GodMode.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_GodMode.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Healing.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Healing.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Ice.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Ice.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Ladder.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Ladder.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Lava.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Lava.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Letters.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Letters.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Light.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Light.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_LowGravity.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_LowGravity.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Magnet.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Magnet.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_NoFallDamage.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_NoFallDamage.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Nuke.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Nuke.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_PlatformDisappearing.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_PlatformDisappearing.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_PortalDoor.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_PortalDoor.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Slap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Slap.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Slime.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Slime.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Speed.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Speed.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_TeamBarrier.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_TeamBarrier.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Teleport.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Teleport.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Train.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Train.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Trampoline.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Trampoline.sp -------------------------------------------------------------------------------- /Plugins/Blocks/Block_Weapons.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/Block_Weapons.sp -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/A.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/A" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/B.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/B" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/C.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/C" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/D.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/D" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/E.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/E" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/N.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/N" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/O.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/O" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/P.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/P" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/Q.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/Q" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/R.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/R" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/S.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/S" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/T.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/T" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/X.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/X" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/Y.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/Y" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/letters/Z.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/letters/Z" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/ak47.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/ak47" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/aug.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/aug" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/cz75.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/cz75" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/g3sg1.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/g3sg1" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/m249.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/m249" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/m4a1.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/m4a1" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/m4a4.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/m4a4" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/mag7.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/mag7" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/mp7.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/mp7" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/mp9.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/mp9" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/p250.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/p250" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/p90.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/p90" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/r8.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/r8" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/sg553.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/sg553" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/ssg08.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/ssg08" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/tec9.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/tec9" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/materials/swoobles/blocks/weapons/xm1014.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | $basetexture "swoobles/blocks/weapons/xm1014" 4 | $model 1 5 | } -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/arrow/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/arrow/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/arrow/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/arrow/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/arrow/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/arrow/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/boost/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/boost/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/boost/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/boost/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/boost/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/boost/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/death/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/death/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/death/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/death/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/death/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/death/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/glass/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/glass/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/glass/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/glass/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/glass/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/glass/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/ice/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/ice/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/ice/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/ice/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/ice/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/ice/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/lava/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/lava/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/lava/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/lava/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/lava/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/lava/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/light/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/light/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/light/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/light/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/light/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/light/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/nuke/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/nuke/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/nuke/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/nuke/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/nuke/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/nuke/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/slap/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/slap/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/slap/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/slap/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/slap/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/slap/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/slime/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/slime/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/slime/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/slime/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/slime/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/slime/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/speed/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/speed/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/speed/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/speed/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/speed/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/speed/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/test/test.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/test/test.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/test/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/test/test.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/test/test.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/test/test.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/train/block.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/train/block.mdl -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/train/block.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/train/block.phy -------------------------------------------------------------------------------- /Plugins/Blocks/files/models/swoobles/blocks/train/block.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/models/swoobles/blocks/train/block.vvd -------------------------------------------------------------------------------- /Plugins/Blocks/files/particles/swoobles/blocks/teleport.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/particles/swoobles/blocks/teleport.pcf -------------------------------------------------------------------------------- /Plugins/Blocks/files/sound/swoobles/blocks/ice/ice4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/sound/swoobles/blocks/ice/ice4.mp3 -------------------------------------------------------------------------------- /Plugins/Blocks/files/sound/swoobles/blocks/ice/ice4.mp3.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/sound/swoobles/blocks/ice/ice4.mp3.bz2 -------------------------------------------------------------------------------- /Plugins/Blocks/files/sound/swoobles/blocks/slap/slap2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Blocks/files/sound/swoobles/blocks/slap/slap2.mp3 -------------------------------------------------------------------------------- /Plugins/ClanTagFilter/ClanTagFilter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ClanTagFilter/ClanTagFilter.sp -------------------------------------------------------------------------------- /Plugins/ClientAirAccelerate/ClientAirAccelerate.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ClientAirAccelerate/ClientAirAccelerate.sp -------------------------------------------------------------------------------- /Plugins/ClientAirAccelerate/client_air_accelerate.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ClientAirAccelerate/client_air_accelerate.inc -------------------------------------------------------------------------------- /Plugins/ClientFootsteps/ClientFootsteps.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ClientFootsteps/ClientFootsteps.sp -------------------------------------------------------------------------------- /Plugins/ClientFootsteps/client_footsteps.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ClientFootsteps/client_footsteps.inc -------------------------------------------------------------------------------- /Plugins/CoinPoints/CoinPoints.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/CoinPoints/CoinPoints.sp -------------------------------------------------------------------------------- /Plugins/CommandList/CommandList.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/CommandList/CommandList.sp -------------------------------------------------------------------------------- /Plugins/CourseAutoRespawn/CourseAutoRespawn.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/CourseAutoRespawn/CourseAutoRespawn.sp -------------------------------------------------------------------------------- /Plugins/CourseAutoRespawn/course_auto_respawn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/CourseAutoRespawn/course_auto_respawn.inc -------------------------------------------------------------------------------- /Plugins/CustomWeapons/RPG/CustomWeapon_RPG.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/CustomWeapons/RPG/CustomWeapon_RPG.sp -------------------------------------------------------------------------------- /Plugins/CustomWeapons/RPG/custom_weapon_rpg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/CustomWeapons/RPG/custom_weapon_rpg.inc -------------------------------------------------------------------------------- /Plugins/DeathrunQueue/DeathrunQueue.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/DeathrunQueue/DeathrunQueue.sp -------------------------------------------------------------------------------- /Plugins/DetectTeleportHacking/DetectTeleportHacking.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/DetectTeleportHacking/DetectTeleportHacking.sp -------------------------------------------------------------------------------- /Plugins/DisableDuckDelay/DisableDuckDelay.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/DisableDuckDelay/DisableDuckDelay.sp -------------------------------------------------------------------------------- /Plugins/DisableFallDrownDamage/DisableFallDrownDamage.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/DisableFallDrownDamage/DisableFallDrownDamage.sp -------------------------------------------------------------------------------- /Plugins/DisableKillFeed/DisableKillFeed.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/DisableKillFeed/DisableKillFeed.sp -------------------------------------------------------------------------------- /Plugins/DisablePlayerDamage/DisablePlayerDamage.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/DisablePlayerDamage/DisablePlayerDamage.sp -------------------------------------------------------------------------------- /Plugins/DonatorItems/BodySize/DonatorItem_BodySize.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/DonatorItems/BodySize/DonatorItem_BodySize.sp -------------------------------------------------------------------------------- /Plugins/DonatorItems/ColoredChat/DonatorItem_ColoredChat.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/DonatorItems/ColoredChat/DonatorItem_ColoredChat.sp -------------------------------------------------------------------------------- /Plugins/DonatorItems/Titles/DonatorItem_Titles.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/DonatorItems/Titles/DonatorItem_Titles.sp -------------------------------------------------------------------------------- /Plugins/DonatorItems/Titles/donatoritem_titles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/DonatorItems/Titles/donatoritem_titles.inc -------------------------------------------------------------------------------- /Plugins/EntityPatches/AutoUse/AutoUse.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/EntityPatches/AutoUse/AutoUse.sp -------------------------------------------------------------------------------- /Plugins/EntityPatches/FixFuncRotating/FixFuncRotating.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/EntityPatches/FixFuncRotating/FixFuncRotating.sp -------------------------------------------------------------------------------- /Plugins/EntityPatches/FixTriggerPush/FixTriggerPush.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/EntityPatches/FixTriggerPush/FixTriggerPush.sp -------------------------------------------------------------------------------- /Plugins/EntityPatches/FixTriggerPush/fix_trigger_push.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/EntityPatches/FixTriggerPush/fix_trigger_push.inc -------------------------------------------------------------------------------- /Plugins/EntityPatches/LockState/LockState.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/EntityPatches/LockState/LockState.sp -------------------------------------------------------------------------------- /Plugins/EntityPatches/OpenAreaportals/OpenAreaportals.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/EntityPatches/OpenAreaportals/OpenAreaportals.sp -------------------------------------------------------------------------------- /Plugins/EntityPatches/RemoveEntities/RemoveEntities.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/EntityPatches/RemoveEntities/RemoveEntities.sp -------------------------------------------------------------------------------- /Plugins/EntityPatches/RemoveSparks/RemoveSparks.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/EntityPatches/RemoveSparks/RemoveSparks.sp -------------------------------------------------------------------------------- /Plugins/FixCameraBug/FixCameraBug.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/FixCameraBug/FixCameraBug.sp -------------------------------------------------------------------------------- /Plugins/FixGravityOnNewRound/FixGravityOnNewRound.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/FixGravityOnNewRound/FixGravityOnNewRound.sp -------------------------------------------------------------------------------- /Plugins/FixRoundEndClassnames/FixRoundEndClassnames.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/FixRoundEndClassnames/FixRoundEndClassnames.sp -------------------------------------------------------------------------------- /Plugins/FootstepsMenu/FootstepsMenu.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/FootstepsMenu/FootstepsMenu.sp -------------------------------------------------------------------------------- /Plugins/ForceMapEnd/ForceMapEnd.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ForceMapEnd/ForceMapEnd.sp -------------------------------------------------------------------------------- /Plugins/ForceMapEnd/force_map_end.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ForceMapEnd/force_map_end.inc -------------------------------------------------------------------------------- /Plugins/GrenadeNoblock/GrenadeNoblock.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/GrenadeNoblock/GrenadeNoblock.sp -------------------------------------------------------------------------------- /Plugins/GrenadesForSkillServers/GrenadesForSkillServers.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/GrenadesForSkillServers/GrenadesForSkillServers.sp -------------------------------------------------------------------------------- /Plugins/Heal/Heal.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Heal/Heal.sp -------------------------------------------------------------------------------- /Plugins/HelpMenu/HelpMenu.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/HelpMenu/HelpMenu.sp -------------------------------------------------------------------------------- /Plugins/HideHud/HideHud.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/HideHud/HideHud.sp -------------------------------------------------------------------------------- /Plugins/HidePlayers/HidePlayers.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/HidePlayers/HidePlayers.sp -------------------------------------------------------------------------------- /Plugins/HidePlayers/hide_players.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/HidePlayers/hide_players.inc -------------------------------------------------------------------------------- /Plugins/InfoMenus/InfoMenus.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/InfoMenus/InfoMenus.sp -------------------------------------------------------------------------------- /Plugins/Information/Information.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Information/Information.sp -------------------------------------------------------------------------------- /Plugins/Jetpacks/Jetpacks.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Jetpacks/Jetpacks.sp -------------------------------------------------------------------------------- /Plugins/LogAdminActivity/LogAdminActivity.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/LogAdminActivity/LogAdminActivity.sp -------------------------------------------------------------------------------- /Plugins/LogAdminActivity/sql_gs_admin_activity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/LogAdminActivity/sql_gs_admin_activity.txt -------------------------------------------------------------------------------- /Plugins/MOTD/MOTD.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MOTD/MOTD.sp -------------------------------------------------------------------------------- /Plugins/MagicTargetFilter/MagicTargetFilter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MagicTargetFilter/MagicTargetFilter.sp -------------------------------------------------------------------------------- /Plugins/MapArmour/MapArmour.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapArmour/MapArmour.sp -------------------------------------------------------------------------------- /Plugins/MapRatings/MapRatings.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapRatings/MapRatings.sp -------------------------------------------------------------------------------- /Plugins/MapRatings/sql_plugin_map_ratings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapRatings/sql_plugin_map_ratings.txt -------------------------------------------------------------------------------- /Plugins/MapStats/MapStats.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapStats/MapStats.sp -------------------------------------------------------------------------------- /Plugins/MapVoting/MapVoting.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/MapVoting.sp -------------------------------------------------------------------------------- /Plugins/MapVoting/files/sound/swoobles/map_vote/choose1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/files/sound/swoobles/map_vote/choose1.mp3 -------------------------------------------------------------------------------- /Plugins/MapVoting/files/sound/swoobles/map_vote/choose2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/files/sound/swoobles/map_vote/choose2.mp3 -------------------------------------------------------------------------------- /Plugins/MapVoting/files/sound/swoobles/map_vote/one.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/files/sound/swoobles/map_vote/one.mp3 -------------------------------------------------------------------------------- /Plugins/MapVoting/files/sound/swoobles/map_vote/one.mp3.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/files/sound/swoobles/map_vote/one.mp3.bz2 -------------------------------------------------------------------------------- /Plugins/MapVoting/files/sound/swoobles/map_vote/three.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/files/sound/swoobles/map_vote/three.mp3 -------------------------------------------------------------------------------- /Plugins/MapVoting/files/sound/swoobles/map_vote/two.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/files/sound/swoobles/map_vote/two.mp3 -------------------------------------------------------------------------------- /Plugins/MapVoting/files/sound/swoobles/map_vote/two.mp3.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/files/sound/swoobles/map_vote/two.mp3.bz2 -------------------------------------------------------------------------------- /Plugins/MapVoting/map_voting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/map_voting.inc -------------------------------------------------------------------------------- /Plugins/MapVoting/sql_plugin_mapvote_categories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/sql_plugin_mapvote_categories.txt -------------------------------------------------------------------------------- /Plugins/MapVoting/sql_plugin_mapvote_maps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MapVoting/sql_plugin_mapvote_maps.txt -------------------------------------------------------------------------------- /Plugins/MeasureGap/MeasureGap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MeasureGap/MeasureGap.sp -------------------------------------------------------------------------------- /Plugins/MinigamesAutoBhop/MinigamesAutoBhop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MinigamesAutoBhop/MinigamesAutoBhop.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/SKZIncludes/movement.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/SKZIncludes/movement.inc -------------------------------------------------------------------------------- /Plugins/MovementStyles/SKZIncludes/movementapi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/SKZIncludes/movementapi.inc -------------------------------------------------------------------------------- /Plugins/MovementStyles/SKZIncludes/movementhud.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/SKZIncludes/movementhud.inc -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_AutoBhop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_AutoBhop.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_AutoStrafe.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_AutoStrafe.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_BackwardOnly.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_BackwardOnly.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_Backwards.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_Backwards.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_BumpMines.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_BumpMines.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_ForceAutoBhop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_ForceAutoBhop.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_ForwardOnly.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_ForwardOnly.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_HalfSidewaysBhopOnly.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_HalfSidewaysBhopOnly.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_HighFOV.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_HighFOV.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_Legit.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_Legit.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_LowFOV.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_LowFOV.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_LowGravity.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_LowGravity.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_NoLandCap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_NoLandCap.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_NoSpeedCap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_NoSpeedCap.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_OneStrafeOnly.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_OneStrafeOnly.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_Parkour.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_Parkour.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_ProTimer.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_ProTimer.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_RocketJump.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_RocketJump.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_SetDefaultStyle.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_SetDefaultStyle.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_SidewaysBhopOnly.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_SidewaysBhopOnly.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_SimpleKZ.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_SimpleKZ.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_StockCap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_StockCap.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_StrafeOnly.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_StrafeOnly.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_TAS.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_TAS.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_ThirdPerson.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_ThirdPerson.sp -------------------------------------------------------------------------------- /Plugins/MovementStyles/Style_Vanilla.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MovementStyles/Style_Vanilla.sp -------------------------------------------------------------------------------- /Plugins/MultigamesQueue/MultigamesQueue.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/MultigamesQueue/MultigamesQueue.sp -------------------------------------------------------------------------------- /Plugins/NoBlock/hlstriker_noblock.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/NoBlock/hlstriker_noblock.sp -------------------------------------------------------------------------------- /Plugins/NoScopeRounds/NoScopeRounds.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/NoScopeRounds/NoScopeRounds.sp -------------------------------------------------------------------------------- /Plugins/NoTextSpam/NoTextSpam.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/NoTextSpam/NoTextSpam.sp -------------------------------------------------------------------------------- /Plugins/Noclip/Noclip.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Noclip/Noclip.sp -------------------------------------------------------------------------------- /Plugins/Parachute/Parachute.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Parachute/Parachute.sp -------------------------------------------------------------------------------- /Plugins/Parachute/gamedata/parachute.games.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Parachute/gamedata/parachute.games.txt -------------------------------------------------------------------------------- /Plugins/Parachute/notes linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Parachute/notes linux.txt -------------------------------------------------------------------------------- /Plugins/Parachute/notes windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Parachute/notes windows.txt -------------------------------------------------------------------------------- /Plugins/Parachute/parachute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Parachute/parachute.inc -------------------------------------------------------------------------------- /Plugins/PreStrafe/PreStrafe.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/PreStrafe/PreStrafe.sp -------------------------------------------------------------------------------- /Plugins/RadioSpamBlock/radio_spam_block.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/RadioSpamBlock/radio_spam_block.sp -------------------------------------------------------------------------------- /Plugins/Respawn/Respawn.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Respawn/Respawn.sp -------------------------------------------------------------------------------- /Plugins/RotatingMessages/RotatingMessages.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/RotatingMessages/RotatingMessages.sp -------------------------------------------------------------------------------- /Plugins/RotatingMessages/sql_plugin_rotating_messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/RotatingMessages/sql_plugin_rotating_messages.txt -------------------------------------------------------------------------------- /Plugins/ServerNeed/ServerNeed.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ServerNeed/ServerNeed.sp -------------------------------------------------------------------------------- /Plugins/ServerNeed/sql_server_need_queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ServerNeed/sql_server_need_queue.txt -------------------------------------------------------------------------------- /Plugins/ServerRules/ServerRules.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ServerRules/ServerRules.sp -------------------------------------------------------------------------------- /Plugins/ShowForumThreads/ShowForumThreads.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ShowForumThreads/ShowForumThreads.sp -------------------------------------------------------------------------------- /Plugins/ShowSpectators/ShowSpectators.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ShowSpectators/ShowSpectators.sp -------------------------------------------------------------------------------- /Plugins/SkillServerWeapons/SkillServerWeapons.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/SkillServerWeapons/SkillServerWeapons.sp -------------------------------------------------------------------------------- /Plugins/SkinsForMapWeapons/SkinsForMapWeapons.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/SkinsForMapWeapons/SkinsForMapWeapons.sp -------------------------------------------------------------------------------- /Plugins/SkinsForMapWeapons/skins_for_map_weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/SkinsForMapWeapons/skins_for_map_weapons.inc -------------------------------------------------------------------------------- /Plugins/SpectateMenu/SpectateMenu.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/SpectateMenu/SpectateMenu.sp -------------------------------------------------------------------------------- /Plugins/SteamIdToConsole/SteamIdToConsole.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/SteamIdToConsole/SteamIdToConsole.sp -------------------------------------------------------------------------------- /Plugins/StopMapMusic/StopMapMusic.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StopMapMusic/StopMapMusic.sp -------------------------------------------------------------------------------- /Plugins/StopWeaponSounds/StopWeaponSounds.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StopWeaponSounds/StopWeaponSounds.sp -------------------------------------------------------------------------------- /Plugins/StoreItems/BulletTracers/Item_BulletTracers.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StoreItems/BulletTracers/Item_BulletTracers.sp -------------------------------------------------------------------------------- /Plugins/StoreItems/Equipment/Item_Equipment.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StoreItems/Equipment/Item_Equipment.sp -------------------------------------------------------------------------------- /Plugins/StoreItems/Equipment/item_equipment.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StoreItems/Equipment/item_equipment.inc -------------------------------------------------------------------------------- /Plugins/StoreItems/EquipmentColors/Item_EquipmentColors.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StoreItems/EquipmentColors/Item_EquipmentColors.sp -------------------------------------------------------------------------------- /Plugins/StoreItems/GrenadeSounds/Item_GrenadeSounds.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StoreItems/GrenadeSounds/Item_GrenadeSounds.sp -------------------------------------------------------------------------------- /Plugins/StoreItems/KillEffects/Item_KillEffects.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StoreItems/KillEffects/Item_KillEffects.sp -------------------------------------------------------------------------------- /Plugins/StoreItems/KillSounds/Item_KillSounds.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StoreItems/KillSounds/Item_KillSounds.sp -------------------------------------------------------------------------------- /Plugins/StoreItems/Paintballs/Item_Paintballs.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StoreItems/Paintballs/Item_Paintballs.sp -------------------------------------------------------------------------------- /Plugins/StoreItems/Paintballs/item_paintballs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StoreItems/Paintballs/item_paintballs.inc -------------------------------------------------------------------------------- /Plugins/StoreItems/PlayerEffects/Item_PlayerEffects.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/StoreItems/PlayerEffects/Item_PlayerEffects.sp -------------------------------------------------------------------------------- /Plugins/Teamswitch/Teamswitch.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Teamswitch/Teamswitch.sp -------------------------------------------------------------------------------- /Plugins/ThrowingKnife/ThrowingKnife.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ThrowingKnife/ThrowingKnife.sp -------------------------------------------------------------------------------- /Plugins/TimedMuteGag/TimedMuteGag.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/TimedMuteGag/TimedMuteGag.sp -------------------------------------------------------------------------------- /Plugins/TokensUpdate/TokensUpdate.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/TokensUpdate/TokensUpdate.sp -------------------------------------------------------------------------------- /Plugins/TokensUpdate/tokens_update.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/TokensUpdate/tokens_update.inc -------------------------------------------------------------------------------- /Plugins/UnlimitedReserveAmmo/UnlimitedReserveAmmo.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/UnlimitedReserveAmmo/UnlimitedReserveAmmo.sp -------------------------------------------------------------------------------- /Plugins/Unsafe/Unsafe_Gloves.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Unsafe/Unsafe_Gloves.sp -------------------------------------------------------------------------------- /Plugins/Unsafe/Unsafe_Knives.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Unsafe/Unsafe_Knives.sp -------------------------------------------------------------------------------- /Plugins/Unsafe/Unsafe_WeaponSkins.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Unsafe/Unsafe_WeaponSkins.sp -------------------------------------------------------------------------------- /Plugins/Unsafe/csgo_lang_file_encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Unsafe/csgo_lang_file_encoder.php -------------------------------------------------------------------------------- /Plugins/Unsafe/sql_plugin_weapon_skins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Unsafe/sql_plugin_weapon_skins.txt -------------------------------------------------------------------------------- /Plugins/Unsafe/unsafe_gloves.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Unsafe/unsafe_gloves.inc -------------------------------------------------------------------------------- /Plugins/Unsafe/unsafe_knives.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/Unsafe/unsafe_knives.inc -------------------------------------------------------------------------------- /Plugins/UserPoints/UserPoints.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/UserPoints/UserPoints.sp -------------------------------------------------------------------------------- /Plugins/UserPoints/user_points.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/UserPoints/user_points.inc -------------------------------------------------------------------------------- /Plugins/UserStats/UserStats.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/UserStats/UserStats.sp -------------------------------------------------------------------------------- /Plugins/ZoneTypes/Includes/zonetype_named.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/Includes/zonetype_named.inc -------------------------------------------------------------------------------- /Plugins/ZoneTypes/Includes/zonetype_teleport.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/Includes/zonetype_teleport.inc -------------------------------------------------------------------------------- /Plugins/ZoneTypes/ZoneType_Blockade.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/ZoneType_Blockade.sp -------------------------------------------------------------------------------- /Plugins/ZoneTypes/ZoneType_DamageBlocker.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/ZoneType_DamageBlocker.sp -------------------------------------------------------------------------------- /Plugins/ZoneTypes/ZoneType_Flashlight.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/ZoneType_Flashlight.sp -------------------------------------------------------------------------------- /Plugins/ZoneTypes/ZoneType_HideToggle.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/ZoneType_HideToggle.sp -------------------------------------------------------------------------------- /Plugins/ZoneTypes/ZoneType_Kill.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/ZoneType_Kill.sp -------------------------------------------------------------------------------- /Plugins/ZoneTypes/ZoneType_Named.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/ZoneType_Named.sp -------------------------------------------------------------------------------- /Plugins/ZoneTypes/ZoneType_Respawn.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/ZoneType_Respawn.sp -------------------------------------------------------------------------------- /Plugins/ZoneTypes/ZoneType_Teleport.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/ZoneType_Teleport.sp -------------------------------------------------------------------------------- /Plugins/ZoneTypes/ZoneType_WeaponStrip.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/Plugins/ZoneTypes/ZoneType_WeaponStrip.sp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/README.md -------------------------------------------------------------------------------- /RandomIncludes/kztimer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/RandomIncludes/kztimer.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/admin-flatfile/admin-flatfile.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/admin-flatfile/admin-flatfile.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/admin-flatfile/admin-groups.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/admin-flatfile/admin-groups.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/admin-flatfile/admin-overrides.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/admin-flatfile/admin-overrides.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/admin-flatfile/admin-simple.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/admin-flatfile/admin-simple.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/admin-flatfile/admin-users.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/admin-flatfile/admin-users.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/admin-sql-prefetch.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/admin-sql-prefetch.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/admin-sql-threaded.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/admin-sql-threaded.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/adminhelp.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/adminhelp.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/adminmenu.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/adminmenu.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/adminmenu/dynamicmenu.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/adminmenu/dynamicmenu.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/antiflood.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/antiflood.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/autoexecconfig.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/autoexecconfig.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basebans.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basebans.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basebans/ban.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basebans/ban.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basechat.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basechat.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecomm.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecomm.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecomm/forwards.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecomm/forwards.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecomm/gag.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecomm/gag.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecomm/natives.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecomm/natives.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecommands.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecommands.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecommands/cancelvote.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecommands/cancelvote.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecommands/execcfg.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecommands/execcfg.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecommands/kick.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecommands/kick.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecommands/map.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecommands/map.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecommands/reloadadmins.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecommands/reloadadmins.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basecommands/who.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basecommands/who.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basetriggers.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basetriggers.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basevotes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basevotes.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basevotes/voteban.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basevotes/voteban.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basevotes/votekick.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basevotes/votekick.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/basevotes/votemap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/basevotes/votemap.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/clientprefs.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/clientprefs.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/compile.sh -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/compile_script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/compile_script.bat -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/constraints.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/constraints.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/dhooks-test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/dhooks-test.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/example.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/example.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funcommands.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funcommands.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funcommands/beacon.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funcommands/beacon.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funcommands/blind.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funcommands/blind.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funcommands/drug.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funcommands/drug.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funcommands/fire.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funcommands/fire.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funcommands/gravity.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funcommands/gravity.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funcommands/ice.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funcommands/ice.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funcommands/noclip.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funcommands/noclip.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funcommands/timebomb.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funcommands/timebomb.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funvotes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funvotes.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funvotes/votealltalk.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funvotes/votealltalk.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funvotes/voteburn.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funvotes/voteburn.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funvotes/voteff.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funvotes/voteff.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funvotes/votegravity.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funvotes/votegravity.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/funvotes/voteslay.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/funvotes/voteslay.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/EasyHTTP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/EasyHTTP.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/admin.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/adminmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/adminmenu.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/adt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/adt.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/adt_array.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/adt_array.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/adt_stack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/adt_stack.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/adt_trie.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/adt_trie.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/autoexecconfig.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/autoexecconfig.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/banning.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/banning.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/base64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/base64.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/basecomm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/basecomm.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/bitbuffer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/bitbuffer.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/clientprefs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/clientprefs.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/clients.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/clients.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/clientvoice.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/clientvoice.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/colors.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/commandfilters.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/commandfilters.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/commandline.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/commandline.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/console.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/console.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/convars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/convars.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/core.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/core.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/csteamid.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/csteamid.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/cstrike.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/cstrike.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/datapack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/datapack.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/dbi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/dbi.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/dhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/dhooks.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/emitsoundany.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/emitsoundany.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/entity.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/entity.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/entity_prop_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/entity_prop_stocks.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/events.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/events.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/files.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/files.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/float.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/float.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/functions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/functions.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/geoip.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/geoip.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/gungame_const.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/gungame_const.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/halflife.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/halflife.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/handles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/handles.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/helpers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/helpers.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/hls_color_chat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/hls_color_chat.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/keyvalues.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/keyvalues.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/lang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/lang.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/logging.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/logging.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/mapchooser.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/mapchooser.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/menus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/menus.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/morecolors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/morecolors.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/nextmap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/nextmap.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/profiler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/profiler.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/protobuf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/protobuf.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/regex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/regex.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdkhooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdkhooks.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_client.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_client.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_engine.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_engine.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_entinput.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_entinput.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_entoutput.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_entoutput.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_functions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_functions.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_gamerules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_gamerules.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_hooks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_hooks.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_sound.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_sound.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_stocks.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_stringtables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_stringtables.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_tempents.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_tempents.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_trace.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_trace.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_variant_t.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_variant_t.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sdktools_voice.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sdktools_voice.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/arrays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/arrays.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/clients.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/clients.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/colors.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/concommands.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/concommands.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/convars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/convars.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/crypt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/crypt.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/debug.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/dynarrays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/dynarrays.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/edicts.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/edicts.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/effects.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/effects.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/entities.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/entities.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/files.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/files.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/game.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/game.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/general.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/general.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/math.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/math.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/menus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/menus.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/server.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/server.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/sql.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/sql.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/strings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/strings.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/teams.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/teams.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/vehicles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/vehicles.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/weapons.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/smlib/world.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/smlib/world.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/socket.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/socket.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sorting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sorting.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/soundlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/soundlib.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sourcemod.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sourcemod.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/sourcetvmanager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/sourcetvmanager.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/steamtools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/steamtools.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/steamworks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/steamworks.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/string.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/string.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/testing.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/testing.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/textparse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/textparse.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/tf2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/tf2.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/tf2_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/tf2_stocks.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/tf2items.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/tf2items.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/timers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/timers.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/topmenus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/topmenus.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/updater.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/updater.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/usermessages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/usermessages.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/vector.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/vector.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/version.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/version_auto.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/version_auto.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/include/vphysics.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/include/vphysics.inc -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/listenexample.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/listenexample.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/mapchooser.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/mapchooser.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/nextmap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/nextmap.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/nominations.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/nominations.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/playercommands.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/playercommands.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/playercommands/rename.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/playercommands/rename.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/playercommands/slap.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/playercommands/slap.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/playercommands/slay.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/playercommands/slay.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/randomcycle.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/randomcycle.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/reservedslots.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/reservedslots.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/rockthevote.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/rockthevote.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/saysounds.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/saysounds.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/selftest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/selftest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/sounds.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/sounds.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/spcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/spcomp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/spcomp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/spcomp.exe -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/sql-admin-manager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/sql-admin-manager.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/swag.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/swag.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/tests/test_colors.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/tests/test_colors.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/tests/test_compile-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/tests/test_compile-all.sh -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/tests/test_compile-all.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/tests/test_compile-all.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/benchmark.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/benchmark.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/bug4059.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/bug4059.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/callfunctest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/callfunctest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/capstest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/capstest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/clientprefstest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/clientprefstest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/cstrike-test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/cstrike-test.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/entpropelements.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/entpropelements.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/fakenative1.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/fakenative1.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/fakenative2.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/fakenative2.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/filetest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/filetest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/fwdtest1.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/fwdtest1.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/fwdtest2.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/fwdtest2.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/gamerules-props.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/gamerules-props.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/goto_test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/goto_test.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/keyvalues.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/keyvalues.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/outputtest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/outputtest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/ptstest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/ptstest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/sorttest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/sorttest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/sqltest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/sqltest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/sqltest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/sqltest.sql -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/stacktest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/stacktest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/structtest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/structtest.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/tf2-test.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/tf2-test.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/testsuite/tries.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/testsuite/tries.sp -------------------------------------------------------------------------------- /_SourceMod 1.6 Compiler/vphysics.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlstriker/SMPlugins/HEAD/_SourceMod 1.6 Compiler/vphysics.sp --------------------------------------------------------------------------------