Jump to content


Does anyone here think they could code this for me?(reward)


  • Please log in to reply
14 replies to this topic

#1 C0mmander

C0mmander
  • Guests

Posted 16 July 2012 - 11:17 PM

Hey guys sorry for asking this upon you guys but I cannot figure it out for the life of me. I only need ahk for this one thing. So If everytihng works well I will be probably sending you some money.

Here is what I need:

I need it to go to this website:

http://watchout4snak... ... dPlus.aspx

And copy the random word then past it into a notepad file

Then after posting it into a notepad file it click the generate a new word and copy it then past in the notepad file in this form:

word1
word2
word3
etc

Thanks guys :)

Hope to hear from you soon.

#2 Guests

  • Guests

Posted 16 July 2012 - 11:21 PM

I really would like this guys I am probably going to pay about 10$

#3 Guests

  • Guests

Posted 17 July 2012 - 01:08 AM

PM me, I'l help you for free.

#4 C0mmander

C0mmander
  • Members
  • 5 posts

Posted 17 July 2012 - 01:10 AM

PM me, I'l help you for free.


You are a guest I cannot pm you?

#5 nimda

nimda
  • Members
  • 4301 posts

Posted 17 July 2012 - 01:50 AM

Loop 5
{
    UrlDownloadToFile, http://watchout4snakes.com/creativitytools/RandomWord/RandomWordPlus.aspx, randomword.txt
    FileRead, html, randomword.txt
    FileDelete, randomword.txt
    RegExMatch(html, "<span id=""tmpl_main_lblWord"" class=""randomWord"">([^<]*)</span>", $)
    FileAppend, %$1%`r`n, list.txt
}
run list.txt
Just change the number up top for how many random words you want.
Send bitcoins to 1NimdaiY9RGwM8cSvus55Hko2NiTaxFCNX :)
(confused? <!-- m -->https://en.bitcoin.i...Buying_bitcoins<!-- m -->)

#6 C0mmander

C0mmander
  • Members
  • 5 posts

Posted 18 July 2012 - 02:24 AM

Hmm would you accept paypal? Or do I have to exchange for bc?

btw it is not working properly :/

Also can you make windows x the thing to run?

#7 nimda

nimda
  • Members
  • 4301 posts

Posted 18 July 2012 - 02:42 PM

btw it is not working properly :/

It works for me... what does it do for you?

Also can you make windows x the thing to run?

As in close the notepad window?

#8 C0mmander

C0mmander
  • Members
  • 5 posts

Posted 19 July 2012 - 05:17 PM

btw it is not working properly :/

It works for me... what does it do for you?

Also can you make windows x the thing to run?

As in close the notepad window?


Like it crates a notepad but it is empty?

And say I put 9 loops it makes 9 empty spaces down.

#9 girlgamer

girlgamer
  • Moderators
  • 2039 posts

Posted 19 July 2012 - 05:56 PM

Nice job there nimda, works for me too.

@C0mmander: What version of autohotkey are you using?

#10 flyingDman

flyingDman
  • Members
  • 1072 posts

Posted 20 July 2012 - 12:45 AM

It worked for me as well until it stopped working. It is website related an not Nimda's script. Unless the word list has to be generated by this website, I recommend using one of the many word lists out there (in text format). Code could be something like this:
TF("C:\Users\xxx\Scripts\Wordlist.txt") 
filedelete list.txt
Loop 5
	{	
	Random, sline, 1, TF_CountLines(T)
	sword := TF_ReadLines(T, sline, sline) . "`r`n" . sword
	}
FileAppend, %sword%, list.txt
run list.txt

For Hugov's standard lib "TF", see <!-- m -->http://www.autohotke...ugov/tf-lib.htm<!-- m -->

#11 C0mmander

C0mmander
  • Members
  • 5 posts

Posted 23 July 2012 - 05:37 PM

Nice job there nimda, works for me too.

@C0mmander: What version of autohotkey are you using?


The newest one I believe.

#12 nimda

nimda
  • Members
  • 4301 posts

Posted 23 July 2012 - 05:54 PM

MsgBox % A_AhkVersion
What version are you using?

#13 C0mmander

C0mmander
  • Members
  • 5 posts

Posted 25 July 2012 - 10:56 PM

MsgBox % A_AhkVersion
What version are you using?

I have no idea

#14 nimda

nimda
  • Members
  • 4301 posts

Posted 27 July 2012 - 07:19 PM

... Did you run that script? Just copy down what the msgbox says.

#15 Guests

  • Guests

Posted 01 September 2012 - 12:00 AM

... Did you run that script? Just copy down what the msgbox says.


1.0.48.05 thanks man