summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2014-06-11 10:37:00 +0200
committerworktycho <work.tycho@gmail.com>2014-06-11 10:37:00 +0200
commit8695928dd17e96baed46da18d085b51f831e4bab (patch)
treecdefb2a28d94fc6187166f3625242dc3a7f1fa9c
parentUpdate GETTING-STARTED.md (diff)
downloadcuberite-8695928dd17e96baed46da18d085b51f831e4bab.tar
cuberite-8695928dd17e96baed46da18d085b51f831e4bab.tar.gz
cuberite-8695928dd17e96baed46da18d085b51f831e4bab.tar.bz2
cuberite-8695928dd17e96baed46da18d085b51f831e4bab.tar.lz
cuberite-8695928dd17e96baed46da18d085b51f831e4bab.tar.xz
cuberite-8695928dd17e96baed46da18d085b51f831e4bab.tar.zst
cuberite-8695928dd17e96baed46da18d085b51f831e4bab.zip
-rw-r--r--GETTING-STARTED.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/GETTING-STARTED.md b/GETTING-STARTED.md
index 4d992597e..eb7d1b713 100644
--- a/GETTING-STARTED.md
+++ b/GETTING-STARTED.md
@@ -3,7 +3,7 @@ Hello! Thanks for wanting to work on this project :smile:, and I hope that this
Minecraft Basics
----------------
-If you don't play Minecraft or don't have a great knowledge of the basic systems, you should get to know them. The [Minecraft Wiki](http://minecraft.gamepedia.com/Minecraft_Wiki) is quite useful for this task, although some youtubers are also fairly good at teaching the basics and just playing is quite good too.
+If you don't play Minecraft or don't have a great knowledge of the basic systems, you should get to know them. The [Minecraft Wiki](http://minecraft.gamepedia.com/Minecraft_Wiki) is quite useful for this task, although some youtubers are also fairly good at teaching the basics and just playing is quite good too. It is possabile to contribute without knowing minecraft in detail though.
I'd say that the important topics are:
@@ -39,7 +39,7 @@ You'll also need CMake to generate the makefile to build from.
**Windows:**
-If you use Windows, your best bet is the MSVC2008 (available as a free download in the Express edition from MS) or MSVS2013 (ditto), solution files for both are currently in the repo.
+If you use Windows, your best bet is the MSVC2008 (available as a free download in the Express edition from MS) or MSVS2013 (ditto), solution files for which can be generated with cmake. You'll also need cmake to generate the project files.
Setting up the Repo
-------------------
@@ -85,7 +85,7 @@ Basically, the process is:
**Windows:**
-You need to first execute the `src/Bindings/AllToLua.bat` script file, then just open the solution file in your MSVC of choice and build.
+You need to first generate a project file with `cmake . -DCMAKE_BUILD_TYPE=DEBUG` then execute the `src/Bindings/AllToLua.bat` script file, then just open the solution file in your MSVC of choice and build.
How to Run
----------
@@ -99,18 +99,18 @@ There are a few fairly easy issues for you to get started with, as well as some
**Easy**:
- * #288
- * #385
- * #402
- * #380
- * #503
- * #491
+ * #140
+ * #493
+ * #577
+ * #381
+ * #752
* Clean up some of the compiler warnings. (Check [Travis CI](http://travis-ci.org/mc-server/MCServer) for a list of them.) With clang, there are over 10000 lines of warnings to clean up.
**More Difficult**:
- * #17
- * #398
+ * #133
+ * #134
+ * #215
You may also want to write some plugins. They are written in lua, with excellent API documentation available via [APIDump](http://mc-server.xoft.cz/LuaAPI). The [Core](https://github.com/mc-server/Core) plugin should also help quite a bit here.