Loadbuf » History » Revision 9
Revision 8 (Per Amundsen, 12/14/2019 09:36 AM) → Revision 9/10 (Per Amundsen, 02/16/2023 12:58 PM)
_Added in 1.9.0_ */loadbuf [lines] [-acNegilmnoprst<topic>] <window | dialog id> <filename>* Loads the specified number of lines from the end of the file of filename into the specified window. -a - Loads the text into the active window. -cN - Specifies the default color (N) for the line being read. -e - Evaluates variables and identifiers in the line being read. -g - *TODO* -i - *TODO* -l - Reads the lines into side-listbox in a custom window. -m - Indicates that the logging text is already timestamped. -n - Logs the loaded text to a log file, if logging is enabled for that window -o - Indicates that you have specified the [dialog id] parameters instead of a window name in order to load lines into a custom dialog control. -p - *TODO* -r - Clears the contents of the output window before adding read lines. -s - Reads the lines into the associated status window. -t<topic> - Loads the text under the [topic] section in an INI or plain text file. *Parameters* table(ktable). |*Parameter*|*Description*| | [lines] | - If specified, the number of lines to add from the end the file, otherwise the whole content of the file is added. | <window | <window <notextile>|</notextile> dialog id> | - Window or dialog id to load into. | | <filename> | - File to load. | *Example* <pre> ; Open a custom window. /window @Example ; Read 10 lines from the AdiIRC config file into the custom window //loadbuf 10 -r @Example $qt($adiircini) ; Only loads the [Messages] AdiIRC section of the config file. //loadbuf -rTMessages @Example $qt($adiircini) </pre>