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

C++ Show Item slot

Devlinn

Member
Joined
Mar 25, 2015
Messages
295
Reaction score
6
hey, how i can achieve to display
armor,legs,helmet etc
i arleady trying this
C++:
if (it.slotPosition) {
                if (begin) {
                    begin = false;
                    s << " (";
                } else {
                    s << ", ";
                }

                s << "Type:" << std::showpos << it.slotPosition << std::noshowpos;
            }

but its show idk what but not item type like if item is armor then display
type: Armor
if legs
type: legs
 
Back
Top