Chasewalk Posted December 1, 2020 Posted December 1, 2020 Hi everyone how to increase player storage default is 300 how to make 700 max storage? thanks! mmo.h #define MAX_STORAGE 600 core.h #ifdef VIP_ENABLE #define MIN_STORAGE 300 // Default number of storage slots. battle.c #ifdef VIP_ENABLE { "vip_storage_increase", &battle_config.vip_storage_increase, 300, 0, MAX_STORAGE-MIN_STORAGE, }, #else { "vip_storage_increase", &battle_config.vip_storage_increase, 300, 0, MAX_STORAGE, }, Quote
Question
Chasewalk
Hi everyone how to increase player storage default is 300 how to make 700 max storage? thanks!
mmo.h #define MAX_STORAGE 600
core.h #ifdef VIP_ENABLE #define MIN_STORAGE 300 // Default number of storage slots.
battle.c
#ifdef VIP_ENABLE { "vip_storage_increase", &battle_config.vip_storage_increase, 300, 0, MAX_STORAGE-MIN_STORAGE, }, #else { "vip_storage_increase", &battle_config.vip_storage_increase, 300, 0, MAX_STORAGE, },
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.