[FilterScript] Sistema de anuncios em DIALOG
#1

Pedido por Duduww

Nao estou em casa, estou no curso KKK

Forum Samp em todo local. u.u

Nao tirei SS, pelo motivo de estar no curso, apenas baixei o PWN e o Fiz.

FS bom, 60 SEG para mandar o anuncio e o texto й escrito em DIALOG.

Fiz na boa. Tenho certeza que nao tem BUG nenhum.

pawn Код:
#include <a_samp>
#include <zcmd>

new Anunciou;

new Nome[24];
new Fala[256];

public OnPlayerDialogResponse(playerid,dialogid,response,listitem,inputtext[])
{
    if(dialogid == 1457)
    {
        if(response)
        {
            if(!strlen(inputtext))
            {
                ShowPlayerDialog(playerid,1457,"Anuncio","Coloque o Texto do Anuncio","Anunciar","Cancelar");
                return 1;
            }
            else
            {
                GetPlayerName(playerid,Nome,sizeof(Nome));
                format(Fala,sizeof(Fala),"Anuncio: %s, por: %s, ID %d.",inputtext,Nome,playerid);
                SetTimer("PodeAnunciar",60000,0);
                return 1;
            }
        }
        else
        {
            Anunciou = 0;
            return 1;
        }
    }
    return 1;
}

forward PodeAnunciar();

public PodeAnunciar()
{
    SendClientMessageToAll(0xBFBFBFAA,"Anuncio liberado, use /anuncio.");
    Anunciou = 0;
    return 1;
}

CMD:anuncio(playerid,params[])
{
    if(Anunciou == 0)
    {
        Anunciou = 1;
        ShowPlayerDialog(playerid,1457,"Anuncio","Coloque o Texto do Anuncio","Anunciar","Cancelar");
        return 1;
    }
    else
    {
        SendClientMessage(playerid,0xBFBFBFAA,"Jб anunciaram, espere 1 minuto.");
        return 1;
    }
}
Reply


Messages In This Thread
Sistema de anuncios em DIALOG - by BielCOP - 23.11.2012, 17:10
Re: Sistema de anuncios em DIALOG - by Ouro - 23.11.2012, 17:13
Re: Sistema de anuncios em DIALOG - by BielCOP - 23.11.2012, 17:14
Re: Sistema de anuncios em DIALOG - by Maklister - 23.11.2012, 17:18
Re: Sistema de anuncios em DIALOG - by Zona_Sky - 23.11.2012, 17:19
Re: Sistema de anuncios em DIALOG - by AmericanStyle'™ - 23.11.2012, 17:21
Re: Sistema de anuncios em DIALOG - by alexcordeiro - 23.11.2012, 17:28
Re: Sistema de anuncios em DIALOG - by JapaN* - 24.11.2012, 00:45
Re: Sistema de anuncios em DIALOG - by rjjj - 24.11.2012, 03:56
Re: Sistema de anuncios em DIALOG - by Ouro - 24.11.2012, 04:00

Forum Jump:


Users browsing this thread: 1 Guest(s)