hEEEEELP
i desperately need to get this script working. ots fpr the greater good.
tried doing this to the script so perhaps it can speed along the process is you use my modifications? im getting a whole lot of
'your doing it wrong' in these parts :: /
words with 2 names
variable "EmailAddress"
variable symbol error with the ( ' ) in mother's maiden name
results churn out blank
Code:; Fetch the fake name generator page UrlDownloadToFile, http://www.fakenamegenerator.com/advanced.php?n[]=us&c[]=us&gen=50&age-min=19&age-max=85, fng.htm FileRead, fng, advanced.php.htm FileDelete, fng.htm ; Parse out the vCard URL that has all the important info regex := "(?<=/vcard.php\?identity=).?(?="">)" RegExMatch(fng, regex, info) ; Separate the data into separate strings StringReplace, info, info, :, /, All ; Workaround to allow AHK to use more than one character as a delimiter in a parse loop Loop, Parse, info, / { if A_Index = 1 Phone = %A_LoopField% if A_Index = 2 Website = %A_LoopField% if A_Index = 3 Email_Address= %A_LoopField% if A_Index = 4 Password = %A_LoopField% if A_Index = 5 Mothers_Maiden_name = %A_LoopField% if A_Index = 6 Birthday = %A_LoopField% if A_Index = 7 Visa = %A_LoopField% if A_Index = 8 Expires = %A_LoopField% if A_Index = 9 SSN = %A_LoopField% if A_Index = 10 Occupation = %A_LoopField% if A_Index = 11 UPS_Tracking_Number = %A_LoopField% if A_Index = 12 Blood_type = %A_LoopField% if A_Index = 13 Weight = %A_LoopField% if A_Index = 14 Height = %A_LoopField% } ; Here's en example that shows you all the data MsgBox,%Phone% %Website% %Email_Address% %Password% %Mothers_Maiden_name% %Birthday% %Visa% %Expires% %SSN% %Occupation% %Occupation% %UPS_Tracking_Number% %Blood_type% %Weight% %Height%
---------- Post added at 04:29 AM ---------- Previous post was at 04:12 AM ----------
by scouring the source code of %advanced.php% by using 'http://www.fakenamegenerator.com/advanced.php?n[]=us&c[]=us&gen=50&age-min=19&age-max=85' i found the usefull is this section
Code:<div class="extra"> <ul> <li class="lab">Phone:</li> <li class="tel"><span class="value">520-236-8167</span></li> <li class="lab">Website:</li> <li>SurfQuestions.com</li> <li class="lab">Email Address:</li> <li class="email"><span class="value">JasminGDanko@example.com</span> <div class="adtl">This is a real email address. <a href="http://www.fakemailgenerator.com/?email=JasminGDanko" title="Fake Mail Generator">Click here to use it!</a></div></li> <li class="lab">Password:</li> <li>ieDaitu5roo</li> <li class="lab">Mother's Maiden name:</li> <li>Woodford</li> <li class="lab">Birthday:</li> <li class="bday">June 23, 1948 (63 years old)</li> <li class="lab">Visa:</li> <li>4532 1019 2393 7069</li> <li class="lab">Expires:</li> <li>5/2014</li> <li class="lab">SSN:</li><li>527-64-7891 <div class="adtl">You should <a href="http://www.ssnregistry.org/">click here</a> to find out if your SSN is online.</div></li> <li class="lab">Occupation:</li> <li class="title">Reactor operator</li> <li class="lab">UPS Tracking Number:</li> <li>1Z 502 310 91 1240 940 9</li> <li class="lab">Blood type:</li> <li>A+</li> <li class="lab">Weight:</li> <li>216.7 pounds (98.5 kilograms)</li> <li class="lab">Height:</li> <li>5' 5" (164 centimeters)</li>


LinkBack URL
About LinkBacks
Reply With Quote
