AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugin/Gameplay Ideas and Requests (https://forums.alliedmods.net/forumdisplay.php?f=60)
-   -   [REQ] Disable CS:GO Global Mute (https://forums.alliedmods.net/showthread.php?t=333974)

hijacked 08-21-2021 06:46

[REQ] Disable CS:GO Global Mute
 
Hello,

im searching for a long time for this, but I didn't found anything.

Is it possible to remove a mute punishment from CS:GO on my Community Server?

Thank you guys :)

FAQU 08-21-2021 08:41

Re: [REQ] Disable CS:GO Global Mute
 
I assume you're talkin about the automatic mute issued by Valve.

sm_cvar sv_mute_players_with_social_penalties 0

Teamkiller324 08-29-2021 17:56

Re: [REQ] Disable CS:GO Global Mute
 
1 Attachment(s)
This is a plugin that simply just disables the development-only flag for the cvar, allowing you to change it without needing 'sm_cvar' command to change the cvar's value.

PHP Code:

#pragma        semicolon    1
#pragma        newdecls    required

public    Plugin    myinfo    =
{
    
name        =    "[CS:GO] sv_mute_players_with_social_penalties Cvar Unlock",
    
author        =    "https://steamcommunity.com/id/Teamkiller324",
    
description    =    "Unlocks the cvar",
    
version        =    "0.1",
    
url            =    "https://steamcommunity.com/id/Teamkiller324"
}

public 
void OnPluginStart()
{
    if(
GetEngineVersion() != Engine_CSGO)
    {
        
ThrowError("CS:GO Only");
    }
    
    
ConVar cvar FindConVar("sv_mute_players_with_social_penalties");
    
    
int flags cvar.Flags;
    
    
flags &= ~FCVAR_DEVELOPMENTONLY;
    
    
cvar.Flags flags;



hijacked 08-30-2021 11:42

Re: [REQ] Disable CS:GO Global Mute
 
Thank you both for helping me :D

mark7807 08-24-2022 19:09

Re: [REQ] Disable CS:GO Global Mute
 
I think valve broke this, anyone able to fix?:mrgreen:

Bacardi 08-24-2022 21:40

Re: [REQ] Disable CS:GO Global Mute
 
What is exactly broken ?
Does it have to do with avatars ?

dunno

https://blog.counter-strike.net/inde...2022/08/39352/
Quote:

[ MISC ]
– Added a message on the main menu for players whose inventory is reaching full capacity.
– Awarded “10 Year Birthday Coin” items to players whose inventory was at full capacity and did not receive a drop during the birthday week.
– Users without Prime Account Status can only invite Steam friends to a party lobby.
– Users without Prime Account Status see a limited profile view when inspecting non-friend accounts.
– Blocked player avatars will now display one of a set of premade custom avatars instead of a no-avatar-outline.

– Fixed Steam Controller input overlay mismatch during warmup.

mark7807 08-24-2022 22:20

Re: [REQ] Disable CS:GO Global Mute
 
Quote:

Originally Posted by Bacardi (Post 2787334)
What is exactly broken ?
Does it have to do with avatars ?

dunno

https://blog.counter-strike.net/inde...2022/08/39352/

Hmm.

Either I made a false alarm, or the recent 7MB or so patch fixed something to do with it.

Thanks for the response regardless :mrgreen:

Edit: When it wasn't working, it was just showing Enemy <colour> + the usual shaded out mute icon on the question-mark avatar.


All times are GMT -4. The time now is 20:40.

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