From file i want to extract some data which are saved in scheme as below:
PHP Code:
1
{
1, 2, 3, 4, 1.5
3, 5, 1, 7, 1.5
1, 1, 5, 3, 5.0
}
2
{
3, 1, 2, 5, 0.0
}
3
{
6, 3, 2, 13, 1.5
7, 5, 53, 32, 1.5
}
4
{
64, 1, 2, 1, 0.0
}
Now i want to keep it in Dynamic Arrays.
Numbers of data, and entries in data this always will be randomly. so how to save this?
Maybe some datapacks?