Jump to content

Recommended Posts

Posted

Hello. I newby in autoit. It looks very terribly, but probably it can cope with my problem. I am a shame to ask me about the help, but is independent to me a little that clearly. So a problem: there Are 5 static sites on which it is necessary to come time at 12 o'clock, to click on the button and to close a site.

For example site http://www.xtremetop100.com/in.php?site=1132196620

i need press button "Vote for Zulu hotel" and close that site

My idea so stupid

$url = "http://www.xtremetop100.com/in.php?site=1132196620"
$oIE = _IECreate($url, 1, 1, 0)
sleep(10000)
Send("{TAB}")
sleep(200)
Send("{TAB}")
sleep(200)
Send("{TAB}")
sleep(200)
Send("{TAB}")
sleep(200)
Send("{TAB}")
sleep(200)
50 times till it get my button T_T then
Send("{ENTER}")

But i saw here topic http://www.autoitscript.com/forum/index.ph...c=36269&hl=

it what i need but i cant understand that i need to do.. Please help me!

Posted (edited)

i dont see your T_T button

I guess i mean u allready press it.. Next time u able see it after 12 hours

bad example.. ok

that link able see buton anytime

ohh lol im sry("T_T"=;))

Edited by Pum
Posted

Heres a tip, It doesnt have anything to do with java.

# MY LOVE FOR YOU... IS LIKE A TRUCK- #
Posted

nop. Just users become to lazy visit 5 link 1 time per day.

If it be cheating - iv maded script with coords clicking

Posted (edited)

Anyways, This might work:

$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.Open("POST", "http://www.xtremetop100.com/in.php?site=1132196620&submit=Vote+for+Zulu+Hotel")
$oHTTP.Send()

EDIT::

Though, I dont know if it would, Because they might have some sort of bot protection.

Edited by AzKay
# MY LOVE FOR YOU... IS LIKE A TRUCK- #
Posted

Anyways, This might work:

$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.Open("POST", "http://www.xtremetop100.com/in.php?site=1132196620&submit=Vote+for+Zulu+Hotel")
$oHTTP.Send()

EDIT::

Though, I dont know if it would, Because they might have some sort of bot protection.

WOW! Thanks MAN!!!!! THTA GREAT!!!!

Posted

hmm 2 sites work perfectly? but 3 others - do hothing. Submit not working.

May be this methos would works?

$oForm = _IEFormGetCollection($oIE,0)

_IEAction($oForm, "click")

Thanks

Posted

is there like a way to confirm you voted?

#include <IE.au3>
$oIE = _IECreate("http://www.gamesites200.com/ultimaonline/in.php?id=622")
_IELoadWait($oIE)
$oForm = _IEFormGetCollection($oIE,0)
$oButton = _IEFormElementGetObjByName($oForm,"submit")
_IEAction($oButton,"click")
Posted

IQuitToLearnASM - respect! It finaly works!

AzKay - ur method works on few links - others just like igmore submiting

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...