Hi,
i want to fix the qstats plugin by running a script every one minute that
creates the game stats txt file for smartie to read later.
how can i make smartie run my script every one minute so i can update the display?
and how can i make smartie not skip a scren if bf2.exe is active?
thanks
Twhyman
Our new official repo is on github
LCD Smartie version 5.6 is released!
Download it now: https://github.com/LCD-Smartie/LCDSmartie/releases
LCD Smartie version 5.6 is released!
Download it now: https://github.com/LCD-Smartie/LCDSmartie/releases
how to make s lcd smartie run an EXE every one minute?
Moderators: _X7JAY7X_, caesar, IFR, mattcro, limbo
-
- Posts: 19
- Joined: October 20th, 2006, 8:10 am
-
- Plugin Author
- Posts: 1604
- Joined: February 13th, 2005, 7:38 pm
- Location: Athens - Greece
- Contact:
Re: how to make s lcd smartie run an EXE every one minute?
If you try to use the warn if plugin by checking the seconds on a time (when the second reaches the "00" value you can ask from the plugin to return a specific value (e.g. TRUE).twhyman wrote: how can i make smartie run my script every one minute so i can update the display?
You can add this to an action!
Code: Select all
If $dll(warnif,.......blah blah blah ) = True Then Exec[blah blah blah]
Or maybe simplest...
Code: Select all
If $Time(ss)=00 Then Exec[c:\windows\system32\calc.exe]
