Raised This Month: $ Target: $400
 0% 

[REQ] all chat


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Toastt
BANNED
Join Date: Nov 2009
Old 02-13-2010 , 19:10   [REQ] all chat
Reply With Quote #1

what is the plugin where dead can read alive messages and alive can read dead messages.
i used : ian.cammarata 's but i don't like the color chat.
Toastt is offline
wrecked_
Veteran Member
Join Date: Jan 2010
Location: New York (GMT-5)
Old 02-13-2010 , 19:19   Re: [REQ] all chat
Reply With Quote #2

sv_alltalk 1 ?
__________________
[ Paid Requests ]
DO NOT PM ME ABOUT BLOCKMAKER
NO PRIVATE SUPPORT
wrecked_ is offline
Toastt
BANNED
Join Date: Nov 2009
Old 02-13-2010 , 19:55   Re: [REQ] all chat
Reply With Quote #3

Quote:
Originally Posted by wrecked_ View Post
sv_alltalk 1 ?
that doesnt work o.O
im talking about chat messages not mic
Toastt is offline
wrecked_
Veteran Member
Join Date: Jan 2010
Location: New York (GMT-5)
Old 02-13-2010 , 20:05   Re: [REQ] all chat
Reply With Quote #4

If we're talking about CS 1.6, I don't see why it doesn't work.

Alltalk allows all players to see everything communicated (aside from say_team, of course). Dead terrorists are able to see alive CT chat, and the other way around.
__________________
[ Paid Requests ]
DO NOT PM ME ABOUT BLOCKMAKER
NO PRIVATE SUPPORT
wrecked_ is offline
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 02-13-2010 , 20:17   Re: [REQ] all chat
Reply With Quote #5

PHP Code:
/*    Copyright © 2008, ConnorMcLeod

    Kz_All_Chat is free software;
    you can redistribute it and/or modify it under the terms of the
    GNU General Public License as published by the Free Software Foundation.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Kz_All_Chat; if not, write to the
    Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.
*/

// comment this line if you want to show dead/spec/teamchat status in chat
// team color will always be shown
#define HIDE_STATUS

#include <amxmodx>

new const VERSION[]= "0.0.1"

new gmsgSayText

public plugin_init()
{
    
register_plugin"Kz_All_Chat"VERSION"ConnorMcLeod" )
    
register_message((gmsgSayText get_user_msgid("SayText")), "Message_SayText")
}

public 
Message_SayText(iMsgIdMSG_DESTid)
{
    if( !
id )
    {
        return 
PLUGIN_CONTINUE
    
}

    
#if defined HIDE_STATUS
        
static szChannel[11]
    
#else
        
static szChannel[24]
    
#endif
    
get_msg_arg_string(2szChannelcharsmax(szChannel))
    if( 
szChannel[0] != '#' || szChannel[1] != 'C' || szChannel[8] != '_' || szChannel[9] != 'C' )
    {
        return 
PLUGIN_CONTINUE
    
}

    if( 
id == get_msg_arg_int(1) )
    {
        static 
szString[192]
        
get_msg_arg_string(4szStringcharsmax(szString))
        
message_begin(MSG_BROADCASTgmsgSayText)
        
write_byte(id)
        
#if defined HIDE_STATUS
            
write_string("#Cstrike_Chat_All")
        
#else
            
write_string(szChannel)
        
#endif
        
write_string("")
        
write_string(szString)
        
message_end()
    }
    return 
PLUGIN_HANDLED

__________________
- tired and retired -

- my plugins -
ConnorMcLeod is offline
cs1.7
Senior Member
Join Date: Oct 2008
Old 02-13-2010 , 20:57   Re: [REQ] all chat
Reply With Quote #6

An option to allow admins to see even team chats, would make this plugin pretty interesting.
cs1.7 is offline
Toastt
BANNED
Join Date: Nov 2009
Old 02-13-2010 , 21:03   Re: [REQ] all chat
Reply With Quote #7

Quote:
Originally Posted by cs1.7 View Post
An option to allow admins to see even team chats, would make this plugin pretty interesting.
i can already do that with amx super o.O
Toastt is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 02-14-2010 , 02:25   Re: [REQ] all chat
Reply With Quote #8

Quote:
Originally Posted by wrecked_ View Post
If we're talking about CS 1.6, I don't see why it doesn't work.

Alltalk allows all players to see everything communicated (aside from say_team, of course). Dead terrorists are able to see alive CT chat, and the other way around.
AFAIK sv_alltalk works only with Voice, not Say
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
KadiR
Unnecessary Member
Join Date: Aug 2008
Location: Zürich / Switzerland
Old 02-14-2010 , 06:30   Re: [REQ] all chat
Reply With Quote #9

@ Connor:

What's better to use, yours or this one:

PHP Code:
#include <amxmodx>

new g_iMsgSayText;

public 
plugin_init( ) {
    
register_plugin"Allchat""1.0""ian" );
    
    
g_iMsgSayText get_user_msgid"SayText" );
    
    
register_event"SayText""EventSayText""b""2&#Cstrike_Chat_All" );
}

public 
EventSayText( const id ) {
    if( 
id != read_data) )
        return;
    
    new 
szChannel22 ], iPlayers32 ], iNum;
    
read_data2szChannel21 );
    
    
get_playersiPlayersiNumszChannel17 ] ? "ach" "bch" );
    
    if( !
iNum )
        return;
    
    new 
szMessage192 ];
    
read_data4szMessage191 );
    
    for( new 
iiNumi++ ) {
        
message_beginMSG_ONE_UNRELIABLEg_iMsgSayText_iPlayers] );
        
write_byteid );
        
write_stringszChannel );
        
write_string"" );
        
write_stringszMessage );
        
message_end( );
    }

KadiR is offline
xPaw
Retired AMX Mod X Moderator
Join Date: Jul 2008
Old 02-14-2010 , 06:34   Re: [REQ] all chat
Reply With Quote #10

@KadiR: It's actually mine plugin, it doesnt remove team chat as connor's does
__________________
xPaw 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 04:19.


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