![]() |
|
Tutorial Fake Key Generator ! [Used for Niches] - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.li/Forum-Visual-Basic-NET-Framework) +--- Thread: Tutorial Fake Key Generator ! [Used for Niches] (/Thread-Tutorial-Fake-Key-Generator-Used-for-Niches) |
Fake Key Generator ! [Used for Niches] - Complibur - 04-08-2013 Today I will teach you how to create a quick key generator! 1. Drag a text box and a button to the form. 2. Double click Button1 to open the code viewer. 3. Replace all the code with this: Code: Public Class Form1
Dim objRandom As New System.Random( _
CType(System.DateTime.Now.Ticks Mod System.Int32.MaxValue, Integer))
Public Function GetRandomNumber( _
Optional ByVal Low As Integer = 1, _
Optional ByVal High As Integer = 100) As Integer
Return objRandom.Next(Low, High + 1)
End Function
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim textOrNum As Integer = 0
Dim code As String = Nothing
Dim addHyphen As Integer = 0
Dim randomChars As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
Do
If textOrNum = 0 Then
code += (randomChars.Chars(GetRandomNumber(0, 25)).ToString)
textOrNum = 1
addHyphen += 1
ElseIf textOrNum = 1 Then
code += (GetRandomNumber(0, 9).ToString)
addHyphen += 1
textOrNum = 0
End If
If addHyphen = 5 Or addHyphen = 10 Or addHyphen = 15 Then
code += "-"
End If
Loop Until code.Length = 23
TextBox1.Text = code
End Sub
End Class4. Try to make your program look as appealing as possible. Add pictures of your niche, or find a VB.NET theme. Your goal is to convince your viewer. RE: Fake Key Generator ! [Used for Niches] - i0xIllusi0n - 04-08-2013 So it generates random characters. Doesn't run a malware server in the background, doesn't phiss. What's the point? Lol RE: Fake Key Generator ! [Used for Niches] - Complibur - 04-08-2013 (04-08-2013, 04:35 AM)i0xIllusi0n Wrote: So it generates random characters. Doesn't run a malware server in the background, doesn't phiss. Yes, you can use this for fake key generators for PPD! Basically you use this for say a fake Microsoft Point code generator. You then would upload it to a PPD site and make a video about it on youtube and people will download it and you make all the $ ! RE: Fake Key Generator ! [Used for Niches] - i0xIllusi0n - 04-08-2013 (04-08-2013, 05:07 AM)Processor Wrote:(04-08-2013, 04:35 AM)i0xIllusi0n Wrote: So it generates random characters. Doesn't run a malware server in the background, doesn't phiss. Which gets you maybe a dollar over 8 months. At least backdoor the goddamn thing xD RE: Fake Key Generator ! [Used for Niches] - MinecraftGeek - 04-08-2013 Thanks for this, I'm going to look for VB themes now so I can make one.
RE: Fake Key Generator ! [Used for Niches] - Complibur - 04-08-2013 (04-08-2013, 01:47 PM)i0xIllusi0n Wrote:(04-08-2013, 05:07 AM)Processor Wrote:(04-08-2013, 04:35 AM)i0xIllusi0n Wrote: So it generates random characters. Doesn't run a malware server in the background, doesn't phiss. Haha no not exactly! I make quite a bit from CPA/PPD ! RE: Fake Key Generator ! [Used for Niches] - cxS - 04-09-2013 Lots of ways this can be improved. RE: Fake Key Generator ! [Used for Niches] - i0xIllusi0n - 04-09-2013 (04-08-2013, 11:25 PM)Processor Wrote:(04-08-2013, 01:47 PM)i0xIllusi0n Wrote:(04-08-2013, 05:07 AM)Processor Wrote:(04-08-2013, 04:35 AM)i0xIllusi0n Wrote: So it generates random characters. Doesn't run a malware server in the background, doesn't phiss. Well, legitimately speaking. No bots in this context. |