[AJUDA] Sacar .
#1

qal problema com o codigo ?
tipo assim ele vai lб deposita 100. ae vai em sacar , colocar qalqer numero tipo 1 й sacar oqe ele depositou 100.

pawn Код:
if(dialogid == 1)
{
if(response == 1)
{
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, sizeof(aname));
format(file, sizeof(file), PASTA_CONTAS, aname);
if(!IsNumeric(inputtext)){
SendClientMessage(playerid, Vermelho, "[ERRO] Valor invбlido !");
return 1;
}
if(dini_Int(file, "SaldoBancario") > dini_Int(file, "Input")-1 && dini_Int(file, "Input") > 0){
format(string, sizeof(string), "[BANCO] Vocк sacou a quantia {00FF00}'R$:%d'", dini_Int(file, "Input"));
SendClientMessage(playerid, Verde, string);
dini_IntSet(file, "SaldoBancario", dini_Int(file, "SaldoBancario")-dini_Int(file, "Input"));
GivePlayerGrana(playerid, dini_Int(file, "Input"));
} else {
SendClientMessage(playerid, Vermelho, "[ERRO] Valor invбlido !");
}
}
}
Reply
#2

Ta ae:
pawn Код:
if(dialogid == 1)
{
if(response == 1)
{
new money = strval(inputtext);
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, sizeof(aname));
format(file, sizeof(file), PASTA_CONTAS, aname);
if(!IsNumeric(inputtext)){
SendClientMessage(playerid, Vermelho, "[ERRO] Valor invбlido !");
return 1;
}
if(dini_Int(file, "SaldoBancario") > money && money > 0){
format(string, sizeof(string), "[BANCO] Vocк sacou a quantia {00FF00}'R$:%d'", money);
SendClientMessage(playerid, Verde, string);
dini_IntSet(file, "SaldoBancario", dini_Int(file, "SaldoBancario")-money);
GivePlayerGrana(playerid, money);
} else {
SendClientMessage(playerid, Vermelho, "[ERRO] Valor invбlido !");
}
}
}
Reply
#3

Quote:
Originally Posted by CidadeNovaRP
Посмотреть сообщение
Ta ae:
Valeu funciono

depois te dou +rep porq nгo ta dando . : x
Reply
#4

Quote:
Originally Posted by 3V3RTON
Посмотреть сообщение
Valeu funciono

depois te dou +rep porq nгo ta dando . : x
Oks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)