[Fake] Gamecard Generator menu

User Tag List

Results 1 to 7 of 7
  1. #1
    Relexx1's Avatar Member
    Reputation
    23
    Join Date
    Sep 2007
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Fake] Gamecard Generator

    There's already a billion of these out there, but I thought I'd make mine aswell.. This one is coded in javascript / html..

    I made two version of them, as I thought.. Both may come in handy for someone, I don't know

    First one is like most programs. You click generate and it gives you a key.

    Second one is a bit more uhmm.. Advanced? You can type in how many keys you want generated, and it'll create them in an easy copy-paste format..

    Enjoy!

    Code for the first one (1 gen pr. click):
    Code:
    <html>
    <head>
    <script type='text/javascript'>
    function generate() {
    code = '';
    for(i=0; i<4; i++) {
    code = code + Math.round(Math.random()*9);
    }
    code = code+'-';
    for(i=0; i<6; i++) {
    code = code + Math.round(Math.random()*9);
    }
    code = code+'-';
    for(i=0; i<5; i++) {
    code = code + Math.round(Math.random()*9);
    }
    code = code+'-';
    for(i=0; i<6; i++) {
    code = code + Math.round(Math.random()*9);
    }
    code = code+'-';
    for(i=0; i<4; i++) {
    code = code + Math.round(Math.random()*9);
    }
    
    document.getElementById('keyfield').value = code
    }
    </script>
    </head>
    <body>
    <center>
    <input type=text id='keyfield' size=40 style='text-align: center;'><br>
    <input type=button value='Generate!' onClick='generate()'>
    
    </center>
    </body>
    </html>
    And the second one(Type amount of keys to generate):
    Code:
    <html>
    <head>
    <script type='text/javascript'>
    function mass() {
    document.getElementById('massContainer').innerHTML = '';
    times = document.getElementById('times').value;
    a=0;
    while(a<times) {
    generate();
    a++;
    }
    }
    
    function generate() {
    
    code = '';
    for(i=0; i<4; i++) {
    code = code + Math.round(Math.random()*9);
    }
    code = code+'-';
    for(i=0; i<6; i++) {
    code = code + Math.round(Math.random()*9);
    }
    code = code+'-';
    for(i=0; i<5; i++) {
    code = code + Math.round(Math.random()*9);
    }
    code = code+'-';
    for(i=0; i<6; i++) {
    code = code + Math.round(Math.random()*9);
    }
    code = code+'-';
    for(i=0; i<4; i++) {
    code = code + Math.round(Math.random()*9);
    }
    
    document.getElementById('massContainer').innerHTML = document.getElementById('massContainer').innerHTML + code + "<br />"
    }
    </script>
    </head>
    <body>
    <center>
    <input type=text value='1' size=3 id='times'>
    <input type=button value='Generate!' onClick='mass()'><br />
    
    <div id='massContainer'>
    
    </div>
    
    </center>
    </body>
    </html>
    Enjoy! =D

    PS. I only used 2-3 minutes on this, so there's no whitespace and uhmm.. Yeah, but it works ^_^
    I BE EPIX

    [Fake] Gamecard Generator
  2. #2
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2984
    Join Date
    Apr 2006
    Posts
    9,811
    Thanks G/R
    353/298
    Trade Feedback
    9 (100%)
    Mentioned
    5 Post(s)
    Tagged
    1 Thread(s)
    so... the point in this is?

  3. #3
    Overaggro's Avatar Contributor

    Reputation
    87
    Join Date
    Mar 2009
    Posts
    441
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I Guess this is for scamming purposes ?

  4. #4
    Relexx1's Avatar Member
    Reputation
    23
    Join Date
    Sep 2007
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by KuRIoS View Post
    so... the point in this is?
    As overaggro said, it's for scamming purposes uhmm..
    I guess that if you have nothing else to do, you could copy pasta the randomly generated key codes and see if they match up with a real one but.. I highly doubt it, considering that there's 20^10 possibilities, making it a total of 10240000000000 different combinations.. But... Yeah, anyways.. It's for scamming purposes, oooor.. I don't know ^^
    I BE EPIX

  5. #5
    Sonic Waffle's Avatar Contributor
    Reputation
    170
    Join Date
    Dec 2007
    Posts
    990
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Scamming = Bad
    Randomly Generating = Highly improbable

    Can be useful to some people, since this is client sided. Not everyone utilizes PHP, ya' know?

  6. #6
    RealonWoW's Avatar Corporal
    Reputation
    -6
    Join Date
    Feb 2010
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this shit isnt working!!!

  7. #7
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its not said to work, its just a script to fake a gamecard.




Similar Threads

  1. [Mac Compiled Release] Fake Gamecard Generator 1.3
    By World of Borat in forum World of Warcraft Bots and Programs
    Replies: 1
    Last Post: 10-30-2009, 07:38 PM
  2. [Source] Fake GameCard Generator
    By Molleren in forum Programming
    Replies: 5
    Last Post: 07-20-2009, 03:34 AM
  3. [New] Fake Gamecard Generator
    By goldfish1 in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 07-09-2009, 04:57 PM
  4. [Backdoor/fake Gamecard generator] Simple Backdoor
    By Evieh in forum World of Warcraft Bots and Programs
    Replies: 35
    Last Post: 09-27-2008, 09:25 PM
All times are GMT -5. The time now is 03:13 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search