If you use arrays, use a similar method to php arrays, this will allow multi dimensional, arrays within arrays, and named array items...

in php its $var = array("item_name1" => "item1", "item_name2" => "item2)

then its just $var['item_name1'] to retrieve the info..

the mIRC equivelent would be something like

var %moo = $array(item_name1 = item1, item_name2 = item2)

then just %moo[item_name1] or something, maybe have an appendage on the variable to say your calling an array item, maybe something like... &%moo item_name1

Last edited by Ghozer; 08/01/07 03:06 AM.