io_output
                OUT - outputs a string of text with no codes interpreted
   syntax OUT[str text]
OUTLN - outputs a string of text using OUT with linefeed
   syntax OUTLN[str text]
COUT - outputs a string of text, interpreting only color codes
   syntax COUT[str text]
COUTLN - outputs a string of text using COUT with linefeed
   syntax COUTLN[str text]
SOUT - outputs a string of text, interpreting all embedded codes
   syntax SOUT[str text]
SOUTLN - outputs a string of text using SOUT with linefeed
   syntax SOUTLN[str text]
XOUT - outputs a string of text interpreting all extended color codes (|XX)
   synxtax XOUT[str text]
XOUTLN - outputs a string of text using XOUT with linefeed
   syntax XOUTLN[str text]
AOUT - outputs a string of text interpreting only ansi codes
   syntax AOUT[str text]
FLINE - sends one linefeed
   syntax FLINE
STROUT - outputs the string number specified
   syntax STROUT[word string#]
STROUTLN - outputs the string number specified with a linefeed
   syntax STROUTLN[word string#]
CLRSCR - clears the screen with current color attributes
   syntax CLRSCR
CLREOL - clears to the end of the current line with current color attributes
   syntax CLREOL
BEEP - sends a beep to the user ( not locally if local beeping is off )
   syntax BEEP
DNLN - moves the cursor down the specified number of lines with linefeeds
   syntax DNLN[byte lines]
   example: dnln[4]  will carrage return 4 times
GOTOXY - goes to the specified X and Y screen coordinates
   syntax GOTOXY[byte x,y]
POSUP - moves the cursor up a specified number of rows
   syntax POSUP[byte rows]
POSDOWN - moves the cursor down a specified number of rows
   syntax POSDOWN[byte rows]
POSLEFT - moves the cursor left a specified number of columns
   syntax POSLEFT[byte columns]
POSRIGHT - moves the cursor right a specified number of columns
   syntax POSRIGHT[byte columns]
POSX - moves the cursor to the specified column without changing rows
   syntax POSX[byte x]
POSY - moves the cursor to the specified row without changing columns
   syntax POSY[byte y]
SETFORE - changes the foreground text color
   syntax SETFORE[byte fgcolor]
SETBACK - changes the background text color
   syntax SETBACK[byte bgcolor]
SETCOLOR - changes the foreground and background colors
   syntax SETCOLOR[byte fgcolor, bgcolor]
SETBLINK - toggles blinking colors on/off
   syntax SETBLINK[bool blink]
SHOWTEXT - displays the specified textfile from the \text directory
           no extension is necessary, returns true if file is found/displayed
   syntax SHOWTEXT[str filename]:bool
SHOWFILE - displays the specified file with full pathname and extension
           returns true if file is found/displayed
   syntax SHOWFILE[str filename]:bool
WHEREX - returns the current x position of the cursor
   syntax WHEREX:byte
WHEREY - returns the current y position of the cursor
   syntax WHEREY:byte
PAUSEPROMPT - displays the pause prompt string
   syntax PAUSEPROMPT
                    
                                    io_output.txt · Last modified:  by admin
                
                