• 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!

Solved Pagination in Depot Chest.

Majster12

Member
Joined
Feb 20, 2009
Messages
134
Solutions
1
Reaction score
16
depotchest.cpp
Changed from:
Code:
    Container(type)
{
    maxDepotItems = 2000;
    maxSize = 32;
    pagination;
}
to
Code:
    Container(type)
{
    maxDepotItems = 2000;
    maxSize = 32;
    pagination = true;
}
but still no pagination.
FABLCpR.png


Fixed by server dev.
 
Last edited:
Code:
DepotChest::DepotChest(uint16_t type, bool pagination) :
    Container(type, 32, true, true)
 {
    maxDepotItems = 2000;
    pagination = pagination;
}

Thanks but it did not fix the problem, I've need to edit more thins in container.cpp
 
Back
Top