Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1.  
  2.  
  3. if = {
  4. limit = {
  5. has_government = communism
  6. }
  7. set_country_flag = oppression_communism
  8. }
  9. if = {
  10. limit = {
  11. has_government = neutrality
  12. }
  13. set_country_flag = oppression_neutrality
  14. }
  15. if = {
  16. limit = {
  17. has_government = democratic
  18. }
  19. set_country_flag = oppression_democratic
  20. }
  21. if = {
  22. limit = {
  23. has_government = fascism
  24. }
  25. set_country_flag = oppression_fascism
  26. }
  27.  
  28. #####<><><><><>#######<><><><><><><><><><<>>><<>>######
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51. every_other_country = {
  52. limit = {
  53. AND = {
  54. OR = {
  55. tag = POL
  56. tag = ROM
  57. tag = BUL
  58. tag = YUG
  59. tag = GRE
  60. }
  61. OR = {
  62. has_government = neutrality
  63. has_government = democratic
  64. }
  65. }
  66. }
  67.  
  68. CZE = { add_to_faction = PREV}
  69. }
  70.  
  71.  
  72.  
  73.  
  74. CZE = {
  75. puppet = HUN
  76. }
  77.  
  78. HUN = {
  79. set_rule = {
  80. can_not_declare_war = yes
  81. can_decline_call_to_war = yes
  82. can_be_called_to_war = yes
  83. units_deployed_to_overlord = no
  84. can_declare_war_without_wargoal_when_in_war = no
  85.  
  86. }
  87.  
  88.  
  89.  
  90. multiply_variable = {
  91. var = HUN_valtozo_democratic
  92. value = 100
  93. }
  94. multiply_variable = {
  95. var = HUN_valtozo_fascism
  96. value = 100
  97. }
  98. multiply_variable = {
  99. var = HUN_valtozo_neutrality
  100. value = 100
  101. }
  102. multiply_variable = {
  103. var = HUN_valtozo_communism
  104. value = 100
  105. }
  106.  
  107.  
  108.  
  109. ############################
  110.  
  111. set_variable = {
  112. var = HUN_valtozo_democratic00
  113. value = HUN_valtozo_democratic
  114. }
  115. set_variable = {
  116. var = HUN_valtozo_neutrality00
  117. value = HUN_valtozo_neutrality
  118. }
  119. set_variable = {
  120. var = HUN_valtozo_communism00
  121. value = HUN_valtozo_communism
  122. }
  123. set_variable = {
  124. var = HUN_valtozo_fascism00
  125. value = HUN_valtozo_fascism
  126. }
  127.  
  128.  
  129. ####<><><><><><><>
  130.  
  131. add_to_variable = {
  132. var = HUN_valtozo_democratic00
  133. value = HUN_valtozo_neutrality00
  134. }
  135. add_to_variable = {
  136. var = HUN_valtozo_democratic00
  137. value = HUN_valtozo_communism00
  138. }
  139. add_to_variable = {
  140. var = HUN_valtozo_democratic00
  141. value = HUN_valtozo_fascism
  142. }
  143.  
  144. set_variable = {
  145. var = diff_100
  146. value = 100
  147. }
  148.  
  149. subtract_from_variable = {
  150. var = diff_100
  151. value = HUN_valtozo_democratic00
  152. }
  153.  
  154.  
  155. set_variable = {
  156. var = new_democratic
  157. value = diff_100
  158. }
  159. add_to_variable = {
  160. var = new_democratic
  161. value = HUN_valtozo_democratic
  162. }
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176. ################################################
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184. set_politics = {
  185.  
  186. parties = {
  187. democratic = {
  188. popularity = new_democratic
  189. }
  190.  
  191. fascism = {
  192. popularity = HUN_valtozo_fascism
  193. }
  194.  
  195. communism = {
  196. popularity = HUN_valtozo_communism
  197. #banned = no #default is no
  198. }
  199.  
  200. neutrality = {
  201. popularity = HUN_valtozo_neutrality
  202. }
  203. }
  204.  
  205. ruling_party = neutrality
  206. last_election = "1934.7.17"
  207. election_frequency = 48
  208. elections_allowed = yes
  209.  
  210. }
  211. if = {
  212. limit = {
  213. has_country_flag = oppression_communism
  214. }
  215. set_politics = {
  216. ruling_party = communism
  217. }
  218. }
  219.  
  220. if = {
  221. limit = {
  222. has_country_flag = oppression_fascism
  223. }
  224. set_politics = {
  225. ruling_party = fascism
  226. }
  227. }
  228. if = {
  229. limit = {
  230. has_country_flag = oppression_democratic
  231. }
  232. set_politics = {
  233. ruling_party = democratic
  234. }
  235. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement