Oke thanks again, yes lets try to solve this in a nice way with lists.
The challenge:
I would like to draw 2 (or more) polylines based on 1 list.
In this example I would like to draw 2 polylines. Therefore the list consists of 2 branches.
A branch consists of multiple items.
Each item represents a point. whereby the values of the items represent the (Delta) x,y,z, distance to the previous point.
polyline 1 start at 0;0;0 (x;y;z), this means that the coordinate of the following points would be:
point 1: 0,0,0
point 2 2,0,0 ((0+2), (0+0) , (0+0))
point 3 2,2,0 ((2+0), (0+2) , (0+0))
point 4 -1,2,0 ((2-3), (2+0),(0+0))
point 4 -6,0,0 (-1-5), (2-2),(0+0)
polyline 2 starts at 10,0,0;
point 1: 10,0,0
point 2: 13,0,0
point 3: 0,5,0
Probably I am thinking way to complicated, but I cant see an easy/straight forward solution. If you have any suggestions please let me know…
Thanks again! 
Polyline 1:
Polyline 2:

When I try to make them the polyline with the least number of points is not correct drawn, it somehows interferece with the data of polyline 1: Not correct :
Thanks again for your helpmultiple polylines 5pt and 3 pt v3.gh (2.1 KB)
multiple polylines 5pt and 3 pt v2 correct.gh (20.9 KB)