![]() |
| |||||||
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| Member Join Date: May 2008
Posts: 97
Reputation: 0 ![]() | Hey guys, I need some advice about how to automate a simple action over at gamevance. I really don't know too much about what I'm doing, but this should be pretty easy. So here is what I want to do: Say I have an address like this: http://www.gamevance.com/member_add_...o_user=1156520 And I want a program that will enter that address over and over again, but change the id number. For instance, the next address the program would enter is: http://www.gamevance.com/member_add_...o_user=1156520 and then: http://www.gamevance.com/member_add_...o_user=1156519 http://www.gamevance.com/member_add_...o_user=1156518 http://www.gamevance.com/member_add_...o_user=1156517 And hopefully, theoretically, I could just leave the bot running until it got all the way down to an id number of 1, i. e.: http://www.gamevance.com/member_add_....php?to_user=1 Do you guys know what I mean? This should be really easy, right? I really don’t know the first thing about actual programming but if there is a really easy way to do this and someone points me in the right direction I'm sure I could figure this out. Any suggestions? Please help. Edit: Oh yeah, I need it to work in firefox. Maybe theres a add on that can do something like this? |
| | |
| | #2 (permalink) |
| Global Moderator Join Date: Dec 2007
Posts: 2,396
Reputation: 77 ![]() | I could make something that would do this easily in AHK. I'll try and make something user friendly :\
__________________ ![]() "As democracy is perfected, the office of President represents, more and more closely, the inner soul of the people. On some great and glorious day the plain folks of the land will reach their heart's desire at last and the White House will be adorned by a downright moron." H.L. Mencken, The Baltimore Evening Sun, July 26, 1920 |
| | |
| | #3 (permalink) |
| Member Join Date: May 2008
Posts: 97
Reputation: 0 ![]() | Wow if you could do that for me Itami I'd be really grateful. I have a weird feeling that it would take me the better part of a month to do this. In fact, I will give you one of my club live accounts with 3000 tickets if you do to show my gratitude (not much I know, but you could get a couple pairs of headphones or a game or something). So AHK is probably the way to go? Should I download it? |
| | |
| | #4 (permalink) |
| Global Moderator Join Date: Dec 2007
Posts: 2,396
Reputation: 77 ![]() | For something like this, AHK is just fine. I'm doing a silent one but it's IE only.
__________________ ![]() "As democracy is perfected, the office of President represents, more and more closely, the inner soul of the people. On some great and glorious day the plain folks of the land will reach their heart's desire at last and the White House will be adorned by a downright moron." H.L. Mencken, The Baltimore Evening Sun, July 26, 1920 |
| | |
| | #8 (permalink) |
| Global Moderator Join Date: Dec 2007
Posts: 2,396
Reputation: 77 ![]() | http://www.mediafire.com/?jzhdfyrycwn Unzip the files and run whichever one you want. Compiled it, just in case. Login to gamevance through IE and then run the bot. It'll visit that URL and subtract 1 after each visit. It's browserless and will probably get you banned :p But hey, it does just what you asked XD Code: MsgBox, Sign in using IE and press Win+S keys
#s::
GoSub, Beginning
#z::exitapp
#x::pause
#c::reload
Beginning:
InputBox, UserID, UserID, Enter the first UserID you'd like to start with,,,,,,,,1156520
Sleep, 100
Loop
{
Entering:
Sleep, 300
UrlDownloadToFile, http://www.gamevance.com/member_add_to_friends.php?to_user=%UserID%, %A_ScriptDir%\UselessText.txt
Sleep, 300
UserID--
If UserID = 0
{
Msgbox, Done!
Send, #z
}
Else
{
Goto, Entering
}
}
__________________ ![]() "As democracy is perfected, the office of President represents, more and more closely, the inner soul of the people. On some great and glorious day the plain folks of the land will reach their heart's desire at last and the White House will be adorned by a downright moron." H.L. Mencken, The Baltimore Evening Sun, July 26, 1920 |
| | |
| | #9 (permalink) |
| Member Join Date: May 2008
Posts: 97
Reputation: 0 ![]() | Oh Itami, I just did some investigating and it looks like the newest member of gamevance is 1162141, so it would be good if I could start the process with an ID number a little higher than that, if its not too late. Or maybe you could make it so that you could enter the starting number manually? You got it in one TJ, it will add massive amounts of friends. Edit: Oh, sorry, I just saw you already posted. Thanks! let me see if I can figure this out and I'll let you know how its going in a minute. |
| | |
| | #11 (permalink) |
| Global Moderator Join Date: Dec 2007
Posts: 2,396
Reputation: 77 ![]() | You can choose what number you want to start with.
__________________ ![]() "As democracy is perfected, the office of President represents, more and more closely, the inner soul of the people. On some great and glorious day the plain folks of the land will reach their heart's desire at last and the White House will be adorned by a downright moron." H.L. Mencken, The Baltimore Evening Sun, July 26, 1920 |
| | |
| | #13 (permalink) |
| Member Join Date: May 2008
Posts: 97
Reputation: 0 ![]() | Sadly Itami, I doesn't appear to be working. At gamevance you can look at your invite history and see a record of all the pending invites you’ve sent out. I just let it run for about 5 minutes and then checked the invite history and no new invites on record. I think each page has to load completely. Maybe it's 'cause it's silent? Maybe I'm doing something wrong? |
| | |
| | #14 (permalink) |
| Global Moderator Join Date: Dec 2007
Posts: 2,396
Reputation: 77 ![]() | Yeah, it's probably because of the method I used. Guess I'll have to do it the boring way :p
__________________ ![]() "As democracy is perfected, the office of President represents, more and more closely, the inner soul of the people. On some great and glorious day the plain folks of the land will reach their heart's desire at last and the White House will be adorned by a downright moron." H.L. Mencken, The Baltimore Evening Sun, July 26, 1920 |
| | |
| | #15 (permalink) |
| Member Join Date: May 2008
Posts: 97
Reputation: 0 ![]() | LOL, it looks kinda cool though, way user friendly, if it'd worked. But you really don't need to make it silent. If I could watch the page loads it would be easier for me to see where I left off for when I want to start it again. |
| | |
| | #16 (permalink) |
| Global Moderator Join Date: Dec 2007
Posts: 2,396
Reputation: 77 ![]() | Code: MsgBox, Sign in using IE and press Win+S keys
#s::
GoSub, Beginning
#z::exitapp
#x::pause
#c::reload
Beginning:
InputBox, UserID, UserID, Enter the first UserID you'd like to start with,,,,,,,,1156520
Sleep, 100
Loop
{
Entering:
Sleep, 300
Send, F6
Sleep, 500
Send, http://www.gamevance.com/member_add_to_friends.php?to_user=%UserID%, %A_ScriptDir%\UselessText.txt
Sleep, 5000
UserID--
If UserID = 0
{
Msgbox, Done!
Send, #z
}
Else
{
Goto, Entering
}
}
__________________ ![]() "As democracy is perfected, the office of President represents, more and more closely, the inner soul of the people. On some great and glorious day the plain folks of the land will reach their heart's desire at last and the White House will be adorned by a downright moron." H.L. Mencken, The Baltimore Evening Sun, July 26, 1920 |
| | |
| | #18 (permalink) |
| Global Moderator Join Date: Dec 2007
Posts: 2,396
Reputation: 77 ![]() | Oops, did something wrong ![]() Don't know if it'll work though. Code: MsgBox, Sign in using IE and press Win+S keys
#s::
GoSub, Beginning
#z::exitapp
#x::pause
#c::reload
Beginning:
InputBox, UserID, UserID, Enter the first UserID you'd like to start with,,,,,,,,1156520
Sleep, 100
Loop
{
Entering:
Sleep, 300
Send, F6
Sleep, 500
Send, http://www.gamevance.com/member_add_to_friends.php?to_user=%UserID%
Sleep, 5000
UserID--
If UserID = 0
{
Msgbox, Done!
Send, #z
}
Else
{
Goto, Entering
}
}
__________________ ![]() "As democracy is perfected, the office of President represents, more and more closely, the inner soul of the people. On some great and glorious day the plain folks of the land will reach their heart's desire at last and the White House will be adorned by a downright moron." H.L. Mencken, The Baltimore Evening Sun, July 26, 1920 |
| | |
| | #20 (permalink) |
| Global Moderator Join Date: Dec 2007
Posts: 2,396
Reputation: 77 ![]() | I could probably figure it out if I actually experimented with it more but I'm just lazy right now. Hopefully this will help you learn ![]()
__________________ ![]() "As democracy is perfected, the office of President represents, more and more closely, the inner soul of the people. On some great and glorious day the plain folks of the land will reach their heart's desire at last and the White House will be adorned by a downright moron." H.L. Mencken, The Baltimore Evening Sun, July 26, 1920 |
| |