• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

unsupported client version in ObjectBuilder

Hashirama479

World of Ninja
Joined
Dec 19, 2016
Messages
536
Solutions
6
Reaction score
74
I have a problem with my object builder, the objkect builder does support the 8.54 version but when I try to open the 8.54 files it says "unsupported client version", how comes? xD
 
Solution
Im using object builder 0.3.2

I found this
LUA:
    <version value="854" string="8.54 v1" dat="4B1E2CAA" spr="4B1E2C87" otb="16"/>
    <version value="854" string="8.54 v2" dat="4B0D46A9" spr="4B0D3AFF" otb="16"/>
    <version value="854" string="8.54 v3" dat="4B28B89E" spr="4B1E2C87" otb="17"/>

So what I have to do then so its working? :o xD im confused to be honest

Solved I wrote the dat and spr code which the files required in the line what you send me :P thanks
 
Last edited by a moderator:
Estou usando o construtor de objetos 0.3.2

Eu encontrei isso
[código=Lua] <versão valor="854" string="8.54 v1" dat="4B1E2CAA" spr="4B1E2C87" otb="16"/>
<versão valor="854" string="8.54 v2" dat="4B0D46A9" spr="4B0D3AFF" otb="16"/>
<versão valor="854" string="8.54 v3" dat="4B28B89E" spr="4B1E2C87" otb="17"/>[/código]

Então o que eu tenho que fazer para que funcione? :o xD Estou confuso para ser honesto

Resolvido, escrevi o código dat e spr que os arquivos exigiam na linha que você me enviou, :P obrigado
how?
 
@andredede
That error just means your .dat/.spr signatures aren’t in ObjectBuilder’s versions.xml. Some Tibia versions (like 8.54) actually have multiple signatures (v1/v2/v3), so you need to add the exact pair your files use.


Steps:


  1. Open ObjectBuilder and try to load your client once.
    In the error/log it prints the DAT signature and SPR signature for your files. Copy both values.
  2. Open versions.xml in your ObjectBuilder installation (reference file here):
    src/firstRun/versions.xml in the repo. GitHub
  3. Duplicate the entry for your client version and paste in your signatures. Example for 8.54 (values are examples—replace with yours):


<version value="854" string="8.54 vX"
dat="YOUR_DAT_HEX" spr="YOUR_SPR_HEX" otb="16"/>

(8.54 has v1/v2/v3 with different signatures — that’s why a stock versions.xml might not match your specific client build.) OTLand


  1. Save versions.xml, restart ObjectBuilder, and load the same .dat/.spr again.
    It should open now. (This is exactly how the OP solved it in this thread.)
 
Back
Top