SkillAgentSearch skills...

OTBM2JSON

OTBM2JSON - A generic framework for programmatic modification of OTBM files.

Install / Use

/learn @Inconcessus/OTBM2JSON
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

OTBM2JSON

NodeJS library for programmatically modifying Open Tibia Binary Mapping files. This framework reads .otbm files and parses them to an intermediary JSON format. This JSON structure can be changed programatically to make generic modifications. Once a change has been committed to the structure, it can be encoded back to an .otbm file.

JSON Structure

The structure of the intermediary JSON format read from and to .otbm can be seen in the example OTBM.json.

Usage

Import the library in your script:

const otbm2json = require("./otbm2json.js");

The library provides two functions for reading and writing OTBM:

data = otbm2json.read(filename);

** Modify the data object here **

otbm2json.write(filename, data);

For an example see below.

Example

An example script examples/example.js is provided. This script uses the examples/void.otbm (8x8 void area) in this repository and replaces all void tiles with chessboard tiles and writes the result to examples/chess.otbm.

<p align="center"> <img src="images/void.png"> <img src="images/convert.png"> <img src="images/chess.png"> </p>

Version

Current version 0.2.0. This is a work in progress.

View on GitHub
GitHub Stars57
CategoryDevelopment
Updated6d ago
Forks52

Languages

JavaScript

Security Score

100/100

Audited on Mar 22, 2026

No findings