Different Government Penalty HELP

gelodgreat

Prince
Joined
Oct 23, 2015
Messages
465
Location
Manila, Philippines
Can anyone help me with different government penalty? It works if example you start with reneissance era then you choose a government but after changing eras and gov the penalty gives higher penalty. And it seems that it doesnt work but is should

UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_AUTOCRACY';
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_OLIGARCHY';
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_CLASSICAL_REPUBLIC';
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_MONARCHY';
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_THEOCRACY';
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_MERCHANT_REPUBLIC';
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_FASCISM';
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_COMMUNISM';
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_DEMOCRACY';

-- JFD Governments you can remove this lines below if you're not playing with JFD's Rule of Faith
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_JFD_ABSOLUTE_MONARCHY';
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_JFD_CONSTITUTIONAL_MONARCHY';
UPDATE Governments SET OtherGovernmentIntolerance = -0.1 WHERE GovernmentType='GOVERNMENT_JFD_NOBLE_REPUBLIC';
 
The changes do not seem to appear in database:
upload_2016-11-10_7-55-49.png



Are you applying this to a new game or a saved? Also, have you tried clearing the cache then loading? I have to work all day today, but if you haven't found answer I will try to look again tonight.
 
Last edited:
I'm not sure about your mod, I just added the lines of code to one of my mods to check if they worked. So I can just say the code itself works.
If your mod only consists of those lines, then it should work, if you have other entries also, I can't say without seeing them all.

Are you starting a new game when you test?


can u share me your code that works?

yes i always start a new game when testing mods
 
I just copied and pasted from your post and pasted into one of my sqls.
Spoiler :
Code:
UPDATE Governments SET OtherGovernmentIntolerance = 0 WHERE GovernmentType='GOVERNMENT_AUTOCRACY';
UPDATE Governments SET OtherGovernmentIntolerance = 0 WHERE GovernmentType='GOVERNMENT_OLIGARCHY';
UPDATE Governments SET OtherGovernmentIntolerance = 0 WHERE GovernmentType='GOVERNMENT_CLASSICAL_REPUBLIC';
UPDATE Governments SET OtherGovernmentIntolerance = 0 WHERE GovernmentType='GOVERNMENT_MONARCHY';
UPDATE Governments SET OtherGovernmentIntolerance = 0 WHERE GovernmentType='GOVERNMENT_THEOCRACY';
UPDATE Governments SET OtherGovernmentIntolerance = 0 WHERE GovernmentType='GOVERNMENT_MERCHANT_REPUBLIC';
UPDATE Governments SET OtherGovernmentIntolerance = 0 WHERE GovernmentType='GOVERNMENT_FASCISM';
UPDATE Governments SET OtherGovernmentIntolerance = 0 WHERE GovernmentType='GOVERNMENT_COMMUNISM';
UPDATE Governments SET OtherGovernmentIntolerance = 0 WHERE GovernmentType='GOVERNMENT_DEMOCRACY';

I didn't copy the JFD government lines since not using that mod.
 
Back
Top Bottom