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.
|
/// sv6_add_events()
|
|
var list, str_list;
|
|
list = ds_list_create();
|
|
i = 0;
|
|
repeat (350) {
|
|
ds_list_add(list, global.event[i]);
|
|
i += 1;
|
|
}
|
|
str_list = ds_list_write(list);
|
|
ds_list_clear(list);
|
|
return str_list;
|