Belief unique

Feagle7

Chieftain
Joined
Oct 6, 2016
Messages
5
How to make belief unique for civ?
For example BELIEF_MOSQUE to Arabia.

I try code for belief but it's not working
UPDATE Beliefs SET TraitType='TRAIT_CIVILIZATION_BUILDING_MADRASA' WHERE BeliefType='BELIEF_MOSQUE';

Same code works for units and buildings, but traittype requerement doesnt work for belief.
 
Last edited:
Table "Beliefs" has only the following valid columns
Code:
"BeliefType"		The Tag-Name that identifies the belief to the game: like "BELIEF_DANCE_OF_THE_AURORA". The Tag-Name used must be unique to any other tag-name already added to the table for column "BeliefType".
"Name"			The reference to the Localization key for the InGame name of the Belief, like "LOC_BELIEF_DANCE_OF_THE_AURORA_NAME"
"Description"		The reference to the Localization key for the InGame description of the Belief's effect, like "LOC_BELIEF_DANCE_OF_THE_AURORA_DESCRIPTION"	
"BeliefClassType"	The reference to the Type of belief, such as "BELIEF_CLASS_PANTHEON"
There is no column in the table called "TraitType" so attempting to use such a column-name with that table merely results in a databasing error and the game does nothing with the offending code.

Long Story Short -- what you want to do is not possible.
 
Back
Top Bottom