You can try something like this (by checking hostname) :
PHP Code:
public CheckServer()
{
static checkhost[64]
get_cvar_string("hostname", checkhost, charsmax(checkhost))
if(containi(checkhost, "BlaBla")==-1)
{
log_amx("This is not a BlaBla server. Server is now shutting down.")
server_cmd("exit")
}
}
PS: Put this in plugin_init or plugin_cfg.
__________________