mirror of
https://github.com/PoshoDev/DexTool.git
synced 2026-03-22 09:44:16 -05:00
18 lines
319 B
Plaintext
18 lines
319 B
Plaintext
function scroll_do() {
|
|
// Saving
|
|
|
|
if (!savedata_write("Navigation", "Current Box", global.current_box))
|
|
show_debug_message("ERROR: Can't save scrolling. Save file somehow went missing.");
|
|
|
|
// Warp
|
|
|
|
scroll_warp();
|
|
|
|
button_update_all();
|
|
|
|
show_debug_message("Scrolled to Box "+string(global.current_box));
|
|
|
|
|
|
|
|
}
|