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.
AM2R-Multitroid-Fair-Team-PVP/Export_CodeServer/gml_Script_json_import.gml

11 lines
201 B

var json_data, f;
json_data = ""
f = file_text_open_read(argument0)
while (!file_text_eof(f))
{
json_data += file_text_read_string(f)
file_text_readln(f)
}
file_text_close(f)
return json_data;