This will remove "Only 1 Team Change Is allowed" message:
PHP Code:
#include < amxmodx >
public plugin_init( )
{
register_plugin( "HookChooseTeam", "1.0", "Radiance" )
register_message( get_user_msgid( "TextMsg" ), "MessageSayText" )
}
public MessageSayText( )
{
new szMsgInfo[ 32 ]
get_msg_arg_string( 2, szMsgInfo, sizeof ( szMsgInfo ) - 1 )
if ( equali( szMsgInfo, "#Only_1_Team_Change" ) )
return PLUGIN_HANDLED
return PLUGIN_CONTINUE
}