[Ajuda] Sistema de cofre
#1

Eu baixei um sistema de cofre e muito bom e funciona mais ele so funciona quando eu deposito todo dinheiro da minha mao. E na hora de sacar do cofre ele saca toda a quantia que estar no cofre! Queria que funcionasse na quantia que eu determinar nao ela toda =D

PHP код:
    if(strcmp(cmd"/depositar"true) == 0)
    {
        
tmp strtok(cmdtextidx);
        if (
PlayerInfo[playerid][pMember] == 5)
        {
            if(!
strval(tmp)) return  SendClientMessage(playeridGetPlayerColor(playerid), "Use /depositar [dinheiro].");
            if(
strval(tmp) < GetPlayerMoney(playerid)) return SendClientMessage(playeridGetPlayerColor(playerid), "Vocк nгo tem essa quantia");
            if(
PlayerToPoint(RadioballasplayeridLugarCofreballas)){
            
format(stringsizeof(string), "Vocк depositou: %d."strval(tmp));
            
SendClientMessage(playeridGetPlayerColor(playerid), string);
            
Cofreballas += strval(tmp);
            
GivePlayerMoney(playerid,-strval(tmp));
            
dini_IntSet("Cofreballas.ini","Cofreballas",Cofreballas);
            } else 
SendClientMessage(playeridGetPlayerColor(playerid), "Vocк nгo esta perto do cofre");
        }
        return 
1;
    }
    if(
strcmp(cmd"/sacar"true) == 0)
    {
        
tmp strtok(cmdtextidx);
        if (
PlayerInfo[playerid][pLeader] == 5)
        {
            if(!
strval(tmp)) return  SendClientMessage(playeridGetPlayerColor(playerid), "Use /sacar [dinheiro].");
            if(
strval(tmp) < Cofreballas) return SendClientMessage(playeridGetPlayerColor(playerid), "O banco nao tem isso tudo");
            if(
PlayerToPoint(RadioballasplayeridLugarCofreballas)){
            
format(stringsizeof(string), "Vocк Sacou: %d."strval(tmp));
            
SendClientMessage(playeridGetPlayerColor(playerid), string);
            
Cofreballas -= strval(tmp);
               
GivePlayerMoney(playerid,strval(tmp));
               
dini_IntSet("Cofreballas.ini","Cofreballas",Cofreballas);
               }else 
SendClientMessage(playeridGetPlayerColor(playerid), "Vocк nгo esta perto do cofre");
        }
        return 
1;
    } 
Reply


Messages In This Thread
Sistema de cofre - by LeonardoBCF - 23.04.2013, 20:36
Re: Sistema de cofre - by PT - 24.04.2013, 08:13
Re: Sistema de cofre - by LeonardoBCF - 24.04.2013, 16:41
Re: Sistema de cofre - by MatheusAlcapone - 24.04.2013, 16:44
Re: Sistema de cofre - by LeonardoBCF - 24.04.2013, 17:01

Forum Jump:


Users browsing this thread: 1 Guest(s)