Anything wrong with this cheat event (because after putting it the game loading events has slowed to a crawl or something), and if so can somebody fix it?
Code:country_event = { id = 80002 is_triggered_only = yes title = "Mine Eyes Have Seen The Glory Of The Coming Of The Lord!" desc = "An amateur songwriter in our nation has written a song glorifying our military and our jingoism. It is rapidly spreading across the nation, and we are wondering if we should officially distribute it. Doing such an action would endear the entirety of the population to its attitude, which would certainly help the military." picture = "Wagner" option = { name = "Such a voice must be heard throughout the land!" badboy -50 any_pop = dominant_issue = { value = jingoism factor = 100 } } }
I'm going with your desc being too large. comment it out and put in a smaller desc line and see if that works. alsoby not following programming convention with your brackets it is difficult to read. try changin your option to this:
Code:
option = {
name = "Such a voice must be heard throughout the land!"
badboy -50
any_pop = {
dominant_issue = {
value = jingoism
factor = 100
}
}
}
Last edited: