Project

General

Profile

Color » History » Version 1

Per Amundsen, 08/17/2014 11:00 AM

1 1 Per Amundsen
_Added in 1.9.4_
2
3
*/color <name> <N|RGB>*
4
*/color <N> <RGB>*
5
*/color -lrs [N/scheme name]*
6
7
Allows you to change the color settings for items in the Colors dialog.
8
9
*Switches*
10
11
-b - Indicates the <N> after <name> is a rgb value. (AdiIRC only)
12
-l - TODO
13
-r - Resets the color to default value.
14
-s - TODO
15
16
*Parameters*
17
18
<N> - The N'th color to change, in AdiIRC this can be from 1 to 82.
19
<RGB> - New RGB values to be used.
20
<name> - Name or the color to change.
21
[Scheme name] - TODO
22
23
*Example*
24
25
<pre>
26
;Print a text using color 3
27
/echo 3 -ag Hello world
28
29
;Change color 3 to $rgb value 1905919 (notice the "Hello world" color)
30
//color 3 $rgb(255, 20, 29)
31
32
;Reset color 3 to default value (notice the "Hello world" color)
33
/color -r 3
34
35
;Change the join color to another color index.
36
/color join 3
37
38
;Change the join color to a rgb value.
39
//color join $rgb(255, 20, 29)
40
41
;Reset join color
42
/color -r join
43
</pre>