Chasewalk Posted December 1, 2020 Share 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 Link to comment Share on other sites More sharing options...
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, },
Link to comment
Share on other sites