1 | function ossafe_file_text_write_string(argument0, argument1) //gml_Script_ossafe_file_text_write_string |
2 | { |
3 | if (!global.is_console) |
4 | return file_text_write_string(argument0, argument1); |
5 | else |
6 | { |
7 | var handle = argument0 |
8 | ds_map_set(handle, "data", ((ds_map_find_value(handle, "data")) + argument1)) |
9 | } |
10 | } |