[Ajuda] Ban em Dialog
#1

Bom Gostaria em por o Banimento em Dialog , Quem poder colocar , Please responde ai precizando urgente:
pawn Код:
format(string, sizeof(string), "AdmCmd: %s Foi Banido por %s, Motivo: %s (%d-%d-%d)", giveplayer, sendername, (result),month,day,year);
                        BanLog(string);
                        format(string, sizeof(string), "AdmCmd: %s Foi Banido por %s, Motivo: %s", giveplayer, sendername, (result));
                        SendClientMessageToAll(COLOR_KICKBAN, string);
                        SendClientMessage(giveplayerid, COLOR_WHITE, "Revisгo de Banimento:");
                        SendClientMessage(giveplayerid, COLOR_YELLOW2, "Tire uma SS da tela apertando F8 imediatamente apуs ser banido");
                        SendClientMessage(giveplayerid, COLOR_YELLOW2, "E acesse o nosso forum: Em breve.");
                        SendClientMessage(giveplayerid, COLOR_LIGHTRED, "Atenзгo: Vocк sу serб desbanido caso nгo tiver cometido severo erro.");
Reply
#2

Deu mais o dialog estб cortando o resto do texto, sabe resolver?
Reply
#3

Nгo, quando chega la em baixo a letra corta 0__0, quer ss pra ver melhor mano? Se quiser eu tiro e posto.
Reply
#4

Tenta aumentar o tamanho da string.
Reply
#5

pawn Код:
if(strcmp(cmd, "/ban", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: /ban [id] [Motivo]");
                return 1;
            }
            giveplayerid = ReturnUser(tmp);
            if (PlayerInfo[playerid][pAdmin] >= 2)
            {
                if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 1340 && PlayerInfo[playerid][pAdmin] != 1341 && PlayerInfo[playerid][pAdmin] != 1342)
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб Trabalhando.");
                    return 1;
                }
                if(IsPlayerConnected(giveplayerid))
                {
                    if(giveplayerid != INVALID_PLAYER_ID)
                    {
                        GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                        GetPlayerName(playerid, sendername, sizeof(sendername));
                        new length = strlen(cmdtext);
                        while ((idx < length) && (cmdtext[idx] <= ' '))
                        {
                            idx++;
                        }
                        new offset = idx;
                        new result[64];
                        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
                        {
                            result[idx - offset] = cmdtext[idx];
                            idx++;
                        }
                        result[idx - offset] = EOS;
                        if(!strlen(result))
                        {
                            SendClientMessage(playerid, COLOR_GRAD2, "USE: /ban [id] [Motivo]");
                            return 1;
                        }
                        getdate(year, month, day);
                        if(admtrampando[playerid] == 1)
                        {
                            pban[playerid] += 1;
                            if(pban[playerid] >= 15)
                            {
                                SBan(playerid, "Baniu mais de 15", "Automatico");
                                return 1;
                            }
                        }
                        BanLog(string);
                        format(string, sizeof(string), "AdmCmd: %s Foi Banido por %s, Motivo: %s (%d-%d-%d)\nRevisгo de Banimento:\nTire uma SS da tela apertando F8 imediatamente apуs ser banido\nE acesse o nosso forum: Em breve.\nAtenзгo: Vocк sу serб desbanido caso nгo tiver cometido severo erro.", giveplayer, sendername, (result),month,day,year);
                        ShowPlayerDialog(playerid, 1235, DIALOG_STYLE_MSGBOX, "Banido",string, "Acesse o", "Fуrum");
                        format(string, sizeof(string), "AdmCmd: %s Foi Banido por %s, Motivo: %s", giveplayer, sendername, (result));
                        SendClientMessageToAll(COLOR_KICKBAN, string);
                        //Ban(giveplayerid);
                        SBan(giveplayerid, result, sendername);
                        return 1;
                    }
                }//not connected
            }
            else
            {
                SendClientMessage(playerid, COLOR_GRAD1, "Esse nгo й um jogador ativo.");
            }
        }
        return 1;
    }
Meu Comando /ban inteiro, se quiserem SS faz ai um outro post pra mim n dar double post =D
Reply
#6

https://sampforum.blast.hk/showthread.php?tid=294087
Reply
#7

Deixei do jeito que vocк fez, a dialog corta, olha ai:

Linck direto: /imageshack/img40/8707/samp809.png
Reply
#8

Mais nгo tem essa linha, pode mostrar onde eu ponho ela no meu cmd /ban?
@EDIT vlw deu certo mano
Reply
#9

A sim, ъltima coisa, a dialog ficou pequena, sabe como aumentar o tamanho dela?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)