diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-01 19:51:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-01 19:51:01 +0300 |
commit | 7f6c805f25d34ba80ca86e53216e1d588ab1ea75 (patch) | |
tree | 615005bd9896aeb49f42b0eb0fbfc08957c4cab8 /tools/vars.sh | |
parent | 0d732b8e7959bc50b29874d816981d12859fb811 (diff) | |
download | plugin-7f6c805f25d34ba80ca86e53216e1d588ab1ea75.tar.gz plugin-7f6c805f25d34ba80ca86e53216e1d588ab1ea75.tar.bz2 plugin-7f6c805f25d34ba80ca86e53216e1d588ab1ea75.tar.xz plugin-7f6c805f25d34ba80ca86e53216e1d588ab1ea75.zip |
For evol skills use range 20000 - 20021s20160703release2016-07-04
For this add mapping to array index.
Also rename skill into EVOL_MASS_PROVOKE.
Diffstat (limited to 'tools/vars.sh')
-rwxr-xr-x | tools/vars.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/vars.sh b/tools/vars.sh index fc92ae4..03b7193 100755 --- a/tools/vars.sh +++ b/tools/vars.sh @@ -1,10 +1,14 @@ #!/bin/bash # MAX_SKILL 1478 + 22 = 1500 -# MAX_SKILL_ID 10015 + 22 = 10037 +# MAX_SKILL_ID 10015 + 22 + 9963 = 20022 # SC_MAX 642 + 5 = 647 # SI_MAX 966 + 5 = 971 +# MAX_EVOL_SKILLS 22 +# EVOL_FIRST_SKILL 20000 +# OLD_MAX_SKILL_DB 1478 # can be used for custom skill id: 10016 - 10036 -export VARS="-DMAX_SKILL=1500 -DMAX_SKILL_ID=10037 -DSC_MAX=647 -DSI_MAX=971" +export VARS=" -DOLD_MAX_SKILL_DB=1478 -DMAX_SKILL=1500 -DMAX_SKILL_ID=20022 -DMAX_EVOL_SKILLS=22 -DEVOL_FIRST_SKILL=20000 -DSC_MAX=647 -DSI_MAX=971" +export CPPFLAGS="${VARS}" |