Подскажите как заблокировать сообщения о убийстве :
Мне нужно для ZP сервера
Пробовал этот плагин :
Code
#define VERSION "2.0"
#include <amxmodx>
#include <amxmisc>
#include <engine>
new enabled_pcvar
new gMsgDeathMsg
public plugin_init()
{
register_plugin("Death Message Disabler",VERSION,"GHW_Chronic")
enabled_pcvar = register_cvar("dmsgson","0")
register_event("DeathMsg","DeathMsg","a")
gMsgDeathMsg = get_user_msgid("DeathMsg")
register_dictionary("GHW_dmsg_disabler.txt")
}
public DeathMsg()
{
if(!get_pcvar_num(enabled_pcvar))
{
set_msg_block(gMsgDeathMsg,BLOCK_ONCE)
new attacker = read_data(1)
new victim = read_data(2)
if(victim!=attacker && attacker && victim)
{
new killername[32]
get_user_name(attacker,killername,31)
new victimname[32]
get_user_name(victim,victimname,31)
//client_print(attacker,print_chat,"[AMXX] %L",attacker,"MSG_KILL",killername)
//client_print(victim,print_chat,"[AMXX] %L",attacker,"MSG_KILLED",victimname)
}
}
}
Но он почему то не всё блокирует . Когда убивает\заражает зомби - пишется , а если человек убивает зомби то нет .