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

A couple questions

Started by PixelFox, 08 July 2015 - 02:22 PM
PixelFox #1
Posted 08 July 2015 - 04:22 PM
I would like to know if it is possible to have multiple shells, Multishell is broken for me, so I'm not sure what to do.
Also, I'd like to know if it's possible for when a program is exited out of, it would sleep(0.5) then go to my OS. with
out changing the programs code.









- Cheers, Lightning
KingofGamesYami #2
Posted 08 July 2015 - 05:09 PM
How is multishell broken? I'd assume your trying to use it wrong.

As for the second bit, could you not just have your OS sleep for 0.5 seconds before doing any rendering operation? It'd give the same effect.
PixelFox #3
Posted 08 July 2015 - 05:12 PM
How is multishell broken? I'd assume your trying to use it wrong.

As for the second bit, could you not just have your OS sleep for 0.5 seconds before doing any rendering operation? It'd give the same effect.
That isn't what I mean, I want it so after a program finishes, it opens up my OS.
KingofGamesYami #4
Posted 08 July 2015 - 05:35 PM
If your OS stops running when you run another program, your OS isn't an OS.
Bomb Bloke #5
Posted 09 July 2015 - 12:58 AM
Mind you, good luck getting any script to stop running when it starts another. Generally a script which launches another script will continue from where it left off once that second script completes. At which point you might have it redraw the screen, etc…