Resource icon

OBS Lua Text Monitor 0.1

Monitor a text file and script actions for when updates occur.

Just create a text file like...

Code:
player1=Boomhauer
player2=Hank

then when the file is updated...

Code:
player1=Boomhauer
player2=Bobby


The script detects it and calls the update function - where you can put your custom code. Add as many k=v settings as you require in the text file.
Author
MacTartan
Downloads
2,607
Views
6,213
First release
Last update
Rating
5.00 star(s) 1 ratings

More resources from MacTartan

Latest reviews

Excellent script for automatic updating of text files. But I had to manually correct the minimum value of the interval to 100 ms.

`obs.obs_properties_add_int(props, "interval", "Interval (ms)", 100, 2000, 100)`

PS Everyone is interested in updating the file more often than 1 time per second (1000 ms), as it is done by default in OBS.
Top