• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

Windows Can you create new ds_lists from a variable?

M

Miles Turin

Guest
I need to be able to create however many ds lists I need based on a variable, for example:

for(r=0;r<100;r++)
{
r=ds_list_create();
}

Is something like this possible? Additionally, I would like to know if data lists take a lot of processing power in large numbers.
 
S

SyntaxError

Guest
Perfect time for an array.

list_array[r]=ds_list_create();

Additionally, 100? Not really that large. Unless the lists have large numbers of entries.
 
Top