Help meh vb08 menu

User Tag List

Results 1 to 7 of 7
  1. #1
    omg_lol's Avatar Member
    Reputation
    25
    Join Date
    Dec 2008
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Help meh vb08

    Ive been trying to make a phisher the past few days, but come to a problem when i have to generate letters +numbers together, ive finally given up on that and thought up a new idea. Using Scam Tools Suite created by Apoc ive made a bunch of notepad documments with about 200 of each type of code (GC, UDE Code, CD code, and blizz autheticators) Now i would like to find out how to make my vb program use a randomly selected code from the notepad document when the user clicks a certain button, please help
    OMG LOL

    Help meh vb08
  2. #2
    Cephalopod's Avatar Member
    Reputation
    5
    Join Date
    Sep 2008
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    More info and less ridiculous colours.

    Format of text file? Copy + Paste a sample.

    Obtain number of lines in file -> Produce a random number with a max of the number of lines -> Read that line.
    Last edited by Cephalopod; 01-18-2009 at 01:31 PM.

  3. #3
    omg_lol's Avatar Member
    Reputation
    25
    Join Date
    Dec 2008
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Midol View Post
    More info and less ridiculous colours.

    Format of text file? Copy + Paste a sample.

    Obtain number of lines in file -> Produce a random number with a max of the number of lines -> Read that line.
    Atleast my posts are fun unlike your boring grayness6):
    OMG LOL

  4. #4
    Cephalopod's Avatar Member
    Reputation
    5
    Join Date
    Sep 2008
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    People answer my questions.

    No one answered yours.

    Deduce what you wish.

  5. #5
    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)
    But he does like an awesome show (and you answered him )

    Assuming one on each line, read a random line from the file.

  6. #6
    Cephalopod's Avatar Member
    Reputation
    5
    Join Date
    Sep 2008
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, but if he refrained using stupid colors I'd give a code example and find a well written tutorial, or I'd explain the code myself.
    :P

  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)
    Don't use a text file. Use code.

    Code:
    Imports System
    Imports System.Text
    
    Namespace ScamToolsSuiteLib
        Friend Class KeyGenerator
            Private Shared ReadOnly Charset As Char() = "abcdefghijklmnopqrstuvwxyz0123456789".ToCharArray()
            Private Shared ReadOnly random As New Random()
            
            ''' <summary>
            ''' Gets a randomly generated time card code. Example: 3420-666698-16081-009008-6060
            ''' </summary>
            ''' <value>The get time card.</value>
            ''' 10/27/2008 9:15 AM
            Public Shared ReadOnly Property GetTimeCard() As String
                Get
                    Dim sb As New StringBuilder()
                    For j As Integer = 1 To 29
                        Dim [next] As Integer = random.[Next](10)
                        If j = 5 OrElse j = 12 OrElse j = 18 OrElse j = 25 Then
                            sb.Append("-")
                            Continue For
                        End If
                        sb.Append([next].ToString())
                    Next
                    Return sb.ToString()
                End Get
            End Property
            
            ''' <summary>
            ''' Gets a randomy generated Trading Card Game code
            ''' </summary>
            ''' <value>The get TCG card.</value>
            ''' 10/27/2008 9:15 AM
            Public Shared ReadOnly Property GetTCGCard() As String
                Get
                    Dim sb As New StringBuilder()
                    For i As Integer = 0 To 28
                        If i = 4 OrElse i = 12 OrElse i = 18 OrElse i = 24 Then
                            sb.Append("-")
                            Continue For
                        End If
                        sb.Append(Charset(random.[Next](Charset.Length)))
                    Next
                    Return sb.ToString().ToUpper()
                End Get
            End Property
            
            ''' <summary>
            ''' Gets a randomly generated CD key. Example: RMXI7O-83DY-ZU6INW-8FMB-72XSG4
            ''' </summary>
            ''' <value>The get CD key.</value>
            ''' 10/27/2008 9:15 AM
            Public Shared ReadOnly Property GetCDKey() As String
                Get
                    Dim sb As New StringBuilder()
                    For i As Integer = 1 To 30
                        If i = 7 OrElse i = 12 OrElse i = 19 OrElse i = 24 Then
                            sb.Append("-"c)
                            Continue For
                        End If
                        sb.Append(Charset(random.[Next](Charset.Length)))
                    Next
                    Return sb.ToString().ToUpper()
                End Get
            End Property
            
            ''' <summary>
            ''' Gets a randomly generated Blizzard authenticator code. (Length ranges from 6-8 digits only.)
            ''' </summary>
            ''' <value>The get authenticator.</value>
            ''' 10/27/2008 9:15 AM
            Public Shared ReadOnly Property GetAuthenticator() As String
                Get
                    Dim rand As Integer = random.[Next](6, 9)
                    Dim sb As New StringBuilder()
                    For i As Integer = 0 To rand - 1
                        sb.Append(random.[Next](10))
                    Next
                    Return sb.ToString()
                End Get
            End Property
        End Class
    End Namespace
    Not sure if it'll compile properly. But that's the code to do it. (Just did a quick conversion from C# to VB.NET)

Similar Threads

  1. [Help Meh] Boosting wow performance.
    By Marlo in forum Community Chat
    Replies: 1
    Last Post: 05-11-2008, 04:53 PM
  2. help meh plz
    By HolyBeast in forum World of Warcraft General
    Replies: 7
    Last Post: 11-29-2007, 08:38 PM
  3. Untamed blade.. help meh
    By fenga in forum WoW ME Questions and Requests
    Replies: 3
    Last Post: 01-05-2007, 07:06 AM
All times are GMT -5. The time now is 01:17 AM. 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