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

[Error] "bios:206: [string "startup"]:2: '=' expected"?

Started by digpoe, 07 May 2012 - 09:40 AM
digpoe #1
Posted 07 May 2012 - 11:40 AM
I was making a startup script to run a program on a monitor, but when I run it, it comes up with the error in the title. The code I'm using is this:

term.clear()
monitor top access
Xtansia #2
Posted 07 May 2012 - 12:04 PM
Try this:

term.clear()
shell.run("monitor", "top", "access")  --shell.run("ProgramToRun", "Argument1", "Argument2" ......)
digpoe #3
Posted 07 May 2012 - 12:31 PM
Try this:

term.clear()
shell.run("monitor", "top", "access")  --shell.run("ProgramToRun", "Argument1", "Argument2" ......)
I got it to towk now, so its ok. Thanks though :)/>/>