I admit I've always had trouble understanding the projectile events, the second box confuses me.
There are two boxes. Each box specifies X, Y and Z velocity.
The first box specifies the base velocity. The second box specifies "derivative velocity".
Basically, to get the velocity, Blockland first takes the first box, then adds that to a random velocity within the limits of the second box.
First box: 5 0 10
Second box: 0 20 5
This would allow Y velocity derivation between -20 and 20, and Z velocity derivation between -5 and 5.
Basically, you'll get a random velocity between 5 -20 5 and 5 20 15, considering that it's added to the first box.