Echox » History » Version 9
Per Amundsen, 05/16/2015 09:07 PM
1 | 1 | Per Amundsen | _Added in 1.9.3_ |
---|---|---|---|
2 | |||
3 | 9 | Per Amundsen | */echox [color] [@windowid] [-abcdefghiNlmnqrstuvwN] [color name] [window] %var* |
4 | 1 | Per Amundsen | |
5 | Prints text in the specified window using the specified color (0 to 37). |
||
6 | 3 | Per Amundsen | |
7 | 1 | Per Amundsen | Same as [[/echo]] but evaluates a variable instead of text and allows printing consecutive spaces. |
8 | |||
9 | *Switches* |
||
10 | |||
11 | -a - Prints to the current active window. |
||
12 | -b - Apply beep options. |
||
13 | -c - Indicates [color] is a color name. |
||
14 | -d - TODO |
||
15 | -e - Encloses the line in line separators. |
||
16 | -f - Apply flash options. |
||
17 | -g - Prevents the echo from being logged. |
||
18 | -h - TODO |
||
19 | 4 | Per Amundsen | -iN - Indents the wrapped line by N characters. |
20 | 1 | Per Amundsen | -l - Apply highlight options. |
21 | -m - This echo should be threated as a normal message. |
||
22 | -n - Prevents the echo from highlighting the window sidebar/channelbar icon. |
||
23 | -q - Don't print if called from a alias using the . prefix. |
||
24 | -r - Apply strip colors/bold/italic/underline options. |
||
25 | -s - Prints to the status/server window associated with current window. |
||
26 | -t - Apply timestamp prefix options. |
||
27 | 6 | Per Amundsen | -u - Disables using first word as prefix for nick column. |
28 | 1 | Per Amundsen | -v - Treats first word as a timestamp. |
29 | 9 | Per Amundsen | -wN - if N = 0, replaces emoticon tags in all token except the first one, N = 1, replaces only the first token, N = 2, replaces all tokens. |
30 | 1 | Per Amundsen | |
31 | *Parameters* |
||
32 | |||
33 | [color] - A numeric color value to use as line color (0 to 37). |
||
34 | 7 | Per Amundsen | [@windowid] - Sets target window to the matching [[$wid]]. |
35 | 1 | Per Amundsen | [color name] - Used with the -c switch. One of the following: Action, ctcp, highlight, info, info2, invite, join, part, quit, kick, mode, topic, nick, normal, notice, notify, other, own, wallops, whois. |
36 | [window] - The target window. |
||
37 | %var - The variable to evaluate and print. |
||
38 | |||
39 | *Example* |
||
40 | |||
41 | <pre> |
||
42 | ;Create a variable with the text a b |
||
43 | /var %var a $+ $chr(32) $+ $chr(32) $+ $chr(32) $+ $chr(32) b |
||
44 | 5 | Per Amundsen | |
45 | 1 | Per Amundsen | ;Prints the variable to current active window. |
46 | 2 | Per Amundsen | /echox -a %var |
47 | 1 | Per Amundsen | </pre> |