This is based of the cookie clearing method (which I take no credit for)
this works on all private servers that you can clear cookies on
I am going to show you an example with Eternion-wow- Wow Private Servers - World of Warcraft Private Servers
Basically you exploit the voting system with the cookie clearing method
BUT you COMBINE it with autoit, a programming language used for automation.
The eternion-wow voting system requires that you enter a number code that is 4 numbers long to prevent botting, but they designed it poorly and you can highlight it and ctrl+c and paste it.
the vote site's botting preventation system is better, but you luckily, eternion-wow gives you a vote point as long as you click on the site, you can just close the voting site afterwards.
here is my example script
because all screens have a different number of pixels, you'll need to put your own coordinates in, use the autoit window info tool, then click on the mouse tab, it shows you the current coordinates of your mouse.
I put comments in the code to show you which coordinates you need to put in each of the lines of code
I know this is hard to understand but I did my best to explain itCode:#include <Misc.au3> $dll = DllOpen("user32.dll") $speed = 3 $speed2 = 5 $accname = InputBox("WoW Voter","Account Name:") While 1 ;lets the program exit if alt is pressed If _IsPressed("12", $dll) Then Exit EndIf ;homepage link on the eternion-wow website MouseClick("Left",159,367,1,$speed) ;clears cookies MouseClick("Left",243,36,1,$speed) MouseClick("Left",243,171,1,$speed) MouseClick("Left",495,513,1,$speed) MouseClick("Left",495,535,1,$speed) MouseClick("Left",641,605,1,$speed) ;clicks on the voting link MouseClick("Left",561,564,1,$speed) sleep(1000) ;fills in account name MouseClick("Left",499,634,1,$speed) Send($accname) ;copies and pastes the security code MouseMove(558,662,$speed) MouseDown("Left") MouseMove(670,662,$speed2) MouseUp("Left") Send("^c") MouseClick("Left",499,662,1,$speed) Send("^v") sleep(100) ;clicks on voting site icon MouseClick("Left",534,696,1,$speed) sleep(100) ;closes off the voting site page MouseClick("Left",739,125,1,$speed) sleep(100) WEnd
The point is, use autoit to do the cookie-clearing method faster, and without wasting your time
With this I got around 950 votepoints in ONE hour
good luck and if you dont understand something, leave a comment and I will try to help you.