You've already forked AM2R-Community-Updates
mirror of
https://github.com/izzy2lost/AM2R-Community-Updates.git
synced 2026-03-10 11:23:35 -07:00
8 lines
265 B
Plaintext
8 lines
265 B
Plaintext
/// writelog(text)
|
|
if (global.opwritelog == 1) {
|
|
lfid = file_text_open_append("am2r_log.txt");
|
|
file_text_write_string(lfid, date_datetime_string(date_current_datetime()) + ": " + string(argument0));
|
|
file_text_writeln(lfid);
|
|
file_text_close(lfid);
|
|
}
|