Example of using textfiles for OBS :)

Post your FreeBASIC source, examples, tips and tricks here. Please don’t post code without including an explanation.
Post Reply
mrminecrafttnt
Posts: 131
Joined: Feb 11, 2013 12:23

Example of using textfiles for OBS :)

Post by mrminecrafttnt »

Here is a simple Counter for OBS (Open Board Caster) :)

Code: Select all

dim as integer count,t
do
    print count
    sleep
    open "count.txt" for output as #1    
    count+=1    
    print #1,count
    close #1    
loop
You have to select Text and the textfile (count.txt) thats all ;)
Post Reply