don't think so you can also put a hyper link to help2
this is a pretty good code too
Code:
<amxmodx>
public say_help(id)
{
show_motd(id, "addons/amxmodx/configs/help.txt", "Help")
return PLUGIN_HANDLED
}
public plugin_init()
{
register_plugin("say /help", "0.1", "Nightscream")
register_clcmd("say /help", "say_help")
}
__________________