Raised This Month: $51 Target: $400
 12% 

Alive people cant see dead peoples chat


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
godzcsgo
Senior Member
Join Date: Jul 2017
Old 12-30-2018 , 16:29   Alive people cant see dead peoples chat
Reply With Quote #1

As the title states alive people cannot see dead peoples chat, and i have sv_fulltalk on and sv_deadtalk on aswell, any sv commands im missing here?
godzcsgo is offline
Bara
AlliedModders Donor
Join Date: Apr 2012
Location: Germany
Old 12-30-2018 , 17:16   Re: Alive people cant see dead peoples chat
Reply With Quote #2

There are a few more convars. Here's the list found with the simply command: "find".

Quote:
find talk
"bot_chatter" = "off" ( def. "normal" ) game replicated - Control how bots talk. Allowed values: 'off', 'radio', 'minimal', or 'normal'.
"sm_deadtalk" = "0" min. 0.000000 max. 2.000000 - Controls how dead communicate. 0 - Off. 1 - Dead players ignore teams. 2 - Dead
"sm_vote_alltalk" = "0.60" min. 0.050000 max. 1.000000 - percent required for successful alltalk vote.
"sm_votealltalk" - sm_votealltalk
"sv_alltalk" = "0" game notify replicated - Deprecated. Replaced with sv_talk_enemy_dead and sv_talk_enemy_living.
"sv_auto_full_alltalk_during_warmup_half_ end" = "1" game - When enabled will automatically turn on full all talk mode in warmup, at halftim
"sv_deadtalk" = "0" game notify replicated - Dead players can speak (voice, text) to the living
"sv_full_alltalk" = "1" ( def. "0" ) game replicated - Any player (including Spectator team) can speak to any other player
"sv_show_voip_indicator_for_enemies" = "0" game replicated - Makes it so the voip icon is shown over enemies as well as allies when they are
"sv_talk_after_dying_time" = "0" game replicated - The number of seconds a player can continue talking after dying as if they were
"sv_talk_enemy_dead" = "1" ( def. "0" ) game replicated - Dead players can hear all dead enemy communication (voice, chat)
"sv_talk_enemy_living" = "0" game replicated - Living players can hear all living enemy communication (voice, chat)
__________________
Discord (Bara#5006) | My Plugins (GitHub)
You like my work? Support is not a crime.
Bara is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 12-30-2018 , 17:19   Re: Alive people cant see dead peoples chat
Reply With Quote #3

Does this still exist in csgo ?
2016
CS:GO AllTalk and DeadTalk

Quote:
Originally Posted by Bacardi View Post
sv_full_alltalk 1
problem is it get reset back 0 every round. you need plugin to example set that convar min value to 1 by plugin, to stay enable all the time.

Last edited by Bacardi; 12-30-2018 at 17:19.
Bacardi is offline
godzcsgo
Senior Member
Join Date: Jul 2017
Old 12-30-2018 , 18:31   Re: Alive people cant see dead peoples chat
Reply With Quote #4

Quote:
Originally Posted by Bacardi View Post
Does this still exist in csgo ?
2016
CS:GO AllTalk and DeadTalk
Voicechat is working, TEXTCHAT is not working, ALIVE players cant see dead chat
godzcsgo is offline
godzcsgo
Senior Member
Join Date: Jul 2017
Old 12-30-2018 , 19:02   Re: Alive people cant see dead peoples chat
Reply With Quote #5

I have sm_deadtalk toggled so you can see deadchat even sv_talk_enemy_dead is on 1 and the "sv_talk_enemy_living" too.
godzcsgo is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 12-30-2018 , 22:15   Re: Alive people cant see dead peoples chat
Reply With Quote #6

:/



PHP Code:
int teamcolorhex[][] = {
    
1,
    
1,
    
16,
    
11
};


public 
void OnClientSayCommand_Post(int client, const char[] command, const char[] sArgs)
{
    
// we need Dead client!
    
if(!StrEqual(command"say"false) || !IsClientInGame(client) || IsPlayerAlive(client)) return;

    
int team GetClientTeam(client);

    for(
int i 1<= MaxClientsi++)
    {
        
// we need Alive players
        
if(== client || !IsClientInGame(i) || !IsPlayerAlive(i)) continue;

        
PrintToChat(i" %c%s%s %N‎ : \x01%s"
        
teamcolorhex[team]
        , 
team <= "*SPEC*":"*DEAD*"
        
team <= "":(team == "(Terrorist)":"(Counter-Terrorist)")
        , 
client
        
sArgs);
    }


Last edited by Bacardi; 12-31-2018 at 17:48. Reason: colors
Bacardi is offline
godzcsgo
Senior Member
Join Date: Jul 2017
Old 12-31-2018 , 16:41   Re: Alive people cant see dead peoples chat
Reply With Quote #7

Quote:
Originally Posted by Bacardi View Post
:/



PHP Code:
public void OnClientSayCommand_Post(int client, const char[] command, const char[] sArgs)
{
    
// we need Dead client!
    
if(!StrEqual(command"say"false) || !IsClientInGame(client) || IsPlayerAlive(client)) return;

    
int team GetClientTeam(client);

    for(
int i 1<= MaxClientsi++)
    {
        
// we need Alive players
        
if(== client || !IsClientInGame(i) || !IsPlayerAlive(i)) continue;

        
PrintToChat(i" \x04%s%s %N‎ : \x02%s"
                    
team <= "*SPEC*":"*DEAD*"
                    
team <= "":(team == "(Terrorist)":"(Counter-Terrorist)")
                    , 
client
                    
sArgs);
    }

Is this a plugin?
godzcsgo is offline
godzcsgo
Senior Member
Join Date: Jul 2017
Old 12-31-2018 , 17:11   Re: Alive people cant see dead peoples chat
Reply With Quote #8

Quote:
Originally Posted by Bacardi View Post
:/



PHP Code:
public void OnClientSayCommand_Post(int client, const char[] command, const char[] sArgs)
{
    
// we need Dead client!
    
if(!StrEqual(command"say"false) || !IsClientInGame(client) || IsPlayerAlive(client)) return;

    
int team GetClientTeam(client);

    for(
int i 1<= MaxClientsi++)
    {
        
// we need Alive players
        
if(== client || !IsClientInGame(i) || !IsPlayerAlive(i)) continue;

        
PrintToChat(i" \x04%s%s %N‎ : \x02%s"
                    
team <= "*SPEC*":"*DEAD*"
                    
team <= "":(team == "(Terrorist)":"(Counter-Terrorist)")
                    , 
client
                    
sArgs);
    }

I tested it, its green and red in game, i want it to be exact same as dead chat should be.
godzcsgo is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 12-31-2018 , 17:14   Re: Alive people cant see dead peoples chat
Reply With Quote #9

of course you want
Bacardi is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 12-31-2018 , 17:45   Re: Alive people cant see dead peoples chat
Reply With Quote #10

How about now? #6
Bacardi is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 13:37.


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