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.
AM2R-TimeTrials/scripts/sv6_add_items.gml

12 lines
210 B

/// sv6_add_items()
var list, str_list;
list = ds_list_create();
i = 0;
repeat (350) {
ds_list_add(list, global.item[i]);
i += 1;
}
str_list = ds_list_write(list);
ds_list_clear(list);
return str_list;