mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
35 lines
1017 B
Java
Executable File
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;
|
|
}
|
|
}
|