So what I'd really like to be able to do is splice two arrays together with an easy command (guess I'll have to make one) so that I can do this sort of thing to easiy remove an array slot and shuffle the other values up:
of course the code above won't compile, but I'd love to end up with an array 2 slots long with values of 1 in slot 0 and 3 in slot 1.
Local a[3] a[0] = 1 a[1] = 2 a[2] = 3 a = a[0..1] + a[1..3]
of course the code above won't compile, but I'd love to end up with an array 2 slots long with values of 1 in slot 0 and 3 in slot 1.