ID:962613
 
Code:


Problem description:I got a list with like player that register for game how can i split the list into parts so i have 3 teams with 10 in each list can anyone help?

Create three lists.

var/list
parent_list = list()
list_one = list()
list_two = list()
list_three = list()

proc/copy()
list_one = parent_list.Copy(start, finish)
i was more likely asking for a proc that returns the list of chopped list SplitList(list/orig,amt)
list.Copy(start, finish) returns a list containing everything in the original list between start and finish.