Project

General

Profile

Writeini » History » Version 1

Per Amundsen, 02/15/2014 06:24 PM

1 1 Per Amundsen
*Added in 1.9.0*
2
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>