Okay, this was a weird one.
1. T(+)rget is right, however, this was one of the few functions not implemented in Fakemeta, probably because it's a weird one (uses varargs). It's added now.
2. I don't want to make register_logevent blockable. plugin_log, however, is now blockable. If you want to use the two in combination, you can do this:
Code:
new blockLog = 0
public log_event_thing()
{
blockLog = 1
}
public plugin_log()
{
if (blockLog)
{
blockLog = 0
return PLUGIN_HANDLED
}
return PLUGIN_CONTINUE
}
__________________