MiDi 0 Report post Posted October 18, 2005 Well... I've been trying to come up with a way to delay the script until a certain time like noon for instance then continue on but.. right now i'm feeling a little dumb seeing how i can't figure it out if you could help me on this i would be greatly pleased and greatful.... thanks Share this post Link to post Share on other sites
theguy0000 1 Report post Posted October 18, 2005 (edited) MsgBox(0, "noon", this will be displayed before noon") Do Sleep(1) Until @HOUR>=12 MsgBox(0, "noon", this message will be displayed after noon") if you want to use any time in PM, use its 24-hourformat instead, like 13 for 1:00 PM or 21 for 9:00 PM Edited October 18, 2005 by theguy0000 The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN Share this post Link to post Share on other sites
DiskAI 0 Report post Posted October 18, 2005 try thiswhile 1If @HOUR = 12 and @MIN = 00 and @SEC = 00 Then;do stuffEndIFmine might not be the "correct" way but it works for me got mine running every 30 mins delay i think Share this post Link to post Share on other sites
MiDi 0 Report post Posted October 18, 2005 (edited) Thank you guys so much.... this helps alot.... i mainly didnt understand where to put the marcos :-\ now i do thanks :-D Edited October 18, 2005 by MiDi Share this post Link to post Share on other sites