diff --git a/README.md b/README.md index 011e989..5f6b4ca 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Additionally, the package contains some useful plugins and configurations that c | [Time Traveler](https://forums.alliedmods.net/showthread.php?t=134288&page=3) | Ever wanted to run a command in the future? In 10 minutes? In a hour? Now you can! Just enter the timer and the command using sm_futex and this plugin will tunnel into the future and execute your command! | 07-28-2016 YoNer | | [Bypass Password](https://forums.alliedmods.net/showthread.php?p=2738005) | As you know, in CS:GO game, you can not set sv_password on server if there are players in game. Need to be empty server. This plugin block that check, and allow you set sv_password when ever you like. | 03-02-2023 | | [Random Password Generation](https://forums.alliedmods.net/showthread.php?t=139990) | This is a simple plugin that generates a random password. | 06-15-2015 glub | -| [Get5](https://github.com/splewis/get5) | Get5 is a standalone SourceMod plugin for CS:GO servers for running matches. | 0.14.6 | +| [Get5](https://github.com/splewis/get5) | Get5 is a standalone SourceMod plugin for CS:GO servers for running matches. | 0.14.7 | | [Multi 1v1](https://github.com/splewis/csgo-multi-1v1) | The multi1v1 plugin sets up any number of players in 1v1-situations on specially made maps and they fight in a ladder-type system each round. The winners move up an arena, and the losers go down an arena. Players choose between specific round types (for example: "rifle", "pistol", "awp"), and the plugin automatically spawns and gives players the appropriate weapons each round start. | 1.1.10 | | [Practice Mode](https://github.com/splewis/csgo-practice-mode) | Practice Mode is a sourcemod plugin for helping players/teams run practices. Check out the features and command list below for a better understanding of all the tools practicemode provides. | 1.3.4 | diff --git a/addons/sourcemod/configs/adminmenu_custom.txt b/addons/sourcemod/configs/adminmenu_custom.txt index 9c36abf..abf151e 100644 --- a/addons/sourcemod/configs/adminmenu_custom.txt +++ b/addons/sourcemod/configs/adminmenu_custom.txt @@ -402,31 +402,12 @@ "admin" "sm_ban" "execute" "server" } - "Wingman 2on2" + "Match XonX" { - "cmd" "sm_execcfg /gamesettings/competitive/wingman_2on2.cfg" + "cmd" "sm_execcfg /gamesettings/competitive/match_xonx_standard.cfg" "admin" "sm_ban" "execute" "server" } - "Match 5on5" - { - "cmd" "sm_execcfg /gamesettings/competitive/match_5on5_@1.cfg" - "admin" "sm_ban" - "execute" "server" - "1" - { - "type" "list" - "title" "Which Mappool do you want?" - "1" "duty" - "1." "Duty Maps" - "2" "defuse" - "2." "Collection of Defuse Maps" - "3" "hostage" - "3." "Hostage Maps" - "4" "standard" - "4." "No Map Vote" - } - } } "Server Reset" diff --git a/addons/sourcemod/configs/adminmenu_sorting.txt b/addons/sourcemod/configs/adminmenu_sorting.txt index 783dc5f..5ec1d2c 100644 --- a/addons/sourcemod/configs/adminmenu_sorting.txt +++ b/addons/sourcemod/configs/adminmenu_sorting.txt @@ -28,8 +28,7 @@ { "item" "Arena 1on1" "item" "Aim 1on1" - "item" "Wingman 2on2" - "item" "Match 5on5" + "item" "Match XonX" } "Server Reset" diff --git a/addons/sourcemod/configs/get5/example_match.cfg b/addons/sourcemod/configs/get5/example_match.cfg new file mode 100644 index 0000000..f63d36f --- /dev/null +++ b/addons/sourcemod/configs/get5/example_match.cfg @@ -0,0 +1,68 @@ +"Match" +{ + "matchid" "example_match" + "num_maps" "3" + "spectators" // players allowed in spectator (e.g., admins) should go here + { + "players" + { + "76561197996426755" "" + } + } + "skip_veto" "0" // If set to 1, the maps will be preset using the first maps in the maplist below. + "veto_first" "team1" // Set to "random", "team1" or "team2" to select who starts the veto. Any other values will default to team1 starting. + "side_type" "standard" // Either "standard", "always_knife", or "never_knife" + "maplist" + { + "de_ancient" "" + "de_inferno" "" + "de_mirage" "" + "de_nuke" "" + "de_overpass" "" + "de_anubis" "" + "de_vertigo" "" + } + "players_per_team" "5" + "coaches_per_team" "2" + "min_players_to_ready" "1" // Minimum # of players a team must have to ready + + "team1" + { + "name" "EnvyUs" // You should always set a team name, otherwise some chat messages will not make sense. If there is no true team name, use "Team1" at least. + "tag" "EnvyUs" // Short tags replace the "clan tag" on the scoreboard. They are optional. + "flag" "FR" + "logo" "nv" + "players" + { + // Any of the 3 formats (steam2, steam3, steam64 profile) are acceptable. + // Note: the "players" section may be skipped if you set get5_check_auths to 0, + // but that is not recommended. You can also set player names that will be forced here. + // If you don't want to force player names, just use an empty quote "". + "STEAM_0:1:52245092" "splewis" + "[U:1:104490185]" "" + "76561198064755913" "" + } + } + + "team2" + { + "name" "Fnatic" + "tag" "fnatic" + "flag" "SE" + "logo" "fntc" + "players" + { + "STEAM_1:1:46796472" "" + "STEAM_1:0:78189799" "" + "STEAM_1:0:142982" "" + } + } + // These will be executed on each map start or config load. + // You should not use this as a replacement for the cfg/get5/live.cfg config, but you can use it to change + // individual parameters, such as friendly fire. These parameters are applied *after* the live config and will + // override it. + "cvars" + { + "sm_practicemode_can_be_started" "0" // Disallow enabling practice mode when a match is loaded. + } +} diff --git a/addons/sourcemod/configs/get5/example_match.json b/addons/sourcemod/configs/get5/example_match.json new file mode 100644 index 0000000..be6d0ea --- /dev/null +++ b/addons/sourcemod/configs/get5/example_match.json @@ -0,0 +1,48 @@ +{ + "matchid": "example_match", + "num_maps": 3, + "players_per_team": 5, + "coaches_per_team": 2, + "min_players_to_ready": 1, + "skip_veto": false, + "veto_first": "team1", + "side_type": "standard", + "spectators": { + "players": [ + "76561197996426755" + ] + }, + "maplist": [ + "de_ancient", + "de_inferno", + "de_mirage", + "de_nuke", + "de_overpass", + "de_anubis", + "de_vertigo" + ], + "team1": { + "name": "EnvyUs", + "tag": "EnvyUs", + "flag": "FR", + "logo": "nv", + "players": { + "STEAM_0:1:52245092": "splewis", + "76561198064755913": "" + } + }, + "team2": { + "name": "Fnatic", + "tag": "Fnatic", + "flag": "SE", + "logo": "fntc", + "players": [ + "STEAM_1:1:46796472", + "STEAM_1:0:78189799", + "STEAM_1:0:142982" + ] + }, + "cvars": { + "sm_practicemode_can_be_started": "0" + } +} diff --git a/addons/sourcemod/configs/get5/scrim_template.cfg b/addons/sourcemod/configs/get5/scrim_template.cfg new file mode 100644 index 0000000..a433da7 --- /dev/null +++ b/addons/sourcemod/configs/get5/scrim_template.cfg @@ -0,0 +1,30 @@ +// You can customize some of the get5_scrim command settings here. +// You should not add a "team2" section. +// Besides those, you can add anything you would normally add to a +// match config here. Note that this approach is legacy and the +// get5_creatematch command or the !get5 menu is more flexible. +"Match" +{ + "scrim" "1" + "side_type" "never_knife" + "players_per_team" "5" + "coaches_per_team" "2" + "num_maps" "1" + "skip_veto" "1" + "team1" + { + "name" "myteam" + "players" + { + "76561198064755913" "splewis" + } + } + "cvars" + { + "mp_match_can_clinch" "0" // Forces 30-round playout + "mp_overtime_enable" "0" + "get5_demo_name_format" "scrim_{TIME}_{MAPNAME}" // Set to "" to disable recording + "get5_print_damage" "1" // Enabling will print damage on round-end. + "sm_practicemode_can_be_started" "0" // Disallow enabling practice mode when a match is loaded. + } +} diff --git a/addons/sourcemod/configs/get5/standard_1on1_match.json b/addons/sourcemod/configs/get5/standard_1on1_match.json deleted file mode 100644 index 018863c..0000000 --- a/addons/sourcemod/configs/get5/standard_1on1_match.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "matchid": "Privat 1on1 Match", - "num_maps": 1, - "players_per_team": 1, - "min_players_to_ready": 1, - "min_spectators_to_ready": 0, - "skip_veto": false, - "veto_first": "team1", - "side_type": "never_knife", - "wingman": false, - - "maplist": - [ - "aim_aim_aim", - "aim_dust2", - "aim_redline", - "aim_s", - "aim_goofyaim" - ], - - "team1": { - "name": "One Team", - "players": - { - "STEAM_1:1:....." : "" - } - }, - - "team2": { - "name": "Other Team", - "players": - { - "STEAM_1:1:....." : "" - } - }, - - "cvars": { - "hostname": "Privat 1on1 Match", - "sm_practicemode_can_be_started": "0", - "mp_maxrounds": "16", - "mp_overtime_enable": "1", - "get5_live_countdown_time": "5", - "mp_friendly_fire": "0" - } -} \ No newline at end of file diff --git a/addons/sourcemod/configs/get5/standard_2on2_match.json b/addons/sourcemod/configs/get5/standard_2on2_match.json deleted file mode 100644 index e19dcaa..0000000 --- a/addons/sourcemod/configs/get5/standard_2on2_match.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "matchid": "Privat Wingman Match", - "num_maps": 1, - "players_per_team": 2, - "min_players_to_ready": 1, - "min_spectators_to_ready": 0, - "skip_veto": false, - "veto_first": "team1", - "side_type": "always_knife", - "wingman": true, - - "maplist": - [ - "de_cbble", - "de_inferno", - "de_lake", - "de_overpass", - "de_shortdust", - "de_shortnuke", - "de_train", - "de_vertigo", - "de_bank", - "de_safehouse", - "de_stmarc" - ], - - "team1": { - "name": "One Team", - "players": - { - "STEAM_1:1:....." : "", - "STEAM_1:1:......" : "" - } - }, - - "team2": { - "name": "Other Team", - "players": - { - "STEAM_1:1:...." : "", - "STEAM_1:1:....." : "" - } - }, - - "cvars": { - "hostname": "Privat Match Wingman", - "sm_practicemode_can_be_started": "0", - "mp_maxrounds": "16", - "mp_overtime_enable": "1", - "get5_live_countdown_time": "5", - "mp_friendly_fire": "0" - } -} diff --git a/addons/sourcemod/configs/get5/standard_5on5_match_defuse.json b/addons/sourcemod/configs/get5/standard_5on5_match_defuse.json deleted file mode 100644 index 6940f75..0000000 --- a/addons/sourcemod/configs/get5/standard_5on5_match_defuse.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "matchid": "Privat 5on5 Match", - "num_maps": 1, - "players_per_team": 5, - "min_players_to_ready": 1, - "min_spectators_to_ready": 0, - "skip_veto": false, - "veto_first": "team1", - "side_type": "always_knife", - "wingman": false, - - "maplist": - [ - "de_ancient", - "de_inferno", - "de_mirage", - "de_nuke", - "de_overpass", - "de_anubis", - "de_vertigo", - "de_cache", - "de_train", - "de_tuscan", - "de_cbble", - "de_dust2", - "de_aztec", - "de_abbey", - "de_canals", - "de_zoo", - "de_basalt", - "de_season", - "de_overgrown" - ], - - - "team1": { - "name": "One Team", - "players": - { - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "" - } - }, - - "team2": { - "name": "Other Team", - "players": - { - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "" - } - }, - - "cvars": { - "hostname": "Privat 5on5 Match", - "sm_practicemode_can_be_started": "0", - "mp_maxrounds": "30", - "mp_overtime_enable": "1", - "get5_live_countdown_time": "5", - "mp_friendly_fire": "0" - } -} diff --git a/addons/sourcemod/configs/get5/standard_5on5_match_duty.json b/addons/sourcemod/configs/get5/standard_5on5_match_duty.json deleted file mode 100644 index d981747..0000000 --- a/addons/sourcemod/configs/get5/standard_5on5_match_duty.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "matchid": "Privat 5on5 Match", - "num_maps": 1, - "players_per_team": 5, - "min_players_to_ready": 1, - "min_spectators_to_ready": 0, - "skip_veto": false, - "veto_first": "team1", - "side_type": "always_knife", - "wingman": false, - - "maplist": - [ - "de_ancient", - "de_inferno", - "de_mirage", - "de_nuke", - "de_overpass", - "de_anubis", - "de_vertigo" - ], - - - "team1": { - "name": "One Team", - "players": - { - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "" - } - }, - - "team2": { - "name": "Other Team", - "players": - { - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "" - } - }, - - "cvars": { - "hostname": "Privat 5on5 Match", - "sm_practicemode_can_be_started": "0", - "mp_maxrounds": "30", - "mp_overtime_enable": "1", - "get5_live_countdown_time": "5", - "mp_friendly_fire": "0" - } -} diff --git a/addons/sourcemod/configs/get5/standard_5on5_match_hostage.json b/addons/sourcemod/configs/get5/standard_5on5_match_hostage.json deleted file mode 100644 index fed0e68..0000000 --- a/addons/sourcemod/configs/get5/standard_5on5_match_hostage.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "matchid": "Privat 5on5 Match", - "num_maps": 1, - "players_per_team": 5, - "min_players_to_ready": 1, - "min_spectators_to_ready": 0, - "skip_veto": false, - "veto_first": "team1", - "side_type": "always_knife", - "wingman": false, - - "maplist": - [ - "cs_agency", - "cs_assault", - "cs_italy", - "cs_militia", - "cs_office" - ], - - - "team1": { - "name": "One Team", - "players": - { - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "" - } - }, - - "team2": { - "name": "Other Team", - "players": - { - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "", - "STEAM_1:1:....." : "" - } - }, - - "cvars": { - "hostname": "Privat 5on5 Match", - "sm_practicemode_can_be_started": "0", - "mp_maxrounds": "30", - "mp_overtime_enable": "1", - "get5_live_countdown_time": "5", - "mp_friendly_fire": "0" - } -} diff --git a/addons/sourcemod/plugins/disabled/get5.smx b/addons/sourcemod/plugins/disabled/get5.smx index 3cff7cb..6589ea7 100644 Binary files a/addons/sourcemod/plugins/disabled/get5.smx and b/addons/sourcemod/plugins/disabled/get5.smx differ diff --git a/addons/sourcemod/plugins/disabled/get5_apistats.smx b/addons/sourcemod/plugins/disabled/get5_apistats.smx index cf78703..5499f2d 100644 Binary files a/addons/sourcemod/plugins/disabled/get5_apistats.smx and b/addons/sourcemod/plugins/disabled/get5_apistats.smx differ diff --git a/addons/sourcemod/plugins/disabled/get5_mysqlstats.smx b/addons/sourcemod/plugins/disabled/get5_mysqlstats.smx index 5770b98..b46f30c 100644 Binary files a/addons/sourcemod/plugins/disabled/get5_mysqlstats.smx and b/addons/sourcemod/plugins/disabled/get5_mysqlstats.smx differ diff --git a/cfg/gamesettings/competitive/match_5on5_defuse.cfg b/cfg/gamesettings/competitive/match_5on5_defuse.cfg deleted file mode 100644 index 6398157..0000000 --- a/cfg/gamesettings/competitive/match_5on5_defuse.cfg +++ /dev/null @@ -1,141 +0,0 @@ -//This file unloads all plugins, re-loads a few "safe" ones, and then prevents -//any more plugins from being loaded. - -//////////////////////////// -//Match 5on5 Defuse Config// -//////////////////////////// - -//Plugins entsperren -sm plugins load_unlock -sm plugins unload botmimic.smx -sm plugins unload csutils.smx -sm plugins unload practicemode.smx -sm plugins unload get5.smx -sm plugins unload get5_apistats.smx -sm plugins unload get5_mysqlstats.smx -sm plugins unload multi1v1.smx -sm plugins unload multi1v1_flashbangs.smx -sm plugins unload multi1v1_kniferounds.smx - -sm plugins load EnableDisable.smx - -//----------------------------------------------------- - -//Standard Plugins (nicht anrühren) -plugins enable EnableDisable -plugins enable csgo_sv_password -plugins enable RandomServerPassword-nt -plugins enable FutureExe - -plugins enable admin-flatfile -plugins enable adminmenu -plugins enable antiflood -plugins enable basebans -plugins enable basechat -plugins enable basecomm -plugins enable basecommands -plugins enable basetriggers -plugins enable basevotes -plugins enable clientprefs - -plugins disable adminhelp -plugins disable admin-sql-prefetch -plugins disable admin-sql-threaded -plugins disable sql-admin-manager -plugins disable funcommands -plugins disable funvotes -plugins disable mapchooser -plugins disable nextmap -plugins disable nominations -plugins disable playercommands -plugins disable reservedslots -plugins disable rockthevote -plugins disable randomcycle -plugins disable sounds - -//----------------------------------------------------- - -//Practice Script Plugins -plugins disable botmimic -plugins disable csutils -plugins disable practicemode - -//Match Script -plugins enable get5 -plugins disable get5_apistats -plugins disable get5_mysqlstats - -//Arena Script -plugins disable multi1v1 -plugins disable multi1v1_flashbangs -plugins disable multi1v1_kniferounds - -//----------------------------------------------------- - -//Plugins loads -sm plugins load EnableDisable.smx -sm plugins load csgo_sv_password.smx -sm plugins load RandomServerPassword-nt.smx -sm plugins load FutureExe.smx - -sm plugins load admin-flatfile.smx -sm plugins load adminmenu.smx -sm plugins load antiflood.smx -sm plugins load basebans.smx -sm plugins load basechat.smx -sm plugins load basecomm.smx -sm plugins load basecommands.smx -sm plugins load basetriggers.smx -sm plugins load basevotes.smx -sm plugins load clientprefs.smx - -sm plugins load get5.smx - -//----------------------------------------------------- - -//Plugins sperren -sm plugins load_lock - -//----------------------------------------------------- - -//Befehle Bereich -exec cfg/gamemode_competitive_server.cfg - -game_type 0 -game_mode 1 -sv_skirmish_id 0 - -bot_difficulty 3 -bot_quota_mode fill -bot_quota 0 - -mp_autokick 0 - -sv_tags "match,bo1,fun,play" - -get5_loadmatch addons/sourcemod/configs/get5/standard_5on5_match_defuse.json - -mp_teamname_1 "" -mp_teamname_2 "" - -mp_endmatch_votenextmap 0 -mp_match_end_changelevel 0 -mp_match_end_restart 1 -mp_match_restart_delay 15 - -mp_endmatch_votenextmap_wargames_nummodes 0 -// mp_endmatch_votenextmap_wargames_modes "" -// mp_endmatch_votenextmap_wargames_nummaps - - -//----------------------------------------------------- - -//Text Loadout -sm plugins list -say Match Bo1 Setup loaded... - -sm_futex 0.1 "say You can start with your Match!" -sm_futex 0.1 "say Powered bei Get5 bei Splewis!" -sm_futex 0.1 "say Matchmaking on Defuse Maps!" -sm_futex 0.1 "say Type !get5 in chat! Also !ready to be READY!" -sm_futex 0.1 "HEY ADMIN GENERATE A PASSWORD IN THE ADMINMENU AND EXCLUDE UNWANTED PLAYERS!" \ No newline at end of file diff --git a/cfg/gamesettings/competitive/match_5on5_duty.cfg b/cfg/gamesettings/competitive/match_5on5_duty.cfg deleted file mode 100644 index eb5b77f..0000000 --- a/cfg/gamesettings/competitive/match_5on5_duty.cfg +++ /dev/null @@ -1,141 +0,0 @@ -//This file unloads all plugins, re-loads a few "safe" ones, and then prevents -//any more plugins from being loaded. - -////////////////////////// -//Match 5on5 Duty Config// -////////////////////////// - -//Plugins entsperren -sm plugins load_unlock -sm plugins unload botmimic.smx -sm plugins unload csutils.smx -sm plugins unload practicemode.smx -sm plugins unload get5.smx -sm plugins unload get5_apistats.smx -sm plugins unload get5_mysqlstats.smx -sm plugins unload multi1v1.smx -sm plugins unload multi1v1_flashbangs.smx -sm plugins unload multi1v1_kniferounds.smx - -sm plugins load EnableDisable.smx - -//----------------------------------------------------- - -//Standard Plugins (nicht anrühren) -plugins enable EnableDisable -plugins enable csgo_sv_password -plugins enable RandomServerPassword-nt -plugins enable FutureExe - -plugins enable admin-flatfile -plugins enable adminmenu -plugins enable antiflood -plugins enable basebans -plugins enable basechat -plugins enable basecomm -plugins enable basecommands -plugins enable basetriggers -plugins enable basevotes -plugins enable clientprefs - -plugins disable adminhelp -plugins disable admin-sql-prefetch -plugins disable admin-sql-threaded -plugins disable sql-admin-manager -plugins disable funcommands -plugins disable funvotes -plugins disable mapchooser -plugins disable nextmap -plugins disable nominations -plugins disable playercommands -plugins disable reservedslots -plugins disable rockthevote -plugins disable randomcycle -plugins disable sounds - -//----------------------------------------------------- - -//Practice Script Plugins -plugins disable botmimic -plugins disable csutils -plugins disable practicemode - -//Match Script -plugins enable get5 -plugins disable get5_apistats -plugins disable get5_mysqlstats - -//Arena Script -plugins disable multi1v1 -plugins disable multi1v1_flashbangs -plugins disable multi1v1_kniferounds - -//----------------------------------------------------- - -//Plugins loads -sm plugins load EnableDisable.smx -sm plugins load csgo_sv_password.smx -sm plugins load RandomServerPassword-nt.smx -sm plugins load FutureExe.smx - -sm plugins load admin-flatfile.smx -sm plugins load adminmenu.smx -sm plugins load antiflood.smx -sm plugins load basebans.smx -sm plugins load basechat.smx -sm plugins load basecomm.smx -sm plugins load basecommands.smx -sm plugins load basetriggers.smx -sm plugins load basevotes.smx -sm plugins load clientprefs.smx - -sm plugins load get5.smx - -//----------------------------------------------------- - -//Plugins sperren -sm plugins load_lock - -//----------------------------------------------------- - -//Befehle Bereich -exec cfg/gamemode_competitive_server.cfg - -game_type 0 -game_mode 1 -sv_skirmish_id 0 - -bot_difficulty 3 -bot_quota_mode fill -bot_quota 0 - -mp_autokick 0 - -sv_tags "match,bo1,fun,play" - -get5_loadmatch addons/sourcemod/configs/get5/standard_5on5_match_duty.json - -mp_teamname_1 "" -mp_teamname_2 "" - -mp_endmatch_votenextmap 0 -mp_match_end_changelevel 0 -mp_match_end_restart 1 -mp_match_restart_delay 15 - -mp_endmatch_votenextmap_wargames_nummodes 0 -// mp_endmatch_votenextmap_wargames_modes "" -// mp_endmatch_votenextmap_wargames_nummaps - - -//----------------------------------------------------- - -//Text Loadout -sm plugins list -say Match Bo1 Setup loaded... - -sm_futex 0.1 "say You can start with your Match!" -sm_futex 0.1 "say Powered bei Get5 bei Splewis!" -sm_futex 0.1 "say Matchmaking on Duty Maps!" -sm_futex 0.1 "say Type !get5 in chat! Also !ready to be READY!" -sm_futex 0.1 "HEY ADMIN GENERATE A PASSWORD IN THE ADMINMENU AND EXCLUDE UNWANTED PLAYERS!" \ No newline at end of file diff --git a/cfg/gamesettings/competitive/match_5on5_hostage.cfg b/cfg/gamesettings/competitive/match_5on5_hostage.cfg deleted file mode 100644 index afde4fd..0000000 --- a/cfg/gamesettings/competitive/match_5on5_hostage.cfg +++ /dev/null @@ -1,141 +0,0 @@ -//This file unloads all plugins, re-loads a few "safe" ones, and then prevents -//any more plugins from being loaded. - -////////////////////////// -//Match 5on5 Duty Config// -////////////////////////// - -//Plugins entsperren -sm plugins load_unlock -sm plugins unload botmimic.smx -sm plugins unload csutils.smx -sm plugins unload practicemode.smx -sm plugins unload get5.smx -sm plugins unload get5_apistats.smx -sm plugins unload get5_mysqlstats.smx -sm plugins unload multi1v1.smx -sm plugins unload multi1v1_flashbangs.smx -sm plugins unload multi1v1_kniferounds.smx - -sm plugins load EnableDisable.smx - -//----------------------------------------------------- - -//Standard Plugins (nicht anrühren) -plugins enable EnableDisable -plugins enable csgo_sv_password -plugins enable RandomServerPassword-nt -plugins enable FutureExe - -plugins enable admin-flatfile -plugins enable adminmenu -plugins enable antiflood -plugins enable basebans -plugins enable basechat -plugins enable basecomm -plugins enable basecommands -plugins enable basetriggers -plugins enable basevotes -plugins enable clientprefs - -plugins disable adminhelp -plugins disable admin-sql-prefetch -plugins disable admin-sql-threaded -plugins disable sql-admin-manager -plugins disable funcommands -plugins disable funvotes -plugins disable mapchooser -plugins disable nextmap -plugins disable nominations -plugins disable playercommands -plugins disable reservedslots -plugins disable rockthevote -plugins disable randomcycle -plugins disable sounds - -//----------------------------------------------------- - -//Practice Script Plugins -plugins disable botmimic -plugins disable csutils -plugins disable practicemode - -//Match Script -plugins enable get5 -plugins disable get5_apistats -plugins disable get5_mysqlstats - -//Arena Script -plugins disable multi1v1 -plugins disable multi1v1_flashbangs -plugins disable multi1v1_kniferounds - -//----------------------------------------------------- - -//Plugins loads -sm plugins load EnableDisable.smx -sm plugins load csgo_sv_password.smx -sm plugins load RandomServerPassword-nt.smx -sm plugins load FutureExe.smx - -sm plugins load admin-flatfile.smx -sm plugins load adminmenu.smx -sm plugins load antiflood.smx -sm plugins load basebans.smx -sm plugins load basechat.smx -sm plugins load basecomm.smx -sm plugins load basecommands.smx -sm plugins load basetriggers.smx -sm plugins load basevotes.smx -sm plugins load clientprefs.smx - -sm plugins load get5.smx - -//----------------------------------------------------- - -//Plugins sperren -sm plugins load_lock - -//----------------------------------------------------- - -//Befehle Bereich -exec cfg/gamemode_competitive_server.cfg - -game_type 0 -game_mode 1 -sv_skirmish_id 0 - -bot_difficulty 3 -bot_quota_mode fill -bot_quota 0 - -mp_autokick 0 - -sv_tags "match,bo1,fun,play" - -get5_loadmatch addons/sourcemod/configs/get5/standard_5on5_match_hostage.json - -mp_teamname_1 "" -mp_teamname_2 "" - -mp_endmatch_votenextmap 0 -mp_match_end_changelevel 0 -mp_match_end_restart 1 -mp_match_restart_delay 15 - -mp_endmatch_votenextmap_wargames_nummodes 0 -// mp_endmatch_votenextmap_wargames_modes "" -// mp_endmatch_votenextmap_wargames_nummaps - - -//----------------------------------------------------- - -//Text Loadout -sm plugins list -say Match Bo1 Setup loaded... - -sm_futex 0.1 "say You can start with your Match!" -sm_futex 0.1 "say Powered bei Get5 bei Splewis!" -sm_futex 0.1 "say Matchmaking on Hostage Maps!" -sm_futex 0.1 "say Type !get5 in chat! Also !ready to be READY!" -sm_futex 0.1 "HEY ADMIN GENERATE A PASSWORD IN THE ADMINMENU AND EXCLUDE UNWANTED PLAYERS!" \ No newline at end of file diff --git a/cfg/gamesettings/competitive/match_5on5_standard.cfg b/cfg/gamesettings/competitive/match_xonx_standard.cfg similarity index 97% rename from cfg/gamesettings/competitive/match_5on5_standard.cfg rename to cfg/gamesettings/competitive/match_xonx_standard.cfg index 7f59fb7..42fae3d 100644 --- a/cfg/gamesettings/competitive/match_5on5_standard.cfg +++ b/cfg/gamesettings/competitive/match_xonx_standard.cfg @@ -2,7 +2,7 @@ //any more plugins from being loaded. ////////////////////////////// -//Match 5on5 Standard Config// +//Match xonx Standard Config// ////////////////////////////// //Plugins entsperren @@ -120,6 +120,7 @@ mp_endmatch_votenextmap 0 mp_match_end_changelevel 0 mp_match_end_restart 1 mp_match_restart_delay 15 +changelevel de_dust2 mp_endmatch_votenextmap_wargames_nummodes 0 // mp_endmatch_votenextmap_wargames_modes "" @@ -130,7 +131,7 @@ mp_endmatch_votenextmap_wargames_nummodes 0 //Text Loadout sm plugins list -say Match Bo1 Setup loaded... +say Get5 Setup loaded... sm_futex 0.1 "say You can start with your Match!" sm_futex 0.1 "say Powered bei Get5 bei Splewis!" diff --git a/cfg/gamesettings/competitive/wingman_2on2.cfg b/cfg/gamesettings/competitive/wingman_2on2.cfg deleted file mode 100644 index 1f2fba7..0000000 --- a/cfg/gamesettings/competitive/wingman_2on2.cfg +++ /dev/null @@ -1,140 +0,0 @@ -//This file unloads all plugins, re-loads a few "safe" ones, and then prevents -//any more plugins from being loaded. - -//////////////////// -//Match Bo1 Config// -//////////////////// - -//Plugins entsperren -sm plugins load_unlock -sm plugins unload botmimic.smx -sm plugins unload csutils.smx -sm plugins unload practicemode.smx -sm plugins unload get5.smx -sm plugins unload get5_apistats.smx -sm plugins unload get5_mysqlstats.smx -sm plugins unload multi1v1.smx -sm plugins unload multi1v1_flashbangs.smx -sm plugins unload multi1v1_kniferounds.smx - -sm plugins load EnableDisable.smx - -//----------------------------------------------------- - -//Standard Plugins (nicht anrühren) -plugins enable EnableDisable -plugins enable csgo_sv_password -plugins enable RandomServerPassword-nt -plugins enable FutureExe - -plugins enable admin-flatfile -plugins enable adminmenu -plugins enable antiflood -plugins enable basebans -plugins enable basechat -plugins enable basecomm -plugins enable basecommands -plugins enable basetriggers -plugins enable basevotes -plugins enable clientprefs - -plugins disable adminhelp -plugins disable admin-sql-prefetch -plugins disable admin-sql-threaded -plugins disable sql-admin-manager -plugins disable funcommands -plugins disable funvotes -plugins disable mapchooser -plugins disable nextmap -plugins disable nominations -plugins disable playercommands -plugins disable reservedslots -plugins disable rockthevote -plugins disable randomcycle -plugins disable sounds - -//----------------------------------------------------- - -//Practice Script Plugins -plugins disable botmimic -plugins disable csutils -plugins disable practicemode - -//Match Script -plugins enable get5 -plugins disable get5_apistats -plugins disable get5_mysqlstats - -//Arena Script -plugins disable multi1v1 -plugins disable multi1v1_flashbangs -plugins disable multi1v1_kniferounds - -//----------------------------------------------------- - -//Plugins loads -sm plugins load EnableDisable.smx -sm plugins load csgo_sv_password.smx -sm plugins load RandomServerPassword-nt.smx -sm plugins load FutureExe.smx - -sm plugins load admin-flatfile.smx -sm plugins load adminmenu.smx -sm plugins load antiflood.smx -sm plugins load basebans.smx -sm plugins load basechat.smx -sm plugins load basecomm.smx -sm plugins load basecommands.smx -sm plugins load basetriggers.smx -sm plugins load basevotes.smx -sm plugins load clientprefs.smx - -sm plugins load get5.smx - -//----------------------------------------------------- - -//Plugins sperren -sm plugins load_lock - -//----------------------------------------------------- - -//Befehle Bereich -exec cfg/gamemode_competitive2v2_server.cfg - -game_type 0 -game_mode 2 -sv_skirmish_id 0 - -bot_difficulty 3 -bot_quota_mode fill -bot_quota 0 - -mp_autokick 0 - -sv_tags "match,wingman,fun,play" - -get5_loadmatch addons/sourcemod/configs/get5/standard_2on2_match.json - -mp_teamname_1 "" -mp_teamname_2 "" - -mp_endmatch_votenextmap 0 -mp_match_end_changelevel 0 -mp_match_end_restart 1 -mp_match_restart_delay 15 - -mp_endmatch_votenextmap_wargames_nummodes 0 -// mp_endmatch_votenextmap_wargames_modes "" -// mp_endmatch_votenextmap_wargames_nummaps - - -//----------------------------------------------------- - -//Text Loadout -sm plugins list -say Wingman 2on2 Setup loaded... - -sm_futex 0.1 "say You can start with your Wingman 2on2 Match!" -sm_futex 0.1 "say Powered bei Get5 bei Splewis!" -sm_futex 0.1 "say Type !get5 in chat! Also !ready to be READY!" -sm_futex 0.1 "HEY ADMIN GENERATE A PASSWORD IN THE ADMINMENU AND EXCLUDE UNWANTED PLAYERS!" \ No newline at end of file diff --git a/cfg/get5/maps.json b/cfg/get5/maps.json index 6951cf3..836a58e 100644 --- a/cfg/get5/maps.json +++ b/cfg/get5/maps.json @@ -1,5 +1,5 @@ { - "duty": [ + "Duty": [ "de_ancient", "de_anubis", "de_inferno", @@ -8,7 +8,7 @@ "de_overpass", "de_vertigo" ], - "additional": [ + "Additional": [ "de_ancient", "de_anubis", "de_cache", @@ -29,14 +29,14 @@ "de_season", "de_overgrown" ], - "hostage": [ + "Hostage": [ "cs_agency", "cs_assault", "cs_italy", "cs_militia", "cs_office" ], - "wingman": [ + "Wingman": [ "de_shortdust", "de_boyard", "de_chalice",