• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.
Sarmatia1871 said:
Hmmm, not sure if I get 100% what you mean! Could you post one of the events?
Beh, I´ll just post what has been done so far...

Code:
# 1936

event = {
	id = xxx1
	random = no
	country = CGX

	name = "Income, first quarter 1936"
	desc = "We have received incomes for this quarter. However, it seems that we are rapidly loosing money."
	style = 0
	picture = "Rhineland"

	date = { day = 30 month = march year = 1936 }

	action_a = {
		name = "Money, money, money..."
		command = { type = money value = 200 }
	}
}

event = {
	id = xxx2
	random = no
	country = CGX

	name = "Income, second quarter 1936"
	desc = "We have received incomes for this quarter. However, it seems that we are rapidly loosing money."
	style = 0
	picture = "Rhineland"

	date = { day = 30 month = june year = 1936 }

	action_a = {
		name = "Money, money, money..."
		command = { type = money value = 150 }
	}
}

event = {
	id = xxx3
	random = no
	country = CGX

	name = "Income, third quarter 1936"
	desc = "We have received incomes for this quarter. However, it seems that we are rapidly loosing money."
	style = 0
	picture = "Rhineland"

	date = { day = 30 month = september year = 1936 }

	action_a = {
		name = "Money, money, money..."
		command = { type = money value = 150 }
	}
}

event = {
	id = xxx4
	random = no
	country = CGX

	name = "Income, fourth quarter 1936"
	desc = "We have received incomes for this quarter. However, it seems that we are rapidly loosing money."
	style = 0
	picture = "Rhineland"

	date = { day = 30 month = december year = 1936 }

	action_a = {
		name = "Money, money, money..."
		command = { type = money value = 100 }
	}
}

event = {
	id = xxx5
	random = no
	country = CGX

	name = "Dividend, first quarter 1936"
	desc = "We have to pay dividends to Germany for keeping the monopoly on China. However, our finanscial situation isn´t good, and a frighteningly large amount of our income must go to paying the fixed amounts of dividends to Germany."
	style = 0
	picture = "Rhineland"

	date = { day = 1 month = april year = 1936 }

	action_a = {
		name = "Pay it"
		command = { type = money value = -175 }
                command = { type = trigger which = xxx9 }
	}
	action_b = {
		name = "Default, we don' have the money"
		command = { type = setflag = "aog_defaults" }
                command = { type = trigger which = xxx13 } #german reaction
	}
}

event = {
	id = xxx6
	random = no
	country = CGX

	name = "Dividend, second quarter 1936"
	desc = "We have to pay dividends to Germany for keeping the monopoly on China. However, our finanscial situation isn´t good, and the fixed amounts of dividends to Germany are larger than our income!"
	style = 0
	picture = "Rhineland"

	date = { day = 1 month = july year = 1936 }

	action_a = {
		name = "Pay it and hope for better times"
		command = { type = money value = -175 }
                command = { type = xxx10 }
	}
        action_b = {
		name = "Default, we don' have the money"
		command = { type = setflag = "aog_defaults" }
                command = { type = trigger which = xxx14 } #german reaction
	}
}

event = {
	id = xxx7
	random = no
	country = CGX

	name = "Dividend, third quarter 1936"
	desc = "We have to pay dividends to Germany for keeping the monopoly on China. However, our finanscial situation isn´t good, and the fixed amounts of dividends to Germany are larger than our income!"
	style = 0
	picture = "Rhineland"

	date = { day = 1 month = october year = 1936 }

        action_a = {
		name = "Default, we don't have the money"
		command = { type = setflag = "aog_defaults" }
                command = { type = trigger which = xxx15 } #german reaction
	}
        action_b = {
		name = "Pay it and hope for better times"
		command = { type = money value = -175 }
                command = { type = trigger which = xxx11 }
	}
}

event = {
	id = xxx8
	random = no
	country = CGX

	name = "Dividend, fourth quarter 1936"
	desc = "We have to pay dividends to Germany for keeping the monopoly on China. However, our finanscial situation isn´t good, and the fixed amounts of dividends to Germany are larger than our income!"
	style = 0
	picture = "Rhineland"

	date = { day = 1 month = january year = 1937 }

        action_a = {
		name = "Default, we don't have the money"
		command = { type = setflag = "aog_defaults" }
                command = { type = trigger which = xxx16 } #german reaction
	}
        action_b = {
		name = "Pay it and hope for better times"
		command = { type = money value = -175 }
                command = { type = trigger which = xxx12 }
	}
}

event = {
	id = xxx9
	random = no
	country = GER

	name = "AOG Pays Dividend"
	desc = "The AOG pays it's dividend to be allowed to continue trading with China."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Excellent"
		command = { type = money value = 85 } #half, otherwise unbalancing
	}
}

event = {
	id = xxx10
	random = no
	country = GER

	name = "AOG Pays Dividend"
	desc = "The AOG pays it's dividend to be allowed to continue trading with China."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Excellent"
		command = { type = money value = 85 }
	}
}

event = {
	id = xxx11
	random = no
	country = GER

	name = "AOG Pays Dividend"
	desc = "The AOG pays it's dividend to be allowed to continue trading with China."
	style = 0
	picture = "Rhineland"

        action_a = {
		name = "Excellent"
		command = { type = money value = 85 }
	}
}

event = {
	id = xxx12
	random = no
	country = GER

	name = "AOG Pays Dividend"
	desc = "The AOG pays it's dividend to be allowed to continue trading with China."
	style = 0
	picture = "Rhineland"

        action_a = {
		name = "Excellent"
		command = { type = money value = 85 }
	}
}

event = {
	id = xxx13
	random = no
	country = GER

	name = "AOG Defaults!"
	desc = "The AOG has defaulted on its divident payments, citing economic losses. This sends shudders through the german economy."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "We will remember this at the end of the year..."
		command = { }
	}
}

event = {
	id = xxx14
	random = no
	country = GER

	name = "AOG Defaults!"
	desc = "The AOG has defaulted on its divident payments, citing economic losses. This sends shudders through the german economy."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "We will remember this at the end of the year..."
		command = { }
	}
}

event = {
	id = xxx15
	random = no
	country = GER

	name = "AOG Defaults!"
	desc = "The AOG has defaulted on its divident payments, citing economic losses. This sends shudders through the german economy."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "We will remember this at the end of the year..."
		command = { }
	}
}

event = {
	id = xxx16
	random = no
	country = GER

	name = "AOG Defaults!"
	desc = "The AOG has defaulted on its divident payments, citing economic losses. This sends shudders through the german economy."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "We will remember this at the end of the year..."
		command = { }
	}
}

# AOG Licence renegotiations 1937 - the AOG has defaulted at least once

event = {
	id = xxx17
	random = no
	country = GER

        trigger = {
        flag = "aog_defaults"
        exists = CGX
        }

	name = "Renegotiations of the AOG Charter - 1937"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that something has to be done to remedy the problematic finances of the AOG, which has defaulted on it's dividend payments. However, it isn´t as easy as it sounds - both sides agree that making yearly payments would be easier - but the exact sum is harder to determine."
	style = 0
	picture = "Rhineland"

	date = { day = 1 month = january year = 1937 }

	action_a = {
		name = "Yearly dividends - proportional amount (50%)"
                ai_chance = 60
		command = { type = trigger which = xxx19 }
                command = { type = clrflag = "aog_defaults" }
	}
        action_b = {
		name = "Yearly dividends - lower the fixed amount ($400 a year)"
                ai_chance = 30
		command = { type = trigger which = xxx20 }
                command = { type = clrflag = "aog_defaults" }
	}

        action_c = {
		name = "Withdraw their monopoly"
                ai_chance = 10
		command = { type = trigger which = xxx23 }
                command = { type = clrflag = "aog_defaults" }
	}
}

# AOG licence negotiations 1937 - the AOG has paid their dividends, but at the cost of heavy losses

event = {
	id = xxx18
	random = no
	country = GER

        trigger = {
        NOT = {
        flag = "aog_defaults"
        }
        exists = CGX
        }

	name = "Renegotiations of the AOG Charter - 1937"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that something has to be done to remedy the problematic finances of the AOG, which has almost defaulted on it's dividend payments, and only avoided such a disaster by paying the dividends from their money reserves. However, it isn´t as easy as it sounds - both sides agree that making yearly payments would be easier - but the exact sum is harder to determine."
	style = 0
	picture = "Rhineland"

	date = { day = 1 month = january year = 1937 }

	action_a = {
		name = "Yearly dividends - lower the fixed amount ($400 a year)"
                ai_chance = 60
		command = { type = trigger which = xxx20 }
                command = { type = clrflag = "aog_defaults" }
	}
        action_b = {
		name = "Yearly dividends - proportional amount (50%)"
                ai_chance = 40
		command = { type = trigger which = xxx19 }
                command = { type = clrflag = "aog_defaults" }
	}
}

# Germany proposes a proportional amount

event = {
	id = xxx19
	random = no
	country = CGX

	name = "Renegotiations of the AOG Charter - 1937"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that something has to be done to remedy the problematic finances of the AOG, which has almost defaulted on it's dividend payments, and only avoided such a disaster by paying the dividends from their money reserves. However, it isn´t as easy as it sounds - both sides agree that making yearly payments would be easier, and Germany has suggested that we pay a proportion of our yearly income - 50%"
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Agree"
                ai_chance = 90
		command = { type = setflag = "aog_proportional_dividend" }
	}
        action_b = {
		name = "Disagree. Suspend payments in protest."
                ai_chance = 10
		command = { type = end_puppet }
                command = { type = leave_alliance }
                command = { type = setflag = "aog_dividend_suspended" }
                command = { type = trigger which = xxx21 }
	}
}

# Germany proposes a fixed amount

event = {
	id = xxx20
	random = no
	country = CGX

	name = "Renegotiations of the AOG Charter - 1937"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that something has to be done to remedy the problematic finances of the AOG, which has almost defaulted on it's dividend payments, and only avoided such a disaster by paying the dividends from their money reserves. However, it isn´t as easy as it sounds - both sides agree that making yearly payments would be easier, and Germany has suggested that we pay a fixed - but lower - sum of money ($400) each year."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Agree"
                ai_chance = 80
		command = { type = setflag = "aog_fixed_dividend" }
	}
        action_b = {
		name = "Disagree. Suspend payments and declare independence from Germany"
                ai_chance = 20
		command = { type = end_puppet }
                command = { type = leave_alliance }
                command = { type = setflag = "aog_dividend_suspended" }
                command = { type = trigger which = xxx22 }
	}
}

# AOG refuses german offer - germany has offered proportional dividends

event = {
	id = xxx21
	random = no
	country = GER

	name = "1937 Renegotiations Fails"
	desc = "The AOG has suspended their dividend payments and declared their independence in protest against what they see as an unfair german proposal."
	style = 0
	picture = "Rhineland"

        action_a = {
		name = "OK, fixed dividends it is... (grumbles)"
                ai_chance = 40
		command = { type = make_puppet which = CGX }
                command = { type = setflag which = aog_fixed_dividend" }
                command = { type = clrflag = "aog_dividend_suspended" } 
	}

	action_b = {
		name = "Do nothing, let them rule their insignificant bit of China"
                ai_chance = 30
		command = { }
	}
        action_c = {
		name = "Do nothing, but outlaw the mother companies"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
        action_d = {
		name = "Take it back by force"
                ai_chance = 30
		command = { type = war which = CGX }
	}
        action_e = {
		name = "Take it back by force and outlaw the mother companies!"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = war which = CGX }
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
}

#AOG refuses german offer - germany has offered a fixed dividend

event = {
	id = xxx22
	random = no
	country = GER

	name = "1937 Renegotiations Fails"
	desc = "The AOG has suspended their dividend payments and declared their independence in protest against what they see as an unfair german proposal."
	style = 0
	picture = "Rhineland"

        action_a = {
		name = "OK, proportional dividends it is... (grumbles)"
                ai_chance = 40
		command = { type = make_puppet which = CGX }
                command = { type = setflag which = aog_proportional_dividend" }
                command = { type = clrflag = "aog_dividend_suspended" } 
	}

	action_b = {
		name = "Do nothing, let them rule their insignificant bit of China"
                ai_chance = 30
		command = { }
	}
        action_c = {
		name = "Do nothing, but outlaw the mother companies"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
        action_d = {
		name = "Take it back by force"
                ai_chance = 30
		command = { type = war which = CGX }
	}
        action_e = {
		name = "Take it back by force and outlaw the mother companies!"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = war which = CGX }
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
}

# Germany refuses to renew charter

event = {
	id = xxx23
	random = no
	country = CGX

	name = "Germany refuses to renew charter"
	desc = "Germany has refused to renew our trading licence! Upon orders from our european bosses,all european personell must be out of China within 48 hours and on their way back to Germany. The AOG is no more."
	style = 0
	picture = "Rhineland"

        action_a = {
		name = "It was good while it lasted... (GAME OVER)"
		command = { type = independence which = PHI value = 0 } #just in case
                command = { type = trigger which = xxx24 }
	}
}

event = {
	id = xxx24
	random = no
	country = CSX

	name = "Inheriting the AOG"
	desc = "The AOG has been refused a renewed licence by Germany, and must hence leave China. We are back in control."
	style = 0
	picture = "Rhineland"

        action_a = {
		name = "Time to deal with the warlords..."
		command = { type = inherit which = CGX }
	}
}


# 1937

event = {
	id = xxx25
	random = no
	country = CGX

	name = "Income 1937"
	desc = "We have received incomes for this year. However, the renegotiation of the AOG charter hasn't really helped our decreasing revenues..."
	style = 0
	picture = "Rhineland"

	date = { day = 30 month = december year = 1937 }

	action_a = {
		name = "Money, money, money..."
		command = { type = money value = 400 }
	}
}

#proportional dividend

event = {
	id = xxx26
	random = no
	country = CGX

        trigger = {
        flag = "aog_proportional_dividend"
        }

	name = "Dividend 1937"
	desc = "We have to pay proportional dividends to Germany for keeping the monopoly on China."
	style = 0
	picture = "Rhineland"

	date = { day = 1 month = january year = 1938 }

	action_a = {
		name = "Pay it, we have money to spare"
		command = { type = money value = -200 }
                command = { type = trigger which = xxx27 }
	}
	action_b = {
		name = "Default"
		command = { type = setflag = "aog_defaults" }
		command = { type = trigger which = xxx28 }
	}
}

event = {
	id = xxx27
	random = no
	country = GER

	name = "AOG Pays Dividend"
	desc = "The AOG pays it's dividend to be allowed to continue trading with China."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Excellent"
		command = { type = money value = 100 } #half...
	}
}

event = {
	id = xxx28
	random = no
	country = GER

	name = "AOG Defaults!"
	desc = "The AOG has defaulted on its divident payments, citing economic losses. This sends shudders through the german economy."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Damnation!"
		command = { }
	}
}

# Fixed dividend

event = {
	id = xxx29
	random = no
	country = CGX

        trigger = {
        flag = "aog_fixed_dividend"
        }

	name = "Dividend 1937"
	desc = "We have to pay fixed dividends to Germany for keeping the monopoly on China. However, the dividends for this year matches our incomes!"
	style = 0
	picture = "Rhineland"

	date = { day = 1 month = january year = 1938 }

	action_a = {
		name = "Pay it and hope for better times"
                ai_chance = 60
		command = { type = money value = -400 }
                command = { type = trigger which = xxx30 }
	}
	action_b = {
		name = "Default, we don't have the money"
                ai_chance = 40
		command = { type = setflag = "aog_defaults" }
		command = { type = trigger which = xxx31 }
	}
}

event = {
	id = xxx30
	random = no
	country = GER

	name = "AOG Pays Dividend"
	desc = "The AOG pays it's dividend to be allowed to continue trading with China."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Excellent"
		command = { type = money value = 200 }
	}
}

event = {
	id = xxx31
	random = no
	country = GER

	name = "AOG Defaults!"
	desc = "The AOG has defaulted on its divident payments, citing economic losses. This sends shudders through the german economy."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Damnation"
		command = { }
	}
}

# AOG Licence renegotiations 1938 - the AOG has defaulted at least once

event = {
	id = xxx32
	random = no
	country = GER

        trigger = {
        flag = "aog_defaults"
        exists = CGX
        }

	name = "Renegotiations of the AOG Charter - 1938"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that something has to be done to remedy the problematic finances of the AOG, which has defaulted on it's dividend payments. The german government is seriously considering withdrawing their license."
	style = 0
	picture = "Rhineland"

	date = { day = 2 month = january year = 1938 }

	action_a = {
		name = "Withdraw their monopoly"
		command = { type = trigger which = xxx35 }
                command = { type = clrflag = "aog_defaults" }
	}
        action_b = {
		name = "Keep it as it is"
                command = { type = clrflag = "aog_defaults" }
	}
}

# AOG licence negotiations 1938 - the AOG has paid their (fixed) dividends, at the cost of heavy losses

event = {
	id = xxx33
	random = no
	country = GER

        trigger = {
        NOT = {
        flag = "aog_defaults"
        }
        flag = "aog_fixed_dividend"
        exists = CGX
        }

	name = "Renegotiations of the AOG Charter - 1938"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that something has to be done to remedy the problematic finances of the AOG, which has almost defaulted on it's dividend payments, with only a gargantuan effort keeping them afloat."
	style = 0
	picture = "Rhineland"

	date = { day = 2 month = january year = 1938 }

	action_a = {
		name = "Keep the yearly payments - lower the fixed amount ($300 a year)"
		command = { type = trigger which = xxx36 }
                command = { type = clrflag = "aog_defaults" }
	}
        action_b = {
		name = "Keep the yearly payments - make them proportional (50%)"
		command = { type = trigger which = xxx39 }
                command = { type = clrflag = "aog_defaults" }
	}
        action_c = {
		name = "Suspend the payments indefinately"
                command = { type = clrflag = "aog_fixed_dividend" }
                command = { type = clrflag = "aog_defaults" }
	}
}

# AOG licence negotiations 1938 - the AOG has paid their (proportional) dividends

event = {
	id = xxx34
	random = no
	country = GER

        trigger = {
        NOT = {
        flag = "aog_defaults"
        }
        flag = "aog_proportional_dividend"
        exists = CGX
        }

	name = "Renegotiations of the AOG Charter - 1938"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that the general economic trend hasn't turned, with AOG income slowly diminishing, but that no immediate action is needed as of now."
	style = 0
	picture = "Rhineland"

	date = { day = 2 month = january year = 1938 }

	action_a = {
		name = "We have no complaints"
		command = { type = trigger which = xxx41 }
	}
}

# Germany wants to withdraw the monopoly

event = {
	id = xxx35
	random = no
	country = CGX

	name = "Germany Refuses to renew charter"
	desc = "Germany has refused to renew our trading licence!"
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Threaten to declare independence"
		command = { type = end_puppet }
                command = { type = leave_alliance }
		command = { type = setflag = "aog_dividend_suspended" }
                command = { type = trigger which = xxx36 }
	}
        action_b = {
		name = "OK, vacate China (GAME OVER)"
                command = { type = trigger which = xxx24 }
	}
}

#AOG refuses german offer

event = {
	id = xxx36
	random = no
	country = GER

	name = "1938 Renegotiations Fails"
	desc = "The AOG has reacted strongly against our attempt to withdraw their trading license."
	style = 0
	picture = "Rhineland"

        action_a = {
		name = "OK, let it stay as it is"
                ai_chance = 40
		command = { type = make_puppet which = CGX }
	}

	action_b = {
		name = "Do nothing, let them rule their insignificant bit of China"
                ai_chance = 30
		command = { }
	}
        action_c = {
		name = "Do nothing, but outlaw the mother companies"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
        action_d = {
		name = "Take it back by force"
                ai_chance = 30
		command = { type = war which = CGX }
	}
        action_e = {
		name = "Take it back by force and outlaw the mother companies!"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = war which = CGX }
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
}

# 1938 renegotiations, germany has proposed lowering the fixed amount

event = {
	id = xxx37
	random = no
	country = CGX

	name = "Renegotiations of the AOG Charter - 1938"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that something has to be done to remedy the problematic finances of the AOG, which has almost defaulted on it's dividend payments. To remedy this problematic situation, Germany has descided to lower the dividend payments furth to $300 a year."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Agree"
                ai_chance = 80
		command = { }
	}
        action_b = {
		name = "Disagree, suspend payments and threaten to declare independence if they don't become proportional"
                ai_chance = 20
		command = { type = end_puppet }
                command = { type = leave_alliance }
                command = { type = setflag = "aog_dividend_suspended" }
                command = { type = trigger which = xxx38 }
	}
}

#AOG refuses german offer offer of lowering the fixed amount

event = {
	id = xxx38
	random = no
	country = GER

	name = "1938 Renegotiations Fails"
	desc = "The AOG has reacted strongly against our suggestion to lowerthe fixed dividend. They want proportional dividends."
	style = 0
	picture = "Rhineland"

        action_a = {
		name = "OK, proportional dividends it is (grumbles)"
                ai_chance = 40
		command = { type = make_puppet which = CGX }
                command = { type = clrflag = "aog_dividend_suspended" }
                command = { type = clrflag = "aog_fixed_dividend" } 
                command = { type = setflag = "aog_proportional_dividend" }
	}

	action_b = {
		name = "Do nothing, let them rule their insignificant bit of China"
                ai_chance = 30
		command = { }
	}
        action_c = {
		name = "Do nothing, but outlaw the mother companies"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
        action_d = {
		name = "Take it back by force"
                ai_chance = 30
		command = { type = war which = CGX }
	}
        action_e = {
		name = "Take it back by force and outlaw the mother companies!"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = war which = CGX }
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
}

# 1938 renegotiations, germany has proposed changing to proportional dividends

event = {
	id = xxx39
	random = no
	country = CGX

	name = "Renegotiations of the AOG Charter - 1938"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that something has to be done to remedy the problematic finances of the AOG, which has almost defaulted on it's dividend payments. To remedy this problematic situation, Germany has descided to make the dividends proportional."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Agree"
                ai_chance = 90
		command = { type = clrflag = "aog_fixed_dividend" }
                command = { type = setflag = "aog_proportional_dividend" }
	}
        action_b = {
		name = "Disagree, suspend payments and threaten to declare independence if they don't keep it as it is"
                ai_chance = 10
		command = { type = end_puppet }
                command = { type = leave_alliance }
                command = { type = setflag = "aog_dividend_suspended" }
                command = { type = trigger which = xxx40 }
	}
}

#AOG refuses german offer offer of lowering the fixed amount

event = {
	id = xxx40
	random = no
	country = GER

	name = "1938 Renegotiations Fails"
	desc = "The AOG has reacted strongly against our suggestion to make the dividend proportional. They want fixed dividends."
	style = 0
	picture = "Rhineland"

        action_a = {
		name = "OK, fixed dividends it is (grumbles)"
                ai_chance = 40
		command = { type = make_puppet which = CGX }
                command = { type = clrflag = "aog_dividend_suspended" }
	}

	action_b = {
		name = "Do nothing, let them rule their insignificant bit of China"
                ai_chance = 30
		command = { }
	}
        action_c = {
		name = "Do nothing, but outlaw the mother companies"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
        action_d = {
		name = "Take it back by force"
                ai_chance = 30
		command = { type = war which = CGX }
	}
        action_e = {
		name = "Take it back by force and outlaw the mother companies!"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = war which = CGX }
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
}

# AOG licence negotiations 1938 - the AOG has paid their (proportional) dividends

event = {
	id = xxx41
	random = no
	country = CGX

	name = "Renegotiations of the AOG Charter - 1938"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that the general economic trend hasn't turned, with AOG income slowly diminishing, but that no immediate action is needed as of now."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "We have no complaints"
		command = { }
	}
}
 
And the rest:

Code:
# 1938

event = {
	id = xxx42
	random = no
	country = CGX

	name = "Income 1938"
	desc = "We have received incomes for this year. The finanscial situation also seems to have stabilized, with a small increase in revenues."
	style = 0
	picture = "Rhineland"

	date = { day = 30 month = december year = 1939 }

	action_a = {
		name = "Money, money, money..."
		command = { type = money value = 450 }
	}
}

#proportional dividend

event = {
	id = xxx43
	random = no
	country = CGX

        trigger = {
        flag = "aog_proportional_dividend"
        }

	name = "Dividend 1938"
	desc = "We have to pay proportional dividends to Germany for keeping the monopoly on China."
	style = 0
	picture = "Rhineland"

	date = { day = 1 month = january year = 1939 }

	action_a = {
		name = "Pay it, we have money to spare"
		command = { type = money value = -225 }
                command = { type = trigger which = xxx44 }
	}
	action_b = {
		name = "Default"
		command = { type = setflag = "aog_defaults" }
		command = { type = trigger which = xxx45 }
	}
}

event = {
	id = xxx44
	random = no
	country = GER

	name = "AOG Pays Dividend"
	desc = "The AOG pays it's dividend to be allowed to continue trading with China."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Excellent"
		command = { type = money value = 110 }
	}
}

event = {
	id = xxx45
	random = no
	country = GER

	name = "AOG Defaults!"
	desc = "The AOG has defaulted on its divident payments, citing economic losses. This sends shudders through the german economy."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Damnation"
		command = { }
	}
}

# Fixed dividend

event = {
	id = xxx46
	random = no
	country = CGX

        trigger = {
        flag = "aog_fixed_dividend"
        }

	name = "Dividend 1938"
	desc = "We have to pay fixed dividends to Germany for keeping the monopoly on China."
	style = 0
	picture = "Rhineland"

	date = { day = 1 month = january year = 1938 }

	action_a = {
		name = "Pay it, we have money to spare (yay!)"
                ai_chance = 60
		command = { type = money value = -300 }
                command = { type = trigger which = xxx47 }
	}
	action_b = {
		name = "Default, we don't have the money"
                ai_chance = 40
		command = { type = setflag = "aog_defaults" }
		command = { type = trigger which = xxx48 }
	}
}

event = {
	id = xxx47
	random = no
	country = GER

	name = "AOG Pays Dividend"
	desc = "The AOG pays it's dividend to be allowed to continue trading with China."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Excellent"
		command = { type = money value = 150 }
	}
}

event = {
	id = xxx48
	random = no
	country = GER

	name = "AOG Defaults!"
	desc = "The AOG has defaulted on its divident payments, citing economic losses. This sends shudders through the german economy."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Damnation"
		command = { }
	}
}

# AOG Licence renegotiations 1939 - the AOG has defaulted at least once

event = {
	id = xxx49
	random = no
	country = GER

        trigger = {
        flag = "aog_defaults"
        exists = CGX
        }

	name = "Renegotiations of the AOG Charter - 1939"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that something has to be done to remedy the problematic finances of the AOG, which has defaulted on it's dividend payments. The german government is seriously considering withdrawing their license."
	style = 0
	picture = "Rhineland"

	date = { day = 2 month = january year = 1939 }

	action_a = {
		name = "Withdraw their monopoly"
		command = { type = trigger which = xxx50 }
                command = { type = clrflag = "aog_defaults" }
	}
        action_b = {
		name = "Keep it as it is"
                command = { type = clrflag = "aog_defaults" }
	}
}

# Germany wants to withdraw the monopoly

event = {
	id = xxx50
	random = no
	country = CGX

	name = "Germany Refuses to renew charter"
	desc = "Germany has refused to renew our trading licence!"
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "Threaten to declare independence"
		command = { type = end_puppet }
                command = { type = leave_alliance }
		command = { type = setflag = "aog_dividend_suspended" }
                command = { type = trigger which = xxx51 }
	}
        action_b = {
		name = "OK, vacate China (GAME OVER)"
                command = { type = trigger which = xxx24 }
	}
}

#AOG refuses german offer

event = {
	id = xxx51
	random = no
	country = GER

	name = "1939 Renegotiations Fails"
	desc = "The AOG has reacted strongly against our attempt to withdraw their trading license."
	style = 0
	picture = "Rhineland"

        action_a = {
		name = "OK, let it stay as it is"
                ai_chance = 40
		command = { type = make_puppet which = CGX }
	}

	action_b = {
		name = "Do nothing, let them rule their insignificant bit of China"
                ai_chance = 30
		command = { }
	}
        action_c = {
		name = "Do nothing, but outlaw the mother companies"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
        action_d = {
		name = "Take it back by force"
                ai_chance = 30
		command = { type = war which = CGX }
	}
        action_e = {
		name = "Take it back by force and outlaw the mother companies!"
                ai_chance = 0 #to prevent the AI from doing something stupid
		command = { type = war which = CGX }
		command = { type = sleepteam which = 9 }
		command = { type = sleepteam which = 11 }
		command = { type = sleepteam which = 7 }
                command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
		command = { type = construct which = ic where = -1 value = -1 } 
		command = { type = construct which = ic where = -1 value = -1 }
	}
}

# AOG licence negotiations 1939 - the AOG has paid their dividends

event = {
	id = xxx52
	random = no
	country = GER

        trigger = {
        NOT = {
        flag = "aog_defaults"
        }
        exists = CGX
        }

	name = "Renegotiations of the AOG Charter - 1939"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that no immediate action is needed as of now."
	style = 0
	picture = "Rhineland"

	date = { day = 2 month = january year = 1939 }

	action_a = {
		name = "We have no complaints"
		command = { type = trigger which = xxx53 }
	}
}

# AOG licence negotiations 1939 - the AOG has paid their dividends

event = {
	id = xxx53
	random = no
	country = CGX

	name = "Renegotiations of the AOG Charter - 1939"
	desc = "According to the AOG charter - the charter allowing it a monopoly on east asian trade - the charter is to be renegotiated every year. Representatives of the german government, and the AOG Board of Directors have met in Munich to discuss it. Both sides agree that no immediate action is needed as of now."
	style = 0
	picture = "Rhineland"

	action_a = {
		name = "We have no complaints"
		command = { }
	}
}
 
Sarmatia1871 said:
Haven't checked them against the 'ideology_matrix.csv' yet -> If you tell me what ideology each potential choice should be, I can probably move these around fairly easily...

The Social-democratic choice should put you at full left and democratic.
The "Radical Left" choice should put you at LWR (or equivalent) but only slightly (the rest will be done in the policies event) The Conservative choice will have you stay at PA(Authoritarian Democrat) (though you'll get a choice to move to SC in the policies) and the Military choice should put you at FA(Paternal Autocrat)

The Left-Wing liberal choice should put you at SL and the Right-wing one at ML.
 
Zuckergußgebäck said:
Beh, I´ll just post what has been done so far...
...

:D By Jove, that's a lot of very good events! Much appreciated!

Taking this beyond 1939 might make things horrifically complex, especially as it would be impossible to know what would be going on in Germany or China by then -> So, possibly have things settle down into an annual dividend payment if the AOG is still a German puppet by that date (I'd assume that any problems between the two would have been worked out by that period!).

Also, maybe give the AOG an additional option to squeeze the Chinese through exceptional taxed to pay the dividend, rather than take it out of their cash pool -> This would then set-off the existing 'CGX_ECO_PROBLEMS' flag, which causes the native population to start getting annoyed, and do things like form Unions...
 
Arilou said:
The Social-democratic choice should put you at full left and democratic.
The "Radical Left" choice should put you at LWR (or equivalent) but only slightly (the rest will be done in the policies event) The Conservative choice will have you stay at PA(Authoritarian Democrat) (though you'll get a choice to move to SC in the policies) and the Military choice should put you at FA(Paternal Autocrat)

The Left-Wing liberal choice should put you at SL and the Right-wing one at ML.

Okay, cool - I'll make the adjustments.
 
Sarmatia1871 said:
Yeah, as said above, the German ministers file needs to be redone to eliminate all the Nazis totally, and the 'minister death.txt' has to be changed quite a bit as well.
sorry missed that :(
 
Question about the trading company declaring independence:
Who inherits it?
I am unfamiliar with tags so can't deduct that for myself.
Also, if someone other than Germany gets it, Germany should at least get a few moneymaking provinces as colonies.
 
Seylanov said:
Question about the trading company declaring independence:
Who inherits it?
I am unfamiliar with tags so can't deduct that for myself.
Also, if someone other than Germany gets it, Germany should at least get a few moneymaking provinces as colonies.
Well, when it declares independence, it becomes a nation of it´s own, and is no longer a german puppet. If inherited, Qing China gets it. Germany should not get any provinces, since AOG territory is oficcially Qing territory, but controlled by the AOG.
 
Hello All

I finally decided to download the Mod and give it a whirl. Downloaded it, extracted as per instructions, ran JSGME and activated Kaiserreich, and then launched. The menu loaded, I selected British Union and then clicked start and got a scenario file error . . . .

Any ideas . . .

Remember to play the Kaisserreich Scenario?
 
Why bother with JGSME? Simply copy your HOI2 folder, take the necessary Kaiserreich files and paste them in, and then delete all other scenarios?
 
Zuckergußgebäck said:
Why bother with JGSME? Simply copy your HOI2 folder, take the necessary Kaiserreich files and paste them in, and then delete all other scenarios?

Well, some do want to play HoI2 as well. And copying the folder take extra space.
 
GrimPagan said:
Well, some do want to play HoI2 as well. And copying the folder take extra space.

dito that. i have 5 hois on my HDD. And i had to delete other major games just for the mods ^^
 
Oh yeah, I have no idea what pictures are approporiate either. SOmeone with better Google-Fu will have to fix that.

##### Social-Democrat Policy Choices#####
event = {
id = ...
random = no
country = SWE
style = 0

trigger = { #Triggered by the Left-Wing victory event#

}

name = "The Social-Democrats decide their policy"
desc = "After their victory in the election of '36 the Social-Democrats remained divided. The largest faction, sponsored by the Prime-Minister Per-Albin Hansson, wanted to create a system of government-sponsored welfare-programs to gradually eliminate class-warfare and through consensus and democratic control create the socialist society. In this scenario nationalizations would be limited and cooperation between the parties of the labour-market encouraged. In the words of the Prime-Minister "A home for all swedes" were to be created.

Against this however, stood the more radical elements of the party, espousing more widespread nationalizations and direct control of the work-places by the labour-unions. A third, smaller groupl, espoused no radical changes: Better to leave the system relatively unchanged, rather than embark on any ambitious programs of social change."

picture = "politics2"

date = {#Triggered# }
offset = 150
deathdate = { #Triggered#}


action_a = {
ai_chance = 70
name = "Let us build a People's Home for all Swedes!"
command = { type = dissent value = -10 }
command = { type = domestic which = free_market value = -1 } #Increased state-intervention#
command = { type = domestic which = political_left value = 1 }
command = { type = domestic which = interventionism value = -1 }
command = { type = domestic which = defense_lobby value = -1 }
command = { type = domestic which = professional_army value = -1 }#Lack of military spending#
command = { type = industrial_modifier which = total value = 5 } #5% industrial efficiency bonus due to lack of conflict/strikes, since Sweden's IC will be pretty damn low anyway it shouldn't be too unbalanced#

}




action_b = {
ai_chance = 20
name = "Let us radically reform the economy along Syndicalist lines!!"
command = { type = domestic which = political_left value = 3 }
command = { type = domestic which = interventionism value = -3 }
command = { type = domestic which = defense_lobby value = -3 }
command = { type = domestic which = professional_army value = -3 }
#concerns with domestic economy prevents focusing on the army#
command = { type = domestic which = democratic value = -2 }
command = { type = domestic which = freedom value = -3 }#Radical change tramples individual freedoms#
command = { type = domestic which = free_market value = -3 } #Private ownership restricted, if not outright abolished#
command = { type = dissent value = 15 } #People are very annoyed#
command = { type = construct which = ic where = 101 value = 2 }#Stockholm#
command = { type = construct which = ic where = 93 value = 1 } #Malmö#
command = { type = construct which = ic where = 98 value = 1 }#Göteborg#
command = { type = construct which = ic where = 127 value = 1 }#Luleå#
###Industries either "created" or brought under government-control#
command = { type = construct which = infrastructure where = 127 value = 1 }#Luleå#
command = { type = construct which = infrastructure where = 126 value = 1 }#Kiruna#
###Infrastructure projects in the North of Sweden#
command = { type = relation which = GER value = -50 }#Germans are annoyed#
command = { type = relation which = CAN value = -50 }
command = { type = relation which = FIN value = -50 }
command = { type = relation which = TEX value = -50 }# Reactionary Bourgesie are annoyed, should perhaps have more countries added but I'm not too clear about which actual tags are used#
command = { type = relation which = ENG value = 50 }
command = { type = relation which = FRA value = 50 }
command = { type = relation which = NOR value = 50 } #Should really check if Norway is Syndicalist?#
command = { type = relation which = CSA value = 50 } #Any other Syndicalist powers I've missed?#
##Improved Relations with the Syndicalists##
##This is one of the paths that should put Sweden firmly into the Syndicalist camp eventually.##



}
action_c = {
ai_chance = 10
name = "Let us avoid rocking the boat."
command = { type = dissent value = -5 }
command = { type = domestic which = political_left value = -1 }
#Essentially this is the choice for those who'd prefer to make thier own decisions#

}
##############
### Radical Leftist Policy Choice
##############

event = {
id = ...
random = no
country = SWE
style = 0

trigger = {
#Triggered by the "Leftist Victory" event#
}

name = "The Radical Left decide it's policy"
desc = "The coalition of radical leftists that came to power in the 1936 election was a disparate group of syndicalists, radical social-democrats, and the odd bolshevik. There seemed to be several paths for the newly radicalized country to take, a slim majority agitated for a radical reorganization of the economy along Syndicalist lines, a smaller group wanted a more moderate program of socialization ending in a democratic welfare-state, a third, more militant group demanded instead increased resources for the army and much closer cooperation with the other Syndicalist powers in order to defend the country from reactionary intervention."

picture = "politics2"

date = { #Triggered by event# }
offset = 150
deathdate = { #Triggered by event#}


action_a = {#Same as the social-democrat B-choice#
ai_chance = 40
name = "Let us radically reform the economy along Syndicalist lines!!"
command = { type = domestic which = political_left value = 3 }
command = { type = domestic which = interventionism value = -3 }
command = { type = domestic which = defense_lobby value = -3 }
command = { type = domestic which = professional_army value = -3 }
#concerns with domestic economy prevents focusing on the army#
command = { type = domestic which = democratic value = -2 }
command = { type = domestic which = freedom value = -3 }#Radical change tramples individual freedoms#
command = { type = domestic which = free_market value = -3 } #Private ownership restricted, if not outright abolished#
command = { type = dissent value = 15 } #People are very annoyed#
command = { type = construct which = ic where = 101 value = 2 }#Stockholm#
command = { type = construct which = ic where = 93 value = 1 } #Malmö#
command = { type = construct which = ic where = 98 value = 1 }#Göteborg#
command = { type = construct which = ic where = 127 value = 1 }#Luleå#
###Industries either "created" or brought under government-control#
command = { type = construct which = infrastructure where = 127 value = 1 }#Luleå#
command = { type = construct which = infrastructure where = 126 value = 1 }#Kiruna#
###Infrastructure projects in the North of Sweden#
command = { type = relation which = GER value = -50 }#Germans are annoyed#
command = { type = relation which = CAN value = -50 }
command = { type = relation which = FIN value = -50 }
command = { type = relation which = TEX value = -50 }# Reactionary Bourgesie are annoyed, should perhaps have more countries added but I'm not too clear about which actual tags are used#
command = { type = relation which = ENG value = 50 }
command = { type = relation which = FRA value = 50 }
command = { type = relation which = NOR value = 50 } #Should really check if Norway is Syndicalist?#
command = { type = relation which = CSA value = 50 } #Any other Syndicalist powers I've missed?#
##Improved Relations with the Syndicalists##
##This is one of the paths that should put Sweden firmly into the Syndicalist camp eventually.##

}




action_b = {
ai_chance = 20
name = "Let us build a People's Home for all Swedes!"
command = { type = dissent value = -10 }
command = { type = domestic which = free_market value = -1 } #Increased state-intervention#
command = { type = domestic which = political_left value = 1 }
command = { type = domestic which = interventionism value = -1 }
command = { type = domestic which = defense_lobby value = -1 }
command = { type = domestic which = professional_army value = -1 }#Lack of military spending#
command = { type = industrial_modifier which = total value = 5 } #5% industrial efficiency bonus due to lack of conflict/strikes, since Sweden's IC will be pretty damn low anyway it shouldn't be too unbalanced#
#Same as the Social-democratic A choice#


}
action_c = {
ai_chance = 40
name = "Let us focus on resistin Bourgesie aggression!"
command = { type = domestic which = interventionism value = 3 }
command = { type = domestic which = defense_lobby value = 3 }
command = { type = domestic which = professional_army value = -3 }
#Focus on a "People's Army"#
command = { type = domestic which = freedom value = -2 }
command = { type = domestic which = democratic value = -1 }
command = { type = domestic which = political_left value = -2 } #Freedoms restricted in the name of preventing bourgesie aggression#
command = { type = domestic which = free_market value = -2 }
#Army takes control of sections of the economy#
command = { type = relation which = GER value = -150 }#Germans are not amused#
command = { type = relation which = CAN value = -100 }
command = { type = relation which = FIN value = -100 }
command = { type = relation which = TEX value = -100 }#Reactionaries are alarmed by saber-rattling minors#
command = { type = relation which = ENG value = 50 }
command = { type = relation which = FRA value = 50 }
command = { type = relation which = NOR value = 50 } #Should really check if Norway is Syndicalist?#
command = { type = relation which = CSA value = 50 }
#Improved relations with Syndicalist powers#
command = { type = add_corps which = "Syndikalistiska Befrielsearmén" value = land when = 1#What does this do?# where = 101 }#Divisions#
command = { type = add_division which = "Division ''Engelbrekt''" value = infantry when = 1 where = 1 #Doesen't really understand this# }
command = { type = add_division which = "Division ''Nils Dacke''" value = infantry when = 1 where = 1 }
command = { type = add_division which = "Division ''Daldansen''" value = infantry when = 1 where = 1 }
#The divisions are named after rebellions, if anyone wonders#
#The Description on the event-modding page is a bit.... *ahem* sparse when it comes to adding corps/divisions, if someone who actually knows there shit might take a look I'd be grateful#
command = { type = add_corps which = "Syndikalistiska Luftflottiljen" value = air when = 1#What does this do?# where = 127 }#Airforce#
command = { type = add_division which = "Flygdivision ''Morgonstjärnan''" value = interceptor when = 0 }
#Might probably trigger som events to eg. End german guarantees of independence and such#
}

[/QUOTE]

#### Leftist-Liberal Policy-Choice####

event = {
id = ...
random = no
country = SWE
style = 0

trigger = {
#Triggered by the "Leftist Victory" event#
}

name = "The Liberals decide upon their policy"
desc = "A liberal victory in the 1936 election was completely unexpected, and it was felt by many that it was but a compromise. The liberals, themselves not expecting to seize power, were divided upon what to do. Most favoured a simple policy of maintaining the Status Quo and hoping for the best, others, more leftist of heart, wished for the creation of a welfare-state to ensure the liberty and prosperity of all. A third group, disillusioned by the failure of government-regulation during the economic downturn, propagated a more laissez-faire version of capitalism."

picture = "politics2"

date = { #Triggered#}
offset = 150
deathdate = { #triggered#}


action_a = {
ai_chance = 60
name = "Don't rock the boat"
command = { type = dissent value = -5 }
#Wohooo, the liberals do nothing#
}




action_b = {
ai_chance = 30
name = "Let us build a People's Home for all Swedes!"
command = { type = dissent value = 5 } #"Betrayal of liberal principles"#
command = { type = domestic which = free_market value = -1 } #Increased state-intervention#
command = { type = domestic which = political_left value = 1 }
command = { type = domestic which = interventionism value = -1 }
command = { type = domestic which = defense_lobby value = -1 }
command = { type = domestic which = professional_army value = -1 }#Lack of military spending#
command = { type = industrial_modifier which = total value = 5 } #5% industrial efficiency bonus due to lack of conflict/strikes, since Sweden's IC will be pretty damn low anyway it shouldn't be too unbalanced#
#Almost the same as the Soc. Dem. choice#

}
action_c = {
ai_chance = 30
name = "A free Market is the Answer to Economic Troubles!"
command = { type = domestic which = freedom value = 2 }
command = { type = domestic which = democratic value = 5 }
command = { type = set_domestic which = political_left value = 5 } #Freedom and all that jazz#
command = { type = domestic which = free_market value = 4 } # Move towards laissez-faire capitalism#
command = { type = money value = 100 }#Some Cold, hard, cash#
command = { type = dissent value = 5 } #This kind of capitalism not exactly popular#
}

So.... What'cha think? Going to do the Right-wing choices later....
 
trezza_cz said:
whooooa i like this mod! It's one of the best i've ever seen! Many years I was thinking about situation, when Germans won the war... This was my dream. :)

:D Good to hear it - Also, please send whatever help you can, so it can be finished and developed as soon as possible!
 
Zuckergußgebäck said:
Well, when it declares independence, it becomes a nation of it´s own, and is no longer a german puppet. If inherited, Qing China gets it. Germany should not get any provinces, since AOG territory is oficcially Qing territory, but controlled by the AOG.

Sounds about right - Germany has already grabbed the important naval base cities that it would have wanted. Although possibly give Germany access to Qing China (can't remember if it has this already or not though!) if its allowed to reassert proper control over the AlgOstAsien lands, reflecting neccessary German demands in the 'liquidation treaty.'

And maybe also give an option so 'ownership' of AlgOstAsien territories can be handed over to IHK-Mitteleuropa (U04) -> Although they're still basically 'off-map' at the moment, with no tech-teams, ministers or leaders...

And the TAG for the AOG is CGX, which is Guangxi Clique in vanilla (so it still actually uses most of their ministers, leaders and names...)
 
CCurio said:
A minor suggestion: Add some energy/oil to the province of Narva. I believe that there is oil shale mining there even nowadays... ;)

And I've often seen VBH's economy melt down. :eek:

'Kay - will fix both of these!