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

HunterOS

Started by hunterforsberg, 28 August 2015 - 05:30 PM
hunterforsberg #1
Posted 28 August 2015 - 07:30 PM
HunterOS is an operating system that includes email a nice menu and stuffz

Downloads
HunterOS 1.0.0:
https://www.mediafire.com/folder/hk3gc5kr2og3y/HunterOS_1.0.0

HunterOS 1.0.1:
Major glitch fixes
cyanisaac #2
Posted 28 August 2015 - 08:22 PM
Make a pastebin installer pls pls pls pls pls. Us ComputerCrafters are far too lazy to download files. And also since mediafire seems to not like us downloading bulk files without a pro account this is almost a necessity.

May I recommend Creator's Compress?
hunterforsberg #3
Posted 10 September 2015 - 07:09 PM
Make a pastebin installer pls pls pls pls pls. Us ComputerCrafters are far too lazy to download files. And also since mediafire seems to not like us downloading bulk files without a pro account this is almost a necessity.

May I recommend Creator's Compress?

thank you for the suggestion i will be releasing HunterOS 1.5 soon
ExplosiveFerrets #4
Posted 30 October 2015 - 08:59 PM
As telepsychonic said, please make a pastebin installer.
Creator #5
Posted 30 October 2015 - 09:28 PM
And screenies.

Glad to see Compress has gained in popularity.
Blue #6
Posted 31 October 2015 - 07:07 AM
I haven't tested it/looked at the code but I can tell that you're not using functions. Don't worry,they're quite easy to use:
At the beginning of your function,add this:

local function <name> ()
-- your code here
end
For example:

local function mainMenu ()
print("Hello World!")
print("1. Hello")
print("2. Goodbye")
end
Don't forget to add end at the end of your function
Then you can call the function,it's a bit like using shell.run():

mainMenu()
I'm not exactly the best at making tutorials,so check out the wiki if you need more help.
Also,I noticed that there was a back program. I've seen quite a lot of people use this,it's a lot easier to use:

shell.setAlias(<path>,<name>)