Hi, not sure if this is the right place.
I'm using orpheu v2.6.3 and I'm trying to use the SV_Rcon function whenever some user uses rcon in the server. While in windows it seems to work, on linux it doesn't, neither in 1.8.2 nor 1.8.3.
Idk if it's a signature problem since the linux value is always "SV_Rcon".
I use the SV_Rcon_Validate too in the same plugin/server and that one works though.
PHP Code:
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
OrpheuRegisterHook(OrpheuGetFunction("SV_Rcon"), "On_Rcon_Pre", OrpheuHookPre)
}
public On_Rcon_Pre(p_Address)
{
//client_print(0, print_chat, "asdasdasdadadads")
g_Address = p_Address
}