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/show_all_map.gml

11 lines
136 B

/// show_all_map()
i = 0;
repeat (80) {
j = 0;
repeat (80) {
global.dmap[i, j] = 1;
j += 1;
}
i += 1;
}