diff options
author | shennetsind <ind@henn.et> | 2013-03-04 22:22:30 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-03-04 22:22:30 -0300 |
commit | 0241d0195558b7e57d2181f2f097cf774a1ef463 (patch) | |
tree | b39dda78be8a10722ff10f507c0e5945052f91a3 /src/login/account.h | |
parent | 03c5ecd61753391b7790cf72f9cc629e9f8bbc38 (diff) | |
download | hercules-0241d0195558b7e57d2181f2f097cf774a1ef463.tar.gz hercules-0241d0195558b7e57d2181f2f097cf774a1ef463.tar.bz2 hercules-0241d0195558b7e57d2181f2f097cf774a1ef463.tar.xz hercules-0241d0195558b7e57d2181f2f097cf774a1ef463.zip |
Introducing account-dependent character slot count
As requested in http://hercules.ws/board/topic/248-reserved-slot-system/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/login/account.h')
-rw-r--r-- | src/login/account.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/login/account.h b/src/login/account.h index adbcb7102..56708d5e9 100644 --- a/src/login/account.h +++ b/src/login/account.h @@ -42,6 +42,7 @@ struct mmo_account char sex; // gender (M/F/S) char email[40]; // e-mail (by default: a@a.com) int group_id; // player group id + uint8 char_slots; // this accounts maximum character slots (maximum is limited to MAX_CHARS define in char server) unsigned int state; // packet 0x006a value + 1 (0: compte OK) time_t unban_time; // (timestamp): ban time limit of the account (0 = no ban) time_t expiration_time; // (timestamp): validity limit of the account (0 = unlimited) |