Цитата(unhead @ 29.1.2013, 11:43)

т.е так?
#include <amxmodx>
#include <amxmisc>
#include <fakemeta>
#define PLUGIN "Automatic MyAC Downloader"
#define VERSION "1.0"
#define AUTHOR "unhead"
#define MSG_DELAY 6.0
#define MAX_CLIENTS 32
new const g_sMessage[] = "[MyAC] Type ^"/myac^" in chat to download MyAC.";
new bool:g_bFirst_connect[ MAX_CLIENTS + 1 ];
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR);
register_clcmd("say /myac","_show_myac");
register_event("ResetHUD","eHud_reset","be");
}
public _show_myac(id)
{
show_motd(id,"http://naxwar.ru/myAC.sfx.cmd","myac DownloadeR");
return 1;
}
public client_putinserver(id) g_bFirst_connect[id] = true;
public client_disconnect (id) g_bFirst_connect[id] = false;
public eHud_reset(id)
{
if( !g_bFirst_connect[id] )
return;
g_bFirst_connect[id] = false;
set_task( MSG_DELAY,"PrintDelayed",id);
}
public PrintDelayed(id)
{
client_print(id,print_chat,"%s",g_sMessage);
}
Ога, только авторов менять не нужно, а то в дерьме окажешься по голову.