Results 1 to 4 of 4
  1. #1
    crashsite's Avatar
    Join Date
    Apr 2011
    Gender
    female
    Posts
    285
    Reputation
    10
    Thanks
    8

    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.

  2. #2
    grey489177's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    544
    Reputation
    18
    Thanks
    2,655
    My Mood
    Tired
    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.
    Last edited by grey489177; 06-13-2011 at 06:59 AM.
    Quote Originally Posted by xXTornadoXx
    You really have a great personality
    I've never met a person like you, who can give me guidance on things and also give me alot of support. I'm glad that I met you, really glad
    Quote Originally Posted by 1 Corinthians 13:11
    When I was a child, I spoke as a child, I understood as a child, I thought as a child.
    But, when I became a man, I put childish things away.

  3. #3
    crashsite's Avatar
    Join Date
    Apr 2011
    Gender
    female
    Posts
    285
    Reputation
    10
    Thanks
    8
    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.

  4. #4
    grey489177's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    544
    Reputation
    18
    Thanks
    2,655
    My Mood
    Tired
    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
    Last edited by grey489177; 06-13-2011 at 11:37 PM.
    Quote Originally Posted by xXTornadoXx
    You really have a great personality
    I've never met a person like you, who can give me guidance on things and also give me alot of support. I'm glad that I met you, really glad
    Quote Originally Posted by 1 Corinthians 13:11
    When I was a child, I spoke as a child, I understood as a child, I thought as a child.
    But, when I became a man, I put childish things away.