diff options
author | Haru <haru@dotalux.com> | 2017-05-04 10:40:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-04 10:40:21 +0200 |
commit | 1e46267cac131fa0e829886b9ccd534522ab0ddb (patch) | |
tree | 04eab25f64a566dec905afb7de1a8b112c95c225 /src/map/script.c | |
parent | ff8429634673855a1dc6e2924d4534aec8de6507 (diff) | |
parent | aa1c480aa0140098ae32958bbf165c2829d2f9bf (diff) | |
download | hercules-1e46267cac131fa0e829886b9ccd534522ab0ddb.tar.gz hercules-1e46267cac131fa0e829886b9ccd534522ab0ddb.tar.bz2 hercules-1e46267cac131fa0e829886b9ccd534522ab0ddb.tar.xz hercules-1e46267cac131fa0e829886b9ccd534522ab0ddb.zip |
Merge pull request #1717 from mekolat/vault2
expose the bank vault to the script engine
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/script.c b/src/map/script.c index 90c4c3b80..310722061 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -2384,6 +2384,7 @@ void script_load_parameters(void) {"SkillPoint", SP_SKILLPOINT}, {"Class", SP_CLASS}, {"Zeny", SP_ZENY}, + {"BankVault", SP_BANKVAULT}, {"Sex", SP_SEX}, {"NextBaseExp", SP_NEXTBASEEXP}, {"NextJobExp", SP_NEXTJOBEXP}, @@ -23766,6 +23767,7 @@ void script_hardcoded_constants(void) script->set_constant("MAX_CART",MAX_INVENTORY,false, false); script->set_constant("MAX_INVENTORY",MAX_INVENTORY,false, false); script->set_constant("MAX_ZENY",MAX_ZENY,false, false); + script->set_constant("MAX_BANK_ZENY", MAX_BANK_ZENY, false, false); script->set_constant("MAX_BG_MEMBERS",MAX_BG_MEMBERS,false, false); script->set_constant("MAX_CHAT_USERS",MAX_CHAT_USERS,false, false); script->set_constant("MAX_REFINE",MAX_REFINE,false, false); |