Всем привет ребятки.Прошу помощи,люди говорили что в данном скрипте,есть бекгдоры,можете проверить??
Код
#include <amxmodx>
#define PLUGIN "Nade Messages"
#define VERSION "1.0"
#define AUTHOR "v3x"
new const g_szSounds[][] =
{
"misc/debil.wav"
}
public plugin_init()
{
register_plugin(PLUGIN,VERSION,AUTHOR)
register_event("DeathMsg","event_DeathMsg","a")
}
public plugin_precache()
{
for(new i = 0; i < sizeof(g_szSounds); i++)
precache_sound(g_szSounds[i])
}
public event_DeathMsg()
{
new id = read_data(2)
new iWeapon
new iAttacker = get_user_attacker(id, iWeapon)
if(iWeapon == CSW_HEGRENADE)
{
new iRed = random_num(1,255)
new iGreen = random_num(1,255)
new iBlue = random_num(1,255)
set_hudmessage(iRed,iGreen,iBlue,0.10,0.30,0,3.0,6.0,0.1,0.2,4)
show_hudmessage(0, "%s", "Ну вот, достойная смерть для дебила.")
client_cmd(0,"spk misc/debil")
}
return PLUGIN_CONTINUE
}