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

Loot Message error

Jpstafe

Well-Known Member
Joined
Aug 8, 2011
Messages
505
Reaction score
67
Hello, I have checked that my otserver has a loot message.. but when killing a monster it does not appear in the channel. What can be?

classicEquipmentSlots = true
classicAttackSpeed = true
autoStackItems = true
displayLootMessage = true

I have tried it with Tibia client, and with Otclient, neither of them work

View attachment 72077
 
Where did you get these config entries from? The only distro called OTX2 I've found is here:

These're config entries related to loot:

Lua:
rateLoot = 1
monsterLootMessage = 3
monsterLootMessageType = 19
staminaLootLimit = 840

Where monsterLootMessage can be specified as:
C++:
enum LootMessage_t
{
    LOOTMSG_IGNORE = -1,
    LOOTMSG_NONE = 0,
    LOOTMSG_PLAYER = 1,
    LOOTMSG_PARTY = 2,
    LOOTMSG_BOTH = 3
};
 
Back
Top