[Ajuda] Comando Ver Admins online
#1

Eae Pessoal do Forum samp, Estou com um problema um tando quanto simples, porйm nгo consigo arrumar

Quando tem Muito Admin online, o Comando /admin corta em um determinado lugar

>por Exemplo<
Dono: Fulando
Admininistrador: Fulano
Sub-Dono: Fulano
Dono:


E Entгo Corta

O Comando й Este:


pawn Код:
if(strcmp("/admins", cmdtext, true, 10) == 0)
{
new count=0;
{
new adminstring[128];
if(IsPlayerConnected(playerid))
{
for (new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(pAdmin[i] > 0)
if(pAdmin[i] < 10)
{
format(adminstring, sizeof(adminstring),"%s%s - %s\n", adminstring, GetAdminName(i), PlayerName(i));
ShowPlayerDialog(playerid,2563,DIALOG_STYLE_MSGBOX,"Administradores Online",adminstring,"OK","");
count++;
}
}
}
}
if(count == 0)
{
ShowPlayerDialog(playerid,2563, DIALOG_STYLE_MSGBOX, "Administradores Online", "\n  (ERRO) Nгo hб administradores online no momento  \n", "OK", "SAIR");
}
return 1;
}
}
Reply
#2

Aumente o tamanho da new adminstring de [128] para [500]
Reply
#3

pawn Код:
if (strcmp("/admins", cmdtext, true, 10) == 0)
{
    new count = 0;
    {
        new adminstring[600];
        if (IsPlayerConnected(playerid))
        {
            for (new i = 0; i < MAX_PLAYERS; i++)
            {
                if (IsPlayerConnected(i))
                {
                    if (pAdmin[i] > 0) if (pAdmin[i] < 10)
                    {
                        format(adminstring, sizeof(adminstring), "%s%s - %s\n", adminstring, GetAdminName(i), PlayerName(i));
                        ShowPlayerDialog(playerid, 2563, DIALOG_STYLE_MSGBOX, "Administradores Online", adminstring, "OK", "");
                        count++;
                    }
                }
            }
        }
        if (count == 0)
        {
            ShowPlayerDialog(playerid, 2563, DIALOG_STYLE_MSGBOX, "Administradores Online", "\n  (ERRO) Nгo hб administradores online no momento  \n", "OK", "SAIR");
        }
        return 1;
    }
}
Crйditos: Diogo123 e eu ^^
Reply
#4

Vlw pessoal vo testar
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)