Register a cvar with:
PHP Code:
register_cvar(PLUGIN, VERSION, FCVAR_SPONLY|FCVAR_SERVER)
then you have a new server variable and you can search it on
http://www.game-monitor.com/
Example:
PHP Code:
new PLUGIN[] = "SuperPlugin"
new AUTHOR[] = "Schwabba"
new VERSION[] = "1.0"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_cvar(PLUGIN, VERSION, FCVAR_SPONLY|FCVAR_SERVER)
}
Then you can search for server variable: SuperPlugin.