Project

General

Profile

Writeini » History » Version 2

Per Amundsen, 12/24/2019 12:54 PM

1 2 Per Amundsen
_Added in 1.9.0_
2 1 Per Amundsen
3
*/writeini [-n] <inifile> <section> <item> <value>*
4
5
*Switches*
6
7
-n - Forces AdiIRC to write to an INI file, even if it's bigger then 64k (obsolete)
8
9
*Parameters*
10
11
<inifile> - The file to write to.
12
<section> - The section to write.
13
<item> - The item to write.
14
<value> - The value to write.
15
16
*Example*
17
18
<pre>
19
;Write a few items to a file.
20
/writeini abb.ini abbreviations lol Laughing Out Loud
21
/writeini abb.ini abbreviations rofl Rolling On the Floor, Laughing
22
23
;Print a line from abb.ini.
24
//echo -a $readini(abb.ini, n, abbreviations, lol)
25
</pre>