Project

General

Profile

$+ » History » Version 1

Per Amundsen, 08/14/2015 02:08 PM

1 1 Per Amundsen
_Added in 1.9.0_
2
3
*$+*
4
5
Used to combine two items to remove any spaces between them.
6
7
*Example*
8
9
<pre>
10
; Combines your nick twice without any spaces.
11
//echo -ag $me $+ $me
12
</pre>
13
14
-----------------------------------------------------------------------------
15
16
*$+(n1,...,nN)*
17
18
Combines all of the specified parameters, the same as using [[$+]] in between each item.
19
20
*Parameters*
21
22
n1,...,nN - Any number of items to combine.
23
24
*Example*
25
26
<pre>
27
; Combine your nick multiple times without any spaces.
28
//echo -ag $+($me,$me,$me,$me,$me,$me,$me)
29
</pre>