Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created start.bat/start.sh and folder 'worldanvil' + edited README.md #11

Merged
merged 10 commits into from
Oct 25, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# LevelDb2Anvil
A map converter for Minecraft: Pocket Edition

Map converter for Minecraft:Pocket Edition, from format "LevelDB" to "Anvil".
Map converter for Minecraft: Pocket Edition, from format "LevelDB" to "Anvil".

This program uses leveldb by tinfoiled. See lisense here https://github.com/ljyloo/leveldb

This program contains code from Mojang: source at

https://mojang.com/2012/02/new-minecraft-map-format-anvil/

## Usage:

`java -jar Converter.jar <import folder> <export folder>`
##Warning:

## Where:
The converter will experience an error if you have blocks which are not supported by Minecraft PC Edition. It will make your .mca files corrupted, therefore please replace those blocks with another block that is supported.

`<import folder> The full path to the folder containing Minecraft:Pocket Edition world`

`<export folder> The full path to the folder which you want to export`
## Usage:

## Example:
Import your LevelDB world in and rename it to the name 'world'.
Run start.bat(if you're on Windows) or start.sh(if you're on OS X or Linux) and the converter will now convert it to Anvil format to the output folder of 'worldanvil'.
Find more info at https://forums.pocketmine.net/threads/leveldb-maps-to-anvil.12018/

`java -jar Converter.jar /home/ljyloo/import /home/ljyloo/export`
##Credits:
Thanks to @ljyloo for creating this amazing converter.
User-friendly start.bat/start.sh, the folder 'worldanvil' and the rewrite of this file was by @keithkfng.
1 change: 1 addition & 0 deletions start.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
java -jar Converter.jar world worldanvil
2 changes: 2 additions & 0 deletions start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
java -jar Converter.jar world worldanvil
2 changes: 2 additions & 0 deletions worldanvil/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This is where an output of .mca files will come.
Read here for more instructions: https://forums.pocketmine.net/threads/leveldb-maps-to-anvil.12018/