hey people,
as blocking of logmessages is possible now, i'd like to use
that to block "suicides" after someone got killed by a gun with less
than 100 damage. (gets damage and then "user_kill")
bailopan posted a help:
Code:
new blockLog = 0
public log_event_thing()
{
blockLog = 1
}
public plugin_log()
{
if (blockLog)
{
blockLog = 0
return PLUGIN_HANDLED
}
return PLUGIN_CONTINUE
}
but i don't understand it
sorry for my ignorance, but is anyone here that can tell me how
to block a suiced log with it?
thanks for your help.