Skip to content

Commit 3842427

Browse files
Update main.ahk
1 parent fea30b5 commit 3842427

1 file changed

Lines changed: 176 additions & 36 deletions

File tree

main.ahk

Lines changed: 176 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
1-
#SingleInstance,Force
2-
SetBatchLines -1
3-
4-
IfExist,AltGENTargeting.dll
1+
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
2+
; #Warn ; Enable warnings to assist with detecting common errors.
3+
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
4+
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
5+
#SingleInstance, Force
6+
SetBatchLines, -1
7+
MsgBox,48,Starting,Welcome To Altify's Gen,1
8+
MsgBox,48,Checking For Updates,Accessing Github,1
9+
IfExist,info.txt
10+
{
11+
FileRecycle,info.txt
12+
URLDownloadToFile,https://raw.githubusercontent.com/Altify-Development/Fake-Person-Generator/main/info.txt,info.txt
13+
}
14+
MsgBox,,Completed Step 1,info.txt restored,1
15+
IfExist,info.txt
516
{
617
MsgBox,48,Installation Process,Checking Installation,1
718
IfNotExist, Installed.sys
@@ -16,8 +27,8 @@ IfExist,AltGENTargeting.dll
1627
ExitApp
1728
ButtonInstall:
1829
Gui, Submit
19-
FileCreateDir,Generated
20-
FileCreateDir,Capture
30+
FileCreateDir,Results/Generated
31+
FileCreateDir,Results/Capture
2132
Gui, Add, Text,, Please Enter The Advertisment You Wish To Place In Your Capture:
2233
Gui, Add, Text,, Please Enter The Amount of Accounts You Would Like To Generate %A_UserName%:
2334
Gui, Add, Text,, Pleast Enter Your Discord Server Invite For Capture
@@ -53,15 +64,123 @@ IfExist,AltGENTargeting.dll
5364
}
5465
GenerateRandomString(length = 1)
5566
{
56-
characters :="abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890-=_+!@#$."
67+
characters :="abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890-=_+!@#$"
5768
StringSplit, chars, characters
5869

5970
Random,len2,3,6
6071
Loop, %length%
6172
{
6273
Loop, %len2%
6374
{
64-
Random, rand, 1, 316
75+
Random, rand, 1, 315
76+
password .= chars%rand%
77+
}
78+
}
79+
return password
80+
}
81+
DToken1(length = 1)
82+
{
83+
characters :="abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890"
84+
StringSplit, chars, characters
85+
86+
Random,len2,22,26
87+
Loop, %length%
88+
{
89+
Loop, %len2%
90+
{
91+
Random, rand, 1, 307
92+
password .= chars%rand%
93+
}
94+
}
95+
return password
96+
}
97+
DToken2(length = 1)
98+
{
99+
characters :="___abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890"
100+
StringSplit, chars, characters
101+
102+
Random,len2,4,8
103+
Loop, %length%
104+
{
105+
Loop, %len2%
106+
{
107+
Random, rand, 1, 310
108+
password .= chars%rand%
109+
}
110+
}
111+
return password
112+
}
113+
DToken3(length = 1)
114+
{
115+
characters :="---abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ12345678901234567890"
116+
StringSplit, chars, characters
117+
118+
Random,len2,25,29
119+
Loop, %length%
120+
{
121+
Loop, %len2%
122+
{
123+
Random, rand, 1, 310
124+
password .= chars%rand%
125+
}
126+
}
127+
return password
128+
}
129+
pak1(length = 1)
130+
{
131+
characters :="ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
132+
StringSplit, chars, characters
133+
134+
Loop, %length%
135+
{
136+
Loop, 4
137+
{
138+
Random, rand, 1, 36
139+
password .= chars%rand%
140+
}
141+
}
142+
return password
143+
}
144+
pak2(length = 1)
145+
{
146+
characters :="ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
147+
StringSplit, chars, characters
148+
149+
Loop, %length%
150+
{
151+
Loop, 4
152+
{
153+
Random, rand, 1, 36
154+
password .= chars%rand%
155+
}
156+
}
157+
return password
158+
}
159+
pak3(length = 1)
160+
{
161+
characters :="ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
162+
StringSplit, chars, characters
163+
164+
Loop, %length%
165+
{
166+
Loop, 4
167+
{
168+
Random, rand, 1, 36
169+
password .= chars%rand%
170+
}
171+
}
172+
return password
173+
}
174+
pak4(length = 1)
175+
{
176+
characters :="ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
177+
StringSplit, chars, characters
178+
179+
Loop, %length%
180+
{
181+
Loop, 4
182+
{
183+
Random, rand, 1, 36
65184
password .= chars%rand%
66185
}
67186
}
@@ -73,102 +192,102 @@ IfExist,AltGENTargeting.dll
73192
Random, StateProbability, 1, 20
74193
IfEqual, StateProbability, 1
75194
{
76-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
195+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
77196
Country := "USA"
78197
}
79198
IfEqual, StateProbability, 2
80199
{
81-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
200+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
82201
Country := "USA"
83202
}
84203
IfEqual, StateProbability, 3
85204
{
86-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
205+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
87206
Country := "USA"
88207
}
89208
IfEqual, StateProbability, 4
90209
{
91-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
210+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
92211
Country := "USA"
93212
}
94213
IfEqual, StateProbability, 5
95214
{
96-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
215+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
97216
Country := "USA"
98217
}
99218
IfEqual, StateProbability, 6
100219
{
101-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
220+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
102221
Country := "USA"
103222
}
104223
IfEqual, StateProbability, 7
105224
{
106-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
225+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
107226
Country := "USA"
108227
}
109228
IfEqual, StateProbability, 8
110229
{
111-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
230+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
112231
Country := "USA"
113232
}
114233
IfEqual, StateProbability, 9
115234
{
116-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
235+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
117236
Country := "USA"
118237
}
119238
IfEqual, StateProbability, 10
120239
{
121-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
240+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
122241
Country := "USA"
123242
}
124243
IfEqual, StateProbability, 11
125244
{
126-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
245+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
127246
Country := "USA"
128247
}
129248
IfEqual, StateProbability, 12
130249
{
131-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
250+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
132251
Country := "USA"
133252
}
134253
IfEqual, StateProbability, 13
135254
{
136-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
255+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
137256
Country := "USA"
138257
}
139258
IfEqual, StateProbability, 14
140259
{
141-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
260+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
142261
Country := "USA"
143262
}
144263
IfEqual, StateProbability, 15
145264
{
146-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
265+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
147266
Country := "USA"
148267
}
149268
IfEqual, StateProbability, 16
150269
{
151-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
270+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
152271
Country := "USA"
153272
}
154273
IfEqual, StateProbability, 17
155274
{
156-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
275+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
157276
Country := "USA"
158277
}
159278
IfEqual, StateProbability, 18
160279
{
161-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
280+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
162281
Country := "USA"
163282
}
164283
IfEqual, StateProbability, 19
165284
{
166-
FileReadLine, State, STATES/USA.pdb, %StateRandom%
285+
FileReadLine, State, settings/STATES/USA.pdb, %StateRandom%
167286
Country := "USA"
168287
}
169288
IfEqual, StateProbability, 20
170289
{
171-
FileReadLine, State, STATES/MEXICO.pdb, %StateRandom%
290+
FileReadLine, State, settings/STATES/MEXICO.pdb, %StateRandom%
172291
Country := "Mexico"
173292
}
174293
Random, IP1, 10, 99
@@ -179,9 +298,9 @@ IfExist,AltGENTargeting.dll
179298
Random, FileReadNumber2, 1, 400
180299
Random, FileReadNumber3, 1, 9000
181300
Sleep, 20
182-
FileReadLine,FirstName, NAMES/namesFIRST.pdb, %FileReadNumber1%
183-
FileReadLine,LastName, NAMES/namesLAST.pdb, %FileReadNumber2%
184-
FileReadLine,Mail, MAIL-ENDINGS/ENDINGS.db, %FileReadNumber3%
301+
FileReadLine,FirstName, settings/NAMES/namesFIRST.pdb, %FileReadNumber1%
302+
FileReadLine,LastName, settings/NAMES/namesLAST.pdb, %FileReadNumber2%
303+
FileReadLine,Mail, settings/MAIL-ENDINGS/ENDINGS.db, %FileReadNumber3%
185304
FileAppend,% GenerateRandomString(),Generated\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
186305
FileAppend,%FirstName%%Mail%:%LastName%,Generated\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
187306
FileAppend,% GenerateRandomString(),Generated\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
@@ -206,7 +325,7 @@ IfExist,AltGENTargeting.dll
206325
Random, RemainingMinutes, 0, 59
207326
Random, RemainingSeconds, 0, 59
208327
Random, RemainingMiliseconds, 0, 999
209-
FileAppend,`nSubscribed=True`nTime Remaining:`n%RemainingYears% Years`n%RemainingMonths% Months`n%RemainingDays% Days`n%RemainingHours% Hours`n%RemainingMinutes% Minutes`n%RemainingMonths% Seconds`n%RemainingMiliseconds% Miliseconds,Capture\Account Targeted Account Generator By Altify#5121 - Thanks For Boosting.txt,
328+
FileAppend,`nSubscribed=True`nTime Remaining:`n%RemainingYears% Years`n%RemainingMonths% Months`n%RemainingDays% Days`n%RemainingHours% Hours`n%RemainingMinutes% Minutes`n%RemainingMonths% Seconds`n%RemainingMiliseconds% Miliseconds,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
210329
}
211330
IfEqual, Subscription, 3
212331
{
@@ -217,7 +336,7 @@ IfExist,AltGENTargeting.dll
217336
Random, RemainingMinutes, 0, 59
218337
Random, RemainingSeconds, 0, 59
219338
Random, RemainingMiliseconds, 0, 999
220-
FileAppend,`nSubscribed=True`nTime Remaining:`n%RemainingYears% Years`n%RemainingMonths% Months`n%RemainingDays% Days`n%RemainingHours% Hours`n%RemainingMinutes% Minutes`n%RemainingMonths% Seconds`n%RemainingMiliseconds% Miliseconds,Capture\Account Targeted Account Generator By Altify#5121 - Thanks For Boosting.txt,
339+
FileAppend,`nSubscribed=True`nTime Remaining:`n%RemainingYears% Years`n%RemainingMonths% Months`n%RemainingDays% Days`n%RemainingHours% Hours`n%RemainingMinutes% Minutes`n%RemainingMonths% Seconds`n%RemainingMiliseconds% Miliseconds,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
221340
}
222341
IfEqual, Subscription, 4
223342
{
@@ -228,7 +347,7 @@ IfExist,AltGENTargeting.dll
228347
Random, RemainingMinutes, 0, 59
229348
Random, RemainingSeconds, 0, 59
230349
Random, RemainingMiliseconds, 0, 999
231-
FileAppend,`nSubscribed=True`nTime Remaining:`n%RemainingYears% Years`n%RemainingMonths% Months`n%RemainingDays% Days`n%RemainingHours% Hours`n%RemainingMinutes% Minutes`n%RemainingMonths% Seconds`n%RemainingMiliseconds% Miliseconds,Capture\Account Targeted Account Generator By Altify#5121 - Thanks For Boosting.txt,
350+
FileAppend,`nSubscribed=True`nTime Remaining:`n%RemainingYears% Years`n%RemainingMonths% Months`n%RemainingDays% Days`n%RemainingHours% Hours`n%RemainingMinutes% Minutes`n%RemainingMonths% Seconds`n%RemainingMiliseconds% Miliseconds,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
232351
}
233352
IfEqual, Subscription, 5
234353
{
@@ -239,9 +358,30 @@ IfExist,AltGENTargeting.dll
239358
Random, RemainingMinutes, 0, 59
240359
Random, RemainingSeconds, 0, 59
241360
Random, RemainingMiliseconds, 0, 999
242-
FileAppend,`nSubscribed=True`nTime Remaining:`n%RemainingYears% Years`n%RemainingMonths% Months`n%RemainingDays% Days`n%RemainingHours% Hours`n%RemainingMinutes% Minutes`n%RemainingMonths% Seconds`n%RemainingMiliseconds% Miliseconds,Capture\Account Targeted Account Generator By Altify#5121 - Thanks For Boosting.txt,
361+
FileAppend,`nSubscribed=True`nTime Remaining:`n%RemainingYears% Years`n%RemainingMonths% Months`n%RemainingDays% Days`n%RemainingHours% Hours`n%RemainingMinutes% Minutes`n%RemainingMonths% Seconds`n%RemainingMiliseconds% Miliseconds,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
243362
}
244-
FileAppend,`n%1%`nCredits: Account Creator By: Altify™#5121`nLanguage: AutoHotKey`nDiscLink: %DiscLink%`nYTLink: %YT%`nTwitchLink: %TwitchLink%`n,Capture\Account Targeted Account Generator By Altify™#5121 - Thanks For Boosting.txt,
363+
Random, pin1, 1, 9
364+
Random, pin2, 1, 9
365+
Random, pin3, 1, 9
366+
Random, pin4, 1, 9
367+
FileAppend,`nComputer Information:`nUsername: %FirstName%`nComputer Name:,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
368+
FileAppend,% GenerateRandomString(),Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
369+
FileAppend,`nPIN ( Personal Identification Number ): %pin1%%pin2%%pin3%%pin4%`nMicosoft Account Linked: ,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
370+
FileAppend,% GenerateRandomString(),Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
371+
FileAppend,%FirstName%%Mail%:%LastName%,,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
372+
FileAppend,% GenerateRandomString(),Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
373+
FileAppend,`nProduct Activation Key:,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
374+
FileAppend,% pak1(),Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
375+
FileAppend,% pak2(),Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
376+
FileAppend,% pak3(),Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
377+
FileAppend,% pak4(),Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
378+
FileAppend,`nDiscord Token: ,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
379+
FileAppend,% DToken1(),Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
380+
FileAppend,.,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
381+
FileAppend,% DToken2(),Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
382+
FileAppend,.,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
383+
FileAppend,% DToken3(),Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
384+
FileAppend,`n%1%`nCredits: Account Creator By: Altify#4476`nLanguage: AutoHotKey`nDiscLink: %DiscLink%`nYTLink: %YT%`nTwitchLink: %TwitchLink%`n,Capture\Account Targeted Account Generator By Altify#4476 - Thanks For Boosting.txt,
245385
}
246386
return
247387
}

0 commit comments

Comments
 (0)