Difference between revisions of "Tutorials"
From ComputerCraft Wiki
(hCTeEmuaHHKr) |
m (Reverted edits by 195.229.241.181 (talk) to last revision by AfterLifeLochie) |
||
Line 1: | Line 1: | ||
− | + | As some tutorials might not be listed here, you can also browse the [[:Category:Tutorials|tutorials category]]. | |
+ | |||
+ | == Basic Tutorials == | ||
+ | These tutorials are designed to be used in the order shown, each tutorial will build on the previous ones. | ||
+ | === Introduction to Coding === | ||
+ | *[[Hello_World_Tutorial|Hello World!]] | ||
+ | *[[Variables]] | ||
+ | *[[Conditional_statements|If, Then, Else]] | ||
+ | *[[Function (type)|Function]] | ||
+ | *[[Loops]] | ||
+ | *[[Tables]] | ||
+ | |||
+ | == Example Programs == | ||
+ | These pages guide you through programs created by other users. They are not necessarily well-coded, but can be useful as a loose guide. | ||
+ | |||
+ | === Programming & Wiring === | ||
+ | *[[Guess_The_Number_(tutorial)|Guess the Number]] | ||
+ | *[[Making_a_Password_Protected_Door|Password Protected Door]] | ||
+ | *[[Making_an_API_(tutorial)|Programming an API]] | ||
+ | *[[Startup|Running script automatically at boot with Startup]] | ||
+ | *[[Raw key events| Detecting specific keys (such as the arrow keys)]] | ||
+ | *[[Receiving a rednet message through os.pullEvent()|Receiving a rednet message through os.pullEvent()]] | ||
+ | *[[Calculator Tutorial]] | ||
+ | *[[Rednet Tutorial]]. | ||
+ | |||
+ | === Turtles === | ||
+ | The nice little robots that do the hard work for you. | ||
+ | *[[Turtle_Tutorial|Turtles!]] | ||
+ | *[[Turtle_Lumberjack_(tutorial)|Turtle Lumberjack]] | ||
+ | *[[Advanced_Turtle_Lumberjack_(tutorial)|Advanced Turtle Lumberjack]] | ||
+ | *[[Cobble_Generator|Cobblestone Generator]] | ||
+ | *[[Turtle_Stairbuilder_(tutorial)|Turtle Stairbuilder]] | ||
+ | |||
+ | == External Tutorials/Guides == | ||
+ | *[http://www.minecraftforum.net/topic/907632-mod-tutorial-computercraft-v12-very-basic-lua-tutorial-updated-1112/page__p__11556908#entry11556908 Onionnion's Basic Lua Tutorial] | ||
+ | *[http://www.computercraft.info/forums2/index.php?/topic/1516-ospullevent-what-is-it-and-how-is-it-useful/page__view__findpost__p__11156 Onionnion's os.pullEvent() Guide] | ||
+ | *[http://wiki.roblox.com/ Roblox Wiki (Has tutorials on Lua)] | ||
+ | |||
+ | [[Category:Tutorials]] |
Revision as of 14:30, 4 December 2012
As some tutorials might not be listed here, you can also browse the tutorials category.
Contents
Basic Tutorials
These tutorials are designed to be used in the order shown, each tutorial will build on the previous ones.
Introduction to Coding
Example Programs
These pages guide you through programs created by other users. They are not necessarily well-coded, but can be useful as a loose guide.
Programming & Wiring
- Guess the Number
- Password Protected Door
- Programming an API
- Running script automatically at boot with Startup
- Detecting specific keys (such as the arrow keys)
- Receiving a rednet message through os.pullEvent()
- Calculator Tutorial
- Rednet Tutorial.
Turtles
The nice little robots that do the hard work for you.