• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Question about mounts/addons

icekis

Member
Joined
Jan 18, 2018
Messages
95
Reaction score
6
I would like to know where mount and addon information are stored in the database.

Are they in storage?
 
Last edited:
Solution
Considering:
Code:
static constexpr int32_t PSTRG_RESERVED_RANGE_START = 10000000;
static constexpr int32_t PSTRG_MOUNTS_RANGE_START = (PSTRG_RESERVED_RANGE_START + 2001);

mountId - storage key
1 - 10002001
2- 10002002
and so on..
 
Back
Top