Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Howaner/NBTEditor
Editor for Minecraft NBT and schematic files
https://github.com/Howaner/NBTEditor
Last synced: about 1 month ago
JSON representation
Editor for Minecraft NBT and schematic files
- Host: GitHub
- URL: https://github.com/Howaner/NBTEditor
- Owner: Howaner
- License: bsd-3-clause
- Created: 2018-02-10T22:29:37.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-31T20:11:57.000Z (7 months ago)
- Last Synced: 2024-08-02T07:10:40.229Z (4 months ago)
- Language: C++
- Size: 153 KB
- Stars: 69
- Watchers: 3
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-minecraft - NBTEditor - Edit NBT from .dat files. (Softwares / Utilities)
README
# NBTEditor
A nbt editor software to edit minecraft binary files. Currently it can be used to edit .dat and .schematic files.
![NBTEditor](Image.png)## Download
- Windows Portable: http://dl.howaner.de/NBTEditor/latest/NBTEditor.zip
- Windows Installer: http://dl.howaner.de/NBTEditor/latest/NBTEditor.msi
- Ubuntu 16.04 Deb: http://dl.howaner.de/NBTEditor/latest/nbteditor_amd64.deb## Used frameworks
The software is written in C++ with the Qt5 framework and Zlib.## How to compile it on linux
```
apt-get install build-essential qt5-default qttools5-dev-tools cmake zlib1g-dev
mkdir build && cd build
cmake ..
make
./nbteditor
```## How to compile it on windows
1. Install qt5 developer framework with mingw-32 compiler
2. Install cmake
3. Compile static zlib library
4. Follow linux introductions