April 16, 200619 yr Lol k that site is just trying to steal your cd key, it wont work. Only a moron would try it " oh ok give him the cd key I made NOT the real one and he will make me one. " but if he reverse the process BAM he got your key dumbass. You are supposed to use your registered key, what would be the point of not registering your key before you make another one. It does work btw.
April 21, 200619 yr Meh, I was bored yesterday, decided to do this: For x = 0 to (second(time)*minute(Time)) ' this just makes it more random. Rnd() next key = "" For x = 0 to 4 For j = 0 to 4 key = key + RChar() next if(x<4) then key = key + "-" end if next Set oIE = CreateObject("InternetExplorer.Application") oIE.Navigate "about:blank" Do Until oIE.ReadyState=4 : WScript.Sleep 1 : Loop oIE.Document.ParentWindow.ClipboardData.SetData "text", key oIE.Quit : set oIE=Nothing function RChar() if Rnd() >.5 then RChar = Chr((Rnd()*(57-49))+49) else RChar = Chr((Rnd()*(90-65))+65) end if end function Save that in notepad with the extension .vbs Anyway, this will generate a serial, the thing is, you would probably take a lifetime to find a valid one (once you run the script, the generated code will be copied, you just have to paste it on the "Activate a product on Steam"). BUT I may be near to start generating some valids one... right now, I know 3 valid serials, and two of them start with ZZP2F and ZZP2E I believe this two are English serials, the other one starts with YRP2G, that one is mine, Portuguese serial I think. If I can get the generated code to start of with one of those serial parts, we may very weel be looking at something. Here are some serials I got: ZZP2E-K9H93-SRR3R-HJ4MW-4FRDA ZZP2F-2XDS4-YMJEM-S7PFL-QQR4B ZZP2F-K9H93-SRR3R-HJ4MW-4FRDA ZZP2W-K9H93-SRR3R-HJ4MW-4FRDA YRP2H-P7N59-LHDSC-B9NY8-G2SJS The last one didn't work, it asks for the CS:S CD but after that, I get a "pending validation", five minutes later, I get a email saying the serial is invalid. All the other ones are for HL2 Game of the Year, feel free to try them, don't really care right now if they work or not... if they do work, I can get plenty more.
April 23, 200619 yr good little script there, It would be better if you could make it write the generated keys to a new text file and you could modify it so it would stop looping after x times. Regards, LoopHole
April 26, 200619 yr I took some of these cd-keys and generated them into some more and i guessed a key within 2 hours. hmm either im very lucky or this is leading somewhere. I will try some more.
April 26, 200619 yr Valve got owned by a calculator. gg. I'm at pending, we shall see if i get the game.
April 27, 200619 yr Valve got owned by a calculator. gg. I'm at pending, we shall see if i get the game. Nope. Log out, then in. Then it says you haven't got the game.
April 28, 200619 yr This has been out for abit of time now, still it's pretty impressive if you figured it out by yourself. If so, do a I.Q test. Really that's complex logic.
August 1, 200618 yr I remember doing this a few years back but the cdkeys gave you temporary access to the games or something like that.
August 2, 200618 yr since its all generated on thier server they could generate completley random CD keys, and store it on the database. there is no need for an algorithm.
August 2, 200618 yr If anyone finds a surefire way to get keys please let me know, I'd love to get in on this. There's a lot of potential here.
August 2, 200618 yr Well i'v seen many HL2-CDKEY Genarators. They dont work :/ Or else is it bad luck!:wow:
August 4, 200618 yr Meh, I was bored yesterday, decided to do this: For x = 0 to (second(time)*minute(Time)) ' this just makes it more random. Rnd() next key = "" For x = 0 to 4 For j = 0 to 4 key = key + RChar() next if(x<4) then key = key + "-" end if next Set oIE = CreateObject("InternetExplorer.Application") oIE.Navigate "about:blank" Do Until oIE.ReadyState=4 : WScript.Sleep 1 : Loop oIE.Document.ParentWindow.ClipboardData.SetData "text", key oIE.Quit : set oIE=Nothing function RChar() if Rnd() >.5 then RChar = Chr((Rnd()*(57-49))+49) else RChar = Chr((Rnd()*(90-65))+65) end if end function Save that in notepad with the extension .vbs Anyway, this will generate a serial, the thing is, you would probably take a lifetime to find a valid one (once you run the script, the generated code will be copied, you just have to paste it on the "Activate a product on Steam"). BUT ive read it over i still dont understand how to fucking use that?
August 4, 200618 yr Dumbass, just copy all that code into notepad, then when you saving it, save it as ALL files, and name it "whatever.vbs" then, double click the file, and itll automatically copy a serial. all you have to do it PASTE it (CTRL - V) into the CD Key asker thingy.
August 4, 200618 yr Here's the same one but I editted it to be a lot more user-friendly. As opposed to just saving 5 to the clipboard each time, it just prints out a user defined amount on the page. <html> <body> <script type="text/vbscript"> For x = 0 to (second(time)*minute(Time)) ' this just makes it more random. Rnd() next etc = inputbox("How many times etc.") lol = "ZZP2E" For z = 1 to etc key = "" For x = 0 to 3 For j = 0 to 4 key = key + RChar() next if(x<3) then key = key + "-" end if next document.write(lol & "-" & key & "<br />") next function RChar() if Rnd() >.5 then RChar = Chr((Rnd()*(57-49))+49) else RChar = Chr((Rnd()*(90-65))+65) end if end function </script> </body> </html> Just save that as an html document and open it in IE.
August 5, 200618 yr Here's the same one but I editted it to be a lot more user-friendly. As opposed to just saving 5 to the clipboard each time, it just prints out a user defined amount on the page. <html> <body> <script type="text/vbscript"> For x = 0 to (second(time)*minute(Time)) ' this just makes it more random. Rnd() next etc = inputbox("How many times etc.") lol = "ZZP2E" For z = 1 to etc key = "" For x = 0 to 3 For j = 0 to 4 key = key + RChar() next if(x<3) then key = key + "-" end if next document.write(lol & "-" & key & "<br />") next function RChar() if Rnd() >.5 then RChar = Chr((Rnd()*(57-49))+49) else RChar = Chr((Rnd()*(90-65))+65) end if end function </script> </body> </html> Just save that as an html document and open it in IE. +rep bitch
August 17, 200618 yr source: http://www.petitionspot.com/petitions/CS_CD_KEY This method also works - but ive yet to find one thats not currently in use. Ill keep ya guys posted. Lol, I've only got 3 numbers in my cd-key.
August 17, 200618 yr That method is BS. I tried it with 4 different CS CDKeys and it doesnt work, all invalid. And what a joke "Send me your CDKey" I know we have already registered it but maybe there is another method which will make a new key from yours that they arent telling us. For now i believe the only way to generate a Valid CDKEY is to generate x amount of keys and hope for the best. Its a matter of luck...
August 17, 200618 yr THE EASIST WAY TO GET CD KEY JUST WALK INTO NEARBY WAL-MART BUY HL-2 WRITE DOWN THE CDKEY GO BACK AND SAY IT DOES NOT WORK ON YOUR COMP. HOPE THE CUSTEMER SERIVCE IS RETARDED THEY WILL GIVE YOU FULL REFOUND IF NOT JUST SAY YOU WANNA SWAP A NEW ONE FREE OR BUY ONE GET ONE FREE P.S. If you are mean, get the recipe and go to the other wal-mart, do the same thing again