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

Canary(3.2.0)13.40 + Mehah Otclient (13.40)

Samuel Bili

New Member
Joined
Oct 3, 2021
Messages
9
Reaction score
0
Trying to log in with IP localhost/login.php and port 80, it goes to the character selection page, and when selecting the character, it gives the following error:

ERROR: ProtocolGame parse message exception (21084 bytes, 21075 unread, last opcode is 0x43 (67), prev opcode is 0xffffffff (-1)): unhandled opcode 67
Packet has been saved to packet.log, you can use it to find what was wrong. (Protocol: 1340)

otclientmehah.webp
 
Solution
your need fix: game_outfit custom compatible with canary (familiar, outfit/mount in store) by kokekanon · Pull Request #962 · mehah/otclient (https://github.com/mehah/otclient/pull/962)

a quick solution is

in terminal o in some module
LUA:
ProtocolGame.registerOpcode(0x43, function(protocol, msg)
    local count = msg:getU16()
    for i = 1, count do
      local feature = msg:getU8()
      local enable = msg:getU8()
      if enable == 1 then
        g_game.enableFeature(feature)
      end
    end
end)

or

recommendation: use main repo
wiki of compilation


if you do not know how to compile, download .exe from github

1749689025529.webp


1749689049736.webp
download .exe...
your need fix: game_outfit custom compatible with canary (familiar, outfit/mount in store) by kokekanon · Pull Request #962 · mehah/otclient (https://github.com/mehah/otclient/pull/962)

a quick solution is

in terminal o in some module
LUA:
ProtocolGame.registerOpcode(0x43, function(protocol, msg)
    local count = msg:getU16()
    for i = 1, count do
      local feature = msg:getU8()
      local enable = msg:getU8()
      if enable == 1 then
        g_game.enableFeature(feature)
      end
    end
end)

or

recommendation: use main repo
wiki of compilation


if you do not know how to compile, download .exe from github

1749689025529.webp


1749689049736.webp
download .exe
 
Solution
Back
Top