reginaldofilhog
Member
How are you, my friends?
I've been working on the server a lot lately, and it naturally has this feature, but I'd like to share my progress with you and try to successfully implement it.
I added the Leo attribute system to my TFS and it works beautifully, but I'd never seen this Leech before. I'm not a hardcore Tibia player, but I enjoy messing around on the server, and I've been looking for ways to make these additional attributes work.
Leo's system: [TFS 1.X] Rarity Rolls & Custom Attributes Library (https://otland.net/threads/tfs-1-x-rarity-rolls-custom-attributes-library.268888/)
So, I enabled the feature in OTV8 to display the Skills.

However, my client terminal started to jump some Opcode errors, yes the extended Opcode is active directly in the code.
So I thought, are there some lines missing or is the leech system incomplete? Then I found this commit on FTS.
Adding "boosts" introduced in protocol 10.94 (#2395) · otland/forgottenserver@0d2c287 (https://github.com/otland/forgottenserver/commit/0d2c287f08b43ec2a3f295d6f07545e22a70c29a#)
I strictly followed the changes, I know it's version 10, but TFS 1.5 7.72 has 90.95% of the code from this commit, so I made some changes to make it exactly the same, and the result was the same.
And I noticed that if I keep moving the item, equipping and unequipping it, I get errors like
I didn't find much information on the subject or if it's even possible, so I came here to ask university students for help to find out if it's possible and what's missing, or if it's not possible and I'll stop my search here.
These are all the features of my OTCv8 for 7.72
Then I thought, can I ignore these errors and move on with my life? No! Because if I equip and unequip items too quickly, the client crashes or duplicates items. It seems like the packets are getting lost between the client and server with g_game.enableFeature(GameAdditionalSkills)
HEEELLPPPPP!!
I enabled this guy too.
luaItemDesc = true
I've been working on the server a lot lately, and it naturally has this feature, but I'd like to share my progress with you and try to successfully implement it.
I added the Leo attribute system to my TFS and it works beautifully, but I'd never seen this Leech before. I'm not a hardcore Tibia player, but I enjoy messing around on the server, and I've been looking for ways to make these additional attributes work.
Leo's system: [TFS 1.X] Rarity Rolls & Custom Attributes Library (https://otland.net/threads/tfs-1-x-rarity-rolls-custom-attributes-library.268888/)
So, I enabled the feature in OTV8 to display the Skills.
LUA:
g_game.enableFeature(GameAdditionalSkills)

However, my client terminal started to jump some Opcode errors, yes the extended Opcode is active directly in the code.
ERROR: ProtocolGame parse message exception (2593 bytes, 126 unread, last opcode is 0x00 (0), prev opcode is 0x00 (0)): InputMessage eof reachedPacket has been saved to packet.log, you can use it to find what was wrong. (Protocol: 772)
So I thought, are there some lines missing or is the leech system incomplete? Then I found this commit on FTS.
Adding "boosts" introduced in protocol 10.94 (#2395) · otland/forgottenserver@0d2c287 (https://github.com/otland/forgottenserver/commit/0d2c287f08b43ec2a3f295d6f07545e22a70c29a#)
I strictly followed the changes, I know it's version 10, but TFS 1.5 7.72 has 90.95% of the code from this commit, so I made some changes to make it exactly the same, and the result was the same.
ERROR: ProtocolGame parse message exception (2593 bytes, 126 unread, last opcode is 0x00 (0), prev opcode is 0x00 (0)): InputMessage eof reachedPacket has been saved to packet.log, you can use it to find what was wrong. (Protocol: 772)
And I noticed that if I keep moving the item, equipping and unequipping it, I get errors like
ERROR: ProtocolGame parse message exception (3086 bytes, 450 unread, last opcode is 0x00 (0), prev opcode is 0x0a (10)): InputMessage eof reachedPacket has been saved to packet.log, you can use it to find what was wrong. (Protocol: 772)
I didn't find much information on the subject or if it's even possible, so I came here to ask university students for help to find out if it's possible and what's missing, or if it's not possible and I'll stop my search here.
These are all the features of my OTCv8 for 7.72
g_game.enableFeature(GamePlayerAddons)
g_game.enableFeature(GamePlayerMounts)
g_game.enableFeature(GameNewOutfitProtocol)
g_game.enableFeature(GameItemTooltip)
g_game.enableFeature(GameLooktypeU16)
g_game.enableFeature(GameMessageStatements)
g_game.enableFeature(GameLoginPacketEncryption)
g_game.enableFeature(GameAdditionalSkills)
Then I thought, can I ignore these errors and move on with my life? No! Because if I equip and unequip items too quickly, the client crashes or duplicates items. It seems like the packets are getting lost between the client and server with g_game.enableFeature(GameAdditionalSkills)
HEEELLPPPPP!!
Post automatically merged:
I enabled this guy too.
luaItemDesc = true