You've already forked AM2R-Community-Updates
mirror of
https://github.com/izzy2lost/AM2R-Community-Updates.git
synced 2026-03-10 11:23:35 -07:00
12 lines
212 B
Plaintext
12 lines
212 B
Plaintext
/// sv_add_unlocks()
|
|
var list, str_list;
|
|
list = ds_list_create();
|
|
i = 0;
|
|
repeat (50) {
|
|
ds_list_add(list, global.unlock[i]);
|
|
i += 1;
|
|
}
|
|
str_list = ds_list_write(list);
|
|
ds_list_clear(list);
|
|
return str_list;
|