[Ayuda] Cerrando mal
#8

fijate si ahora te funciona
pawn Код:
if(!strcmp(cmd, "/sacar", true))
{
    if(IsPlayerConnected(playerid))
    /*para que queres que cheque si el jugador esta conectado, cuando fue este jugador el que tipeo
    el comando. ===>> if inutil, siempre dara positivo*/

    {
        if(!IsAtATM(playerid))
        {
            if(!PlayerToPoint(20.0, playerid, 2308.6555,-14.7076,26.7422))
            {
                tmp = strtok(cmdtext, idx);
                if(!strlen(tmp))
                {
                    SendClientMessage(playerid, COLOR_GRAD2, "COMANDO: /sacar [Cantidad]");
                    format(string, sizeof(string), "  Tienes $%d en tu cuenta.", PlayerInfo[playerid][pAccount]);
                    SendClientMessage(playerid, COLOR_GRAD3, string);
                    return 1;
                }
                new cashdeposit = strval(tmp);
                if (cashdeposit > PlayerInfo[playerid][pAccount] || cashdeposit < 1)
                {
                    SendClientMessage(playerid, COLOR_GRAD2, "   No tienes esa Cantidad");
                    return 1;
                }
                SafeGivePlayerMoney(playerid,cashdeposit);
                PlayerInfo[playerid][pAccount]=PlayerInfo[playerid][pAccount]-cashdeposit;
                format(string, sizeof(string), "  Has extraido  $%d de tu Cuenta. Te Quedan: $%d ", cashdeposit,PlayerInfo[playerid][pAccount]);
                SendClientMessage(playerid, COLOR_YELLOW, string);
                GetPlayerName(playerid, sendername, sizeof(sendername));
                format(string, sizeof(string), "* %s Realiza una Tranzaccion en su cuenta bancaria.", sendername);
                //creo que te falto mandar el ultimo mensaje del format que esta arriba de este comentario
            }
        else  SendClientMessage(playerid, COLOR_GREY,"Destination is too far.");
        return 1;
    }
}
tenias unas cuantas cosas de mas xD
Reply


Messages In This Thread
[Ayuda] Cerrando mal - by SeQualX - 30.07.2010, 01:40
Re: [Ayuda] Cerrando mal - by TheChaoz - 30.07.2010, 02:09
Re: [Ayuda] Cerrando mal - by SeQualX - 30.07.2010, 04:14
Re: [Ayuda] Cerrando mal - by MrDeath537 - 30.07.2010, 06:22
Re: [Ayuda] Cerrando mal - by SeQualX - 30.07.2010, 07:23
Re: [Ayuda] Cerrando mal - by TheChaoz - 30.07.2010, 11:29
Re: [Ayuda] Cerrando mal - by SeQualX - 30.07.2010, 16:10
Re: [Ayuda] Cerrando mal - by TheChaoz - 30.07.2010, 19:23
Re: [Ayuda] Cerrando mal - by SeQualX - 31.07.2010, 19:45
Re: [Ayuda] Cerrando mal - by TheChaoz - 01.08.2010, 03:32

Forum Jump:


Users browsing this thread: 1 Guest(s)