blob: 82ac931fdb5d543fa7b63a5dd0a69450aea49498 (
plain) (
tree)
|
|
function script ClearVariables {
if (@login_event != 1) goto L_Deprecated;
// Remove old variables to new quest system
if (QL_VALON) {
setq CandorQuest_Valon, QL_VALON;
QL_VALON=0;
}
if (QL_HIDENSEEK) {
setq CandorQuest_HideNSeek, (QL_HIDENSEEK >= 64 ? 2 : 1), (QL_HIDENSEEK-1);
}
// Don't ask me what code below does
// ----------------------------------
/*
if (#BankAccount >= 0) return;
if (Zeny >= -#BankAccount) {
Zeny = Zeny + #BankAccount;
#BankAccount = 0;
}
// Partial fix
#BankAccount = #BankAccount + Zeny;
Zeny = 0;
*/
return;
}
|