Files
AM2R-Community-Updates/scripts/get_text.gml
2020-12-22 20:54:55 -06:00

7 lines
219 B
Plaintext

/// get_text(section, key)
// In theory this is kind of slow but no one will notice.
ini_open(global.language[global.currentlanguage]);
var text = ini_read_string(argument0, argument1, "[!]");
ini_close();
return text;