Merge pull request #6 from rickmcfarley/patch-2

Update beginnerEN.html
master
Florian Euchner 2014-09-27 17:28:58 +02:00
commit 6ab1c37a0a
1 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ you installed Minetest as this is the place you need to go to write your Mods.
<p>Now that you have found the folder where you installed Minetest, let's write our first Mod. This will be a
simple, but polite, Mod that will say hello to us as we start the game. Inside the folder where you installed
Minetest double click to open the folder called &quot;mods&quot;. Double click again to open the folder called &quot;minetest&quot;. We now need to make a new folder in this minetest directory for our new Mod. In Windows right-click the empty space in the folder and choose &quot;New =&gt; Folder&quot;. Change the name of the folder to &quot;chatty-bricks&quot;.
Minetest double click to open the folder called &quot;mods&quot;. Double click again to open the folder called &quot;minetest&quot;. We now need to make a new folder in this minetest directory for our new Mod. In Windows right-click the empty space in the folder and choose &quot;New =&gt; Folder&quot;. Change the name of the folder to &quot;chatty_bricks&quot;.
</p>
<p>So far so good. We've created a folder to hold our new Mod. Now we actually need to write some code.
Open up your text editor (Notepad++ or your favorite) and tell it to create a new blank text document. Type the following lines into the new text document:
@ -94,7 +94,7 @@ print("++++++++ Hello from me +++++++++")
</code>
<p>
Now you need to save the document. Save it in the &quot;chatty-bricks&quot; folder that you just
Now you need to save the document. Save it in the &quot;chatty_bricks&quot; folder that you just
made. Call the document &quot;init.lua&quot;. Be careful not to save it as &quot;init.lua.txt&quot; by mistake.</p>
<p>We have reached the moment of truth. Go and fire up Minetest. As you start the program you should see a console window pop up behind the main Minetest window. Move the windows around so that you can see the console window. Keep one eye on the console window as you double click to open a single player world. Did you see your hello line appear? If you did, perform a celebratory dance of your own choosing. If you didn't, ask the person sitting next to you to see if they can help you figure out what went wrong.