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

TFS 10.55

Xtr3m3

Member
Joined
May 14, 2009
Messages
131
Reaction score
11
When I eat any food or everything, like potions (only yourself, in target all works fine), I got this bug:

kEr5k9q.png


Any help please? I'm using TFS 1.1
 
Last edited:
Code:
   TALKTYPE_MONSTER_SAY = 36,
   TALKTYPE_MONSTER_YELL = 37,

http://otland.net/threads/tfs-update-10-53-to-10-58.229194/#post-2208799
Already changed before got this crash :(

I have crash when I die and when I use potions on yourself and eat food's..

I have changing too:
Code:
void ProtocolGame::sendReLoginWindow(uint8_t unfairFightReduction)
{
    NetworkMessage msg;
    msg.AddByte(0x28);
    msg.AddByte(0x00); // 0x00 = (regular death and unfair fight), 0x01 = blessed death
    msg.AddByte(unfairFightReduction);
    writeToOutputBuffer(msg);
}
 
Back
Top