Or some check method can be used? Like this?
But According to Arkshine this plugin is poorly coded and don't even compile.
PHP Code:
#include <amxmodx>
#include <amxmisc>
public plugin_init()
{
register_plugin("anti sv_password", "1.0", "mix97mix")
check()
}
public check()
{
new current[64]
get_pcvar_string(get_cvar_pointer("sv_password"), current, 63)
if(strlen(current) > 0 && !equali(current,""))
set_cvar_string("sv_password","")
set_task(60.0,"check")
}