AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Need Help! /admins (in numbers and name) (https://forums.alliedmods.net/showthread.php?t=209371)

wizz 02-24-2013 16:16

Need Help! /admins (in numbers and name)
 
I have plugin what is showing admins online if type /admins but i wanna to see in numbers too how many admins only like here :http://www.upload.ee/image/3099593/aa.png
Greetings from Estonia :)
Thanks

Here is my admins.sma
_____________________________________________ ________
#include <amxmodx>

/*---------------EDIT ME------------------*/
#define ADMIN_CHECK ADMIN_BAN

static const COLOR[] = "^x04" //green
static const CONTACT[] = ""
/*----------------------------------------*/

new maxplayers
new gmsgSayText

public plugin_init() {
register_plugin("Admin Check", "1.51", "OneEyed")
maxplayers = get_maxplayers()
gmsgSayText = get_user_msgid("SayText")
register_clcmd("say", "handle_say")
register_cvar("amx_contactinfo", CONTACT, FCVAR_SERVER)
}

public handle_say(id) {
new said[192]
read_args(said,192)
if( ( containi(said, "who") != -1 && containi(said, "admin") != -1 ) || contain(said, "/admin") != -1 )
set_task(0.1,"print_adminlist",id)
return PLUGIN_CONTINUE
}

public print_adminlist(user)
{
new adminnames[33][32]
new message[256]
new contactinfo[256], contact[112]
new id, count, x, len

for(id = 1 ; id <= maxplayers ; id++)
if(is_user_connected(id))
if(get_user_flags(id) & ADMIN_CHECK)
get_user_name(id, adminnames[count++], 31)

len = format(message, 255, "%s Adminid serveris : ",COLOR)
if(count > 0) {
for(x = 0 ; x < count ; x++) {
len += format(message[len], 255-len, "%s%s ", adminnames[x], x < (count-1) ? ", ":"")
if(len > 96 ) {
print_message(user, message)
len = format(message, 255, "%s ",COLOR)
}
}
print_message(user, message)
}
else {
len += format(message[len], 255-len, "Admineid pole sees.")
print_message(user, message)
}

get_cvar_string("amx_contactinfo", contact, 63)
if(contact[0]) {
format(contactinfo, 111, "%s Serveri peaadmin -- %s", COLOR, contact)
print_message(user, contactinfo)
}
}
print_message(id, msg[]) {
message_begin(MSG_ONE, gmsgSayText, {0,0,0}, id)
write_byte(id)
write_string(msg)
message_end()
}

EDUTz 02-26-2013 03:25

Re: Need Help! /admins (in numbers and name)
 
Code:

len = format(message, 255, "%s Adminid serveris : ",COLOR)
---->
Code:

len = format(message, 255, "%s %i Adminid serveris : ",COLOR, count)

hornet 02-26-2013 06:26

Re: Need Help! /admins (in numbers and name)
 
Wizz your going to get a lot more help if you actually wrap your code in tags and indent it.

wizz 02-26-2013 15:23

Re: Need Help! /admins (in numbers and name)
 
Quote:

Originally Posted by EDUTz (Post 1902160)
Code:

len = format(message, 255, "%s Adminid serveris : ",COLOR)
---->
Code:

len = format(message, 255, "%s %i Adminid serveris : ",COLOR, count)

Thank you so much :)

YamiKaitou 02-26-2013 19:37

Re: Need Help! /admins (in numbers and name)
 
Post restored, do not blank your posts as stated in the Forum Rules


All times are GMT -4. The time now is 21:42.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.