Click here to Skip to main content
15,914,419 members
Everything / MineCraft

MineCraft

MineCraft

Great Reads

by Alberto M.
This article describes the file format NBT and shows how can be implemented in a real application to store data.
by Ed Nutting
A wrapper application making management, modding and running multiple MineCraft servers faster and easier.
by Right Handed Monkey
Build Giant Ravine in Minecraft using ScriptCraft (With Other Examples)

Latest Articles

by Right Handed Monkey
Build Giant Ravine in Minecraft using ScriptCraft (With Other Examples)
by Alberto M.
This article describes the file format NBT and shows how can be implemented in a real application to store data.
by Ed Nutting
A wrapper application making management, modding and running multiple MineCraft servers faster and easier.

All Articles

Sort by Score

MineCraft 

14 Nov 2013 by Sergey Alexandrovich Kryukov
Please see my comment to the question, let's forget about "VB". In .NET, there are no any barriers between C# and VB.NET; both are .NET languages.First of all, you can have one assembly compiled from C# code, referenced it by the VB.NET project, and this project can use referenced assembly...
14 Jul 2023 by Andre Oosthuizen
The answer lies in the second part error you posted. You are using an outdated version (v1.20 seems to be the newest) which is incompatible with Gradle 5.0 (version you are using). When you load the mod (the default one in v1.12.2) it will crash...
10 Aug 2012 by Manfred Rudolf Bihy
I truely hope you've googled and already have read this: Tutorials/Setting up a Minecraft server[^] and especially that interesting part about port forwarding: Port Forwarding[^], but if you had there would be no question, would there? For setting up the router you'll have to refer to the...
1 May 2020 by oberryxy
So this probably isnt the right forums for this xD but me and my friend want to try making a command mod (were playing on bedrock version) and we want to do something were we can make diffrent kinds of weapons ex, say if i right clicked it would...
1 May 2020 by phil.o
Maybe this can help: Jabelar's Minecraft Forge Modding Tutorials: Minecraft Modding: KeyBinding Tutorial[^]
24 Dec 2021 by Furkan Ünlü
i can send keyboards inputs to notepad using this code import win32gui, win32ui, win32con def main(): window_name = "scriptkopya.txt - Not Defteri" hwnd = win32gui.FindWindow(None, window_name) hwnd =...
24 Dec 2021 by OriginalGriff
If you are following a YouTube tutorial, then the best thing to do is contact the author via the comments below it. If they don't respond, the chances are they don't know either, and that's probably because they have about as much idea what is...
11 Apr 2022 by Electro_Attacks
I'm currently working on a Minecraft Server Manager by myself, which should be able to handle all kinds of Minecraft Servers... I've managed to get it working with a normal (Bukkit) Server with both redirecting the Input and the Output of the...
4 Jul 2023 by Christopher Gutteridge
Oh dear. I'm working on the same thing and... it's pretty confusing and I've been coding for 30 years (although too much webby stuff for the last 20, my bitwise stuff is rusty). I know that's not helpful, but you're not being dumb, this is...
26 Jul 2023 by Richard MacCutchan
This is not a programming problem, you would be better using the forums at Fabric for Minecraft 1.20 | Fabric[^].
17 Feb 2015 by Alberto M.
This article describes the file format NBT and shows how can be implemented in a real application to store data.
28 Apr 2013 by Ed Nutting
A wrapper application making management, modding and running multiple MineCraft servers faster and easier.
20 Feb 2015 by Right Handed Monkey
Build Giant Ravine in Minecraft using ScriptCraft (With Other Examples)
13 Jul 2023 by OriginalGriff
This isn't a software development problem we can help with - you need to talk to the author of the mod as only they will have any idea what it does or how it does it. Sorry, but we can't help you with this.
4 Jul 2023 by Graeme_Grant
I did a quick google search: edit minecraft files with python - Google Search[^] and found the following: GitHub - DonoA/PyAnvilEditor: A python based editor for modifying mca files[^]
4 Jul 2023 by Ilai K
I have a pretty technical question about Minecraft, So I'm building a Minecraft server wrapper, and want to add an option to edit the world when the server is offline. That means messing with the save file. I have managed to make it work for 1.8...
12 Apr 2017 by Member 13124785
I have created structures for minecraft, but they're way too common. I could just open the .dat file and change the rarity from there, but i'm not sure how. each thing i've used to open the file has the file unreadable. What I have tried: i've tried notepad, wordpad, notepad++. none of those...
14 Jul 2023 by G Schulz
When I start the default forge 1.12.2 minecraft mod using [runClient] in itellji I get this crash: Note this is the mdk from Downloads for Minecraft Forge for Minecraft 1.12.2[^] Time: 7/12/23 9:43 PM Description: There was a severe problem...
26 Apr 2024 by G Schulz
(Dele(Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted) (Deleted)(Deleted) ted(Deleted) ) What I have...
10 Aug 2012 by williamvenuto
how do i portforword a minecraft serve with a arrin motume
14 Nov 2013 by dioXralabidis
hallo guys im seraching days to found this project:http://www.codeproject.com/Articles/361413/MineCraft-Server-Managementon visual basic anyone can help me? thanks !
18 Feb 2016 by natewu
So I have made a custom Minecraft launcher and I need help with some coding...First thing is I need help with when I press the "Play" button I need it to check the launcher_profiles.json and if it does not work I need it to make you log in. Next is if it does work I need it to check for...
12 Apr 2017 by Dave Kreskowiak
Unless you're writing code to open the file and read it, this question is off topic for this site. Minecraft .DAT files are not text files. They are a proprietary binary format called Named Binary Tag. There are problably apps out there that can open and parse the data so its readable and I'm...
12 Apr 2017 by Patrice T
Quote: each thing i've used to open the file has the file unreadable. Normal. Those files are not plain text, they are encoded in a certain format that is specific to the game. The goal of the encoding is also to prevent tampering. You have to build or create a program that can decode the...