• 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++ DLL to open new slot

Elgenady

Veteran OT User
Joined
Aug 5, 2011
Messages
1,663
Solutions
36
Reaction score
371
anyone have DLL to open new slot in normal tibia 8.60??
 
What do you mean by "slot"? New square in equipment window?
add new slot in creature.h
enum slots_t
want to add SLOT_CHARM = 13,
when add new slot and open normal client get debug because tibia client set for 11 or 12 slot only.

my enum slots_t

LUA:
enum slots_t
{
    SLOT_PRE_FIRST = 0,
    SLOT_WHEREEVER = SLOT_PRE_FIRST,
    SLOT_FIRST = 1,
    SLOT_HEAD = SLOT_FIRST,
    SLOT_NECKLACE = 2,
    SLOT_BACKPACK = 3,
    SLOT_ARMOR = 4,
    SLOT_RIGHT = 5,
    SLOT_LEFT = 6,
    SLOT_LEGS = 7,
    SLOT_FEET = 8,
    SLOT_RING = 9,
    SLOT_AMMO = 10,
    SLOT_DEPOT = 11,
    SLOT_LAST = SLOT_DEPOT,
    SLOT_HAND = 12,
    SLOT_TWO_HAND = SLOT_HAND
};

so i need dll to open client slots limit to 13 or 14
 
Last edited:

Similar threads

Back
Top