object indexes [SOLVED]

Neptune

Member
Hello!
I'm wondering if I can create a ds_list containing object indexes, write the list to an ini file, and then read the list back.
Currently I'm considering using the ds_list_write / ds_list_read functions.

Any information on the correct or better way to do this is greatly appreciated!
 
T

Ting_Thing

Guest
What are you trying to accomplish by doing this?

I only ask because I want to make sure that we aren't going in a direction that would ultimately lead you to a dead-end.
 

zbox

Member
GMC Elder
Code:
global.storeList = ds_list_create();

with (all)
     ds_list_add(global.storeList, id);

ds_list_destroy(global.storeList);
global.storeList = -1;
Like last poster said though, can't imagine there isn't a better way to do what you want
 
Top