This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
iRichard's profile picture

Wat's wrong?

Started by iRichard, 22 January 2014 - 10:44 AM
iRichard #1
Posted 22 January 2014 - 11:44 AM
I did not come all the way out, what's wrong?
local start = {{plastic.clear()}, {plastic.addBox(18,18,200,9,0x444444,0.7)}, {plastic.addBox(18,27,200,90,0x666666,0.7)}, {plastic.addText(19, 19, "GCT", colortext)}, {plastic.addText(199, 19, "#1", colortext)} }
Henness #2
Posted 22 January 2014 - 03:07 PM
What?

Please post more information
Edited on 22 January 2014 - 02:07 PM
iRichard #3
Posted 22 January 2014 - 03:18 PM
He don't run the variable, that's the problem.
Henness #4
Posted 22 January 2014 - 03:20 PM
I believe this is part of your other post
iRichard #5
Posted 22 January 2014 - 03:26 PM
No, this is separate from each other, in others it is simply clear the problem, take away everything, this is a variable problem.
TechMasterGeneral #6
Posted 22 January 2014 - 04:02 PM
Try this:

local function startup()
plastic.clear()
plastic.addBox(18,18,200,9,0x444444,0.7)
plastic.addBox(18,27,200,90,0x666666,0.7)
plastic.addText(19, 19, "GCT", colortext)
plastic.addText(199, 19, "#1", colortext)
end
-- Run the startup
startup()

iRichard #7
Posted 22 January 2014 - 04:10 PM
Try this:

local function startup()
plastic.clear()
plastic.addBox(18,18,200,9,0x444444,0.7)
plastic.addBox(18,27,200,90,0x666666,0.7)
plastic.addText(19, 19, "GCT", colortext)
plastic.addText(199, 19, "#1", colortext)
end
-- Run the startup
startup()

Thanks!