DS List

Neptune

Member
Hello!
Im wondering if it is possible to store object IDs and Tile IDs in to DS lists?

I also remember reading somewhere that using ds_list_add function will add values to the list at random locations within the list -- is this true?

Any information is appreciated!
 

FrostyCat

Redemption Seeker
Object IDs and tile IDs are just plain old numbers. Can you store numbers into lists? Of course you can.

Also, the part about ds_list_add() inserting values at random spots is pure baloney.
The Manual entry for ds_list_add() said:
This function can be used to add a new value (real or string) to the list, which will be added on at the end.
 
Top