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

CubeLink Industries [Icube OS V1.0 beta OUT SOON]

Started by rex41043, 04 April 2012 - 06:39 PM
rex41043 #1
Posted 04 April 2012 - 08:39 PM
CubeLink Industries Programming

CubeLink Industries is just some thing that I do on a server

but the programs on here are made by rex41043 and darkdave23

and we are going to show the programs we made to the world!

so we hope you like them and happy programming!

and if you want you can make a app by replying to this topic!

showing off what you have made!


Team:

rex41043/abthouse29 - Lead Developers


I Cube


Spoiler

THERE A STILL A LOT OF UPDATES TO COME

DUE TO THIS THE UPDATE PROGRAM WILL NOT WORK!


I cube is the OS that we made so far it comes with a nice startup and a update program.

This update program downloads updates form pastebin so you dont have to keep re-downloading the hole

floppy disk installer BTW it uses a floppy disk to install.

there will be more added soon so have fun with I cube!


DOWNLOAD:

Just put the files that are in the .zip info a floppy and reboot the computer

with the floppy then run the install!




BANNER:

Spoiler



Mads #2
Posted 04 April 2012 - 09:06 PM
Hello, I could be a programmer?
Something I've made: http://www.computercraft.info/forums2/index.php?/topic/1101-apisprogramsutilitiesmads-programs/ xD
cant_delete_account #3
Posted 04 April 2012 - 09:11 PM
I can help code, I'm very good with the HTTP API, so I can help with an auto-updater 'n all that cool stuff.
Wolvan #4
Posted 04 April 2012 - 10:19 PM
Would help too
rex41043 #5
Posted 04 April 2012 - 11:38 PM
Hello, I could be a programmer?
Something I've made: http://www.computerc...smads-programs/ xD
sweet you can you send me your skype in a email if you have 1 it just makes it a lot ezyer my email is rex41043@gmail.com

Would help too
sweet you can you send me your skype in a email if you have 1 it just makes it a lot ezyer my email is rex41043@gmail.com
rex41043 #6
Posted 04 April 2012 - 11:40 PM
Would help too
o your 1st job wolvan can you make a logo/banner for
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Wolvan #7
Posted 04 April 2012 - 11:43 PM
Would help too
o your 1st job wolvan can you make a logo/banner for
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Some special requests? Size? Colors? Text?
ComputerCraftFan11 #8
Posted 05 April 2012 - 01:05 AM
I'll help, I made a auto updater with and without pastebin in another post
rex41043 #9
Posted 05 April 2012 - 03:31 AM
Would help too
o your 1st job wolvan can you make a logo/banner for
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Some special requests? Size? Colors? Text?
na just do and u plez

I'll help, I made a auto updater with and without pastebin in another post
that wood be real nice and can u make it read off a file for what it need to download and what to save it as
ComputerCraftFan11 #10
Posted 05 April 2012 - 07:36 AM
Would help too
o your 1st job wolvan can you make a logo/banner for
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Some special requests? Size? Colors? Text?
na just do and u plez

I'll help, I made a auto updater with and without pastebin in another post
that wood be real nice and can u make it read off a file for what it need to download and what to save it as

Here:
Server:

version = "1.0"
pastebin = "change to pastebin Id"

while true do
  id, message = rednet.recieve()
  if message == "check" then
     rednet.send(id, version)
  elseif message == "update" then
     rednet.send(id, pastebin)
   end
end

Client:

version = 1.0
programname = "startup"

function update()
  rednet.broadcast("check")
  id, message = rednet.receive()
  if version == message then
  else
     rednet.send(id, "update")
     id, message = rednet.receive()
     write("Update available! Would you like to update? [y/n] ")
     input = read()
     if input == "y" then
         shell.run("pastebin", "get", message, programname)
         shell.run(programname)
     end
  end
end

update()


Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
rex41043 #11
Posted 05 April 2012 - 09:11 AM
Would help too
o your 1st job wolvan can you make a logo/banner for
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Some special requests? Size? Colors? Text?
na just do and u plez

I'll help, I made a auto updater with and without pastebin in another post
that wood be real nice and can u make it read off a file for what it need to download and what to save it as

Here:
Server:

version = "1.0"
pastebin = "change to pastebin Id"

while true do
  id, message = rednet.recieve()
  if message == "check" then
	 rednet.send(id, version)
  elseif message == "update" then
	 rednet.send(id, pastebin)
   end
end

Client:

version = 1.0
programname = "startup"

function update()
  rednet.broadcast("check")
  id, message = rednet.receive()
  if version == message then
  else
	 rednet.send(id, "update")
	 id, message = rednet.receive()
	 write("Update available! Would you like to update? [y/n] ")
	 input = read()
	 if input == "y" then
		 shell.run("pastebin", "get", message, programname)
		 shell.run(programname)
	 end
  end
end

update()


Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
sweet but its not what we need for this OS i'm thinking of makeing it so the program reads off the file that tell the update program what to download and what to save it as
ComputerCraftFan11 #12
Posted 05 April 2012 - 05:59 PM
Would help too
o your 1st job wolvan can you make a logo/banner for
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Some special requests? Size? Colors? Text?
na just do and u plez

I'll help, I made a auto updater with and without pastebin in another post
that wood be real nice and can u make it read off a file for what it need to download and what to save it as

Here:
Server:

version = "1.0"
pastebin = "change to pastebin Id"

while true do
  id, message = rednet.recieve()
  if message == "check" then
	 rednet.send(id, version)
  elseif message == "update" then
	 rednet.send(id, pastebin)
   end
end

Client:

version = 1.0
programname = "startup"

function update()
  rednet.broadcast("check")
  id, message = rednet.receive()
  if version == message then
  else
	 rednet.send(id, "update")
	 id, message = rednet.receive()
	 write("Update available! Would you like to update? [y/n] ")
	 input = read()
	 if input == "y" then
		 shell.run("pastebin", "get", message, programname)
		 shell.run(programname)
	 end
  end
end

update()


Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
sweet but its not what we need for this OS i'm thinking of makeing it so the program reads off the file that tell the update program what to download and what to save it as

That's what it does, you can add a read() function asking what you want to save it as and replace the "programname" with the users inout
rex41043 #13
Posted 05 April 2012 - 09:27 PM
Would help too
o your 1st job wolvan can you make a logo/banner for
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Some special requests? Size? Colors? Text?
na just do and u plez

I'll help, I made a auto updater with and without pastebin in another post
that wood be real nice and can u make it read off a file for what it need to download and what to save it as

Here:
Server:

version = "1.0"
pastebin = "change to pastebin Id"

while true do
  id, message = rednet.recieve()
  if message == "check" then
	 rednet.send(id, version)
  elseif message == "update" then
	 rednet.send(id, pastebin)
   end
end

Client:

version = 1.0
programname = "startup"

function update()
  rednet.broadcast("check")
  id, message = rednet.receive()
  if version == message then
  else
	 rednet.send(id, "update")
	 id, message = rednet.receive()
	 write("Update available! Would you like to update? [y/n] ")
	 input = read()
	 if input == "y" then
		 shell.run("pastebin", "get", message, programname)
		 shell.run(programname)
	 end
  end
end

update()


Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
sweet but its not what we need for this OS i'm thinking of makeing it so the program reads off the file that tell the update program what to download and what to save it as

That's what it does, you can add a read() function asking what you want to save it as and replace the "programname" with the users inout
ya but for the way that we will need it to work it needs to read what it needs to DOWNLOAD OFF A FILE and have it run with out a update server
Wolvan #14
Posted 05 April 2012 - 10:29 PM
Would help too
o your 1st job wolvan can you make a logo/banner for CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Some special requests? Size? Colors? Text?
Done :)/>/>
Post this as HTML in your signature


[url="http://www.computercraft.info/forums2/index.php?/topic/1110-cubelink-industries-programming-programmers-wanted/"][img]http://img714.imageshack.us/img714/5373/cyberlink.gif[/img][/url]
ComputerCraftFan11 #15
Posted 06 April 2012 - 02:11 AM
Would help too
o your 1st job wolvan can you make a logo/banner for
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Some special requests? Size? Colors? Text?
na just do and u plez

I'll help, I made a auto updater with and without pastebin in another post
that wood be real nice and can u make it read off a file for what it need to download and what to save it as

Here:
Server:

version = "1.0"
pastebin = "change to pastebin Id"

while true do
  id, message = rednet.recieve()
  if message == "check" then
	 rednet.send(id, version)
  elseif message == "update" then
	 rednet.send(id, pastebin)
   end
end

Client:

version = 1.0
programname = "startup"

function update()
  rednet.broadcast("check")
  id, message = rednet.receive()
  if version == message then
  else
	 rednet.send(id, "update")
	 id, message = rednet.receive()
	 write("Update available! Would you like to update? [y/n] ")
	 input = read()
	 if input == "y" then
		 shell.run("pastebin", "get", message, programname)
		 shell.run(programname)
	 end
  end
end

update()


Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
sweet but its not what we need for this OS i'm thinking of makeing it so the program reads off the file that tell the update program what to download and what to save it as

That's what it does, you can add a read() function asking what you want to save it as and replace the "programname" with the users inout
ya but for the way that we will need it to work it needs to read what it needs to DOWNLOAD OFF A FILE and have it run with out a update server

To run it without a server, you need a pastebin account and make it read from a pastebin link and if u make anew version, you edit that pastebin file
rex41043 #16
Posted 06 April 2012 - 05:13 AM
Would help too
o your 1st job wolvan can you make a logo/banner for
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Some special requests? Size? Colors? Text?
na just do and u plez

I'll help, I made a auto updater with and without pastebin in another post
that wood be real nice and can u make it read off a file for what it need to download and what to save it as

Here:
Server:

version = "1.0"
pastebin = "change to pastebin Id"

while true do
  id, message = rednet.recieve()
  if message == "check" then
	 rednet.send(id, version)
  elseif message == "update" then
	 rednet.send(id, pastebin)
   end
end

Client:

version = 1.0
programname = "startup"

function update()
  rednet.broadcast("check")
  id, message = rednet.receive()
  if version == message then
  else
	 rednet.send(id, "update")
	 id, message = rednet.receive()
	 write("Update available! Would you like to update? [y/n] ")
	 input = read()
	 if input == "y" then
		 shell.run("pastebin", "get", message, programname)
		 shell.run(programname)
	 end
  end
end

update()


Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
sweet but its not what we need for this OS i'm thinking of makeing it so the program reads off the file that tell the update program what to download and what to save it as

That's what it does, you can add a read() function asking what you want to save it as and replace the "programname" with the users inout
ya but for the way that we will need it to work it needs to read what it needs to DOWNLOAD OFF A FILE and have it run with out a update server

To run it without a server, you need a pastebin account and make it read from a pastebin link and if u make anew version, you edit that pastebin file
ya the idea form haveing it read form a file is that its bilt in to update that 1st and then read form the file and do that updates like to so if u want to code the update stuff u can
Wolvan #17
Posted 06 April 2012 - 09:49 AM
I think you mean like this:
1. Download all files
2. Download some kind of changelog
3. Read the changelog and read, which scripts were modified
4. Delete these local scripts
5. replace them with the modified
rex41043 #18
Posted 06 April 2012 - 11:12 AM
I think you mean like this:
1. Download all files
2. Download some kind of changelog
3. Read the changelog and read, which scripts were modified
4. Delete these local scripts
5. replace them with the modified
sort of ok it downloads a file ok and in the file is a line and on that like is 2 things 1 the pastebin code 2 the file is replaceing and then with that it downloads the pastebin at replaces the file so
1. download the update info
2. read the update info
3. delete the old file
4. download the update
5. save the update
6. read the next update line
7. goto 3
djblocksaway #19
Posted 06 April 2012 - 12:41 PM
hey rex ill be happy to help with your OS well to tell the truth i already helped make half the installer :)/>/>
cant_delete_account #20
Posted 10 April 2012 - 04:50 AM
Try to avoid the super long quote trails. xD
I can help make a auto-updater. Pastebin, Dropbox, or whatever you use to share files.
My E-mail is: ops99@mineandcraft.net
rex41043 #21
Posted 10 April 2012 - 07:50 AM
Try to avoid the super long quote trails. xD
I can help make a auto-updater. Pastebin, Dropbox, or whatever you use to share files.
My E-mail is: ops99@mineandcraft.net
ok show me what you can do coz we are far in codeing it my email is rex41043@gmail.com
rex41043 #22
Posted 10 April 2012 - 08:00 AM
Would help too
o your 1st job wolvan can you make a logo/banner for CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Some special requests? Size? Colors? Text?
Done :P/>/>
Post this as HTML in your signature


[url="http://www.computercraft.info/forums2/index.php?/topic/1110-cubelink-industries-programming-programmers-wanted/"][img]http://img714.imageshack.us/img714/5373/cyberlink.gif[/img][/url]
not bad but.. u got the name rong
wilcomega #23
Posted 10 April 2012 - 04:21 PM
IGN: "wilcomega"
what are you the best at: "Lua, i like programming with OOP(Object Orient Porgramming), i like to write big game's and i just love remote control virusus"
programs that you have made: "i only have got 1 really good program: http://www.computercraft.info/forums2/index.php?/topic/1066-132rpg-game-01-by-wilcomega-v02-upcomming/"
How can we contact you?: you can contact me via skype, i will give it when i come on the server
more info: i am autistic so i like good explanation, i like talking via skype while playing and i hate it when i get trolled :P/>/> and i cant wait to develop on the cool programs you guys make! :D/>/>
djblocksaway #24
Posted 10 April 2012 - 04:37 PM
Hello, I could be a programmer?
Something I've made: http://www.computerc...smads-programs/ xD
sweet you can you send me your skype in a email if you have 1 it just makes it a lot ezyer my email is rex41043@gmail.com

Would help too
sweet you can you send me your skype in a email if you have 1 it just makes it a lot ezyer my email is rex41043@gmail.com
ill help program you already know what i can do from my server :P/>/>
abthouse29 #25
Posted 25 April 2012 - 04:46 AM
made a quick banner:


[url="http://www.computercraft.info/forums2/index.php?/topic/1110-cubelink-industries-developers-wanted/page__fromsearch__1/"][img]http://i47.tinypic.com/2mcsg9i.jpg[/img][/url]
Kolpa #26
Posted 25 June 2012 - 01:08 PM
Would help too
im dissapointed about ur signature :P/>/>