Computer
From ATLauncher Wiki
Computer | |
---|---|
| |
Name | Computer |
Source Mod | ComputerCraft |
ID Name | Unknown |
Type | Block |
Stackable | Yes (64) |
Solid | Yes |
Transparent | No |
Affected by Gravity | No |
Emits Light | No |
Flammable | No |
Required Tool |
The Computer is the main block of ComputerCraft. From the Computer, you will be able to make programs, turn on and off Redstone, use Rednet and interface with bundled cables from RedPower, play games, and much more. The Computer runs an OS called CraftOS.
Contents
Recipe[edit]
Feed The Beast Infinity Evolved Expert Mode[edit]
Usage[edit]
Place the Computer wherever you please, and just right click it to use.
Keyboard Shortcuts[edit]
Shortcut | Usage |
---|---|
Ctrl + T | Terminates the current program. |
Ctrl + R | Reboots the console. |
Ctrl + S | Forcefully shuts down the computer. |
NOTE: You have to hold the keyboard shortcuts down for at least 1 second!
Peripheral Functions[edit]
computer stands for the variable you wrapped the computer to. Example: computer = peripheral.wrap( "top" )
Method name | Description |
---|---|
computer.turnOn() | Turns on the Computer or Turtle. |
computer.shutdown() | Shuts off the Computer or Turtle. |
computer.reboot() | Reboots the Computer or Turtle. |
computer.getID() | Gets the ID of the Computer or Turtle. |
|