diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-13 15:06:16 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-13 15:06:16 +0000 |
commit | 0786661cdbd14a2bf37c34832cb9d3fd92765744 (patch) | |
tree | 43ec6e8332f7e3b1a48c362a7d770f4e9becb85f /src/map/status.h | |
parent | 952043f3fc80c16ef45f68defb3a9f6a764ba0d7 (diff) | |
download | hercules-0786661cdbd14a2bf37c34832cb9d3fd92765744.tar.gz hercules-0786661cdbd14a2bf37c34832cb9d3fd92765744.tar.bz2 hercules-0786661cdbd14a2bf37c34832cb9d3fd92765744.tar.xz hercules-0786661cdbd14a2bf37c34832cb9d3fd92765744.zip |
- Added HM_SKILLBASE, MAX_HOMUNSKILL to specify the skill level range of Homunculus.
- Added support for reading correctly status change data from Guild and Homun skills.
- Added support for reading Homun skill data (which means the HM skills are now safe to add to skill_db, skill_require_db, etc)
- Moved StatusSkillChangeTable to StatusSkillChangeTableArray and made a function called StatusSkillChangeTable to do the conversions taking into account HM/GD skills.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7128 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.h')
-rw-r--r-- | src/map/status.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.h b/src/map/status.h index 59fe25d6b..5a454c855 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -257,7 +257,7 @@ enum { SC_INCDEXRATE,
SC_MAX, //Automatically updated max, used in for's and at startup to check we are within bounds. [Skotlex]
};
-extern int SkillStatusChangeTable[MAX_SKILL];
+int SkillStatusChangeTable(int skill);
extern int StatusSkillChangeTable[SC_MAX];
//Numerates the Number for the status changes (client-dependent), imported from jA
|