Hello guys,have some problems looking for stone to get it consuming gold from the account balance,it consumes from the bank box,but with core.TOL in currency on currentexpansion,it says you dont have gold in your bankbox.
The code is this:
Code:
if (from.BankBox.ConsumeTotal( typeof( Gold ), 100000 ))

Any idea?thanks in advance.
 
There is no physical gold in the bank when the account gold feature is enabled.

Code:
if (Banker.Withdraw( from, 100000 ))
 
There is no physical gold in the bank when the account gold feature is enabled.

Code:
if (Banker.Withdraw( from, 100000 ))


We're having this issue too. Will simply removing
Code:
if (Banker.Withdraw( from, 100000 ))
[/QUOTE] from the accounts file fix the issue?
 
Back