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

OpenTibia Tibia Time Machine 6.0

Im not cpp programmer, but I wanna read the .rec file to extract some data. Do you know how can I do it? Or how can I get the character name, for example?

You can find a summary of the rec format here: tibia-ttm/File Formats.txt at master · tulio150/tibia-ttm (https://github.com/tulio150/tibia-ttm/blob/master/File%20Formats.txt)

[1 bytes] TibiCAM version (3: < 7.70, 4: < 7.72, 5: < 8.00, 6: < 8.30, 7 < 9.80, 8 < 10.54, 9 < 10.58, 10 < 10.80, 11 < 11.20)
[1 bytes] Format version
1: Unencrypted (Tibia version < 730 or generated by TTM)
[4 bytes] Number of received chunks
For:
[4 bytes] Received size
[4 bytes] Received time
[x bytes] Received data (packet stream inside)
2: Encrypted (Tibia version < 830)
[4 bytes] Number of packets + 57
For:
[2 bytes] Encrypted size (AES256 if version >= 5)
[4 bytes] Received time
[x bytes] Encrypted data (packet stream inside)
[4 bytes] Checksum (Adler32 of encrypted data)

More details on how to read it can be found on video.cpp inside function OpenREC on my code
 
Back
Top