class CompanyValue extends GSInfo
{
function GetAuthor() { return "Samu"; }
function GetName() { return "Company Value GS"; }
function GetDescription() { return "A game script that pauses the game once the target company value is reached"; }
function GetVersion() { return 1; }
function MinVersionToLoad() { return 1; }
function GetDate() { return "2018-02-06"; }
function GetShortName() { return "CVGS"; }
function CreateInstance() { return "CompanyValue"; }
function GetAPIVersion() { return "1.7"; }
function GetSettings()
{
AddSetting({
name = "value",
description = "Target company value",
min_value = 500000,
max_value = 500000000,
easy_value = 12500000,
medium_value = 100000000,
hard_value = 500000000,
custom_value = 100000000,
step_size = 250000,
flags = CONFIG_INGAME
});
}
}
RegisterGS(CompanyValue());