• 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.

Burning

Arms, Armistice 'n Revolutions
33 Badges
Mar 25, 2004
2.322
3
  • Victoria 2 Beta
  • Supreme Ruler 2020
  • Victoria 2
  • Rome: Vae Victis
  • 200k Club
  • 500k Club
  • Crusader Kings II: Holy Knight (pre-order)
  • Europa Universalis III: Collection
  • Europa Universalis: Rome Collectors Edition
  • Semper Fi
  • Stellaris Sign-up
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV: Together for Victory
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Expansion Pass
  • Battle for Bosporus
  • Arsenal of Democracy
  • Europa Universalis: Rome
  • Victoria: Revolutions
  • Europa Universalis III Complete
  • Majesty 2
  • Iron Cross
  • Europa Universalis III Complete
  • Heir to the Throne
  • Hearts of Iron III
  • Divine Wind
  • Europa Universalis III
  • East India Company
  • Deus Vult
  • Darkest Hour
  • Crusader Kings II
  • Hearts of Iron II: Armageddon
whats the update on hotfix regarding crash cause of british colonies , my game always crash cause of egypt in 1924?
Will be released during the christmas days! :) Meanwhile, consider removing that one line by hand (see previous threads, please).
 

1232145

Sergeant
13 Badges
Sep 28, 2010
66
0
  • Crusader Kings II
  • Darkest Hour
  • Europa Universalis III Complete
  • Europa Universalis IV
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Hearts of Iron III
  • Europa Universalis IV: Res Publica
  • Semper Fi
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Victoria 2
  • 500k Club
First of all, I want to say great work on the mod, really good. One problem I have noticed is that many nations end up at full Central Planning by the late 1930's (no matter if they are democratic or not), likely as a result of the Great Depression "We will stop this madness!" decision making the AI capable of enacting the "invest in Research/
Transport" decision, which results in further repeated shifts to central planning. I suggest a counter "Market Initiative" decision, which removes IC in return for money and a move to Free Market. This would help stop massive IC building (its now 1941 and France and Britain have about 500 IC each, and the US is only on 350!), and stop democratic nations from going to full Central Planning. Also, should Hermann Esser be leader of Germany (playing the non-historical scenario)?
 

1232145

Sergeant
13 Badges
Sep 28, 2010
66
0
  • Crusader Kings II
  • Darkest Hour
  • Europa Universalis III Complete
  • Europa Universalis IV
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Hearts of Iron III
  • Europa Universalis IV: Res Publica
  • Semper Fi
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Victoria 2
  • 500k Club
EDIT: this is what I have so far (please note I have no experience of coding): EDIT of the EDIT: now I have a decision that does what I want, but now I've changed something and it won't trigger. Any help?
Code:
#### Market Initiative
event = {
	id = 9000099
	random = no
	persistent = yes
	TAG =  { AFG ALB ALG ANG ARA ARG ARM AST AUS AZB BEL BEN BLR BOL BOS BRA BRU BUL BUR CAL CAM CAN CGX CHC CHI CHL CMB COL CON COS CRO CSA CSX CUB CXB CYN CYP CZE DDR DEN DFR EAF ECU EGY ENG EQA EST ETH EUS FIN FLA FRA GAB GEO GER GLD GRE GUA GUI GUY HOL HON HUN ICL IDC IND INO IRE IRQ ISR ITA JAP JOR KAZ KOR KUR KYG LAO LAT LBY LEB LIT LUX MAD MAL MAN MEN MEX MLY MON MOR MOZ MTN NAM NIC NIG NOR NZL OMN OTT PAK PAL PAN PAR PER PHI POL POR PRI PRK PRU QUE RHO ROM RSI RUS SAF SAL SAR SAU SCA SCH SCO SER SIA SIB SIE SIK SLO SLV SOM SOV SPA SPR SUD SWE SYR TAJ TAN TEX TRA TRK TUN TUR UKR URU USA UZB VEN VIE WLL YEM YUG U01 U02 U03 U04 U08 U09 U10 U11 U12 U13 U14 U15 U16 U17 U18 U19 U20 U21 U22 U26 U27 U28 U29 U30 U31 U32 U33 U34 U35 U40 U41 U42 U43 U44 U45 U46 U47 U48 U49 U50 U51 U52 U53 U54 U55 U56 U57 U58 U59 U67 UTC UER UPE U70 U71 U72 U73 U74 U75 U76 U77 U78 U79 U80 U81 U82 U83 U84 U85 U86 U87 U88 U89 U90 U91 U92 U93 U94 U95 U96 U97 U98 U99 }
	decision = { 
		OR = {
			money = 10
			AND = {
				NOT = { IC = 9001 }
				money = 10
				}
			AND = {
				NOT = { IC = 9001 }
				money = 10
				}
			AND = {
				NOT = { IC = 9001 }
				money = 10
				}	
			}
		NOT = { policy = { type = free_market value = 8 } }
	}

	decision_trigger = { 
		OR = {
			money = 10
			AND = {
				NOT = { IC = 80 }
				money = 10
				}
			AND = {
				NOT = { IC = 50 }
				money = 10
				}
			AND = {
				NOT = { IC = 15 }
				money = 10
				}	
			}
	}

	trigger = {
		random = 20
		money = 10
		#NOT = { policy = { type = free_market value = 8 } }
	}
   
	name = "9000099name"
	desc = "9000099desc" 
	style = 2
	picture = "Unemployment_rate"
	decision_picture = "decision_invest_infrastructures"

	date = { day = 1 month = january year = 1914 }
	offset = 120
	deathdate = { day = 30 month = december year = 1963 }

	action = {  trigger = { IC = 80 money = 1000 }
		ai_chance = 30
		name = "9000030a"
		command = { type = dissent value = -0.5 }
		command = { type = money value = 1000 }
		command = { type = construct which = ic where = -20 value = -5 }
	}
	action = {  trigger = { IC = 80 money = 2000 }
		ai_chance = 30
		name = "9000030b"
		command = { type = dissent value = -1 }
		command = { type = money value = 2000 }
		command = { type = construct which = ic where = -20 value = -10 }
	}
	action = {  trigger = { IC = 80 money = 4000 }
		ai_chance = 40
		name = "9000030c"
		command = { type = dissent value = -2 }
		command = { type = money value = 4000 }
		command = { type = domestic which = free_market value = 1 }
		command = { type = construct which = ic where = -20 value = -14 }
	}
		action = {  trigger = { IC = 50 NOT = { IC = 80 } money = 800 }
		ai_chance = 30
		name = "9000030a"
		command = { type = dissent value = -0.5 }
		command = { type = money value = 800 }
		command = { type = construct which = ic where = -20 value = -5 }
	}
	action = {  trigger = { IC = 50 NOT = { IC = 80 } money = 1600 }
		ai_chance = 30
		name = "9000030b"
		command = { type = dissent value = -1 }
		command = { type = money value = 1600 }
		command = { type = construct which = ic where = -20 value = -8 }
	}
	action = {  trigger = { IC = 50 NOT = { IC = 80 } money = 3200 }
		ai_chance = 40
		name = "9000030c"
		command = { type = dissent value = -2 }
		command = { type = money value = 3200 }
		command = { type = domestic which = free_market value = 1 }
		command = { type = construct which = ic where = -20 value = -10 }
	}
	
	action = {  trigger = { IC = 15 NOT = { IC = 50 } money = 600 }
		ai_chance = 30
		name = "9000030a"
		command = { type = dissent value = -0.5 }
		command = { type = money value = 600 }
		command = { type = construct which = ic where = -20 value = -5 }
	}
	action = {  trigger = { IC = 15 NOT = { IC = 50 } money = 1200 }
		ai_chance = 30
		name = "9000030b"
		command = { type = dissent value = -1 }
		command = { type = money value = 1200 }
		command = { type = construct which = ic where = -20 value = -6 }
	}
	action = {  trigger = { IC = 15 NOT = { IC = 50 } money = 2400 }
		ai_chance = 40
		name = "9000030c"
		command = { type = dissent value = -2 }
		command = { type = money value = 2400 }
		command = { type = domestic which = free_market value = 1 }
		command = { type = construct which = ic where = -20 value = -8 }
	}	
	
	action = {  trigger = { NOT = { IC = 15 } money = 300 }
		ai_chance = 30
		name = "9000030a"
		command = { type = dissent value = -0.5 }
		command = { type = money value = 300 }
		command = { type = construct which = ic where = -20 value = -2 }
	}
	action = {  trigger = { NOT = { IC = 15 } money = 600 }
		ai_chance = 30
		name = "9000030b"
		command = { type = dissent value = -1 }
		command = { type = money value = 600 }
		command = { type = construct which = ic where = -20 value = -4 }
	}
	action = {  trigger = { NOT = { IC = 15 } money = 1200 }
		ai_chance = 40
		name = "9000030c"
		command = { type = dissent value = -2 }
		command = { type = money value = 1200 }
		command = { type = domestic which = free_market value = 1 }
		command = { type = construct which = ic where = -20 value = -5 }
	}	
}
 
Last edited:

Limith

Modding for Myself
18 Badges
Apr 7, 2010
3.740
369
  • Darkest Hour
  • Deus Vult
  • East India Company
  • Europa Universalis III Complete
  • Divine Wind
  • Crusader Kings II
  • Heir to the Throne
  • Rome: Vae Victis
  • Rome Gold
  • Sword of the Stars
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Stellaris Sign-up
  • 500k Club
  • Victoria 2
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV
I just lost all of my research notes from This page, everything past Yuan Shikai's Imperial Enthronement (stupid notepad not saving, why I did not have it set to NP++ by default...argh). If anyone could add on notes to what I have below, that would be awesome. If not, I'll redo the research when I need it I guess.

Code:
TODO: Make relations with western powers much more negative
July 1914: Chinese Revolutionary Party
TODO: Becoming Imperial, remove HoG. Ping Zhen Yuan Org is Minister of Security. Yuan Shi Tai Org is Ministry of Intelligence
TODO: Wang Zhiqing Death (Bribery Law) decision
TODO: Resignation of Ministers: Xu Shichang, Li Jingyi, and Zhang Jian once NPA starts.
TODO: CAI E was NOT the leader of Yunnan prior to National Protection war!! Add event a few days after with "Return of Cai E".
TODO: Failed Shanghai Rebellion prior to Yunnan rebellion (add to the decision effects)
Two months back, in Oct of 1915, Chen Qimei regrouped his forces for a rebellion against Yuan Shi-kai in Shanghai. On Nov 10th, Zheng Rucheng was assassinated by Chen Qimei's gang, i.e., assassin Wang Mingshan & Wang Xiaofeng. Yang Shande succeeded Zheng Rucheng. Chiang Kai-shek proposed an attack at both Wusong Battery and Longhua Battery plus control of Navy warships in Huangpu River. On Dec 5th, uprising aborted when only one warship, Zhaohe-jian, echoed the rebels on the Huangpujiang River in Shanghai Bund. Li Dongfang claimed that Captain Huang Mingqiu of Zhaohe-jian Warship deliberately went ashore to attend the reception party for Sa Zhenbing so as to avoid the promised uprising. Hence, Yang Hu led 30 people onto the ship but had to hammer open the ammunition cabin. Revolutionaries failed to acquire the skills to launch shelling. Another boat of revolutionaries failed to obtain the license from the customs to go into Huangpu River. Warships Yingrui & Tongji, having at first refused to shell Zhaohe, would be forced to attack Zhaohe. Later, Chen Kejun and about a dozen people who stranded on Zhaohe Warship due to heavy injuries were killed by Yuan Shikai cronies. On the shore, Wu Zhongxing took over telegraph building and one police bureau. Chen Qimei and Chiang Kai-shek slipped away from Yuyangli Lane headquarter when they heard Chen Guofu intentionally argued with French police downstairs. Chen Guofu and a few were arrested by French. Li Dongfang claimed that altogether 300 revolutionaries took part in action, with over twenty having sacrificed their lives. Chen Jieru memoirs claimed that Chiang Kai-shek believed that this aborted rebellion had helped propel the nationwide struggles against Yuan Shi-kai's imperial enthronement.


Postwar:
Re-convening of Parliament & Revival Of Parties
On August 1st of 1916, the Parliament was reconvened in Peking, with Wang Jiangxiang and Wang Zhengting in charge of 138 attendants in Upper House, and Tang Hualong and Chen Guoxiang in charge of 318 in Lower House. Li Yuanhong swore his allegiance to the Constitution as the new president of ROC. Cabinet ministers like Duan Qirui (field army), Chen Jintao, and Cheng Biguang (navy) etc also participated in the opening ceremony.
In Guangdong & Shanghai area, KMT still retained its influence even though Chen Qimei was assassinated by Yuan Shi-kai's cronies. After republic restoration war, 'Progressive Party' extended its influence into Guangdong Province when Lu Rongting invited over Liang Qichao. In Sichuan-Guizhou-Yunnan provinces, Liang Qichao's Progressive Party were active in its expansion. KMT already split into two factions, i.e., Sun Yat-sen's Chinese Revolutionary Party and 'KMT European War Research Society'. Huang Xing etc opposed Sun Yat-sen's new party for its stringent requirements like i) fingerprinted membership and ii) oath of personal loyalty to Sun Yat-sen. (KMT European War Research Society, before the outbreak of WWI, had called for a cessation of struggles against Yuan Shi-kai for sake of concerted efforts in countering Japan's 21 Demands. It would be Li Genyuan who led the call in the name of 28 senior ex-KMT leaders, including Cheng Qian, Chen Jiongming and Zhang Shizhao etc. Huang Xing had left Japan for US by that time after Sun Yat-sen requested with him for a time period of 2 years to go the way of "Chinese Revolutionary Party".)
Progressive Party members advocated no partisanship after the death of Yuan Shi-kai. After the Parliament reconvened, Progressive Party split into Tang Hualong's constitutional discussions society and Liang Qichao's constitutional research society. The two factions later converged into 'Research Lineage'. KMT European War Research Society transformed into Zhang Ji's constitutional consultative society which split into three more factions headed by Zhang Ji, Sun Hongyi and Lin Sen/Ju Zheng, respectively. Out of the four ex-KMT organizations would ensue "politics studies society" (Gu Zhongxiu/Zhang Yao), "people's friends society", and "politics leftover club".
On August 10th, Li Yuanhong called upon all factions and parties to possess same heart as well as uphold the governance. Also in August Cai E assumed the posts of both governor-general and governor of Sichuan Prov. On Oct 30th, Parliament added Feng Guozhang [i.e., military leader of Zhi-xi faction] as the vice-president of the ROC.
In Oct of 1916, Japan had a cabinet change, and the new prime minister purportedly advocated for friendship with China. Japanese foreign minister invited China's minister-envoy Zhang Zongxiang for a secret talk and promised to give loans to China. Zhang Zongxiang relayed the message to Cao Rulin, and Cao Rulin persuaded Duan Qirui into the new policy of 'pacifying the outsider before quelling the internal enemies'. Duan Qirui hence reversed Yuan Shi-kai's policy of befriending remote powers like Britain and US, in preference for friendship with Japan. China's State Council, without notifying the president, dispatched Cao Rulin to Japan as a special emissary. When Cao Rulin presented to Li Yuanhong a paper for conferring lordship onto Japanese emperor, Li Yuanhong rebuked the treachery and adopted Zhang Guofu's advice in having the Parliament debate the issue. Duan Qirui, for sake of obtaining secret Japanese loans, would compromise with the Parliament as well as Japan in dispatching a non-Japanophile minister to Japan on Feb 27th of 1917. 

-Add diplomatic recognition problems with the west
Land Reform acts
Chinese Reorganization Gold Loan of 1913

1925 - Shanghai Incident, ten dead.
1926 - 3-18 Incident, (early chance of war)
1928 - Jiannan Incident, 1000 chinese soldiers died (early chance of war)

1914 OOB
Dong Bei:
Wuwei-jun (Imperial/Zhili)
6 Divisions: Frontal, Hind, Left, Right, Middle, New.
Ma Yuekun, Nie Shicheng, Yuan Shikai, Dong Fuziang Duang Zhigui, (Front + Left are experienced)


Nepotist Generals (Imperial):
UCH: Li Hongzhang
Wang Shizhen
Duan Qirui
Feng Guozhuang
Duang Zhigui
Cao Kun
Li Chun
Wang Zhangyuan
Lu Jiangzhuang
Yang Yongde
Lu Yongxiang
Bao Guiqing
Zhang Huaizhi

Imperial Officers:
Zheng Rucheng
Yang Xiaochuan
Hong Shuzu
Zhu Zhanyuan

Imperial Ministers:
Ni Sichong
Zhang Xun
Jiang Guiti

Yang Du
Sun Yujun
Yan Fu
Liu Shipei
Li Xiehe
Hu Ying
Huai-Jun (Hubei-Jiangsu):
Zhang Zhidong (governor of Hubei-Jiangsu)
2 Divisions.
Hubei Lujun led by ?
Jiangsu Lujun led by ?

Nepotist Generals (Huai):
Jiang Guiti
Zhang Xun
Ni Sichong
Meng Enyuan

?-Jun (Guangxi)
Led by Zhang Mingqi
Mix of Infantry and Militia
Talented Generals (Guangxi):
Zhuang Yunkuan
Niu Yongjian
Wang Xiaozhen
Li Shucheng
Sun Mengji
Cai E
Yi Changheng
Geng Yi
Zhao Hengti - went to Guiling, part of Xinhai revolution. Loyal to the cause
Untalented Generals (Guangxi)
Li Zhongren - went to Guiling, taught under Cai E, 1916 avaliable under Lu Rongting. Commanded the Infantry
Lu Rongting - untalented, Old Guangxi Clique. Lost in 1921 invasion of Guangdong.

?-Jun (Hunan)
Led by Tan Yankai

Talented Generals (Guangdong):
Chen Jiaoming

Talented Generals (Guiling):
Bai Chongxi - pretended to be 15 years old, too young to enter academy, scored 6th among 1,700 examinees).

Ye Quan Jun - Yunnan and NPA (Yunnan, Cai E)
Led by Tang Jiyao, later made governor of Guizhou.
Xiong Kewu was a KMT-sympathyzing warlord who rebelled in 1913. Don't know fate.
Xie Ruyi was an interim governor.
Liu Xianshi was an interim military leader.

Guangdong NPA:
Lin Hu - 6th Corps

Successful NPA ministers (Progressive Party):
Liang Qi-chao
Tang Hualong

? Jun - (Sichaun)
Hu Jinyi

Guizhou Autonomy and Consultancy Army (Guizhou)
Led by ?

Hubei - Locked Divisions
Guangdong - Locked Divisions
Jiangsu-Jiangxi - Not locked divisions for KMT, locked for UCH (open rebellion)
Shanghai - Chen Qimei led rebellion from Shanghai Bund
Li Liejun - Jiangxi Governor
Hu Hanmin - Anhui Governor
Bai Wenhui, Lu Rongting in 1915 - Guangdong Governor
Zhang Mingqi - Guangxi Governor, Cen Chunxuan (political), later Lin Hu (Old Guangxi Clique)
Zhang Zhidong - Hubei/Jiangsu
Tan Yankai - Henan Governor
Tang Jiyao - Guizhou Governor
Zhu Rui, Tong Baoxuan in 1915 - Zhejiang Governor

Died before 1914:
Jiang Yiwu
Yang Chunkui

Bai Lang Rebellion (10 Divisions) 1914 (early war only)
- Killed August 5th, 1914 (Add Flavor event)

-Locked divisions in 1914, Unlocked in 1915
-1914 - Have politcal debate in Parliment about Reorganization Gold Loan of 1913
Tech teams

-Beijing - North-Sea Military Academy (Infantry)
-Guangxi - Guangxi Infantry Elementry School (Japanese Doctrine) - 1906
-Guangxi - Guangxi Infantry Middle School (German Doctrine) - 1906
-Guangxi - Guiling Infantry Preparatory School - Low skill, textiles - 1907
-Yunnan - Yunnan Cadet Academy - 1909
-Hubei - Wuhan/ Wuchang Nanhu Infantry Preparatory School - 1906
-Tianjing - National Baoding Cadet Academy - 1906
-Manchuria - Military Consultancy Bureau
-Guangxi - Guangxi Consultation Bureau - 1909 (Administration)
-Shanghai - Officers Lecture & Practice School - Shut down in 1914 due to Yuan Shikai

1911- Manchu had 16 divisions of infantry and 16 militia. Manchu 8th Division of New Army Hubei uprising.
@Delanonne: Working on the OOB right now, will send you the files to playtest once I'm done.
 

delanonne

General
5 Badges
Apr 28, 2004
2.401
149
  • Hearts of Iron II: Armageddon
  • Darkest Hour
  • Europa Universalis IV
  • Hearts of Iron III
  • 500k Club
Limith OK I will wait for them to be ready. Yes notepad kinda sucks. :cool: So you did get my email right? It will help a bit with what you are doing especially the Commies. It is the result of hours of sifting through websites and books. Good luck,
d
 

Limith

Modding for Myself
18 Badges
Apr 7, 2010
3.740
369
  • Darkest Hour
  • Deus Vult
  • East India Company
  • Europa Universalis III Complete
  • Divine Wind
  • Crusader Kings II
  • Heir to the Throne
  • Rome: Vae Victis
  • Rome Gold
  • Sword of the Stars
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Stellaris Sign-up
  • 500k Club
  • Victoria 2
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV
Below is China's 1914 OOB. If anyone finds fault with it, feel free to improve anything with extrapolated or ??? (some of the extrapolated stuff is accurate aside from army names). Anything without extrapolated is accurate/complete.
Code:
 # 1914 China OOB (Partially Extrapolated). Around 50 divisions in China total.
 # 23 Divisions were in Beiyang control.
 # Special thanks to research by Delanonne.
 # Wu-wei Jun: Based around Manchuria, Loyal to Yuan Shikai. Later joins the Zhili Clique under Cao Kun.
 landunit = 
 {
   location = 1247 # Beijing 
   name   = "Wu-wei Jun"  
#   leader = # Yuan Shikai 
   id    = {   type = 22000 id = 10000  }  
   Division = 
   {
    experience = 20
    id     = {   type = 22000 id = 10001   }  
    name    = "Frontal Division" #Led by Ma Yuekun
    type    = infantry  
    model   = 3
   }
   Division = 
   {
    experience = 20  
    id     = {   type = 22000 id = 10002   }  
    name    = "Left Division" #Led by Yuan Shikai
    type    = infantry  
    model   = 3  
   }
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10003   }  
    name    = "Hind Division" #Led by Nie Shicheng
    type    = infantry  
    model   = 2  
   }
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10004   }  
    name    = "Right Division" #Led by Dong Fuziang
    type    = infantry  
    model   = 2  
   }
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10005   }  
    name    = "Middle Division" #Led by Duang Zhigui
    type    = infantry  
    model   = 2  
   }
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10006   }  
    name    = "New Division" #Led by ???
    type    = infantry
    model   = 2
   }
   
 }
 # Huai-jun: Based in Hubei-Jiangsu. Loyal to local governors/Zhang Zhidong. Are NOT warlord troops. Jiangsu supported KMT.
 landunit = 
 {
   location = 1317 # Wuhan  
   name   = "Hubei Huai-jun"  
#   leader = # ??
   id    = {   type = 22000 id = 10010  }  
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10011   }  
    name    = "Hubei Lujun" #Led by ???
    type    = infantry  
    model   = 1
	locked = yes
   }
 }
 landunit = 
 {
   location = 1337 # Nanjing 
   name   = "Jiangsu Huai-jun"  
#   leader = # ??
   id    = {   type = 22000 id = 10020  }  
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10021   }  
    name    = "Jiangsu Lujun" #Led by ???
    type    = infantry  
    model   = 1
	locked = yes
   }
 }
 # Shanghai Bund: Based in Shanghai, Loyal to Sun Zhongshan and the KMT.
 landunit = 
 {
   location = 1338 # Shanghai 
   name   = "Shanghai Mingzhongjituan"  
#   leader = # Chen Qimei
   id    = {   type = 22000 id = 10030  }  
   Division = 
   {
    experience = 40
    id     = {   type = 22000 id = 10031   }  
    name    = "Shanghai Mingbin" #Led by Chen Qimei
    type    = militia
    model   = 0
	locked = yes
   }
 }
 # Jiangxi-jun: Based in Jiangxi. Loyal to local governors/Li Liejun. Are NOT warlord troops. Supported KMT.
 landunit = 
 {
   location = 1352 # Nanchang 
   name   = "Jiangxi Difangjun"  
#   leader = # ??
   id    = {   type = 22000 id = 10040  }  
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10041   }  
    name    = "Jiangxi Lujun" #Led by ???
    type    = infantry
    model   = 1
	locked = yes
   }
 }
 # Anhui: Loyal to Duan Qirui
 landunit = 
 {
   location = 1340 # Hefei
   name   = "Second Corps"  
#   leader = # Duan Qirui
   id    = {   type = 22000 id = 10050  }  
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10051   }  
    name    = "1st SC Division" #Led by ???
    type    = infantry  
    model   = 2
   }
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10052   }  
    name    = "2nd SC Division" #Led by ???
    type    = infantry  
    model   = 2
   }
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10053   }  
    name    = "3rd SC Division" #Led by ???
    type    = infantry  
    model   = 2  
   }
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10054   }  
    name    = "4th SC Division" #Led by ???
    type    = infantry  
    model   = 2  
   }
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10055   }  
    name    = "5th SC Division" #Led by ???
    type    = infantry  
    model   = 2  
   }
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10056   }  
    name    = "6th SC Division" #Led by ???
    type    = infantry
    model   = 2
   }
   
 }
 # Zhejiang (Extrapolated) Loyal to local governors/Tong Baoxuan. Are NOT warlord troops. Supported all factions except communists.
 landunit = 
 {
   location = 1345 # Hangzhou
   name   = "Zhejiang Difangjun"  
#   leader = # ??
   id    = {   type = 22000 id = 10060  }  
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10061   }  
    name    = "Zhejiang Lujun" #Led by ???
    type    = infantry
    model   = 1
	locked = yes
   }
 }
 # Sichuan, later joins Zhili Clique. (Extrapolated)
 landunit =
 {
   location = 1297 # Chendu
   name   = "Sichuan Difangjun"  
#   leader = # ??
   id    = {   type = 22000 id = 10070  }  
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10071   }  
    name    = "Sichuan Lujun" #Led by ???
    type    = infantry
    model   = 2
	locked = yes
   }
 }
 landunit =
 {
   location = 1299 # Chongqing
   name   = "Chongqing Mingzhongjituan"  
#   leader = # ??
   id    = {   type = 22000 id = 10080  }  
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10081   }  
    name    = "Congqing Mingbin" #Led by ???
    type    = militia
    model   = 0
	locked = yes
   }
 }
 # Shandong (Extrapolated)
 landunit =
 {
   location = 1330 # Jinan
   name   = "Shandong Renmingjun"  
#   leader = # ??
   id    = {   type = 22000 id = 10090  }  
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10091   }  
    name    = "1 Shangdong Mingbin" #Led by ???
    type    = militia
    model   = 0
	locked = yes
   }
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10092   }  
    name    = "2 Shangdong Mingbin" #Led by ???
    type    = militia
    model   = 0
	locked = yes
   }
 }
 # Fujian (Extrapolated)
 landunit =
 {
   location = 1360 # Xiamen
   name   = "Fujian Difangjun"  
#   leader = # ??
   id    = {   type = 22000 id = 10100  }  
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10101   }  
    name    = "Fujian Mingbin" #Led by ???
    type    = militia
    model   = 0
	locked = yes
   }
 }
 # Hunan (Extrapolated)
 landunit =
 {
   location = 1308 # Changsha
   name   = "Hunan Difangjun"  
#   leader = # ??
   id    = {   type = 22000 id = 10110  }  
   Division = 
   {
    experience = 0
    id     = {   type = 22000 id = 10111   }  
    name    = "Hunan Lujun" #Led by ???
    type    = infantry
    model   = 2
	locked = yes
   }
 }
 # Manchuria (Extrapolated) Warlord troops, loyal to Zhang Zuolin. Later led by Yan Xishan
 landunit =
 {
   location = 1199 # Harbin
   name   = "Dongbei Difangjun"  
#   leader = # Zhang Zuolin
   id    = {   type = 22000 id = 10120  }  
   Division = 
   {
    experience = 5
    id     = {   type = 22000 id = 10121   }  
    name    = "1 Dongbei Lujun" #Led by Zhang Zuolin
    type    = infantry
    model   = 1
	locked = yes
   }
   Division = 
   {
    experience = 5
    id     = {   type = 22000 id = 10122   }  
    name    = "2 Dongbei Lujun" #Led by ???
    type    = infantry
    model   = 1
	locked = yes
   }
   Division = 
   {
    experience = 5
    id     = {   type = 22000 id = 10123   }  
    name    = "3 Dongbei Lujun" #Led by ???
    type    = infantry
    model   = 1
	locked = yes
   }
 }
 # Guizhou (Extrapolated) Loyal to Tang Jiyao/NPA.
 landunit =
 {
   location = 1305 # Guiyang
   name   = "Guizhou Difangjun"  
#   leader = # Tang Jiyao
   id    = {   type = 22000 id = 10130  }  
   Division = 
   {
    experience = 5
    id     = {   type = 22000 id = 10131   }  
    name    = "Guizhou Lujun" #Led by Tang Jiyao
    type    = infantry
    model   = 2
	locked = yes
   }
 }
 # Shanxi (Extrapolated)
 landunit =
 {
   location = 1252 # Taiyuan
   name   = "Shanxi Mingzhongjituan"  
#   leader = # ???
   id    = {   type = 22000 id = 10140  }  
   Division = 
   {
    experience = 5
    id     = {   type = 22000 id = 10141   }  
    name    = "Shanxi Mingbin" #Led by ???
    type    = militia
    model   = 1
	locked = yes
   }
 }
 # Shaanxi (Extrapolated)
 landunit =
 {
   location = 1258 # Xi'an
   name   = "Shaanxi Mingzhongjituan"  
#   leader = # ???
   id    = {   type = 22000 id = 10150  }  
   Division = 
   {
    experience = 5
    id     = {   type = 22000 id = 10151   }  
    name    = "Shaanxi Mingbin" #Led by ???
    type    = militia
    model   = 1
	locked = yes
   }
 }
 # Henan (Extrapolated) Loyal to local governors/Tan Yankai. Are NOT warlodrd troops. Supported Wuhan faction.
 landunit =
 {
   location = 1322 # Luoyang
   name   = "Henan Difangjun"  
#   leader = # Tan Yankai
   id    = {   type = 22000 id = 10160  }  
   Division = 
   {
    experience = 5
    id     = {   type = 22000 id = 10161   }  
    name    = "Henan Lujun" #Led by Tan Yankai
    type    = infantry
    model   = 1
	locked = yes
   }
 }
 # Yunnan (Extrapolated)
#  landunit = 
# {
#   location = 1390 # Kunming  
#   name   = "Kunming Ye Quan Jun"  
#   leader = # ??
#   id    = {   type = 22000 id = 10170  }  
#   dormant = yes
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10171   }  
    name    = "1 YQ Division" #Led by ???
    type    = infantry  
    model   = 2
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10172   }  
    name    = "2 YQ Division" #Led by ???
    type    = infantry  
    model   = 1
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10173   }  
    name    = "3 YQ Division" #Led by ???
    type    = infantry  
    model   = 1
	dormant = yes
   }
# }
#  landunit = 
# {
#   location = 1292 # Ya'an 
#   name   = "Ya'an Ye Quan Jun"  
#   leader = # ??
#   id    = {   type = 22000 id = 10180  }  
#   dormant = yes
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10181   }  
    name    = "4 YQ Division" #Led by ???
    type    = infantry  
    model   = 2
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10182   }  
    name    = "5 YQ Division" #Led by ???
    type    = infantry  
    model   = 1
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10183   }  
    name    = "6 YQ Division" #Led by ???
    type    = infantry  
    model   = 1
	dormant = yes
   }
# }
 # Guangxi (Extrapolated) Loyal to Old Guangxi Clique
#  landunit = 
# {
#   location = 1378 # Guiling
#   name   = "Guangxi Difangjun"  
#   leader = # Lu Rongting
#   id    = {   type = 22000 id = 10190  }  
#   dormant = yes
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10191   }  
    name    = "1 GX Division" #Led by Li Zhongren
    type    = infantry  
    model   = 2
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10192   }  
    name    = "2 GX Division" #Led by Lu Rongting
    type    = militia 
    model   = 1
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10193   }  
    name    = "3 GX Division" #Led by ???
    type    = militia
    model   = 0
	dormant = yes
   }
# }
 # Guangdong (Extrapolated) Loyal to KMT, Sun Zhongshan
#  landunit = 
# {
#   location = 1369 # Guangzhou
#   name   = "Guangdong Difangjun"
#   leader = # Chen Jiaoming
#   id    = {   type = 22000 id = 10200  }  
#   dormant = yes
   landdivision = 
   {
    experience = 30
    id     = {   type = 22000 id = 10201   }  
    name    = "1 GD Division" #Led by Chen Jiaoming
    type    = infantry  
    model   = 2
	dormant = yes
   }
   landdivision = 
   {
    experience = 30
    id     = {   type = 22000 id = 10202   }  
    name    = "2 GD Division" #Led by ???
    type    = infantry  
    model   = 2
	dormant = yes
   }
   landdivision = 
   {
    experience = 30
    id     = {   type = 22000 id = 10203   }  
    name    = "3 GD Division" #Led by ???
    type    = infantry  
    model   = 1
	dormant = yes
   }
   landdivision = 
   {
    experience = 30
    id     = {   type = 22000 id = 10204   }  
    name    = "4 GD Division" #Led by ???
    type    = infantry  
    model   = 1
	dormant = yes
   }
# }
 # Xibei (San Ma Clique) (Extrapolated)
#  landunit = 
# {
#   location = 1264 # Lanzhou
#   name   = "1 Guyong jun"  
#   leader = # ???
#   id    = {   type = 22000 id = 10210  }  
#   dormant = yes
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10211   }  
    name    = "1 SM Guyongbin" #Led by ???
    type    = militia
    model   = 1
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10212   }  
    name    = "2 SM Guyongbin" #Led by ???
    type    = militia 
    model   = 0
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10213   }  
    name    = "3 SM Guyongbin" #Led by ???
    type    = militia
    model   = 0
	dormant = yes
   }
# }
#  landunit = 
# {
#   location = 1283 # Ge'ermu
#   name   = "2 Guyong jun"  
#   leader = # ???
#   id    = {   type = 22000 id = 10220  }  
#   dormant = yes
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10221   }  
    name    = "4 SM Guyongbin" #Led by ???
    type    = militia
    model   = 1
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10222   }  
    name    = "5 SM Guyongbin" #Led by ???
    type    = militia 
    model   = 0
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10233   }  
    name    = "6 SM Guyongbin" #Led by ???
    type    = militia
    model   = 0
	dormant = yes
   }
# }
 # Xinjiang (Extrapolated)
#  landunit = 
# {
#   location = 1281 # Urumuqi
#   name   = "Xinjiang Yuangzhenjun"  
#   leader = # ???
#   id    = {   type = 22000 id = 10240  }  
#   dormant = yes
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10241   }  
    name    = "1 Yuangzhenjun" #Led by ???
    type    = militia
    model   = 1
	dormant = yes
   }
   landdivision = 
   {
    experience = 10
    id     = {   type = 22000 id = 10242   }  
    name    = "2 Yuangzhenjun" #Led by ???
    type    = militia 
    model   = 0
	dormant = yes
   }
# }
 
Last edited:

Limith

Modding for Myself
18 Badges
Apr 7, 2010
3.740
369
  • Darkest Hour
  • Deus Vult
  • East India Company
  • Europa Universalis III Complete
  • Divine Wind
  • Crusader Kings II
  • Heir to the Throne
  • Rome: Vae Victis
  • Rome Gold
  • Sword of the Stars
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Stellaris Sign-up
  • 500k Club
  • Victoria 2
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV
My netbook's power button broke today so I can't get the mod files and send them to you delanonne. I'm working on fixing it though, I've already taken it apart and figured out what's wrong, need to buy some super glue/tape tomorrow morning to fix the switch. Worse comes to worse, I turn on the computer with a straw or something (the switch on the mb is not broken, just the external one) and never turn off my netbook. The switch's on the reverse side of the mb, so even though I took apart the netbook's back, I can't reach it well (can't figure out how to pry the mb off from the central case).
 
Last edited:

Jekolmy

Captain
82 Badges
Jan 24, 2010
440
0
  • Sengoku
  • Heir to the Throne
  • Iron Cross
  • Knights of Pen and Paper +1 Edition
  • Lead and Gold
  • Majesty 2
  • Stellaris
  • Stellaris - Path to Destruction bundle
  • Naval War: Arctic Circle
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Semper Fi
  • Cities in Motion
  • Sword of the Stars
  • Sword of the Stars II
  • Supreme Ruler 2020
  • Supreme Ruler: Cold War
  • Hearts of Iron IV: Colonel
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Hearts of Iron IV: Cadet
  • Stellaris: Galaxy Edition
  • Stellaris: Galaxy Edition
  • Hearts of Iron IV: Expansion Pass
  • Commander: Conquest of the Americas
  • Arsenal of Democracy
  • Cities in Motion 2
  • Crusader Kings II
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Hearts of Iron III: Their Finest Hour
  • Darkest Hour
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Europa Universalis III Complete
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • For the Motherland
  • Hearts of Iron III
  • Pillars of Eternity
  • Cities: Skylines - After Dark
  • BATTLETECH: Heavy Metal
I really want to play this mod, but it won't load. I followed the steps here: http://aarmod.cfuchs.net/wiki/HowToInstall
In fact I did it twice! The game runs, but it's the regular 1914 scenario, ending in 1920. It says "Arms, Armistice etc" on the loading screen.

Make sure you load the correct scenario ie AAR. It should run from '14 to '64. Otherwise I would try loading the Nepal savefile that takes you right to the end of WW1 as just prepare for WW2.
 

delanonne

General
5 Badges
Apr 28, 2004
2.401
149
  • Hearts of Iron II: Armageddon
  • Darkest Hour
  • Europa Universalis IV
  • Hearts of Iron III
  • 500k Club
My netbook's power button broke today so I can't get the mod files and send them to you delanonne. I'm working on fixing it though, I've already taken it apart and figured out what's wrong, need to buy some super glue/tape tomorrow morning to fix the switch. Worse comes to worse, I turn on the computer with a straw or something (the switch on the mb is not broken, just the external one) and never turn off my netbook. The switch's on the reverse side of the mb, so even though I took apart the netbook's back, I can't reach it well (can't figure out how to pry the mb off from the central case).

Limith no problem (mei wente) just do what you can do. Stuff happens. I would hate to be away from my desktop pc.
I will be ready when you are. Do not forget to tell me how to install it. I am not sure what you are sending or where it goes.
d
 

Burning

Arms, Armistice 'n Revolutions
33 Badges
Mar 25, 2004
2.322
3
  • Victoria 2 Beta
  • Supreme Ruler 2020
  • Victoria 2
  • Rome: Vae Victis
  • 200k Club
  • 500k Club
  • Crusader Kings II: Holy Knight (pre-order)
  • Europa Universalis III: Collection
  • Europa Universalis: Rome Collectors Edition
  • Semper Fi
  • Stellaris Sign-up
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV: Together for Victory
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Expansion Pass
  • Battle for Bosporus
  • Arsenal of Democracy
  • Europa Universalis: Rome
  • Victoria: Revolutions
  • Europa Universalis III Complete
  • Majesty 2
  • Iron Cross
  • Europa Universalis III Complete
  • Heir to the Throne
  • Hearts of Iron III
  • Divine Wind
  • Europa Universalis III
  • East India Company
  • Deus Vult
  • Darkest Hour
  • Crusader Kings II
  • Hearts of Iron II: Armageddon
I would hate to be away from my desktop pc.

I hate doing DH-development on 12.1" using a touchpad, thus, I share limiths pain. ;-)
 

Kaiser Franz

I am the Walrus
32 Badges
Aug 25, 2004
3.229
0
  • Hearts of Iron IV: Cadet
  • Stellaris: Necroids
  • Stellaris: Federations
  • Stellaris: Lithoids
  • Stellaris: Ancient Relics
  • Prison Architect
  • Stellaris: Megacorp
  • Stellaris: Distant Stars
  • Cities: Skylines - Parklife
  • Cities: Skylines - Parklife Pre-Order
  • Stellaris: Apocalypse
  • Stellaris: Humanoids Species Pack
  • Stellaris: Synthetic Dawn
  • Stellaris - Path to Destruction bundle
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Crusader Kings II
  • Stellaris
  • Crusader Kings II: Way of Life
  • Cities: Skylines
  • 500k Club
  • War of the Roses
  • Magicka
  • Hearts of Iron III
  • Europa Universalis IV
  • Darkest Hour
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Charlemagne
I've compeleted UCH ministers for Yuan, Zhili, Anhui and Fengtien domination and I am onto UCH under Sun Zongshan, however i am hitting a bit of a problem, although i could quite easily work on a Jiang Jieshi cabinet post-1925, especially after 1928, as they formed what constituted the national government, the governments that Sun organised constituted 1917-1924/25 had numerous non-KMT persons like some of the southern warlords who eventually even rebelled against him. So are you wanting me to do it as a constitutional protection war victory cabinet for UCH? If you wanta purely KMT pre-Jiang Jieshi cabinet i am finding it a bit hard as some of those who joined in the later 1917-1925 movements are already in the cabinets i've done, like Wu Tinfang for example.
 

Burning

Arms, Armistice 'n Revolutions
33 Badges
Mar 25, 2004
2.322
3
  • Victoria 2 Beta
  • Supreme Ruler 2020
  • Victoria 2
  • Rome: Vae Victis
  • 200k Club
  • 500k Club
  • Crusader Kings II: Holy Knight (pre-order)
  • Europa Universalis III: Collection
  • Europa Universalis: Rome Collectors Edition
  • Semper Fi
  • Stellaris Sign-up
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV: Together for Victory
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Expansion Pass
  • Battle for Bosporus
  • Arsenal of Democracy
  • Europa Universalis: Rome
  • Victoria: Revolutions
  • Europa Universalis III Complete
  • Majesty 2
  • Iron Cross
  • Europa Universalis III Complete
  • Heir to the Throne
  • Hearts of Iron III
  • Divine Wind
  • Europa Universalis III
  • East India Company
  • Deus Vult
  • Darkest Hour
  • Crusader Kings II
  • Hearts of Iron II: Armageddon
I suggest you avoid having duplicate ministers, as they will simply look odd, imho.

Also, for all you gamers out there:
European Version: There will be a Christmas Edition of AAR lying under your Christmas-Tree.
Anglo-American Version: Santa Claus will put a fresh Archive into your X-Mas-Socks! - Beware, they might smell like politics and war.
 

Limith

Modding for Myself
18 Badges
Apr 7, 2010
3.740
369
  • Darkest Hour
  • Deus Vult
  • East India Company
  • Europa Universalis III Complete
  • Divine Wind
  • Crusader Kings II
  • Heir to the Throne
  • Rome: Vae Victis
  • Rome Gold
  • Sword of the Stars
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Stellaris Sign-up
  • 500k Club
  • Victoria 2
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV
I suggest you avoid having duplicate ministers, as they will simply look odd, imho.

Also, for all you gamers out there:
European Version: There will be a Christmas Edition of AAR lying under your Christmas-Tree.
Anglo-American Version: Santa Claus will put a fresh Archive into your X-Mas-Socks! - Beware, they might smell like politics and war.

Duplicates will be fine Burning, it will be managed via events (ideally) so you won't notice duplicates (TY AC/Martin/DH team for wakeminister command. :D ).

On another note...anyone know if I can get a replacement Samsung N150 power slide anywhere? Stupid cheap plastic broke.

I'm used to touchpads so its fine. Developing on a touchscreen would be a nightmare imo.

I've compeleted UCH ministers for Yuan, Zhili, Anhui and Fengtien domination and I am onto UCH under Sun Zongshan, however i am hitting a bit of a problem, although i could quite easily work on a Jiang Jieshi cabinet post-1925, especially after 1928, as they formed what constituted the national government, the governments that Sun organised constituted 1917-1924/25 had numerous non-KMT persons like some of the southern warlords who eventually even rebelled against him. So are you wanting me to do it as a constitutional protection war victory cabinet for UCH? If you wanta purely KMT pre-Jiang Jieshi cabinet i am finding it a bit hard as some of those who joined in the later 1917-1925 movements are already in the cabinets i've done, like Wu Tinfang for example.
Right now (since I haven't bothered to add in every ahistoric possibility, focusing on historic), there are two options of an early war. If Sun Zhongshan is killed, the southern warlords "reform" the Nationalist party in opposition (should be a mix of Nationalist, Warlord, and Progressive Party). If Sun Zhongshan is not killed before Yuan Shikai declares the Great Chinese Empire, the southern warlords (supposed to be not under Cai E or Sun Zhongshan) declare war, starting with Yunnan, then Guangxi/Guiling. Cai E will return after a few days of this war (event not added yet), and then Sun Zhongshan will return a random amount of time afterward. Anhui (event chain also not added) will have the option of supporting UCH (very likely) after declaring independence like in real life. After a while, it will betray UCH, prompting Yuan Shikai's resignation and death, and then take over UCH. National Protection Alliance WILL splinter afterword for the first release regardless of what you do. Cai E will return to Yunnan. Guangxi will split into CHI and CGX, and central china will be under a rival KMT faction. Sun Zhongshan will be leading the Guangdong Chinese Revolutionary/Constitutional Protection government. If the player manages to unite China during this time, the government of UCH (CHI -> UCH, anyone who takes Beijing will become UCH in the future). So yes, constitutional protection war victory cabinet for UCH. Jiang Jieshi can be in it, no problems.
 
Last edited:

Falconius

First Lieutenant
62 Badges
Jan 24, 2003
220
0
Visit site
  • Crusader Kings II: Horse Lords
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Warlock: Master of the Arcane
  • 500k Club
  • Cities: Skylines
  • Europa Universalis III: Collection
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Pre-order
  • Mount & Blade: With Fire and Sword
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Europa Universalis IV: Common Sense
  • Victoria 2
  • Cities: Skylines - After Dark
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Mare Nostrum
  • Stellaris
  • Stellaris Sign-up
  • Hearts of Iron IV: Cadet
  • Europa Universalis IV: Rights of Man
  • Hearts of Iron IV: Together for Victory
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Third Rome
  • Europa Universalis 4: Emperor
  • Europa Universalis IV: Art of War
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sword of Islam
  • Darkest Hour
  • Deus Vult
  • Europa Universalis III
  • Divine Wind
  • Europa Universalis IV
  • Crusader Kings II
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Hearts of Iron III
  • Heir to the Throne
  • Europa Universalis III Complete
  • March of the Eagles
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • Europa Universalis: Rome
  • Semper Fi
Make sure you load the correct scenario ie AAR. It should run from '14 to '64. Otherwise I would try loading the Nepal savefile that takes you right to the end of WW1 as just prepare for WW2.

I'm loading Arms, Armistice Revolutions. When I load it it says Arms, Armistice Revolutions at the upper right. There is a 1914 scenario to choose. But when I choose it, the popup window that every game starts with says it will end in Dec 1920. I'm assuming that's right. Or is it? I don't notice any other differences from original Darkest Hour.
 

Limith

Modding for Myself
18 Badges
Apr 7, 2010
3.740
369
  • Darkest Hour
  • Deus Vult
  • East India Company
  • Europa Universalis III Complete
  • Divine Wind
  • Crusader Kings II
  • Heir to the Throne
  • Rome: Vae Victis
  • Rome Gold
  • Sword of the Stars
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Stellaris Sign-up
  • 500k Club
  • Victoria 2
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV
I'm loading Arms, Armistice Revolutions. When I load it it says Arms, Armistice Revolutions at the upper right. There is a 1914 scenario to choose. But when I choose it, the popup window that every game starts with says it will end in Dec 1920. I'm assuming that's right. Or is it? I don't notice any other differences from original Darkest Hour.

Set scenario enddate to the one specified in scenario. :)