Jump to content




Cool Viruses?


  • This topic is locked This topic is locked
15 replies to this topic

#1 unstopablekk

  • Members
  • 50 posts

Posted 03 March 2012 - 12:41 AM

Can anyone create a couple viruses that do various harmful things to my friends computer? I already have one that continues to write ect. I would like the script be able to be written on the floppy disk startup. please provide a description on what the virus does as well.

#2 FuzzyPurp

    Part-Time Ninja

  • Members
  • 510 posts
  • LocationHarlem, NY

Posted 03 March 2012 - 12:47 AM

continues to write? = eating p HDD space? that's grief

#3 MissileMoose

  • New Members
  • 4 posts

Posted 04 March 2012 - 01:59 PM

If you're wanting to make a virus for ComputerCraft, please make one that doesn't affect the actual server. Else you may as well make a 'real' virus. B)/>

If you're playing on a server with an Economy, you could create a virus that constantly shuts down the terminal after boot. Then sell the floppy disk to repair it. Just like in the real world. :unsure:/>

#4 Alex_

  • Members
  • 63 posts
  • LocationPontefract, West Yorkshire, England

Posted 25 March 2012 - 07:50 PM

Look in the program library there is probebly some ive seen 2 good ones but i don't see the point in viruses

#5 kamnxt

  • New Members
  • 80 posts

Posted 25 March 2012 - 08:25 PM

Try this one :(/> It prints random 1's and 0's :
os.pullEvent = os.pullEventRaw --No ctrl + T!
while true do
s = ""
for i=1, 50 do
s = s..math.random(0,1)
end
write(s)
sleep(0)
end


#6 BlackRa1n

  • New Members
  • 69 posts

Posted 25 March 2012 - 08:30 PM

I have made a virus & an anti-virus. Look in signature for link! Please post feedback on the thread aswell!

#7 ComputerCraftFan11

  • Members
  • 771 posts
  • LocationHawaii

Posted 25 March 2012 - 08:39 PM

I made a hacker that lets you control other people's computers when they turn it on

#8 BlackRa1n

  • New Members
  • 69 posts

Posted 25 March 2012 - 08:44 PM

View PostComputerCraftFan11, on 25 March 2012 - 08:39 PM, said:

I made a hacker that lets you control other people's computers when they turn it on

Now that, I would love to see! :o/>
Link? :o/>

#9 Cloudy

    Ex-Developer

  • Members
  • 2,543 posts

Posted 25 March 2012 - 08:57 PM

Viruses are cool and all as a coding exercise... But then you realise that they are easy to eradicate using a floppy drive.

#10 ComputerCraftFan11

  • Members
  • 771 posts
  • LocationHawaii

Posted 25 March 2012 - 10:14 PM

View PostBlackRa1n, on 25 March 2012 - 08:44 PM, said:

View PostComputerCraftFan11, on 25 March 2012 - 08:39 PM, said:

I made a hacker that lets you control other people's computers when they turn it on

Now that, I would love to see! :o/>
Link? :o/>

http://www.computerc...__fromsearch__1

#11 Wolvan

  • New Members
  • 384 posts
  • LocationIn the TARDIS

Posted 27 March 2012 - 07:29 PM

View PostComputerCraftFan11, on 25 March 2012 - 10:14 PM, said:

View PostBlackRa1n, on 25 March 2012 - 08:44 PM, said:

View PostComputerCraftFan11, on 25 March 2012 - 08:39 PM, said:

I made a hacker that lets you control other people's computers when they turn it on

Now that, I would love to see! :o/>
Link? :o/>

http://www.computerc...__fromsearch__1
Do you know how to start a programm with parameters inside of a program? So you type in the program for example help turtle and it splits the command into the program help and the parameter turtle

#12 ComputerCraftFan11

  • Members
  • 771 posts
  • LocationHawaii

Posted 28 March 2012 - 04:41 AM

View PostWolvan, on 27 March 2012 - 07:29 PM, said:

View PostComputerCraftFan11, on 25 March 2012 - 10:14 PM, said:

View PostBlackRa1n, on 25 March 2012 - 08:44 PM, said:

View PostComputerCraftFan11, on 25 March 2012 - 08:39 PM, said:

I made a hacker that lets you control other people's computers when they turn it on

Now that, I would love to see! :o/>
Link? :o/>

http://www.computerc...__fromsearch__1
Do you know how to start a programm with parameters inside of a program? So you type in the program for example help turtle and it splits the command into the program help and the parameter turtle

shell.run("help", "turtle")

each parameter needs another quote

#13 Wolvan

  • New Members
  • 384 posts
  • LocationIn the TARDIS

Posted 29 March 2012 - 07:25 AM

View PostComputerCraftFan11, on 28 March 2012 - 04:41 AM, said:

shell.run("help", "turtle")

each parameter needs another quote
Yes I know that but I want to know, if you type for example a the string "cd rom" and that the program will split it in the command cd and the parameter rom

#14 Espen

    Curious Explorer

  • Members
  • 708 posts

Posted 29 March 2012 - 11:10 AM

View PostWolvan, on 29 March 2012 - 07:25 AM, said:

Yes I know that but I want to know, if you type for example a the string "cd rom" and that the program will split it in the command cd and the parameter rom
No, you have to split the string yourself. And since there is no stock split function in Lua, you'll have to write your own or take one from the internet. :o/>

#15 Wolvan

  • New Members
  • 384 posts
  • LocationIn the TARDIS

Posted 29 March 2012 - 12:37 PM

View PostEspen, on 29 March 2012 - 11:10 AM, said:

View PostWolvan, on 29 March 2012 - 07:25 AM, said:

Yes I know that but I want to know, if you type for example a the string "cd rom" and that the program will split it in the command cd and the parameter rom
No, you have to split the string yourself. And since there is no stock split function in Lua, you'll have to write your own or take one from the internet. :o/>
Thx for quick reply I think I just use tomass' StrUtils API

#16 Espen

    Curious Explorer

  • Members
  • 708 posts

Posted 29 March 2012 - 04:55 PM

View PostWolvan, on 29 March 2012 - 12:37 PM, said:

View PostEspen, on 29 March 2012 - 11:10 AM, said:

View PostWolvan, on 29 March 2012 - 07:25 AM, said:

Yes I know that but I want to know, if you type for example a the string "cd rom" and that the program will split it in the command cd and the parameter rom
No, you have to split the string yourself. And since there is no stock split function in Lua, you'll have to write your own or take one from the internet. :o/>
Thx for quick reply I think I just use tomass' StrUtils API
I'd classify that as "taking one from the internet", hehe. :o/> jk





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users