HelpMailbox script that actually works?

Posts 14 of 4 · Page 1 of 1
Mailbox script that actually works?
I was curious if anyone actually had one, because I'm sick of having to pause riceking's old script to actually delete the mail.
i made my own, not hard at all, get auotit or autohotkey and do it your self, all you need is the loop, mouseclick and sleep commands.

Here is mine but i GREATLY doubt it will work for you seeing as it was made specifically for where i have the windowed vindictus on the screen, but it will show you how to do yours.

Code:
#k::
while GetKeyState("k", "P")
{
mouseclick, left, 400, 219, 2
sleep 750
mouseclick, left, 400, 255, 2
sleep 750
mouseclick, left, 400, 291, 2
sleep 750
mouseclick, left, 400, 327, 2
sleep 750
mouseclick, left, 400, 358, 2
sleep 750
mouseclick, left, 400, 391, 2
sleep 750
mouseclick, left, 400, 425, 2
sleep 750
mouseclick, left, 400, 459, 2
sleep 750
mouseclick, left, 400, 493, 2
sleep 750
mouseclick, left, 56, 187, 1
sleep 1500
mouseclick, left, 384, 532, 2
sleep 1000
mouseclick, left, 477, 477, 2
sleep 1500
}
return
i press the windows key and k key together, then release the windows key and as long as i hold the k key it keeps going. Inculdes auto delete.
Quote Originally Posted by grey489177 View Post
i made my own, not hard at all, get auotit or autohotkey and do it your self, all you need is the loop, mouseclick and sleep commands.

Here is mine but i GREATLY doubt it will work for you seeing as it was made specifically for where i have the windowed vindictus on the screen, but it will show you how to do yours.

Code:
#k::
while GetKeyState("k", "P")
{
mouseclick, left, 400, 219, 2
sleep 750
mouseclick, left, 400, 255, 2
sleep 750
mouseclick, left, 400, 291, 2
sleep 750
mouseclick, left, 400, 327, 2
sleep 750
mouseclick, left, 400, 358, 2
sleep 750
mouseclick, left, 400, 391, 2
sleep 750
mouseclick, left, 400, 425, 2
sleep 750
mouseclick, left, 400, 459, 2
sleep 750
mouseclick, left, 400, 493, 2
sleep 750
mouseclick, left, 56, 187, 1
sleep 1500
mouseclick, left, 384, 532, 2
sleep 1000
mouseclick, left, 477, 477, 2
sleep 1500
}
return
i press the windows key and k key together, then release the windows key and as long as i hold the k key it keeps going. Inculdes auto delete.
What resolution do you have the script set to, and which corner is the window on? Or is it centered? Sorry, I'm very tired right now, I woke up just because I remembered I forgot to ask this.
1280x1024: centered. You can modify the x and y of each mouse click to fit w/e res and screen pos you have.

Code:
#k::
while GetKeyState("k", "P")
{
mouseclick, left, 400, 219, 2 ;starts clicking mail items
sleep 750
mouseclick, left, 400, 255, 2
sleep 750
mouseclick, left, 400, 291, 2
sleep 750
mouseclick, left, 400, 327, 2
sleep 750
mouseclick, left, 400, 358, 2
sleep 750
mouseclick, left, 400, 391, 2
sleep 750
mouseclick, left, 400, 425, 2
sleep 750
mouseclick, left, 400, 459, 2
sleep 750
mouseclick, left, 400, 493, 2 ;stops clicking mail items
sleep 750
mouseclick, left, 56, 187, 1 ;selects all check marks
sleep 1500
mouseclick, left, 384, 532, 2 ;clicks delete
sleep 1000
mouseclick, left, 477, 477, 2 ;clicks ok
sleep 1500 ;waits for new mail items to refresh
}
return
Posts 14 of 4 · Page 1 of 1
This thread is closed for replies.

Tags for this Thread

None

Need help?