Files
dsrc/sku.0/sys.server/compiled/game/script/money/clear/target.java
T
2018-06-07 00:32:29 +01:00

35 lines
1017 B
Java
Executable File

package script.money.clear;
import script.dictionary;
import script.library.money;
import script.obj_id;
public class target extends script.base_script
{
public target()
{
}
public int handleCovertDepositReturn(obj_id self, dictionary params) throws InterruptedException
{
int cash = getCashBalance(self);
if (cash > 0)
{
money.covertDeposit(self, cash, "handleCovertDepositReturn", params);
return SCRIPT_CONTINUE;
}
int bank = getBankBalance(self);
if (bank < 1)
{
return SCRIPT_CONTINUE;
}
String acct = params.getString("acct");
transferBankCreditsToNamedAccount(self, acct, bank, "finishClear", "finishClear", params);
return SCRIPT_CONTINUE;
}
public int finishClear(obj_id self, dictionary params) throws InterruptedException
{
detachScript(self, "money.clear.target");
return SCRIPT_CONTINUE;
}
}