[Ajuda] Loja de Utilidades
#6

Essa identaзгo me fez dor de cabeзa...

pawn Код:
if(checknome == utilidades)
{
    SendClientMessage(playerid, Verde, "=============== Loja Utilidades ================");
    SendClientMessage(playerid, Azul, "Escolha o produto que deseja comprar e clique em 'COMPRAR'.");
    SendClientMessage(playerid, Verde, "=============== Loja Utilidades ================");
    ShowPlayerDialog(playerid, lojautilidades, DIALOG_STYLE_LIST, "Loja", "{00FF00}Celular{FF0000}(350R$) \n{00FF00}Cartгo telefonico 20 crйditos{FF0000}(10R$) \n{00FF00}MP3{FF0000}(150R$) \n{00FF00}Bloco de Lembretes {FF0000}(5R$)", "Comprar", "Cancelar");
    return 1;
}

if(dialogid == lojautilidades) // Menu
{
    if(response)
    {
        new grana;
        grana = GetPlayerGrana(playerid);
        new aname[MAX_PLAYER_NAME];
        GetPlayerName(playerid, aname, sizeof(aname));
        format(file, sizeof(file), PASTA_CONTAS, aname);
        if(listitem == 0) // Celular 350
        {
            if(grana > 349)
            {
                GivePlayerGrana(playerid, -350);
                SendClientMessage(playerid, Blue, "(INFO) Vocк comprou um celular use /comandoscelular.");
                dini_IntSet(file, "Celular", 1);
            }
            else
            {
                SendClientMessage(playerid, Vermelho, "(INFO) Vocк nгo tem dinheiro suficiente.");
            }
        }
        if(listitem == 1) // Cartao telefonico 10
        {
            if(grana > 9)
            {
                GivePlayerGrana(playerid, -10);
                SendClientMessage(playerid, Blue, "(INFO) Vocк comprou um cartгo telefonico.");
                dini_IntSet(file, "CartaoTelefonico", dini_Int(file, "CartaoTelefonico")+20);
            }
            else
            {
                SendClientMessage(playerid, Vermelho, "(INFO) Vocк nгo tem dinheiro suficiente.");
            }
        }
        if(listitem == 2) // MP3  150
        {
            if(grana > 149)
            {
                GivePlayerGrana(playerid, -150);
                SendClientMessage(playerid, Blue, "(INFO) Vocк comprou um MP3 use /comandosmp3.");
                dini_IntSet(file, "MP3", 1);
            }
            else
            {
                SendClientMessage(playerid, Vermelho, "(INFO) Vocк nгo tem dinheiro suficiente.");
            }
        }
        if(listitem == 3) // Bloco de Lembretes
        {
            if(grana > 4)
            {
                GivePlayerGrana(playerid, -5);
                SendClientMessage(playerid, Blue, "(INFO) Vocк comprou um Bloco de Lembretes use /lembrete [texto].");
                dini_IntSet(file, "Bloco", 1);
                dini_Set(file, "Lembrete", "Nada");
            }
            else
            {
                SendClientMessage(playerid, Vermelho, "(INFO) Vocк nгo tem dinheiro suficiente.");
            }
        }
        if(listitem == 4) // velo
        {
            if(grana >= 5000)
            {
                GivePlayerGrana(playerid, -5000);
                SendClientMessage(playerid, Blue, "(INFO) Vocк comprou um Velocнmetro use /comandosvelocimetro.");
                dini_IntSet(file, "TemVelocimetro", 1);
            }
            else
            {
                SendClientMessage(playerid, Vermelho, "(INFO) Vocк nгo tem dinheiro suficiente.");
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
Loja de Utilidades - by MoonRey - 24.08.2013, 15:52
Re: Loja de Utilidades - by silenthill - 24.08.2013, 16:11
Re: Loja de Utilidades - by bruxo00 - 24.08.2013, 16:15
Re: Loja de Utilidades - by MoonRey - 24.08.2013, 17:22
Re: Loja de Utilidades - by Standby - 24.08.2013, 18:30
Re: Loja de Utilidades - by bruxo00 - 24.08.2013, 19:31

Forum Jump:


Users browsing this thread: 2 Guest(s)