按键精灵2019定时系统,定时抢购或其他的定时设置脚本

dim 定时_小时 = 12
dim 定时_分钟 = 25
dim tRet = ""
dim H = ""
dim M = ""
dim S = ""
 Do
    tRet = Time.Now()
    H = Time.Hour(tRet)
    M = Time.Minute(tRet)
    S = Time.Second(tRet)
     If H=定时_小时 and  M=定时_分钟 
        TracePrint("时间到")
        TracePrint("命令执行模块")
      Return 
  Else
      TracePrint(M)
  End If 
 Loop

你可能感兴趣的:(按键精灵2019定时系统,定时抢购或其他的定时设置脚本)