diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-02-28 22:25:58 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-02-28 22:25:58 +0000 |
commit | f3edaa82a300e9d397337b8f815c7903c239497b (patch) | |
tree | efbdc7106203ac69f5fd6e02ef8c0fb39010c582 /src/map/map.h | |
parent | 4099749d598460b1614d1e94dfd6e951a9649955 (diff) | |
download | hercules-f3edaa82a300e9d397337b8f815c7903c239497b.tar.gz hercules-f3edaa82a300e9d397337b8f815c7903c239497b.tar.bz2 hercules-f3edaa82a300e9d397337b8f815c7903c239497b.tar.xz hercules-f3edaa82a300e9d397337b8f815c7903c239497b.zip |
- Added cash shop support. (i need to add documentation, working on it).
- An charcommand is still required to add/remove points.
- Scripts command only requires to work on #CASHPOINTS and #KAFRAPOINTS.
- I called it "Kafra Points" just because it's how comes in the translation. I allready know this changes between Oficial servers.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12264 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h index 1d286191d..72f869f4e 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -188,7 +188,7 @@ enum bl_type { #define BL_CHAR (BL_PC|BL_MOB|BL_HOM) #define BL_ALL 0xfff -enum npc_subtype { WARP, SHOP, SCRIPT }; +enum npc_subtype { WARP, SHOP, SCRIPT, CASHSHOP }; enum { RC_FORMLESS=0, @@ -782,6 +782,8 @@ struct map_session_data { char away_message[128]; // [LuzZza] + int cashPoints, kafraPoints; + // Mail System [Zephyrus] struct { short nameid; |