Code:
#include < amxmodx >
new const UrlFile[ ] = "http://www.cite.com/text.txt"
public plugin_init( )
{
register_clcmd( "say /readfile" , "ClientCommand_ReadFile" )
}
public ClientCommand_ReadFile( id )
{
show_motd( id , UrlFile )
}
You can try this, but replace the url of your site in the constant. (line 3)
__________________