[ ]

Some mudl functions return array-typed values; similarly, %s is an array. Arrays always count from 1. To reference the third value in the array in %s, you would use %s[3]; to reference the fifth element in the values array for object %o, the code would be values(%o)[5]. If you run off the end of the array (meaning, you reference a higher value than actually exists) it will be null.

In some cases you can set individual values with the set function.