Skip to content
This repository was archived by the owner on Dec 16, 2024. It is now read-only.

Convert Worlds

Phinehas Beresford edited this page Feb 12, 2024 · 2 revisions

Converting Worlds:

  • Currently this is a "beta" feature and is subject to be included or removed in the first "release" version of this Module.

Attempt to Automatically convert 3DS to Bedrock:

folder_path = ".\\LoCity\\OliverDIMC" # PATH needs to be pointing to folder where 'level.dat' is located along with world data.
world_icon_path = ".\\world_ico.png" # Is not required for save conversion.

mc3dslib.convert_save(folder_path, world_icon_path)

Convert World VDB Files:

folder_path = ".\\LoCity\\OliverDIMC\\db\\vdb"
console2bedrock_vdb(folder_path)

Convert World CDB Files:

folder_path = ".\\LoCity\\OliverDIMC\\db\\cdb"
optional_offset = 0x80 # as it's name suggests, this is optional or required in some circumstances.

console2bedrock_cdb(folder_path, optional_offset)
Clone this wiki locally