-
Notifications
You must be signed in to change notification settings - Fork 67
CompleteContract Requirement
Jeremie Rossignol edited this page Jul 14, 2015
·
3 revisions
Requirement for having a certain number of contracts completed of the given type.
REQUIREMENT { name = CompleteContract type = CompleteContract // The type of contract being checked. This can either be a // ContractConfigurator contract type or a standard contract type (class). // // Type: string // Required: Yes // contractType = SimpleTestContract // The minimum number of times the given contract type must have been // completed before the requirement is met. // // Type: int // Required: No (defaulted) // Default: 1 // minCount = 1 // The maximum number of times the given contract type can be completed // before the requirement will no longer be met. // // Type: int // Required: No (defaulted) // Default: int.MaxValue // maxCount = 5 // The amount of time after the last instance of the contract was // complete before we can attempt again. Can specify // values in years (y), days (d), hours (h), minutes (m), seconds (s) // or any combination of those. // // Type: Duration // Required: No // cooldownDuration = 10d }
- Progress Based Requirements
- Research Based Requirements
- Space Program Requirements
- Contract Based Requirements
- Planetary Requirements
- RemoteTech Requirements
- Set Requirements
- Miscellaneous Requirements
Contract Configurator
Configuration File Syntax
Extending Contract Configurator