Jump to content

Do something if it's the specified time.


PcExpert
 Share

Recommended Posts

Hi all,

I want to make a program that does the following:

If time is 18:15 then show a msgbox displaying a message. But I can't figure out how to do that. This is what i've done so far:

While 1
Sleep(10)
WEnd
While 1
If @hour = "18" Then
    minute()
EndIf
WEnd
Func minute()    
While 1    
If @MIN = "16"    Then
MsgBox(64, "Server Onderhoud", "ATTENTIE" & @CRLF & "--------------"  & @CRLF & @CRLF & "Over 45 seconden wordt de Server in onderhouds modus gezet. Dat wil zeggen dat u uw muis en toetssenbord tijdelijk niet meer kunt gebruiken. Sla al uw werk nu op en sluit openstaande programma's")
Sleep(45000)
BlockInput(1)
Sleep(3000)
BlockInput(0)
EndIf
WEnd
EndFunc

Thanks!

Link to comment
Share on other sites

See that first while loop? Delete it, because the script just stays in that loop otherwise

My Programs:AInstall - Create a standalone installer for your programUnit Converter - Converts Length, Area, Volume, Weight, Temperature and Pressure to different unitsBinary Clock - Hours, minutes and seconds have 10 columns each to display timeAutoIt Editor - Code Editor with Syntax Highlighting.Laserix Editor & Player - Create, Edit and Play Laserix LevelsLyric Syncer - Create and use Synchronised Lyrics.Connect 4 - 2 Player Connect 4 Game (Local or Online!, Formatted Chat!!)MD5, SHA-1, SHA-256, Tiger and Whirlpool Hash Finder - Dictionary and Brute Force FindCool Text Client - Create Rendered ImageMy UDF's:GUI Enhance - Enhance your GUIs visually.IDEA File Encryption - Encrypt and decrypt files easily! File Rename - Rename files easilyRC4 Text Encryption - Encrypt text using the RC4 AlgorithmPrime Number - Check if a number is primeString Remove - remove lots of strings at onceProgress Bar - made easySound UDF - Play, Pause, Resume, Seek and Stop.
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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