mirror of
https://github.com/PoshoDev/DexTool.git
synced 2026-04-27 17:46:53 -05:00
17 lines
345 B
Plaintext
17 lines
345 B
Plaintext
// Saving
|
|
|
|
if (file_exists("save.ini"))
|
|
{
|
|
ini_open("save.ini")
|
|
ini_write_real("Navigation", "Current Box", global.current_box);
|
|
ini_close();
|
|
}
|
|
else
|
|
show_debug_message("ERROR: Can't save scrolling. Save file somehow went missing.");
|
|
|
|
// Warp
|
|
|
|
scroll_warp();
|
|
|
|
show_debug_message("Scrolled to Box "+string(global.current_box));
|