historix69
Emperor
- Joined
- Sep 30, 2008
- Messages
- 1,412
To support capitals when starting close to other players : Palace gives +25 Loyalty per Turn
(Adjust value if 25 is not enough.)
Note :
Code is based on Monument Loyalty.
Additional Note :
The Mod must be active when the Palace buildings are created in turn 0 or 1 to give the Palace the Loyalty Buff. Adding the mod later (unfortunately) does not change the existing palace buildings in a game.
(Adjust value if 25 is not enough.)
Code:
insert into BuildingModifiers (BuildingType, ModifierId)
values ("BUILDING_PALACE", "PALACE_LOYALTY");
insert into Modifiers (ModifierId, ModifierType)
values ("PALACE_LOYALTY", "MODIFIER_SINGLE_CITY_ADJUST_IDENTITY_PER_TURN");
insert into ModifierArguments (ModifierId, Name, Value)
values ("PALACE_LOYALTY", "Amount", "25");
Note :
Code is based on Monument Loyalty.
Additional Note :
The Mod must be active when the Palace buildings are created in turn 0 or 1 to give the Palace the Loyalty Buff. Adding the mod later (unfortunately) does not change the existing palace buildings in a game.
Last edited: