[Help] Game Card scam program menu

User Tag List

Results 1 to 13 of 13
  1. #1
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Help] Game Card scam program

    Hey, does anyone know how to make the program do this;

    1. Enter your game card code in text box.
    2. Press One of the 2 buttons
    3. Programs gives a new (fake) game card code in another text box.

    BUT if they don't put a code in the first text box and they press a button a error window will pop up, it will say please enter game card code.'
    and if its not the right amount of digits it will say, "Invalid Game card code"

    +rep for helping and an account
    Last edited by Neth'zul; 08-14-2008 at 12:53 PM.

    [Help] Game Card scam program
  2. #2
    Jens's Avatar Contributor
    Reputation
    179
    Join Date
    Sep 2006
    Posts
    251
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    easily doable, how many digits is a game card, and do you want the source in vb? :P

  3. #3
    maclone's Avatar / Authenticator enabled
    Reputation
    2420
    Join Date
    Nov 2007
    Posts
    8,726
    Thanks G/R
    0/1029
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)

    i think if you give somebody fake keys, he will go and try them and while trying them he will enter his real, unused gamecard
    Last edited by maclone; 08-14-2008 at 01:33 PM.
    Zomfg. And no, don't ask. - Dombo did it.

  4. #4
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thats why you use them right away and its 25 numbers

  5. #5
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
            private string code = string.Empty;
            private void txtCodeInput_TextChanged(object sender, EventArgs e)
            {
                code = txtCodeInput.Text;
                if (code.Contains("-"))
                {
                    code.Replace("-", string.Empty);
                }
                Regex rx = new Regex(@"[a-zA-Z]");
                if (rx.Match(code).Success)
                {
                    MessageBox.Show("Invalid code entered. Code can be 1-25 digits long. Alpha characters not allowed.",
                                    "Error", MessageBoxButtons.OK,
                                    MessageBoxIcon.Error);
                    code = string.Empty;
                }
                if (code.Length > 25)
                {
                    MessageBox.Show(
                        "Maximum code length is 25! Please check your code again." + Environment.NewLine + "You have " +
                        code.Length + " digits supplied.", "Error", MessageBoxButtons.OK,
                        MessageBoxIcon.Error);
                }
            }
    Sorry, too lazy to VB convert. Enjoy. (Allows the - separator to be used)
    Last edited by Apoc; 08-14-2008 at 11:09 PM.

  6. #6
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what language is this apoc? and thanks +rep

  7. #7
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Neth'zul View Post
    what language is this apoc? and thanks +rep
    That'd be C#.

    Also, edited the code to stop some misleading in it. (Forgot to define the code variable :P)

  8. #8
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I see, ok thanks

  9. #9
    piller's Avatar Contributor
    Reputation
    82
    Join Date
    May 2007
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    something like this?

    lil tool <-- link


    just 3 mins of delphi coding. no fancy pictures or buttons.

    msg me if you want that.

    textbox1 only allows numbers and '-'.
    it filters the '-' and checks if 25 numbers are given.

    msg me if you want the game-card-code to be send to an email or something.

    greets

  10. #10
    Clain's Avatar Banned
    Reputation
    179
    Join Date
    Jan 2008
    Posts
    1,396
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    C# ---> VB = Easy

  11. #11
    ReidE96's Avatar Archer Authenticator enabled
    Reputation
    470
    Join Date
    Dec 2006
    Posts
    1,625
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    c# -> vb = automatically doable. Apoc is aware of this, though, he was just in a lazy mood

  12. #12
    theslayer45's Avatar Active Member
    Reputation
    27
    Join Date
    Mar 2008
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    damn, you guys took my idea, i was working on the EXACT same thing, but in batch, then i was going to convert to a EXE

  13. #13
    Clain's Avatar Banned
    Reputation
    179
    Join Date
    Jan 2008
    Posts
    1,396
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That'd just make the program be picked up as a trojan. I made my own.. but instead of sending it to your email it generates a random set of numbers that you email to a random guy. Of course it still gets sent to my email though.

Similar Threads

  1. Game Card Scam Need Help
    By Roger Fang in forum Programming
    Replies: 6
    Last Post: 11-18-2008, 12:18 PM
  2. Epic irl game cards scam.
    By darkstaown in forum World of Warcraft General
    Replies: 8
    Last Post: 11-08-2007, 07:29 PM
All times are GMT -5. The time now is 04:33 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