Difference between revisions of "Advanced Computer"

From ComputerCraft Wiki
Jump to: navigation, search
(Minor edit.)
Line 8: Line 8:
 
  }}
 
  }}
 
==Exclusive Functions==
 
==Exclusive Functions==
* term.setTextColour(colours._color)
+
* term.setTextColor(colors[<color>])
* term.setBackgroundColour(colours._color)
+
* term.setBackgroundColor(colors[<color>])
* (where _color is the color, like blue.)
+
* (where <color> is the color as a string, like: "blue".)
NOTE: English from the US uses "colors", while any other English uses "colours".
+
NOTE: The '''colours''' table can be used instead of the '''colors''' table, the '''colours''' table exists because of spelling differences in "U.S. English" and "English English". The '''term.setTextColour()''' and '''term.setBackgroundColour()''' functions also exist for this same reason.
 
[[Category:Blocks]]
 
[[Category:Blocks]]
 
[[Category:Consoles]]
 
[[Category:Consoles]]

Revision as of 09:56, 24 November 2012

An advanced computer running Paint, an exclusive program
The advanced computer is a computer that has mouse and colour API support. More exclusive features may be added in another update. They resemble the traditional computer console, but are golden coloured to match their crafting recipe.

Recipe

Gold_Ingot

Gold_Ingot

Gold_Ingot

Gold_Ingot

glass_pane

Gold_Ingot

Gold_Ingot

Gold_Ingot

Advanced_Computer



Exclusive Functions

  • term.setTextColor(colors[<color>])
  • term.setBackgroundColor(colors[<color>])
  • (where <color> is the color as a string, like: "blue".)

NOTE: The colours table can be used instead of the colors table, the colours table exists because of spelling differences in "U.S. English" and "English English". The term.setTextColour() and term.setBackgroundColour() functions also exist for this same reason.

Exclusive Programs & APIs