- Dec 14, 1999
- 18.408
- 38.945
We're adding support for different objectives depending on where you play..
Here is one example, of two mutually exclusive objectives
Here is one example, of two mutually exclusive objectives
obj_discover_america = {
allow = {
capital_scope = {
OR = {
continent = europe
continent = asia
continent = africa
}
}
}
OR = {
north_america = { has_discovered = ROOT }
south_america = { has_discovered = ROOT }
new_world = { has_discovered = ROOT }
}
}
obj_100_development = {
allow = {
capital_scope = {
NOT = {
continent = europe
continent = asia
continent = africa
}
}
}
total_development = 100
}
allow = {
capital_scope = {
OR = {
continent = europe
continent = asia
continent = africa
}
}
}
OR = {
north_america = { has_discovered = ROOT }
south_america = { has_discovered = ROOT }
new_world = { has_discovered = ROOT }
}
}
obj_100_development = {
allow = {
capital_scope = {
NOT = {
continent = europe
continent = asia
continent = africa
}
}
}
total_development = 100
}
- 50
- 40
- 2