Difference between revisions of "CommandBlock.setCommand"

From ComputerCraft Wiki
Jump to: navigation, search
(Peripheral names in functions are now italic)
(Improved example)
 
Line 8: Line 8:
 
|examples={{Example
 
|examples={{Example
 
|desc=Sets the command in the Command Block on the left side of the computer to ''time set 0''.
 
|desc=Sets the command in the Command Block on the left side of the computer to ''time set 0''.
|code=local commandBlock = [[peripheral.wrap]]("left")<br/><br/>commandBlock.setCommand("time set 0")
+
|code=local commandBlock = [[peripheral.wrap]]("left")
 +
 +
'''commandBlock.setCommand("time set 0")'''
 
|output=
 
|output=
 
}}
 
}}

Latest revision as of 19:27, 16 February 2015

Grid Redstone.png  Function commandBlock.setCommand
Sets the command in the Command Block. This does not run it.
Syntax commandBlock.setCommand(string command)
Returns nil
Part of ComputerCraft
API Command Block

Examples

Grid paper.png  Example
Sets the command in the Command Block on the left side of the computer to time set 0.
Code
local commandBlock = peripheral.wrap("left")

commandBlock.setCommand("time set 0")