Difference between revisions of "Main Page"

From wiki.vg
Jump to navigation Jump to search
(General cleanup, links to future pages)
 
(add link to protocol history)
(74 intermediate revisions by 23 users not shown)
Line 1: Line 1:
Welcome to the Minecraft Coalition wiki! Thanks to the #mcc community on irc.esper.net.
+
__NOTOC____NOEDITSECTION__
 +
{{Box|
 +
BORDER = #9999FF|
 +
BACKGROUND = #99CCFF|
 +
WIDTH = 100%|
 +
ICON = |
 +
HEADING = Minecraft Modern |
 +
CONTENT = 
 +
[[File:Banner beta.png|link=Category:Minecraft Modern]]
  
'''As spam prevention, you must register and confirm your email address to edit pages.'''
+
Minecraft Modern is the latest (and only updated) version of Minecraft which requires a paid account to download, update and play. Most of the new development projects focus on either creating entirely new programs from scratch that interoperate with Minecraft (such as a bot or server) or modding projects that wrap the client or server and provide bug fixes, new features and enhancements to existing features.
  
Consult the [http://meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software.
+
=== Documentation ===
 
+
There are ongoing efforts to keep reverse engineered documentation updated, but it isn't as easy as it sounds. The protocol generally changes slightly with each release, and both the Client and Server classes get rearranged on each release. Below are links to the current documentation segments, which '''may or may not be completely up to date'''.
== Alpha ==
 
[[File:Banner alpha.png|link=Minecraft Alpha]]
 
 
 
Minecraft Alpha is the latest (and only updated) version of Minecraft which requires a paid account to download, update and play. Most of the new development projects focus on either creating entirely new programs from scratch that interoperate with Minecraft (such as a bot or server) or modding projects that wrap the client or server and provide bug fixes, new features and enhancements to existing features.
 
  
=== Documentation ===
 
There are ongoing efforts to keep reverse engineered documentation updated, but it isn't as easy as it sounds. The protocol generally changes with each release, and both the Client and Server classes get rearranged on each release. Below are links to the current documentation segments, which '''may or may not be accurate'''.
 
* [[Protocol|Protocol Specification]]
 
 
* [[Protocol FAQ]]
 
* [[Protocol FAQ]]
 +
* [[Protocol|Current Protocol Specification]]
 +
** [[Protocol Encryption]]
 +
** [[Server List Ping]] documentation
 +
** [[Protocol version numbers]]
 +
** [[Plugin channels]]
 +
** [[Protocol History]]
 +
* [[Pre-release protocol|Pre-release Protocol Specificaton]]
 
* [[Authentication|Authentication Scheme]]
 
* [[Authentication|Authentication Scheme]]
* [[Map Format]]
+
* [[Mojang API]]
 
+
* [[Game Files|Location of Game Files]]
=== Source Code & Snippets ===
+
* [[Map Format]] (See also: mirror of the old [[NBT]].txt)
Source code snippets provide insight into how specific features work or can be accomplished, and by themselves are generally free to use in your own program.
+
* [[Snoop|Snoop Mechanism]]
* [[Skins.php]], a script to generate a preview image from a Minecraft skin file (PHP).
+
* [[Realms API]]
* [[MC-Ver]], a simple script that monitors for the game client to change versions, and reports the change via http://cia.vc/ (Python).
+
* [[Rcon]] and [[Query]] protocol specifications
* [[:Category:Code Snippets|More...]]
+
* [[Debugging]]
  
=== Tools and Mods ===
+
=== Tools & Mods ===
* [[Client List|Clients]] - third-party SMP clients.
+
* [[Client List|Clients]] - third-party Minecraft clients.
* [[Server List|Servers]] - third-party SMP servers.
+
* [[Server List|Servers]] - third-party Minecraft servers.
 
* [[Library List|Libraries]] - libraries to interface with Minecraft data files or network protocols.
 
* [[Library List|Libraries]] - libraries to interface with Minecraft data files or network protocols.
* [[Utility List|Utilities]] - tools that interface with a client, server, or data files, such as proxies, bots, mods, or inventory editors.
+
* [[Utility List|Utilities]] - tools that interface with a client, server, or data files, such as proxies, bots, or inventory editors.
 +
* [[Wrapper List|Wrappers]] - mods that override features in the client or server
 +
* [https://github.com/mcdevs/Burger/ Burger] - a tool that generates information for arbitrary Minecraft versions
 +
:* [http://b.wiki.vg/ Burger Vitrine] - shows differences in data and protocol between arbitrary versions (prior to 1.7).
 +
:* [https://matsv.nl/PAaaS/ PAaaS] - shows differences in protocol and sounds for newer versions (1.8 and above)
 +
* [[Code Snippets]]
  
 +
=== Tutorials & Guides ===
 +
* [[How to Write a Client]]
 +
* [[How to Write a Server]]
 +
* [[Chat|How Chat Works]]
  
For more info, check out [[Minecraft Alpha]].
+
For more info, check out [[:Category:Minecraft Modern|Minecraft Modern]].
 +
}}
  
== Classic ==
+
{{Box|
[[File:Banner classic.png|link=Minecraft Classic]]
+
BORDER = #9999FF|
 +
BACKGROUND = #99CCFF|
 +
WIDTH = 100%|
 +
ICON = |
 +
HEADING = Minecraft Classic |
 +
CONTENT =
 +
[[File:Banner classic.png|link=Category:Minecraft Classic]]
  
Minecraft Classic is the original version of Minecraft, available for free to the public. It's still available off of the main website today and is still played by many people, with an active development community. As it's been around for almost a year, and because it's so simplistic, there are many, many programs made to work with Classic - there are over '''18+''' servers alone, written in everything from C++ to PureBasic to Perl. It's highly recommend if you're planning to do a development project at this point to instead look into the Minecraft Alpha specifications.
+
Minecraft Classic is the original version of Minecraft, available for free to the public. It's still available off of the main website today and is still played by many people, with an active development community. As it's been around since 2010, and because it's so simplistic, there are many, many programs made to work with Classic - there are over '''18+''' servers alone, written in everything from C++ to PureBasic to Perl. It's highly recommend if you're planning to do a development project at this point to instead look into the Minecraft Modern specifications.
  
 
=== Documentation ===
 
=== Documentation ===
 
As there is no longer any work being done on classic, the documentation for it is stable. If you create something that works with it, it probably always will.
 
As there is no longer any work being done on classic, the documentation for it is stable. If you create something that works with it, it probably always will.
 
* [[Classic Protocol|Protocol Specification]]
 
* [[Classic Protocol|Protocol Specification]]
 +
* [[Classic Protocol Extension|Extension Protocol Specification]]
 
* [[Classic DAT Format|Server Map Format (.dat)]]
 
* [[Classic DAT Format|Server Map Format (.dat)]]
 
* [[MCLevel Format|Saved Level Format (.mclevel)]]
 
* [[MCLevel Format|Saved Level Format (.mclevel)]]
Line 45: Line 70:
 
=== Source Code Snippets ===
 
=== Source Code Snippets ===
 
Source code snippets provide insight into how specific features work or can be accomplished, and by themselves are generally free to use in your own program.
 
Source code snippets provide insight into how specific features work or can be accomplished, and by themselves are generally free to use in your own program.
* Deserializing the level.dat file format ([[deserialize.c|C]], [[deserialize.cs|C#]])
+
* Deserializing the level.dat file format ([[deserialize.c|C]], [https://gist.github.com/324122945a569a513bae C#])
* [[Skins.php]], a script to generate a preview image from a Minecraft skin file (PHP).
 
 
* [[:Category:Code Snippets|More...]]
 
* [[:Category:Code Snippets|More...]]
  
Line 55: Line 79:
 
* [[Classic Library List|Libraries]] - libraries to interface with Minecraft data files or network protocols.
 
* [[Classic Library List|Libraries]] - libraries to interface with Minecraft data files or network protocols.
 
* [[Classic Utility List|Utilities]] - tools that interface with a client, server, or data files, such as proxies or bots.
 
* [[Classic Utility List|Utilities]] - tools that interface with a client, server, or data files, such as proxies or bots.
 +
* [[Classic Wrapper List|Wrappers]] - mods that override features in the client or server.
 +
 +
For more info, check out [[:Category:Minecraft Classic|Minecraft Classic]].
 +
}}
 +
 +
{{Box|
 +
BORDER = #9999FF|
 +
BACKGROUND = #99CCFF|
 +
WIDTH = 100%|
 +
ICON = |
 +
HEADING = Minecraft Pocket Edition |
 +
CONTENT = 
 +
[[File:Banner pocket.png|link=Category:Pocket Minecraft]]
  
 +
Minecraft Pocket Edition is the version of Minecraft for portable systems such as Android, iOS or Windows 10 devices.
 +
 +
=== Documentation ===
 +
The protocol and map format documentation for Minecraft Pocket Edition.
 +
* [[Pocket Minecraft Protocol|Old Protocol Specification]] (This protocol information is considered outdated, but still contains useful information)
 +
* [[Pocket Edition Protocol Documentation|The current Protocol docs]]
 +
* [[Pocket Edition FAQ|FAQ]]
 +
* [[Pocket Edition Login|Login Procedure]]
 +
* [[Pocket Realms|Pocket Realms]]
 +
* [[Pocket Minecraft Map Format|Map Format]]
 +
 +
=== Tools ===
 +
Useful information & links
 +
* [[Pocket Edition Program List|Program list]] - third-party PE programs
  
 +
For more info, check out [[:Category:Pocket Minecraft|Pocket Minecraft]].
  
For more info, check out [[Minecraft Classic]].
+
}}

Revision as of 20:56, 1 September 2017

Minecraft Modern

Banner beta.png

Minecraft Modern is the latest (and only updated) version of Minecraft which requires a paid account to download, update and play. Most of the new development projects focus on either creating entirely new programs from scratch that interoperate with Minecraft (such as a bot or server) or modding projects that wrap the client or server and provide bug fixes, new features and enhancements to existing features.

Documentation

There are ongoing efforts to keep reverse engineered documentation updated, but it isn't as easy as it sounds. The protocol generally changes slightly with each release, and both the Client and Server classes get rearranged on each release. Below are links to the current documentation segments, which may or may not be completely up to date.

Tools & Mods

  • Clients - third-party Minecraft clients.
  • Servers - third-party Minecraft servers.
  • Libraries - libraries to interface with Minecraft data files or network protocols.
  • Utilities - tools that interface with a client, server, or data files, such as proxies, bots, or inventory editors.
  • Wrappers - mods that override features in the client or server
  • Burger - a tool that generates information for arbitrary Minecraft versions
  • Burger Vitrine - shows differences in data and protocol between arbitrary versions (prior to 1.7).
  • PAaaS - shows differences in protocol and sounds for newer versions (1.8 and above)

Tutorials & Guides

For more info, check out Minecraft Modern.

Minecraft Classic

Banner classic.png

Minecraft Classic is the original version of Minecraft, available for free to the public. It's still available off of the main website today and is still played by many people, with an active development community. As it's been around since 2010, and because it's so simplistic, there are many, many programs made to work with Classic - there are over 18+ servers alone, written in everything from C++ to PureBasic to Perl. It's highly recommend if you're planning to do a development project at this point to instead look into the Minecraft Modern specifications.

Documentation

As there is no longer any work being done on classic, the documentation for it is stable. If you create something that works with it, it probably always will.

Source Code Snippets

Source code snippets provide insight into how specific features work or can be accomplished, and by themselves are generally free to use in your own program.

  • Deserializing the level.dat file format (C, C#)
  • More...

Tools and Mods

Useful information & links

  • Clients - third-party Classic clients.
  • Servers - third-party Classic servers.
  • Libraries - libraries to interface with Minecraft data files or network protocols.
  • Utilities - tools that interface with a client, server, or data files, such as proxies or bots.
  • Wrappers - mods that override features in the client or server.

For more info, check out Minecraft Classic.

Minecraft Pocket Edition

Banner pocket.png

Minecraft Pocket Edition is the version of Minecraft for portable systems such as Android, iOS or Windows 10 devices.

Documentation

The protocol and map format documentation for Minecraft Pocket Edition.

Tools

Useful information & links

For more info, check out Pocket Minecraft.