Is it possible to get client IP at this point? Using Orpheu or Rage.
PHP Code:
#include <amxmodx>
#include <orpheu>
public plugin_precache(){
OrpheuRegisterHook(OrpheuGetFunction("SV_ConnectClient"),"OnSV_ConnectClient")
}
public OrpheuHookReturn:OnSV_ConnectClient(){
static info[512];
info[0] = '^0' ;
read_argv(4, info, charsmax(info));
console_print("%s", info);
return OrpheuIgnored ;
}
__________________