mirror of
https://github.com/PoshoDev/DexTool.git
synced 2026-05-02 11:16:35 -05:00
13 lines
278 B
Plaintext
13 lines
278 B
Plaintext
///savedata_read_real(section, key, default)
|
|
|
|
if (file_exists("save.ini"))
|
|
{
|
|
ini_open("save.ini");
|
|
var temp = ini_read_real(argument0, argument1, argument2);
|
|
ini_close();
|
|
|
|
return temp;
|
|
}
|
|
|
|
show_debug_message("ERROR: Missing save file.");
|
|
return argument2; |