You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
var list, str_list;
|
|
list = ds_list_create()
|
|
i = 0
|
|
ds_list_add(list, global.mod_fusion_unlocked)
|
|
repeat (19)
|
|
{
|
|
ds_list_add(list, 0)
|
|
i += 1
|
|
}
|
|
str_list = ds_list_write(list)
|
|
ds_list_clear(list)
|
|
return str_list;
|