$+ » History » Version 2
Per Amundsen, 05/09/2017 08:42 PM
1 | 1 | Per Amundsen | _Added in 1.9.0_ |
---|---|---|---|
2 | |||
3 | *$+* |
||
4 | |||
5 | 2 | Per Amundsen | Identifiers must be followed/trailed by white spaces, $+ can be used to combine two items to remove any spaces between them. |
6 | |||
7 | 1 | Per Amundsen | |
8 | *Example* |
||
9 | |||
10 | <pre> |
||
11 | ; Combines your nick twice without any spaces. |
||
12 | //echo -ag $me $+ $me |
||
13 | </pre> |
||
14 | |||
15 | ----------------------------------------------------------------------------- |
||
16 | |||
17 | *$+(n1,...,nN)* |
||
18 | |||
19 | Combines all of the specified parameters, the same as using [[$+]] in between each item. |
||
20 | |||
21 | *Parameters* |
||
22 | |||
23 | n1,...,nN - Any number of items to combine. |
||
24 | |||
25 | *Example* |
||
26 | |||
27 | <pre> |
||
28 | ; Combine your nick multiple times without any spaces. |
||
29 | //echo -ag $+($me,$me,$me,$me,$me,$me,$me) |
||
30 | </pre> |