Our new official repo is on github
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?

Discuss anything to do with plugins

Moderators: _X7JAY7X_, caesar, IFR, mattcro, limbo

Post Reply
twhyman
Posts: 19
Joined: October 20th, 2006, 8:10 am

how to make s lcd smartie run an EXE every one minute?

Post by twhyman »

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

limbo
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?

Post by limbo »

twhyman wrote: how can i make smartie run my script every one minute so i can update the display?
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).
You can add this to an action!

Code: Select all

If $dll(warnif,.......blah blah blah ) =  True Then Exec[blah blah blah]
EDIT:
Or maybe simplest...

Code: Select all

If $Time(ss)=00 Then Exec[c:\windows\system32\calc.exe]
:D

Post Reply