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-TimeTrials/scripts/save_modifiers.gml

11 lines
266 B

/// save_modifiers();
// Only writing necessary stuff from the Gameplay Menu here
ini_open('modifiers.ini');
ini_write_real("RandomizerSeed", "UseManualSeed", oControl.mod_usemanualseed);
ini_write_real("RandomizerSeed", "Seed", oControl.mod_seed);
ini_close();