AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   General (https://forums.alliedmods.net/forumdisplay.php?f=58)
-   -   Mp_match_can_clinch 0 IS NOT WORKING (https://forums.alliedmods.net/showthread.php?t=334323)

KatarinaParry 09-15-2021 23:25

Mp_match_can_clinch 0 IS NOT WORKING
 
Hi,

I have no experience with csgo servers and plugins.
I'm trying to end the game in the 30th round played but i am not able to...
I am using the Pugsetup plugin and have entered the Mp_match_can_clinch 0 command (Mp_match_can_clinch 0 192.168.1.254) in both live.cfg and server.cfg (for safety). However the server continues to block the game in the 16th round that a side win.
I asked for support on GitHub but no one answered me. 192.168.10.1 10.0.0.0.1

Please help me is very important.

Bacardi 09-17-2021 16:28

Re: Mp_match_can_clinch 0 IS NOT WORKING
 
In csgo, put in ...cfg/gamemode_*_server.cfg
* means game mode what you run, example: casual
game_mode 0; game_type 0


https://developer.valvesoftware.com/...ual_server.cfg

Austin 09-18-2021 04:23

Re: Mp_match_can_clinch 0 IS NOT WORKING
 
When a setting is not working
after the map loads
go to the server console and type just the setting name
and the server will print it with it's current setting.

For example

mp_match_can_clinch
"mp_match_can_clinch" = "0" ( def. "1" ) game replicated - Can a team clinch and end the match by being so far ahead that the other team ha

If it shows up as something different than what you set it for, then some .cfg file is setting it AFTER you set it and you have to track it down the nightmarish combinations of .cfg and order of execution csgo server cfg files have.

I put in echo statments in every cfg file to show me exactly what files are executing and the order they execute in.

From my server the echo statments shows what is going on.....

------------------------------------------------------------------------------------------
----------------------------------- Autoexec.cfg LOADING ----------------------------
------------------------------------------------------------------------------------------
Setting mapgroup to 'mg_bomb'
------------------------------------------------------------------------------------------
----------------------------------- Autoexec.cfg LOADED -----------------------------
------------------------------------------------------------------------------------------
============================================= ======
=================== server.cfg LOADING ===================
============================================= ======
=================== server.cfg LOADED ====================
============================================= ======
============================================= ======
=================== gamemode_casual.cfg LOADING ===========
============================================= ======
============================================= ======
=================== gamemode_casual.cfg Loaded LOADED =======
============================================= ======

1) autoexec.cfg runs once at server start then never again
2) server.cfg runs next and then also on every map change
3) then your game mode cfg runs on every map change. For my server it is set up for casual, gamemode_casual.cfg

Try putting your setting at the very botton of your gamemode_????.cfg file and see if it now works.


All times are GMT -4. The time now is 10:56.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.