22.06.2012, 13:43
tente desta forma.
pawn Код:
if(dialogid == sacar)
{
if(response == 1)
{
new tmp22[256], idx22;
tmp22 = strtok(inputtext, idx22);
if(!strlen(tmp22)) return ShowPlayerDialog(playerid, sacar, DIALOG_STYLE_INPUT, "Menu Banco", "Quantia incorreta \nQuantia a sacar:", "Sacar", "Cancelar");
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, sizeof(aname));
format(file, sizeof(file), PASTA_CONTAS, aname);
new valor;
valor = strval(inputtext);
if(dini_Int(file, "ContaBancaria") == 1)
{
if(dini_Int(file, "SaldoBancario") > valor)
{
format(string, sizeof(string), "[BANCO] Vocк sacou a quantia de R$%d.", valor), SendClientMessage(playerid, Verde, string);
dini_IntSet(file, "SaldoBancario", dini_Int(file, "SaldoBancario")-valor);
GivePlayerGrana(playerid, valor);
}
else
{
SendClientMessage(playerid, Vermelho, "[BANCO] Vocк nгo tem todo este dinheiro.");
}
}
else
{
SendClientMessage(playerid, Vermelho, "[BANCO] Vocк nгo tem uma conta bancбria.");
}
}
return true;
}