Jump to content

Recommended Posts

Posted (edited)

Hello everyone, I've made a little timer that changes my status in yahoo messenger whenever I have to leave for my martial arts lesson and I have almost everything perfectly but I want to hide it from task manager so I don't accidentally turn it off (I have a tendency to do such things.) Is there a way anyone could help? The code is as follows so you can see it's not malicious.

#RequireAdmin
#include <misc.au3>
;
Global $tries
AutoItSetOption("trayiconhide",1)
While 1
If @HOUR = 16 and @WDAY = 3 Or @WDAY = 4 Or @WDAY = 5 And $tries = 0 Then
    $pixel = PixelSearch(0,0,@DesktopWidth,@DesktopHeight, 1972233 ,5)
    If Not @error Then
        MouseClick("left", $pixel[0], $pixel[1],2)
        Sleep(500)
        $pixel = PixelSearch(50,50,@DesktopWidth,250,16108221,0)
        if Not @error Then
            MouseClick("left", $pixel[0] + 20, $pixel[1],1)
            Sleep(500)
            MouseClick("left",$pixel[0], $pixel[1] + 280,1)
            Sleep(500)
            Send("At Chinese Kenpo (Martial arts lesson)")
            $pixel = PixelSearch(0,0,@DesktopWidth,@DesktopHeight,14891064 ,0,1)
            MouseClick("left",$pixel[0] - 25, $pixel[1])
            MouseClick("left",$pixel[0] - 25, $pixel[1] + 30)
        EndIf
        $tries = 1
        Sleep(7200000)
        $tries = 0
    Else
        MsgBox(48,"Error", "Pixel not found.")
    EndIf
EndIf
WEnd
Edited by dbzfanatic
Posted (edited)

Hate to double post but this seems to be being ignored just because I want to do something that someone with bad intentions MAY want to do, I don't really think that's fair because I have NO intention of doing anything malicious. I also changed the title so my posts aren't dismissed as "some wanna-be hacker with problems".

Edited by dbzfanatic

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...