Code:
#include <amxmodx>
#include <orpheu>
public plugin_init()
{
OrpheuRegisterHook(OrpheuGetFunction("Log_Printf"), "OnLog_Printf");
}
public OrpheuHookReturn:OnSLog_Printf()
{
new args[192]; read_args(args, 191);
log_amx("NEW: %s", args);
}
Result: [ORPHEU] Function "Log_Printf" not found