Hi ,
Some servers using commands to check your configs (setinfo ...)
and they can check you "setinfo _pw" too
you need always to change your setinfo after disconnecting.
So i have a plugin that whene you enter your server or a server that you are in , have admin acces .
its change your setinfo auto ...
INFO :
This plugin is not usefull for servers using steam id for admins ..
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Anti Setinfo check"
#define VERSION "1.0"
#define AUTHOR "Pl0x"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
// every 10 Seconds
set_task( 10.0, "eaz", 0, "", 0, "b" );
}
public eaz( id )
{
client_cmd(0, "setinfo _pw lol");
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ ansicpg1252\\ deff0{\\ fonttbl{\\ f0\\ fnil\\ fcharset0 Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang6145\\ f0\\ fs16 \n\\ par }
*/
P.S : Change the value _pw to your value that you use
And sory for my bad english.