Hi Sultan Suleyman,
Welcome to the Org 
I hope you realise that once you start modding MTW, both you and your life will be changed forever 
I'll do the easy bit first:
To change the dates in the game you need to open up /campmap/startpos/[ERA].txt
where [ERA] is either VIKING, EARLY, HIGH or LATE.
Then find this section (example from VIKING.TXT):
[QUOTE]//========================================
//Start Date and Period
//The year in which this campaign will
//begin and the time-period in which this
//campaign is set.The year can be any date
//and the period can be EARLY, HIGH or LATE
//========================================
SetStartDate:: 793
SetPeriod:: EARLY
SetEarlyPeriodStartDate:: 793
SetHighPeriodStartDate:: 1205
SetLatePeriodStartDate:: 1321
// And the games End date..
SetGameEndDate:: 1066
//========================================
The bit to change the end date is in bold, but I'm sure you've worked that out already. Note the EARLY, HIGH and LATE files don't show an end date, but it should work if you have the Viking Invasion version and just add the extra line of text. You will need to change ALL THREE files if you want the game to end later whatever period you start in (although if you just want to make it end later if you start in LATE, say, then you can just change that one).
Changing titles like 'Sir', 'Don' etc is a little more involved...
If you open up /loc/eng/NAMES.TXT, there is a section like this: (assuming you're using an English-language version of the game, if not the 'eng' folder will have a different name)
Code:
//Forenames & Surnames for constructed names.
//
// titles
["Sir"] {"Sir "}
["Don"] {"Don "}
["Lord"] {"Lord "}
["Amir"] {"Amir "}
["Captain"] {"Captain"}
["Prince"] {"Prince "}
["King"] {"King "}
["Princess"] {"Princess "}
["Emperor"] {"Emperor "}
["Sultan"] {"Sultan "}
The first column is a LABEL, the second is the TRANSLATION. If you wanted to, say change 'Amir' to 'Emir' you can change the line to read:
and then all Amirs will be caled Emirs instead. This will affect ALL FACTIONS THAT USE THE TITLE.
For things like 'Lord Henry Plantagenet', though, things start to get even more complicated. In MTW, a full name such as 'Henry Plantagenet' is created in two parts - the forename and the surname. These are handled seperately, and once a character is given a title, the title ('Lord' etc) replaces the forename.
It is possible to change this so you get 'Lord Henry Plantagenet', but it involves a lot of work, although the basic idea is simple: you would need to set up the surname as a compound name 'HenryPlantagenet' and the forename as a blank. In NAMES.TXT the surname would then be translated like this:
["HenryPlantagenet"] {"Henry Plantagenet"}
Each faction's forename and surname list is found in the file /campmap/names/DEFAULT_HEROES.TXT (or VIKINGS.TXT, for that era)
This file has numerous lists of names and each faction is pointed to the right list
SET_SURNAMES:: FN_ENGLISH 1
The list is further down the file:
// 1: english_surnames
ADD_SURNAMES::
"Plantagenet"
"Howard"
"Cromwell"
"Pole"
"Talbot"
"Stanley"
"Roos"
"Mobray"
"Grey"
etc
etc
NOW if you change the first Plantagenet to HenryPlantagent, your ENTIRE ROYAL FAMILY would be called Henry (and your Kings would become 'King blank')... probably not the best outcome.
All in all, there are a lot of potential problems in there, but it could be done. However, you will need to set up a HUGE list of surnames - make a compound name of every possible forename + every possible surname and add them to the surname list. Then work through all the errors it produces, one by one....
OK, hope that gives you some pointers - with modding remember to make back ups of everything, even back ups of back ups.... better still make mods in a totally seperate install of the game, and start small. Make a small change, test it, move on when you know it works. And go through the forums here, as well. Most modding questions have been answered somewhere or other, though you may have to go back a long way to find some things. There are a few guides that have been made. It may be worth starting with one of these and checking to see if you get the same results. Good luck
Bookmarks