AutoHotkey Community

It is currently May 27th, 2012, 12:09 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 24 posts ]  Go to page Previous  1, 2
Author Message
 Post subject: Hmmmm.....
PostPosted: October 10th, 2009, 4:25 pm 
Offline

Joined: October 4th, 2009, 10:20 pm
Posts: 22
Wait, It has a problem...


Image

Any help please? (The other example does the same thing)

Thanks! :wink:


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: Hmmmm.....
PostPosted: October 10th, 2009, 9:21 pm 
Offline

Joined: July 9th, 2009, 9:25 pm
Posts: 120
Keavon wrote:
Wait, It has a problem...

Image


You need the RandomNumber() function in your script (see the first post of this thread).


Report this post
Top
 Profile  
Reply with quote  
PostPosted: September 23rd, 2010, 8:30 pm 
Curious,
I just thought you'd like to know that your script has been put to good use. A friend on Facebook had their account hacked, and the hacker sent me a link from their account leading to a phishing page looking exactly like the Facebook login page. I used your script to create a script that would create random email addresses, using hotmail.com, gmail.com, random.net, etc, and random passwords (I duplicated your script 3 times and changed the name Random to Random2 & 3, and remove the T from Lowercase, Word, Word, T so that it was all lower case. I was sending a fake facebook login every 2 seconds, so their list should be all but useless thanks to you!


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: September 23rd, 2010, 11:26 pm 
Offline

Joined: October 4th, 2009, 10:20 pm
Posts: 22
Sweet! That is so cool! Not that I really care about Facebook, but spamming phishers, WOHOO! I should try that some time. Hehehe. I'm glad you found a good use for it. I'm not doing much with AHK lately (I'v been building a Reprap 3D printer), but I would recommend not duplicating the script 3 times, but rather just use a random variable for the gmail, hotmail, and what not. If you need any help or have any questions, I might be able to help you (I'm not the best ever at scripting, but I'v aquired a bit of knowlege about it. :wink:
(sorry for bad spelling, I don't feel like correcting it)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 23rd, 2010, 11:31 pm 
Offline

Joined: October 4th, 2009, 10:20 pm
Posts: 22
I love macros, lol.
Look here.
http://www.septimusheap.com/game/leaderboard/
That's me, Keavon at the top, with 4 million points! Just ran that overnight once or twice, and, hey! 4mil points! xD
Even though I HATE club penguin so much, I love ruining it by macroing once and a while and getting unimaginable points, so I could "buy" anything. Maybe I could sell my account on it with the moneh. lol. Anyway, yeah, I love abusing programs I hate with macros. :P


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 25th, 2010, 6:54 pm 
Offline

Joined: November 7th, 2006, 9:47 pm
Posts: 1934
Location: Germany
Hello. :D

I tried your script and found it funny. In contrast to your way of creating new names/words, my version creates the words from a set of syllables. Its just another way to solve same problem.

:arrow: randomWord

_________________
{1:"ahkstdlib", 2:"my libs", 3:"my apps", 4:"my license"}
--> Don't feed the troll! <--


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 25th, 2010, 7:16 pm 
It's not completely my script. Not at all. But I basically made it work for things like this, but I did copy the random name generator.
:wink:


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: September 27th, 2010, 6:50 pm 
Offline

Joined: April 1st, 2009, 8:32 pm
Posts: 71
I included this little snippet to the script (just paste it in at the top) to use the function to copy names to the clipboard. It selects a random name shown in a tooltop, and puts it on the clipboard, then waits three seconds and exists. If in the three seconds, you hit F5, it will start over with a new name and new three seconds.


Code:
; go! get the name
GetNewName()

;hotkeys for refresh and exit
F5::GetNewName()
Esc::GoSub, DoExit

; methods
GetNewName()
{
  RandName :=  RandomName()
  ClipBoard := RandName
  ToolTip(RandName)
  SetTimer, DoExit, -3000
}

DoExit:
  ExitApp
Return

ToolTip(Text, TimeSec=3)
{
  ToolTip % Text
  SetTimer, TipCancel, % abs(TimeSec) * -1000
  Return
 
  TipCancel:
  ToolTip
}


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 27th, 2010, 7:09 pm 
Offline

Joined: November 7th, 2006, 9:47 pm
Posts: 1934
Location: Germany
Hmm, ok. And here is the adapted version of the demo script of my own randomWord library. It have the same gui, but works with randomName function:
Code:
#Include *i randomName.ahk

#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%

Gui, Font, S12, Courier New
Gui, Add, Edit, Vresults R8
Gui, Font
Gui, Add, Checkbox, Vlimit Glimit Checked0 X+8 Section, Length:
Gui, Add, Edit, Vlen
Gui, Add, UpDown, Range2-10, 5
Gui, Add, Button, X14 Vgenerate Ggenerate +Default, Generate
Gui, Font, S8 Cgray
Gui, Add, Text, XS+8 Y+-16, Copyright 2010 Tuncay
Gui, Font
GuiControl, Disable, len
Gui, Show,, Gui for Random Word Generator
GoSub, generate

RETURN

GuiClose:
ExitApp

generate:
Gui, Submit, NoHide
names := ""
Loop, 8
{
   names .= randomName(limit ? len : 4, limit ? len : 10) . "`n"
   Sleep, 20
}
StringTrimRight, names, names, 1
GuiControl,, results, %names%
return

limit:
Gui, Submit, NoHide
If (limit)
{
   GuiControl, Enable, len
}
else
{
   GuiControl, Disable, len
}
return

_________________
{1:"ahkstdlib", 2:"my libs", 3:"my apps", 4:"my license"}
--> Don't feed the troll! <--


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 24 posts ]  Go to page Previous  1, 2

All times are UTC [ DST ]


Who is online

Users browsing this forum: Rajat and 56 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group