[HELP]how to get /admins info
#8

Quote:
Originally Posted by Luis-
View Post
Should work...
This will show only an administrator, what he said Calvin is correct, you'll need to use "strcat".

Quote:
Originally Posted by ATGOggy
View Post
This will work:
Your code might only show 4 or 5 administrators and although there is no connected administrators will display the dialog without information about this.


PHP Code:
CMD:admins(playeridparams[])
{
    
#pragma unused params
    //..
    
new string[41*12], name[24], sformat[41], admins// string[41*12] = max 12 admins show in dialog.
    //..
    
for(new i!= MAX_PLAYERSi++)
    {
        if(
IsPlayerConnected(i))
        {
            if(
PlayerInfo[i][pAdmin] >= 1)
            {
                
GetPlayerName(inamesizeof(name));
                
format(sformatsizeof(sformat), "* %s Level %d.\n"namePlayerInfo[i][pAdmin]);
                
strcat(stringsformat);
                
admins admins+1;
            }
        }
    }
    if(
admins 1)
        
ShowPlayerDialog(playeriddialogidDIALOG_STYLE_MSGBOX"Info admins""There are no administrators connected.""accept""exit");
    else if(
admins >= 1)
        
ShowPlayerDialog(playeriddialogidDIALOG_STYLE_MGSBOX"Info admins"string"accept""exit");
    return 
true;

This will show maximum 12 administrators, if you want to add more simply change this.

PHP Code:
new string[41*12]; // (12) 
Reply


Messages In This Thread
[HELP]how to get /admins info - by fuckingcruse - 16.03.2015, 16:40
Re: [HELP]how to get /admins info - by Luis- - 16.03.2015, 16:49
Re: [HELP]how to get /admins info - by CalvinC - 16.03.2015, 16:52
Re: [HELP]how to get /admins info - by Luis- - 16.03.2015, 16:53
Re: [HELP]how to get /admins info - by ATGOggy - 16.03.2015, 16:56
Re: [HELP]how to get /admins info - by Luis- - 16.03.2015, 16:58
Re: [HELP]how to get /admins info - by ATGOggy - 16.03.2015, 17:00
Respuesta: Re: [HELP]how to get /admins info - by JuanStone - 16.03.2015, 17:05
Re: [HELP]how to get /admins info - by Luis- - 16.03.2015, 17:05
Re: [HELP]how to get /admins info - by ATGOggy - 16.03.2015, 17:08
Re: [HELP]how to get /admins info - by fuckingcruse - 17.03.2015, 03:03
Re: [HELP]how to get /admins info - by ATGOggy - 17.03.2015, 08:06

Forum Jump:


Users browsing this thread: 3 Guest(s)