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

OTClient Hello everyone, how are you? I'm having a problem with my mounts, it only works in the normal old client, but it doesn't work in the otc, and in addit

fliber

New Member
Joined
Sep 27, 2020
Messages
10
Reaction score
3
Error otclient👇👇👇

WARNING: attempt to destroy widget 'deathWindow two times ERROR: Protocol Game parse message exception (73 bytes, 30 unread, last opcode is 8:00 (B). prev opcode is 0x28 (40)))

InputMessage eof reached

Packet has been saved to packet log, you can use it to find what was wrong, (Protocol: 868)

👇👇👇source otserve
 
Error otclient👇👇👇

it only works in the normal old client, but it doesn't work in the otc​

How does it work in Tibia 8.6? Mounts were added in 8.7:
Maybe your server side mounts are added in some custom way that make them only compatible with your modified Tibia 8.6 client (where someone somehow added mounts).
 
Como funciona no Tibia 8.6? Montagens foram adicionadas em 8.7:
Talvez as montagens do lado do servidor sejam adicionadas de alguma forma personalizada que as torne compatíveis apenas com o cliente modificado do Tibia 8.6 (onde alguém de alguma forma adicionou montagens).
Post automatically merged:

Evidence cripto hellp


cryptStr.append(";3puZ8qrriHA");
 

Attachments

  • Screenshot_20240214-155238_Note-pad++.jpg
    Screenshot_20240214-155238_Note-pad++.jpg
    106.1 KB · Views: 6 · VirusTotal
open modules/game_features/features.lua in your otc folder
find:
Lua:
if(version >= 870) then
        g_game.enableFeature(GameDoubleExperience)
        --g_game.enableFeature(GamePlayerMounts)
        g_game.enableFeature(GameSpellList)
    end

comment "g_game.enableFeature(GamePlayerMounts)" and paste above
example:
Lua:
function updateFeatures(version)
    g_game.resetFeatures()
    if version <= 0 then
      return
    end
    
    g_game.enableFeature(GamePlayerMounts)
    --g_game.enableFeature(GameBot)
    g_game.enableFeature(GameExtendedOpcode)
    g_game.enableFeature(GameMinimapLimitedToSingleFloor) -- it will generate minimap only for current floor
    g_game.enableFeature(GameSpritesAlphaChannel)
    g_game.enableFeature(GameMagicEffectU16)
 
Back
Top