[Release] GameCard Generator menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 29
  1. #1
    Zaxer's Avatar Contributor
    Reputation
    92
    Join Date
    Sep 2008
    Posts
    159
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release] GameCard Generator

    This program generates a desired number of random GameCard codes and save them into a .txt file.
    Pic:

    Click to download!
    No Virus, proof:

    Feel free to post your own scan results

    [Release] GameCard Generator
  2. #2
    Trollblod's Avatar Elite drone
    Reputation
    445
    Join Date
    May 2009
    Posts
    1,710
    Thanks G/R
    2/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Zaxer, I really want to trust you, any chance you could send me 1 code so I can test? And is it for EU or US?
    Scanned at VirusTotal.
    And Mcafee, none of them found anything, but I still feel insecure about it. Feel too small and too little information about it...
    Last edited by Vinland; 11-12-2009 at 01:27 PM.


  3. #3
    Zaxer's Avatar Contributor
    Reputation
    92
    Join Date
    Sep 2008
    Posts
    159
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You want me to post the source code?
    It is coded in VB.NET

  4. #4
    grassynole's Avatar Elite User
    Reputation
    339
    Join Date
    Aug 2008
    Posts
    387
    Thanks G/R
    1/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hes not a member i know well, so tbh its not something im going to risk trying out.
    I don't recognize the virus scanner either.
    Every1 knows Jesus was a shaman, think about it the reincarnate, the waterwalking... comon he was cc'd d for days!

  5. #5
    Trollblod's Avatar Elite drone
    Reputation
    445
    Join Date
    May 2009
    Posts
    1,710
    Thanks G/R
    2/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by grassynole View Post
    Hes not a member i know well, so tbh its not something im going to risk trying out.
    I don't recognize the virus scanner either.
    Ye, exactly, but I tried it with Mcafee and VirusTotal.. no results, but give me a code so I can test, if not it's a virus in there, maybe you can send us the code, but what will that help? How do we know that's what you're using in that file?
    Just send me a code instead.


  6. #6
    Synthelo's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please post a screenshot of the site saying "Your gamecard was verified"

    How are we supposed to trust you without a proof :P

  7. #7
    aamlord's Avatar Active Member
    Reputation
    39
    Join Date
    Mar 2009
    Posts
    340
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it a random guesser where you have to enter multiple tries before finding 1 that works?

  8. #8
    zzack's Avatar Member
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm... Isn't it just a random code generator to scam people? I mean... using them ingame to make other people pay you for 'em. Like this?
    http://www.mmowned.com/forums/bots-p...atch-file.html

  9. #9
    Danne206's Avatar Contributor
    Reputation
    183
    Join Date
    Jan 2008
    Posts
    717
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If I got it right, this does just create random GCs, you've got to test by yourself, but that is NOT the purpose of this program, right?
    Dahnniel [DOT] s [AT] gmail [DOT] com

  10. #10
    Zaxer's Avatar Contributor
    Reputation
    92
    Join Date
    Sep 2008
    Posts
    159
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, exactly. Here is the cource code anyways:
    Code:
    Imports System.IO
    Public Class Form1
        Dim sw As New StreamWriter("codes.txt")
        Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            For a = 1 To NumericUpDown1.Value
                Dim value4 As Integer = CInt(Int((8999 * Rnd()) + 1000))
                Dim value6 As Integer = CInt(Int((899999 * Rnd()) + 100000))
                Dim value5 As Integer = CInt(Int((89999 * Rnd()) + 10000))
                Dim value42 As Integer = CInt(Int((8999 * Rnd()) + 1000))
                Dim value62 As Integer = CInt(Int((899999 * Rnd()) + 100000))
                ListBox1.Tag = value42 & " - " & value62 & " - " & value5 & " - " & value6 & " - " & value4
                ListBox1.Items.Add(ListBox1.Tag)
                Label3.Text = ListBox1.Items.Count & " Codes"
                sw.WriteLine(ListBox1.Tag)
                sw.Flush()
            Next
            ToolStripStatusLabel1.Text = "Scripted By Zaxer | Generated"
        End Sub
    
        Private Sub ListBox1_SelectedValueChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedValueChanged
            TextBox2.Text = ListBox1.SelectedItem
            TextBox2.SelectAll()
            TextBox2.Copy()
        End Sub
    End Class

  11. #11
    Trollblod's Avatar Elite drone
    Reputation
    445
    Join Date
    May 2009
    Posts
    1,710
    Thanks G/R
    2/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zaxer View Post
    Yes, exactly. Here is the cource code anyways:
    Code:
    Imports System.IO
    Public Class Form1
        Dim sw As New StreamWriter("codes.txt")
        Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            For a = 1 To NumericUpDown1.Value
                Dim value4 As Integer = CInt(Int((8999 * Rnd()) + 1000))
                Dim value6 As Integer = CInt(Int((899999 * Rnd()) + 100000))
                Dim value5 As Integer = CInt(Int((89999 * Rnd()) + 10000))
                Dim value42 As Integer = CInt(Int((8999 * Rnd()) + 1000))
                Dim value62 As Integer = CInt(Int((899999 * Rnd()) + 100000))
                ListBox1.Tag = value42 & " - " & value62 & " - " & value5 & " - " & value6 & " - " & value4
                ListBox1.Items.Add(ListBox1.Tag)
                Label3.Text = ListBox1.Items.Count & " Codes"
                sw.WriteLine(ListBox1.Tag)
                sw.Flush()
            Next
            ToolStripStatusLabel1.Text = "Scripted By Zaxer | Generated"
        End Sub
    
        Private Sub ListBox1_SelectedValueChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedValueChanged
            TextBox2.Text = ListBox1.SelectedItem
            TextBox2.SelectAll()
            TextBox2.Copy()
        End Sub
    End Class
    I just wrote... who cares, maybe you don't use that code for it, maybe you added a worm to it...


  12. #12
    Zaxer's Avatar Contributor
    Reputation
    92
    Join Date
    Sep 2008
    Posts
    159
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tell me a well known virus scan and I'll scan it and post the pic

  13. #13
    Trollblod's Avatar Elite drone
    Reputation
    445
    Join Date
    May 2009
    Posts
    1,710
    Thanks G/R
    2/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zaxer View Post
    Tell me a well known virus scan and I'll scan it and post the pic
    Dude, some viruses won't be detected, just PM me a stupid damn code for wow so I can test it and confirm, damnit, is it that hard?


  14. #14
    petrix's Avatar Member
    Reputation
    8
    Join Date
    May 2007
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its a fake gamecard generator.... It either used for scamming or claiming it to be working and getting loads of attention lolz... Cant be that hard to understand?

  15. #15
    Barnzy's Avatar Member
    Reputation
    67
    Join Date
    Jun 2008
    Posts
    302
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I just used it... Obviously the game cards have a 1 in 100000000000000 chance of being correct but it has no virus.
    Made a little website: https://unbanservice.webs.com/ -

    mmowned.com

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] Gamecard Generator - Batch File
    By Mudkips in forum World of Warcraft Bots and Programs
    Replies: 147
    Last Post: 10-30-2009, 07:39 PM
  2. [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
  3. [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
  4. [Source] [Scam] A twist to the other Gamecard "Generators"
    By Clain in forum WoW Scam Prevention
    Replies: 4
    Last Post: 09-12-2008, 05:56 PM
  5. [RELEASE!] Playercreateinfo_spells Generator. =)
    By Snailz in forum WoW EMU Programs
    Replies: 14
    Last Post: 05-29-2008, 01:11 PM
All times are GMT -5. The time now is 05:20 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search