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

HAL9000 {OPEN SOURCE}

Started by tom2018, 17 November 2012 - 01:26 PM
tom2018 #1
Posted 17 November 2012 - 02:26 PM
ok i made a virus on my friends server and let it run uncontrollably.
I had a copy laying around so I made a safe self destroying that doesn't spread (so it is no longer malicious.) copy for pranking friends.
its 100% safe it deletes it self and has ctrl+t enabled

pastebin get VmxFdHkS
tom2018 #2
Posted 17 November 2012 - 02:28 PM
that says da mint so it is not inappropriate
Cruor #3
Posted 17 November 2012 - 10:34 PM
Pastebin link seems to be broken. So you are technically not following the rules of this section :)/>/>
You don't want to break rules do you? Of course you don't!
Tiin57 #4
Posted 17 November 2012 - 11:16 PM
that says da mint so it is not inappropriate
Oh, derpyface.
Cursing is allowed, if not quite encouraged.
tom2018 #5
Posted 18 November 2012 - 04:26 AM
Pastebin link seems to be broken. So you are technically not following the rules of this section :)/>/>
You don't want to break rules do you? Of course you don't!
opps fixed the link forgot to copy the S
tom2018 #6
Posted 07 December 2012 - 02:18 PM
this is now opensource so you can use it as you please.
rhyleymaster #7
Posted 07 December 2012 - 08:02 PM
I made my own, WAY simpler too.
It just spits out "No such program" no matter what.
tom2018 #8
Posted 08 December 2012 - 02:03 PM
I made my own, WAY simpler too.
It just spits out "No such program" no matter what.
this version is so complex because it was a virus a long time ago and i just took out the malicious parts and posted.
rick3333 #9
Posted 23 December 2012 - 12:52 PM
Cruor you have to name it yourself
Bubba #10
Posted 23 December 2012 - 01:02 PM
Open source? There is no such thing as not open source in Lua *facepalm*
rhyleymaster #11
Posted 23 December 2012 - 01:10 PM
Open source? There is no such thing as not open source in Lua *facepalm*

gknova61 #12
Posted 23 December 2012 - 01:25 PM
Open source? There is no such thing as not open source in Lua *facepalm*

There's bytecode…
Bubba #13
Posted 23 December 2012 - 02:14 PM
Open source? There is no such thing as not open source in Lua *facepalm*

There's bytecode…

Which can be "recompiled". Also no bytecode in ComputerCraft so nil point.
immibis #14
Posted 23 December 2012 - 07:13 PM
Which can be "recompiled". Also no bytecode in ComputerCraft so nil point.

Was it removed? This used to work:

function doStuff() print("Hello world!") end

bytecode = string.dump(doStuff)
print(bytecode) -- prints gibberish
doStuff2 = loadstring(bytecode)
doStuff2() -- prints "Hello world!"
Bubba #15
Posted 23 December 2012 - 08:01 PM
Which can be "recompiled". Also no bytecode in ComputerCraft so nil point.

Was it removed? This used to work:

function doStuff() print("Hello world!") end

bytecode = string.dump(doStuff)
print(bytecode) -- prints gibberish
doStuff2 = loadstring(bytecode)
doStuff2() -- prints "Hello world!"

… Hmm. I'm not sure what I was thinking there when I posted that xD For some reason I thought bytecode was part of the lua debug library.