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

3 Questions


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
farhanhyper
Member
Join Date: Dec 2017
Location: Finland
Old 12-25-2017 , 16:57   3 Questions
Reply With Quote #1

Hi,

I have a cs 1.6 server
I have 3 questions:

1.Some players while they join to my server it shows [BPP] in their names,How can I fix this problem that never show [BPP]?
2.When players dead they can talk to other players,I want to dead players cant talk.please suggest me a plugin or write source of its .sma
3.Admins can see other teams say and say_team I want to nobody can see other teams say and say_team.

please help me to resolve those problems,thank you so much
farhanhyper is offline
tarsisd2
Veteran Member
Join Date: Feb 2016
Location: brazil
Old 12-25-2017 , 22:55   Re: 3 Questions
Reply With Quote #2

Quote:
Originally Posted by farhanhyper View Post
Hi,

I have a cs 1.6 server
I have 3 questions:

1.Some players while they join to my server it shows [BPP] in their names,How can I fix this problem that never show [BPP]?
2.When players dead they can talk to other players,I want to dead players cant talk.please suggest me a plugin or write source of its .sma
3.Admins can see other teams say and say_team I want to nobody can see other teams say and say_team.

please help me to resolve those problems,thank you so much
1 - give us what plugins you are using so we can figure out which plugin is doing that, type on console amx_plugins and give us full plugin list

2 - use this
PHP Code:
#include <amxmodx> 
#include <fakemeta> 

new amx_deadtalk

public 
plugin_init() 

    
register_plugin("[CS] Dead Alltalk""0.1""Exolent"); 
     
    
register_forward(FM_Voice_SetClientListening"fwdSetVoice"false); 
     
    
amx_deadtalk register_cvar("amx_deadtalk""1"); 
     
    return 
PLUGIN_CONTINUE


public 
fwdSetVoice(receiversenderbool:bListen

    if( !
get_pcvar_num(amx_deadtalk) || receiver == sender || !is_user_connected(receiver) || !is_user_connected(sender) ) 
    { 
        return 
FMRES_IGNORED
    } 

    if( !
is_user_alive(receiver) && !is_user_alive(sender) && get_user_team(receiver) != get_user_team(sender) ) 
    { 
        
engfunc(EngFunc_SetClientListeningreceiversender1); 

        return 
FMRES_SUPERCEDE
    } 
     
    return 
FMRES_IGNORED

3 - Those chat colors plugins does that, but thers always a cvar to disable that option, give us what plugins you are using so we can figure out which plugin is doing that, type on console amx_plugins and give us full plugin list

Edit: if number 2 - dead players can talk to each other and you want to disable, remove deadtalk plugin, or type on console amx_plugins and give us full plugin list

looks like you rented a server with a lot o plugins and stuff on already thats bad, since you don't understand much about it

Last edited by tarsisd2; 12-25-2017 at 22:59. Reason: look edit:
tarsisd2 is offline
Old 12-26-2017, 03:13
farhanhyper
This message has been deleted by farhanhyper.
farhanhyper
Member
Join Date: Dec 2017
Location: Finland
Old 12-26-2017 , 06:29   Re: 3 Questions
Reply With Quote #3

Quote:
Originally Posted by tarsisd2 View Post
1 - give us what plugins you are using so we can figure out which plugin is doing that, type on console amx_plugins and give us full plugin list

2 - use this
PHP Code:
#include <amxmodx> 
#include <fakemeta> 

new amx_deadtalk

public 
plugin_init() 

    
register_plugin("[CS] Dead Alltalk""0.1""Exolent"); 
     
    
register_forward(FM_Voice_SetClientListening"fwdSetVoice"false); 
     
    
amx_deadtalk register_cvar("amx_deadtalk""1"); 
     
    return 
PLUGIN_CONTINUE


public 
fwdSetVoice(receiversenderbool:bListen

    if( !
get_pcvar_num(amx_deadtalk) || receiver == sender || !is_user_connected(receiver) || !is_user_connected(sender) ) 
    { 
        return 
FMRES_IGNORED
    } 

    if( !
is_user_alive(receiver) && !is_user_alive(sender) && get_user_team(receiver) != get_user_team(sender) ) 
    { 
        
engfunc(EngFunc_SetClientListeningreceiversender1); 

        return 
FMRES_SUPERCEDE
    } 
     
    return 
FMRES_IGNORED

3 - Those chat colors plugins does that, but thers always a cvar to disable that option, give us what plugins you are using so we can figure out which plugin is doing that, type on console amx_plugins and give us full plugin list

Edit: if number 2 - dead players can talk to each other and you want to disable, remove deadtalk plugin, or type on console amx_plugins and give us full plugin list

looks like you rented a server with a lot o plugins and stuff on already thats bad, since you don't understand much about it
My server is a Match server and about number 1 its [16BPP] I asked others and they said that it refers to SXE Injected.

about number 2 Yes,I want to disable deadtalk,but I can find its plugin.

These plugins that I installed:
fast_sniper_switch.amxx
accuracy_fix.amxx
admin_chat_colors.amxx
multifastdl.amxx
weapon_icon.amxx
gamenamechanger.amxx
admins_manager.amxx
slash-commands.amxx
sxe_injected.amxx
sxe_screen.amxx
sxeban.amxx
ucp_menu.amxx
unbanmenu.amxx
amx_super-menu.amxx
GHW_Weapon_Replacement.amxx
dp_test.amxx
updatehint.amxx
show_teammates_money.amxx
amx_super-serious.amxx
BombDefSound.amxx
backweapons.amxx
bad_camper.amxx
bet.amxx

Admin Base 1.8.2 AMXX Dev Team admin.amxx running
Admin Commands 1.8.2 AMXX Dev Team admincmd.amxx running
Admin Help 1.8.2 AMXX Dev Team adminhelp.amxx running
Slots Reservation 1.8.2 AMXX Dev Team adminslots.amxx running
Multi-Lingual Sys 1.8.2 AMXX Dev Team multilingual.am running
Menus Front-End 1.8.2 AMXX Dev Team menufront.amxx running
Commands Menu 1.8.2 AMXX Dev Team cmdmenu.amxx running
Players Menu 1.8.2 AMXX Dev Team plmenu.amxx running
Maps Menu 1.8.2 AMXX Dev Team mapsmenu.amxx running
Plugin Menu 1.8.2 AMXX Dev Team pluginmenu.amxx running
farhanhyper is offline
tarsisd2
Veteran Member
Join Date: Feb 2016
Location: brazil
Old 12-26-2017 , 10:40   Re: 3 Questions
Reply With Quote #4

Quote:
Originally Posted by farhanhyper View Post
My server is a Match server and about number 1 its [16BPP] I asked others and they said that it refers to SXE Injected.

about number 2 Yes,I want to disable deadtalk,but I can find its plugin.

These plugins that I installed:
fast_sniper_switch.amxx
accuracy_fix.amxx
admin_chat_colors.amxx
multifastdl.amxx
weapon_icon.amxx
gamenamechanger.amxx
admins_manager.amxx
slash-commands.amxx
sxe_injected.amxx
sxe_screen.amxx
sxeban.amxx
ucp_menu.amxx
unbanmenu.amxx
amx_super-menu.amxx
GHW_Weapon_Replacement.amxx
dp_test.amxx
updatehint.amxx
show_teammates_money.amxx
amx_super-serious.amxx
BombDefSound.amxx
backweapons.amxx
bad_camper.amxx
bet.amxx

Admin Base 1.8.2 AMXX Dev Team admin.amxx running
Admin Commands 1.8.2 AMXX Dev Team admincmd.amxx running
Admin Help 1.8.2 AMXX Dev Team adminhelp.amxx running
Slots Reservation 1.8.2 AMXX Dev Team adminslots.amxx running
Multi-Lingual Sys 1.8.2 AMXX Dev Team multilingual.am running
Menus Front-End 1.8.2 AMXX Dev Team menufront.amxx running
Commands Menu 1.8.2 AMXX Dev Team cmdmenu.amxx running
Players Menu 1.8.2 AMXX Dev Team plmenu.amxx running
Maps Menu 1.8.2 AMXX Dev Team mapsmenu.amxx running
Plugin Menu 1.8.2 AMXX Dev Team pluginmenu.amxx running
1 - put this on your server.cfg with sxe config
PHP Code:
__sxei_16bpp 0
__sxei_16bppshow 0 
2 - amx_super does that, go to config, find amx_super.cfg and change
PHP Code:
amx_deadchat 1 to
amx_deadchat 0 
3 - Admin Chat Colors is doing that, add this cvar to amxx.cfg

PHP Code:
amx_listen 0 
that should fix your problems, you have a match server and have so much 4fun plugins, in my country we use none 4fun plugins, so the game run smooth as possible
tarsisd2 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 03:04.


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