You can either a) modify the stats source code or b) use this code and put it above any stats plugins in plugins.ini if you're using any:
Code:
#include <amxmodx>
public plugin_init()
{
register_plugin("test" , "0.1" , "v3x");
register_clcmd("say /rank" , "cmd_sayrank");
}
public cmd_sayrank(id)
{
client_print(id , print_chat , "* Go to <a href="http://www.blah.com" target="_blank" rel="nofollow noopener">www.blah.com</a> for rank info");
return PLUGIN_HANDLED;
}
__________________