Hi Joaquin
You can certainly store your DMX state in a parameter - whether or not it makes sense depends on what you're going to do with it afterwards. You could also just store it as JavaScript variables if that makes sense.
I'd recommend doing a 512 element array of INT16 and just writing your 8-bit values into/out of it (using masking like 0xFF & value) but you could also get away with 128 elements of INT32.
Lastly, you could use ogscript.createByteArray(512) to create a 512-element array of Java byte primitives - this is probably the closest to what you actually want but, again, it really depends on what you're looking to do with the data once you've stored it.
------------------------------
James Peltzer
Ross Video
------------------------------