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-Item-Roulette/scripts/reset_dmap.gml

12 lines
167 B

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