Difference between revisions of "Tutorials"

From ComputerCraft Wiki
Jump to: navigation, search
(Basic Tutorials)
 
(25 intermediate revisions by 15 users not shown)
Line 1: Line 1:
 
As some tutorials might not be listed here, you can also browse the [[:Category:Tutorials|tutorials category]].
 
As some tutorials might not be listed here, you can also browse the [[:Category:Tutorials|tutorials category]].
  
== Before you begin ==
+
== Basic Tutorials ==
It is recommended that you read these pages before you begin working with ComputerCraft.
+
These tutorials are designed to be used in the order shown, each tutorial will build on the previous ones.
*[[Getting Started]]
+
=== Introduction to Coding ===
*[[CraftOS Shell | Shell Commands]]
+
*[[Hello_World_Tutorial|Hello World!]]
 +
*[[Variables]]
 +
*[[Conditional_statements|If, Then, Else]]
 +
*[[Function (type)|Functions]]
 +
*[[Loops]]
 +
*[[Tables]]
  
 +
== Advanced Tutorials ==
 +
These tutorials cover more advanced topics which can be useful but are not strictly necessary for simple projects.
  
Probably Adobe Photoshop CS4 for sure but very complicated to learn. Get a book on it if you buy PS. I use that and is rellay hard to use but the best. You could also try Techsmith Snagit, which I also use, and comes with Snagit Editor which does a good job and much easier to learn plus cheaper in price. You can also capture your pc screen with it. I edit many digital photos and I use Snagit mostly because simpler and faster to do
+
*[[Class]]es
 +
*[[Lua_Resource_Pack_Making_(Tutorial)|Lua Resource Pack Making]]
  
 
== Example Programs ==
 
== 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.
 
These pages guide you through programs created by other users. They are not necessarily well-coded, but can be useful as a loose guide.
No there is no camera used in the rerondicg of most of the Gameboy Advance games seen on youtube. More often than none those people play it on a Gameboy Advance Emulator, which is a program that runs a virtual gameboy on their computer. There are several different emulator programs available for download on the internet, the one I prefer is named VirtualBoy. You have to download the games separately though (It's also not very legal), they're called ROM files. Many other consoles have emulators as well such as the Super Nintendo, Sega Genesis and the PS1 alongside many others. For when they record their game it's with a screen capturing program. Google  Screen Video Capture Programs  and you should be able to find some to download. There are certain ones you have to pay for and some are free, just check it out, it should say so on the main page.For those who record games from consoles they play on their TV they use something called a  Game Bridge , you can often buy them at electronic stores like Circuit City of Futureshop.
+
 
 +
=== 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]].
 +
*[[Usage of the bundled cable using the Redstone API]]
  
 
=== Turtles ===
 
=== Turtles ===
Line 24: Line 42:
 
*[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.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://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)]
+
*[http://wiki.roblox.com/ Roblox Wiki (Has tutorials on Lua)]
 +
*[http://www.lua.org/pil/contents.html Programming in Lua, a general purpose guidebook written by a programmer that writes the Lua interpreter]
  
 
[[Category:Tutorials]]
 
[[Category:Tutorials]]

Latest revision as of 17:51, 20 October 2015

As some tutorials might not be listed here, you can also browse the 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

Advanced Tutorials

These tutorials cover more advanced topics which can be useful but are not strictly necessary for simple projects.

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

Turtles

The nice little robots that do the hard work for you.

External Tutorials/Guides