| View previous topic :: View next topic |
| Author |
Message |
shemer77
Joined: 11 Aug 2008 Posts: 1
|
Posted: Mon Aug 11, 2008 9:30 pm Post subject: Fill out register info at website |
|
|
So I am trying to make a script that can fill out the register info at
http://www.sugarloot.com/register then go to a photo click 10 and thats it
I need to use a random generator name, the email needs to be used from output.txt and the user would have to select the password and then the program would click male and click I agree to terms this is what i have so far
| Code: | space::Run http://www.sugarloot.com/
Click 1063, 256
IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Windows Internet Explorer
{
WinActivate
}
|
What do i do now? I dont know how to tell the program to fill out the name section and the emails and stuff much help would be appreciated.
[Title edited. Please write descriptive titles for your topics. ~jaco0646] _________________ ameer kambod |
|
| Back to top |
|
 |
Guest
|
Posted: Mon Aug 11, 2008 11:15 pm Post subject: |
|
|
macro it
1) click the field for name
2) send random name
3) send {TAB}
4) read email from output.txt
5) send email
6) send password etc |
|
| Back to top |
|
 |
Superfraggle
Joined: 02 Nov 2004 Posts: 970 Location: London, UK
|
Posted: Tue Aug 12, 2008 12:21 am Post subject: |
|
|
So you want to cheat at a competition. Well they will generally check IP addresses and see that all the votes came from the same place, and then remove all votes  _________________ Steve F AKA Superfraggle
http://r.yuwie.com/superfraggle |
|
| Back to top |
|
 |
shenmer Guest
|
Posted: Tue Aug 12, 2008 5:00 pm Post subject: |
|
|
The Click command wont work
It will run sugarloot.com but after that it wont do anything why? |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Aug 12, 2008 5:25 pm Post subject: |
|
|
| Superfraggle wrote: | So you want to cheat at a competition. Well they will generally check IP addresses and see that all the votes came from the same place, and then remove all votes  |
hehe owned roflmao maybe it works after confirming a ip change through a proxy list |
|
| Back to top |
|
 |
Serenity
Joined: 07 Nov 2004 Posts: 1276
|
Posted: Tue Aug 12, 2008 5:30 pm Post subject: |
|
|
| shenmer wrote: | The Click command wont work
It will run sugarloot.com but after that it wont do anything why? |
The click command probably executed before the window launched. Try adding WinWait before it. _________________ "Anything worth doing is worth doing slowly." - Mae West
 |
|
| Back to top |
|
 |
shemer7 Guest
|
Posted: Tue Aug 12, 2008 5:58 pm Post subject: |
|
|
So this is my new script
| Code: | space::Run C:\Program Files\Mozilla Firefox\firefox.exe
IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
WinActivate
}
1::MouseMove 760, 69
2::MouseClick
3::Send http://www.sugarloot.com
4::Send {Enter}
IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
WinActivate
}
5::MouseMove 1077, 255
6::MouseClick
7::MouseMove 468, 364
8::MouseClick
WinWaitActive,,5
Send Randomname
Send {Tab} |
For some reason after 8 nothing happens why? |
|
| Back to top |
|
 |
Serenity
Joined: 07 Nov 2004 Posts: 1276
|
Posted: Tue Aug 12, 2008 6:01 pm Post subject: |
|
|
You need to specify a window title in the WinWait options. _________________ "Anything worth doing is worth doing slowly." - Mae West
 |
|
| Back to top |
|
 |
shemrmer Guest
|
Posted: Tue Aug 12, 2008 6:09 pm Post subject: |
|
|
Here is my code
| Code: | space::Run C:\Program Files\Mozilla Firefox\firefox.exe
IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
WinActivate
}
1::MouseMove 760, 69
2::MouseClick
3::Send http://www.sugarloot.com
4::Send {Enter}
IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
WinActivate
}
5::MouseMove 1077, 255
6::MouseClick
7::MouseMove 468, 364
8::MouseClick
WinWaitActive,Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox,5
Send Randomname
Send {Tab} |
still wont work it wont send randon name! |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Aug 12, 2008 6:17 pm Post subject: |
|
|
| figured it out sorta |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 6847 Location: Pacific Northwest, US
|
Posted: Tue Aug 12, 2008 6:17 pm Post subject: |
|
|
| Code: |
8::
MouseClick
WinWaitActive ....
|
_________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Aug 12, 2008 6:22 pm Post subject: |
|
|
I finally figured out but I need to figure out how to use a randon name generator
| Code: | space::
Run C:\Program Files\Mozilla Firefox\firefox.exe
IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
WinActivate
}
Sleep 2000
MouseMove 760, 69
Sleep 2000
MouseClick
Sleep 2000
Send http://www.sugarloot.com
Sleep 2000
Send {Enter}
Sleep 2000
IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
WinActivate
}
MouseMove 1077, 255
Sleep 2000
MouseClick
Sleep 2000
MouseMove 468, 364
Sleep 2000
MouseClick
Sleep 2000
IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
WinActivate
}
Send Randomname
Sleep 4000
Send {Tab} |
I found this random code generator at here http://www.autohotkey.com/forum/topic34555.html |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 6847 Location: Pacific Northwest, US
|
Posted: Tue Aug 12, 2008 6:25 pm Post subject: |
|
|
| Anonymous wrote: | | I need to figure out how to use a randon name generator |
Yeah, sounds like you do. _________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Aug 12, 2008 6:36 pm Post subject: |
|
|
| well if found that random name generator but how do i implement it into mine? |
|
| Back to top |
|
 |
|