MC-Chunk-Get-V2

Get chunk boundaries in Minecraft by providing x, z coordinates in that chunk. This is a Python rewrite of my AutoHotkey program.


Project maintained by Lateralus138 Hosted on GitHub Pages — Theme by mattgraham

MC Chunk Get V2

Disclaimer

The AppImage provided here does not run on Ubuntu 16.04 Xenial and does not pass the AppImage Hub standards. I am working on this. Both of the portable versions of this program work just fine for both Windows and Linux and the installer works for Windows.

The AppImage provide here and this REAMDE are: Under Construction

Badge 1 Badge 2 Badge 3 Badge 4 Badge 5 Badge 6 Badge 7

Get coordinate boundaries of a chunk by providing any x, z coordinates inside of that chunk in Minecraft.

Official Release Page

Installation

Files

Releases

Motivation

If you are anything like me you are a perfectionist or truly OCD or both & you like to build everything aligned to chunks if you can or at least symmetrically/relatively positioned even if you don’t need to. I built this applcation to help me quickly find the a chunk boundaries coordinates without having to do the math each time. I can do it in my head, but I’m getting old with not enough time that I just don’t want to waste.

This application is a cross platform Python1 rewrite of my AutoHotkey2 GUI that does the exact same thing.

Note: This does not currently work on the older ‘Xenial’ version of Ubuntu or any OS that uses older versions of the GLIBC library. You can find more information in the ‘Issue’ section of the main repository. I am working on fixing this.

Usage

Very simple to use, you can run it like any other gui application in your respective operating system.

Provide the X & Z coordinates of any position within a chunk in Minecraft & click [Copy] (or Alt+c) to copy the coordinates into your clipboard. This program shows the coordinate pair as soon as you provide both coordinates & will clear if both cooridinates are not provided. You can clear all input with the [Clear] button (or Alt+p).

Preview

Quick video preview: MCG on YouTube

Installation

This is an open source project & there are a few ways you can use this; both installable & portable in Windows & portable in Linux for now, but both can be used compiled or from source; your choice.

You can even grab the source project & compile yourself if you know how to do so.

Windows Install

Installer

Download the EXE/Installer and double click the EXE (or run from cmd).

Portable (Compiled)

Download the Compiled Portable/Archive & extract it to wherever you like your portable programs. Run the provided EXE in the main folder to run the program.

Linux Install

Portable (Compiled)

AppImages are easy just download the Linux Compiled AppImage/Portable & place it where you want it & make it executable & run it by either double clicking (or however you have execution set up) or from the shell:

$ cd /path/to/AppImage/
$ chmod u+x mc_chunk_get_v2.AppImage # set executable
$ ./mc_chunk_get_v2.AppImage &

or

$ chmod u+x /path/to/AppImage/mc_chunk_get_v2.AppImage
$ /path/to/AppImage/mc_chunk_get_v2.AppImage &

You can change the AppImage’s name to whatever you like E.g.: ‘mcchunkgetv2’ & place it in your $PATH of choice.

Files

Windows

Type File Type File/s
Installer EXE/Installer MC_Chunk_Get_V2.exe
Compiled Portable/Archive portable_mc_chunk_get_v2.zip
Source Project Files/Archive source_mc_chunk_get_v2_win.zip

Linux

Type File Type File/s
Compiled AppImage/Portable MC_Chunk_Get-x86_64.AppImage
Compiled Archive/Portable portable_mc_chunk_get_v2_linux.tar.gz
Source Project Files/Archive source_mc_chunk_get_v2_linux.tar.gz

Mac - Not Available

Sorry, nothing too personal. I don’t have a Mac anymore. If someone wants to contribute to this project by maybe forking & compiling in Mac & making a pull request or whatever you want to do really, then by all means, be my guest.

Release Page

Or you can get all files & sources for all OSes at the projects release page:

Release Page

Main Release

Images

ScreenShotA

ScreenShotB

ScreenShotC

Misc…

Notes
1: Python - A high level, interpreted programming language.
2: AutoHotkey - A full featured Windows scripting language with hotkey & gui support & focus on automation.

This has been tested on both Windows & Linux:

Linux:

$ cat /etc/*-release|grep "PRETTY_NAME"|cut -d'=' -f2
"Ubuntu 18.04.4 LTS"
$ uname -a|awk '{print $1" "$3" "$11}'
Linux 5.3.0-7625-generic x86_64

Windows:

PS> Get-ComputerInfo | select WindowsProductName, WindowsVersion, OsHardwareAbstractionLayer

WindowsProductName WindowsVersion OsHardwareAbstractionLayer
------------------ -------------- --------------------------
Windows 10 Home    1903           10.0.18362.628

License

License File

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.