Hearts of Iron IV

Hearts of Iron IV

View Stats:
Itadakimasu Mar 12, 2018 @ 5:56am
Confirmed a bug in "draft dodging crisis"
I have exactly the same issue with this guy: https://www.reddit.com/r/hoi4/comments/831ybj/how_do_i_get_rid_of_the_draft_dodge_national/

I choose "Military crackdown" instead of "increasing living standard", because I don't have enough political power to do the 2nd one. After that, I can only hopelessly see the draft dodging level increased to the "widespread draft dodging" level.

Is there anyway I can remove this national spirit?
Last edited by Itadakimasu; Mar 12, 2018 @ 7:38am
< >
Showing 1-5 of 5 comments
Itadakimasu Mar 12, 2018 @ 6:55am 
I just digout it's source code in stability_events.txt, I think I must encoutered some weired bugs, which cause the result of solution never poped up. The decision panel keep telling me "you need to resolve the crisis" while I can't find any way to resolve it
Itadakimasu Mar 12, 2018 @ 7:30am 
OK, I just find a possible reasion why I encounter this issue, see the code below for the option "miliaty crack down".

My stablity is just exactly 30%, which is "0.3". This cause the condition didn't fall in any "if" branch(1 of them is "> 0.3", other is "< 0.3"). Which cause my decision just cause no effect.
There should be a "= 0.3" condition branch.


option = { #military crackdown level 1
trigger = {
NOT = {
OR = {
has_idea = draft_dodging_2
has_idea = draft_dodging_3
}
}
}
ai_chance = {
base = 50
modifier = {
has_stability < 0.4
factor = 0
}
modifier = {
has_political_power > 100
factor = 0.5
}
}
name = stability.21.d
add_political_power = -75
custom_effect_tooltip = 15_days_tt
set_country_flag = crisis_solution_in_progress
if = {
limit = {
has_stability > 0.3
}
random_list = {
60 = { country_event = { id = stability.31 days = 15 } } #success
40 = { country_event = { id = stability.32 days = 15 } } #failure
}
}
if = {
limit = {
has_stability < 0.3
}
random_list = {
60 = { country_event = { id = stability.31 days = 15 } } #success
30 = { country_event = { id = stability.32 days = 15 } } #failure
5 = { country_event = { id = stability.33 days = 15 } } #civil war
}
}
}


danijel84 Jun 14, 2018 @ 2:26pm 
Is there any effective solution to this?
GoldenTalon (Banned) Jun 14, 2018 @ 9:05pm 
A screwy "feature" added in WtT
Itadakimasu Jun 23, 2018 @ 6:13am 
Originally posted by danijel84:
Is there any effective solution to this?
I modified my stablity to 31% using the console command in order to dodge this issue. Thanks god I have a save right before making the choice. But if you have already made the choice, I think the only solution is maybe using some kind of console command to terminate this event
< >
Showing 1-5 of 5 comments
Per page: 1530 50

Date Posted: Mar 12, 2018 @ 5:56am
Posts: 5