Kód:
/* Fisier descarcat de pe www.eXtreamCS.com ! */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Admins Online"
#define VERSION "1.0"
#define AUTHOR "Alka"
new maxplayers;
new admincvar;
public plugin_init() {
register_plugin( PLUGIN, VERSION, AUTHOR );
set_task( 2.0, "adminsonline", 0, "", 0, "b" );
maxplayers = get_maxplayers()
admincvar = register_cvar("amx_showadmins","1");
}
public adminsonline() {
new id, count
for(id = 1 ; id <= maxplayers ; id++)
if(is_user_connected(id))
if(get_user_flags(id) & ADMIN_KICK)
count++
if(get_pcvar_num(admincvar) ==1)
{
if (count>0)
{
if (count==1) {
set_hudmessage(0,255, 0, 0.15, 0.00, 0, 6.0, 3700.0 );
show_hudmessage(0, "Jelenleg %d admin van fent az XXYY klanbol!",count );
}
else {
set_hudmessage(0,255, 0, 0.15, 0.00, 0, 6.0, 3700.0 );
show_hudmessage(0, "Jelenleg %d admin van fent az XXYY klanbol!",count );
}
}
else
{
set_hudmessage(255, 0, 0, 0.15, 0.00, 0, 6.0, 3700.0 );
show_hudmessage(0, "Jelenleg nincs fent admin az XXYY klanbol!",count );
}
}
}
Ahova írtam az XXYY-os részt oda irod a klan neved. (ékezet nélkül) és itt átkonvertálhatod:
http://www.amxmodx.org/webcompiler.cgiszólj ha kell még valami!

További szép napot!