Arrays
The Plugin system does not support arrays by default, but you can simulate arrays using the functions ARRAY(), AGET(), ASET(), and ACOUNT().
Arrays created with these functions are zero-based, which means the index starts at 0.
Examples:
Dim $arr = ARRAY(2, 4, 6, 8, "text")
Dim $i, $s
$i = AGET($arr, 1)'returns 4
$s = AGET($arr, 4) 'returns "text"
ASET($arr, 1, "wsw") 'replaces element #1 with the string "wsw"
$i = ACOUNT($arr) 'returns the number of elements which is 5