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

[Question]CraftOs to something else..

Started by Teraminer, 15 April 2012 - 03:22 PM
Teraminer #1
Posted 15 April 2012 - 05:22 PM
When I was browsing videos in youtube I saw someone that have changed the CraftOs to VexOs or something.He had a howto video but it was removed by him.
So can someone tell me how to do that.AND yes it is posible..
Cloudy #2
Posted 15 April 2012 - 05:34 PM
Edit the bios, change the os.version() to return something else.

Cheap trick though.
cant_delete_account #3
Posted 15 April 2012 - 06:16 PM
Edit the bios, change the os.version() to return something else.

Cheap trick though.
Or just type 'edit startup', add this code:

term.clear()
term.setCursorPos(1,1)
print("VexOs 1.3")
Then save, done.
EmTeaKay #4
Posted 15 April 2012 - 07:35 PM
Or do this.

shell.run("clear")
print("VexOs 1.3")

That'll work too.
Cloudy #5
Posted 15 April 2012 - 07:44 PM
Yeah, but why use the extra overhead of running a program to clear the screen when you can do it in two functions?

Both methods are acceptable, but I like efficiency :)/>/>
Teraminer #6
Posted 15 April 2012 - 09:16 PM
Thanks guys (thebros I searched in startup file (not in-game) beliving it was there, so double thanks to you.