Modding calendar

Jarogniew

Chieftain
Joined
Oct 26, 2014
Messages
6
Quick question. How can I change the ingame calendar (I mean actual name only) from Anno Domini (AD) to some random of my own choice, say I want to create completely new one which is not going to be connected with our time count.
 
You're more likely to get a useful reply from the modding community.

Moderator Action: Moved to Creation & Customization forum.
 
Its a basic Text edit in the language files:-

SQL:
Code:
UPDATE Language_en_US SET Text ='[COLOR="Red"]AD[/COLOR]' WHERE Tag = 'TXT_KEY_TIME_AD';
UPDATE Language_en_US SET Text ='[COLOR="Red"]BC[/COLOR]' WHERE Tag = 'TXT_KEY_TIME_BC';

Change what is in Red to what you want.
 
Thanks Horem!
That is really simple. I have been doing just the same mistake over and over again. You have pointed me the right way.
Actually I was trying to create something like this
Code:
UPDATE Language_en_US SET Text ='{1_Date: number #} New Galactic Era' WHERE Tag = 'TXT_KEY_TIME_AD';
UPDATE Language_en_US SET Text ='{1_Date: number #} Before Landing' WHERE Tag = 'TXT_KEY_TIME_BC';

You are the best man. Thank you :goodjob:
 
Top Bottom