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.
16 lines
472 B
16 lines
472 B
/// save_stats()
|
|
var filename, fid;
|
|
save_str[0] = data_sav_extras();
|
|
filename = "extras.sav";
|
|
fid = file_text_open_write(filename);
|
|
file_text_write_string(fid, rc4("[AM2R UnlockData V7.0]", "HEADER_KEY"));
|
|
file_text_writeln(fid);
|
|
i = 0;
|
|
repeat (1) {
|
|
file_text_write_string(fid, base64_encode(save_str[i]));
|
|
file_text_writeln(fid);
|
|
i += 1;
|
|
}
|
|
file_text_close(fid);
|
|
if (os_is_native) crypt(filename, "XOR_DFJykQ8xX3PuNnkLt6QviqALOLF8cxIDx1D63DAdph4KGQ4rOJ7", 2);
|