Page 1 of 2 12 LastLast
Results 1 to 20 of 34

Thread: Crashes and how to fix them

  1. #1

    Default Crashes and how to fix them

    Guide to crashes

    The purpose of this guide is to explain what is causing the various types of crashes to desktop (CTD) in mods and provide some advice on how to fix them.

    Before I begin I would like to point out that the best way to resolve a crash is to add the following line to your mod's .cfg file.

    Code:
    [log]
      to = logs/system.log.txt
      level = * error
    This will give you a log report which contains basic information about the crash.

    Code:
    [log]
      to = logs/system.log.txt
      level=*script* trace
    This will give you a log report which contains more information about the crash.

    Code:
    [log]
       to = logs/system.log.txt
       level = ai.ltgd trace
    This will give you a log report which contains information about what the AI was doing when the crash occurred.

    Code:
    [log]
       to = logs/system.log.txt
       level=*script* trace
    This will give you a log report which contains the most information about the crash, though it's hard to read.

    Always check the error log in the 'Medieval II Total War\logs' folder to find out which file is causing problems (default location 'C:\Program Files\SEGA\Medieval II Total War\logs'). The error is usually at the bottom of the error log as they're the last thing it records before it crashes. Though some errors are recorded part way through the error log; such as a missing skeleton, a missing mount, and a building gap.

    If you think a file is causing problem change its name and see if this fixes the problem (if M2TW can't find a file it reverts to the default version). If this fixes the problem then you know this file is faulty.

    Common abbreviations:
    EBD: export_descr_buildings.txt
    EBU: export_descr_unit.txt

    Mod CTD and without starting

    CTD on startup
    Q: When you start the mod you get a black screen and the mod CTDs.

    A: There is an erronous entry in the data\unit_models\battle_models.modeldb, normally a reference to an non-existant mesh or texture, or an entry is incorrect. You won't recieve any help in the log for this so you'll have to check your entries manually.

    The easiest way to check this file is to use the 'formatted_modeldb_version2' by 'KnightErrant' here:
    http://www.twcenter.net/forums/downl...o=file&id=1180

    First format the battle_models.modeldb, then use the checking program. This will find most errors. For the remaining errors the easiest way to find them is to edit the number in the battle_models.modeldb highlighted below in red.

    Code:
    22 serialization::archive 3 0 0 0 0 985 0 0
    This number tells M2TW how many entries there are in this file. It you change it from 985 to 500 M2TW will only check the first 500 entries before starting the mod. If the error is not in the first 500 the mod will load to the splash screen (though it is likely to crash for other reasons). If the error is in the first 500 entries M2TW will still CTD.

    By changing the number it is possible to find the exact entry that is causing the problem (though you'll need to use KnightErrant's checking program to find out which unit this is).

    The only problem with changing this number is that if it is set to a number higher than the number of units in the mod it will cause a crash.

    CTD on startup vRAM
    Q: When you start the mod you get a black screen and the mod CTDs. The logs say you lack enough vRAM.

    A: There are two possible causes for this.

    1) A texture for a campaign (strategy) map unit cannot be found. This can be resolved by checking that the all the textures mentioned in the 'data\descr_model_strat.txt' file are in the 'data\models_strat\textures'.

    2) The cas file's texture is not present in an entry in the 'data\descr_model_strat.txt' file (such as 'northern_general' or 'islamic_merchant'). Each cas file has a texture assigned to it and if the cas file cannot find this texture in the entry using the cas file it will crash. There is no easy way to determine which tga the cas file wants, though Errant Knight's cas to m3sd program does tell you which tga file the cas file uses when you convert a cas file to an m3sd file and vice verse.

    Black screen CTD
    Q: When you start the mod you get a black screen and it it will not disappear unit you hit the 'return' key. Often it's replaced with a black version of the intro.

    A: This normally occurs when you sound system has been disabled. You can re-enable it by clicking on the 'Control Panel', then 'Administrative Tools', then 'Services', then scroll down in the pop-up until you find 'Windows Audio'. Starting this should fix this problem (if not reboot your computer).

    Mod loads, then CTD without starting

    Loading CTD
    Q: The game starts to load, then CTD.

    A: This usually occurs because an entry can't be found in the 'data\export_descr_buildings.txt' or 'data\export_descr_unit.txt'. The log files should tell you which unit or building is missing.

    Loading CTD after adding a new building
    Q: The game starts to load, then CTD.

    A: If the description for the building is missing in the 'data/text/export_buildings.txt' the mod won't load and the missing building won't be listed. The best way to find the missing building is to use the 'level=*script* trace' to find the last building that was processed and check the 'data\export_descr_buildings.txt' to see which building came after it.

    Loading game CTD, with Insufficient video memory error message
    Q: The game starts to load, then CTD and error log says there is 'Insufficient video memory'.

    A: This is normally caused when you tell M2TW to look for an image file that doesn't exist. The this is normally due to an error in the descr_model_strat.txt. Ensure that all the image paths (eg models_strat/textures/southern_ambasador_papacy.tga) lead to an image file (.tga) and the spelling is correct.

    If both are correct ensure that in every entry the .cas file has its .tga file assigned to one faction (without opening the cas file it's impossible to tell which tga file it needs). If this tga file is not listed in the 'descr_model_strat.txt' entry the mod will crash. For example any entry using the 'late_general_northern.CAS' has to have one faction assigned the 'late_general_england_strat.tga' or the mod will crash.

    Below is an example. The 'mesoamerican_king.cas' requires the 'mesoamerican_king_mayans.tga'. The following will produce an 'Insufficient video memory' error because the 'mesoamerican_king_mayans.tga' has not been assigned to the 'mesoamerican_king.cas'.

    Code:
    type                mesoamerican_king
       skeleton            strat_named_with_army
       scale                0.7
       indiv_range            40
       texture                aztecs, models_strat/textures/mesoamerican_king_aztecs.tga
       texture                mayans, models_strat/textures/mesoamerican_king_aztecs.tga
       texture                tlaxcalans, models_strat/textures/mesoamerican_king_tlaxcalans.tga
       texture                tarascans, models_strat/textures/mesoamerican_king_tarascans.tga
       texture                slave, models_strat/textures/mesoamerican_king_aztecs.tga
       model_flexi_m            models_strat/mesoamerican_king.CAS, max
       shadow_model_flexi        models_strat/shadow_sword.CAS, max
    But this one will work because the 'mesoamerican_king_mayans.tga' has been assigned to the 'mesoamerican_king.cas'.

    Code:
    type                mesoamerican_king
       skeleton            strat_named_with_army
       scale                0.7
       indiv_range            40
       texture                aztecs, models_strat/textures/mesoamerican_king_aztecs.tga
       texture                mayans, models_strat/textures/mesoamerican_king_mayans.tga
       texture                tlaxcalans, models_strat/textures/mesoamerican_king_tlaxcalans.tga
       texture                tarascans, models_strat/textures/mesoamerican_king_tarascans.tga
       texture                slave, models_strat/textures/mesoamerican_king_aztecs.tga
       model_flexi_m            models_strat/mesoamerican_king.CAS, max
       shadow_model_flexi        models_strat/shadow_sword.CAS, max
    CTD after removing regions
    Q: After removed most of the regions the mod CTDs. The error message just says the mod has crashed.

    A: M2TW requires a mininium of 10 regions, so try adding some more. Also you have to delete the data\world\maps\base\map.rwm file everytime you alter the data\world\maps\base\map_regions.tga file.

    CTD after adding a lot of regions
    Q: After adding a lot of new regions the mod CTDs. The error message just says the mod has crashed.

    A: M2TW cannot have more than 198 regions and 1 sea, so try deleting some. Also you have to delete the data\world\maps\base\map.rwm file everytime you alter the data\world\maps\base\map_regions.tga file.

    CTD after editing some regions, no map.rwm
    Q: After moding the map_regions.tga file, deleting the map.rwm, and selecting a faction the mod CTDs without generating a new map.rwm file. The error message just says the mod has crashed.

    A: This is caused by one of the following.
    1) One or more regions does not have a black pixel representing a settlement.
    2) One or more of the pixels is the wrong colour, causing M2TW to treat it as a new region without a settlement.
    3) One or more regions has the black pixel touching mutiple regions (it must be located inside only one region).

    To resolve the first 3 you need to ensure all the pixels are the correct colour (even a small variation that is invisible to the human eye will cause the mod to crash). To resolve the 4th problem you need to move the black pixel.

    M2TW works just fine if one or more regions by the sea does not have a white pixel representing a port.

    CTD after editing some regions, no map.rwm but map.rwm is generated if the sea is turned into land

    Q: After moding the map_regions.tga file, deleting the map.rwm, and selecting a faction the mod CTDs without generating a new map.rwm file. However a map.rwm is generated if all the sea in the 'map_heights.tga' is turned into land. The error message just says the mod has crashed.

    A: M2TW has a limit of 20 land masses per map. If there are more then 20 land masses the mod will crash. To fix this either merge the islands together or add a pixel of each island to another island, so M2TW believes they are one land mass (see this thread for more details).

    http://www.twcenter.net/forums/showt...97#post4343897

    CTD after adding some regions, map.rwm generated
    Q: After moding the map_regions.tga file, deleting the map.rwm, and selecting a faction the mod CTDs but generates a new and complete map.rwm file. The error message just says the mod has crashed.

    A: This can be caused by:
    1) The RGB (Red Green Blue) colour of a region does not matching the colour in the data\world\maps\base\descr_regions.txt (usually the problem). Fixing the incorrect entry will solve this problem.
    2) The settlement in the region is in an inaccessable area eg in a forest or up a mountain (the error log normally tells you which settlement is on an 'invalid tile'). To fix this move the black pixel elsewhere (this is mainly trial and error).
    3) You have assigned units to a settlement in the 'data\world\maps\campaign\imperial_campaign\descr_strat.txt' file but that have not added this settlement to the descr_strat file. This error also says that you have choosen an 'invalid tile' for the settlement.
    4) The region's settlement is in the sea (the error log tells you where the problem settlement is at location (0,0)). To fix this move the black pixel further inland (this is mainly trial and error).
    5) Some graphics programs cannot generate map_regions.tga files that M2TW will accept. I had this problem when I edited the map_regions.tga file using Photoshop Elements 4.0 but not when I switched to Gimp.

    Mod CTD during game, viewing the strat map

    Loading or during game CTD, with no error message
    Q: The game CTD and error log just says the mod has crashed.

    A: This is normally caused by one of the files in the data/text folder not containing all the required information. It's often the data/text/expanded.txt but not always.

    Faction selection CTD, missing region
    Q: The mod crashes CTDs when you try to play as a specific faction, error message says a province is missing.

    A: There are 4 files that deal with provinces:
    data\text\imperial_campaign_regions_and_settlement_names.txt
    data\world\maps\base\descr_regions.txt
    data\world\maps\campaign\imperial_campaign\descr_strat.txt
    data\world\maps\campaign\imperial_campaign\descr_win_conditions.txt

    The make sure the missing province appears in the first three of these and that the missing province is spelled correctly in all of them.

    CTD when nearby a region
    Q: When you get near to a region M2TW crashes. The error log says nothing.

    A: If a region is too large this can cause M2TW to crash. To fix this try breaking the region up into smaller regions.

    CTD while trying to view a settlement in a region
    Q: When you try to view a settlement in a region M2TW crashes. The error log says nothing.

    A: This can be caused by a settlement having a total religious level that is not 100. To fix this you need to open the 'data\world\maps\base\descr_regions.txt' file and change the religious levels in the problem settlment so that they are 100 in total. Then delete the 'data\world\maps\base\map.rwm' file so the changes will take effect.

    CTD while trying to view a rebel settlement in a region
    Q: When you try to view a rebel settlement in a region M2TW crashes. The error log says nothing.

    A: If a rebel settlement contains rebels that the slave faction is not allowed to have M2TW will crash (unlike other factions which are fine regardless of units in a settlement). To fix this problem open the 'data\world\maps\base\descr_regions.txt' file and find which rebels are in the problem settlement. Then open the 'data/descr_rebel_factions.txt' file, find the problem rebel group, and replace their units with units from another rebel group. Test to see if this fixes the problem. If it doesn't try a different rebel group until M2TW stops crashing. Once you've got a working rebel group you can try changing the units present to get rebels that suit the region.

    Mod CTD during game, other strat map, during first turn

    Building crash
    Q: Game crashes at the start when you try to bring up a settlement's building browser.

    A: Either this settlement starts with a building this faction cannot have (this only causes a crash at the start of the game), or there's an error in the data\export_descr_buildings.txt file regarding one of the settlement's buildings [thanks to Monkwarrior].

    Unit crash
    Q: Game crashes when you try to get the information about a unit or when you go to battle with a particular unit.

    A: The data\export_descr_unit.txt info for that unit contains an error. Make sure the tabs and spaces are in the right place, information is not missing or duplicated, and that the 'soldier' line refers to a an actual unit (try not to change this).

    Faction Crash
    Q) The mod crashes when you try to play as a particular faction and during this faction's turn. However the problem faction works fine in Custom Battles.

    A) Check that the entry for 'ai_label' in the data/world/maps/campaign/imperial_campaign/desc_strat.txt appears in the 'data/descr_campaign_ai_db.xml' [thanks to dp_best].

    Mod CTD during game, other strat map, after several turns

    Start of turn crash
    Q: The game crashes at the start of the player's turn.

    A: This can be caused by an event that is in the 'data\world\maps\campaign\imperial_campaign\campaign_script.txt' or 'data\world\maps\campaign\imperial_campaign\descr_events.txt' (default locations 'C:\Program Files\SEGA\Medieval II Total War\data\world\maps\campaign\imperial_campaign') but is not listed in the 'data/text/historic_events.txt' file. Adding this event to the 'data/text/historic_events.txt' will fix this error (this file is case sensitive).

    5th turn crash
    Q: The game crashes at the end of the fifth turn / start of the fifth turn.

    A: I actually had this error, it's not a joke. This error is caused when I tried to exclude the following trait in the data\export_descr_character_traits.txt file from a culture.

    Code:
    ;------------------------------------------
    Trait ReligionStarter
        Characters family
        Hidden
    
        Level General_Religion
            Description General_Religion_desc
            EffectsDescription General_Religion_effects_desc
            Threshold  1 
    
            Effect Piety  3 
    
    ;------------------------------------------
    Whenever one of the excluded cultures got a new general, who is supposed to automatically get this trait, the mod crashed. Excluding other hidden traits can also cause crashes.

    20th turn crash
    Q: The game crashes during the AI's turn at about turn 20 and the error log just says the mod has crashed.

    A: I had this error and it took me a long time to fix it. This error occurred because I increased the number of children allowed in the data/descr_campaign_db.xml file. When the AI's family had more than 4 children the mod crashed.

    Game crashes during the AI's turn
    Q: The game crashes during the AI's turn and the error log just says the mod has crashed.

    A: There are several possible causes:

    1) The trigger for a trait is incorrectly written. I once had this problem when the trigger's 'WhenToTest' was 'GeneralAssaultsGeneral', rather than 'PostBattle'. You can test this by deleting the triggers of all your traits in the 'data/export_descr_ancillaries.txt' and 'data/export_descr_character_traits.txt' files (create backups before doing this) and loading the mod to see if the crash stops.

    2) A culture has a trait excluded but the corrisponding 'antitrait' is not excluded. This causes a problem when a general or agent switches from a trait to its antitrait (due to a loss or gain of skill points).

    3) The mod will also crash if an agent without a name gets an Epithet. This can be fixed by changing the agent's name in the 'data\world\maps\campaign\imperial_campaign\descr_strat.txt' and restarting the mod so it uses the new name.

    Player and Slave crash

    Q: The mod crashes after 4-6 turns when the only remaining factions are the player and slave. The slave factions does not have viable victory conditions.

    A: The mod will crash if there is only one factions left with viable victory conditions but they have not achieved victory. Giving the slave factions viable victory conditions will remove this error (controlling every province is NOT a viable victory condition, nor is controlling more provinces then there are in the mod).

    Mod CTD during game, Battle map

    Battle crash, any unit
    Q: The mod crashes while loading for battle regardless of what units or factions will be fighting in the battle.

    A: Most likely there are multiple spaces in the 'data\unit_models\battle_models.modeldb' file when there should only be one or two spaces (this won't cause the mod to crash when loading, unlike a number or spelling error). Carefully checking the battle_models.modeldb file or the reverting to a backup is the only way to fix this.

    Battle crash after adding an officer to a unit
    Q: After adding an officer to a unit in the 'data/export_descr_unit.txt' the mod crashes while loading for battle regardless of what units or factions will be fighting in the battle.

    A: The officer entry must appear in the 'data\unit_models\battle_models.modeldb' file or the mod will crash. Unfortunately the error log doesn't say which officer has caused the crash so you have to search through all the entries until you find the one causing the crash. Make several backups before adding officers.

    Battle crash, specific unit
    Q: The mod crashes while loading for battle when a specific unit will be fighting in that battle.

    A: Most likely the path to the unit's mesh, texture, or sprite is incorrect in the 'data\unit_models\battle_models.modeldb' file. To fix this problem find the unit's entry in the battle_models.modeldb and check the location and name of the texture and mesh are correct (this problem may only affect one faction's unit).

    Battle crash, many units together
    Q: The mod crashes when a lot of units fight in a very small area.

    A: If too many units fight in a small area M2TW is unable to handle this and crashes (this often happens in castle sieges). Reducing the unit size can prevent this.

    Custom Battles

    Unit selection crash
    Q:The mod crashes after you select the factions you want and click next, but before the unit selection screen appears.
    A: If one of the selected factions has too many units assigned to it M2TW will crash. I have not determined the maximum number of units but I did get a faction to work with 192 units.

    Other errors that don't cause CTD

    Building gap at the end of the export_descr_buildings.txt
    Q: The error log says there is a building gap but the line number of the error is for the bottom of the 'data/export_descr_buildings.txt' .

    Code:
    00:41:51.734 [script.err] [error] Script Error in mods/conquest/data/export_descr_buildings.txt, at line 9078, column 2
      Building DB error - faction aztecs has gap in building prior to stone_wall
      00:41:51.750 [script.err] [error] Script Error in mods/conquest/data/export_descr_buildings.txt, at line 9078, column 2
      Building DB error - faction aztecs has gap in building prior to large_stone_wall
      00:41:51.750 [script.err] [error] Script Error in mods/conquest/data/export_descr_buildings.txt, at line 9078, column 2
      Building DB error - faction aztecs has gap in building prior to huge_stone_wall
      00:41:51.750 [data.invalid] [error] Target building level not allowed: Inca Empire, castle -> large_town, core_castle_building[2](castle) -> core_building[1](wooden_wall)
      00:41:51.750 [data.invalid] [error] Target building level not allowed: Inca Empire, fortress -> city, core_castle_building[2](castle) -> core_building[1](wooden_wall)
      00:41:51.750 [data.invalid] [error] Target building level not allowed: Inca Empire, citadel -> city, core_castle_building[2](castle) -> core_building[1](wooden_wall)
    A: If a faction or culture is not listed at an early level of a building tree but is listed at a later level this generate an error. Unfortunately the error log states that the error is at the end of the 'data/export_descr_buildings.txt' instead of the correct line.

    A: The easiest way to fix this error is to search the 'data/export_descr_buildings.txt' for the first building the error log lists (in this case 'stone_wall') and check the building level before it (in this case the 'wooden_wall' level of the 'core_building' building tree).

    Code:
            wooden_wall city requires factions { northern_european, middle_eastern, eastern_european, southern_european, }
    As the faction listed in the error log is the aztecs by adding them to this building level I can fix this error.

    Code:
            wooden_wall city requires factions { northern_european, aztecs, mesoamerican, middle_eastern, eastern_european, southern_european, }


    Missing Skeleton

    Q: The error log says that a skeleton is missing for a secondary weapon.

    Code:
    01:07:29.687 [script.err] [error] Script Error in mods/conquest/data/export_descr_unit.txt, at line 3149, column 1
      Missing skeleton for secondary weapon in model type 'magyar_swordsmen', used by unit 'Hungarian Crossbowmen'.
    A: The is error means that you've assigned a one weapon 'soldier' model to a two weapon unit in the 'data/export_descr_unit.txt'. The soldier models are listed at the end of every unit entry in the 'data/unit_models/battle_models.modeldb' and can give a unit one weapon or two (cavalry and missile units usually have two weapons, while melee infantry usually only has one).

    To fix this error find the problem unit ('Hungarian Crossbowmen' in this example) and change their 'soldier' line to another unit.

    For example this entry:
    Code:
    type             Hungarian Crossbowmen
      dictionary       Hungarian_Crossbowmen      ; Crossbowmen
      category         infantry
      class            skirmish
      voice_type       Light
      accent         East_European
      banner faction   main_missile
      banner holy      crusade
      soldier          magyar_swordsmen, 48, 0, 0.8
    Is edited so the 'soldier' used is now 'Crossbowmen', rather than a 'magyar_swordsmen'.
    Code:
    type             Hungarian Crossbowmen
      dictionary       Hungarian_Crossbowmen      ; Crossbowmen
      category         infantry
      class            skirmish
      voice_type       Light
      accent         East_European
      banner faction   main_missile
      banner holy      crusade
      soldier          Crossbowmen, 48, 0, 0.8
    Other
    Additional information on crashes and how to solve them is appreciated.
    Last edited by uanime5; September 13, 2009 at 08:14 PM.
    Morning Sun (adds Korea and China to the Shogun 2 map)
    http://www.twcenter.net/forums/forum...28-Morning-Sun

    Expanded Japan mod (97 new regions and 101 new factions)
    http://www.twcenter.net/forums/showt...ew-factions%29

    How to split a region in TWS2
    http://www.twcenter.net/forums/showt...split-a-region

    Eras Total Conquest 2.3 (12 campaigns from 970-1547)

  2. #2

    Default Re: Crashes and how to fix them

    The World is round crash.
    My mod crashes even though I have removed all references to the event in the campaign_script. Any ideas on where to look for a solution?

  3. #3

    Default Re: Crashes and how to fix them

    The 'data\world\maps\campaign\imperial_campaign\descr_events.txt' file contains all the events. Try removing the 'World is Round' event from it.
    Morning Sun (adds Korea and China to the Shogun 2 map)
    http://www.twcenter.net/forums/forum...28-Morning-Sun

    Expanded Japan mod (97 new regions and 101 new factions)
    http://www.twcenter.net/forums/showt...ew-factions%29

    How to split a region in TWS2
    http://www.twcenter.net/forums/showt...split-a-region

    Eras Total Conquest 2.3 (12 campaigns from 970-1547)

  4. #4

    Default Re: Crashes and how to fix them

    "Game crashes during the AI's turn
    Q: The game crashes during the AI's turn and the error log just says the mod has crashed.

    A: It's possible that the trigger for a trait is incorrectly written. I once had this problem when the trigger's 'WhenToTest' was 'GeneralAssaultsGeneral', rather than 'PostBattle'.

    Another possible cause is that a culture has a trait excluded but the corrisponding 'antitrait' is not excluded. This causes a problem when a general or agent switches from a trait to its antitrait (due to a loss or gain of skill points)."



    No such luck in my situation. http://www.twcenter.net/forums/showt...wpost&t=217750

  5. #5
    RollingWave's Avatar Praepositus
    Join Date
    Feb 2005
    Location
    Taiwan
    Posts
    5,083

    Default Re: Crashes and how to fix them

    Here's another reason that could cause the "CTD after editing some regions, no map.rwm" situation.

    having rivers that have 2x2 blocks in them. bah.
    1180, an unprecedented period of peace and prosperity in East Asia, it's technology and wealth is the envy of the world. But soon conflict will engulf the entire region with great consequences and lasting effects for centuries to come, not just for this region, but the entire known world, when one man, one people, unites.....

  6. #6
    good4eL's Avatar Civis
    Join Date
    Jul 2009
    Location
    Vladivostok
    Posts
    122

    Default Re: Crashes and how to fix them

    My last log was
    Spoiler Alert, click show to read: 
    03:12:41.932 [system.rpt] [always] CPU: SSE2
    03:12:41.934 [system.rpt] [always] ==== system log start, build date: Feb 25 2008 version development ===
    03:12:41.939 [system.io] [always] mounted pack packs/data_0.pack
    03:12:42.000 [system.io] [always] mounted pack packs/data_1.pack
    03:12:42.059 [system.io] [always] mounted pack packs/data_2.pack
    03:12:42.060 [system.io] [always] mounted pack packs/data_3.pack
    03:12:42.229 [system.io] [always] mounted pack packs/data_4.pack
    03:12:42.230 [system.io] [always] mounted pack packs/localized.pack
    03:12:42.357 [system.io] [always] mounted pack mods/holy_land/packs/data.pack
    03:12:42.359 [system.io] [always] mounted pack mods/holy_land/packs/localized.pack
    03:12:42.941 [system.io] [warning] open: mods/Holy_land/data/text/diplomacy_speech.txt.strings.bin is missing
    03:12:42.942 [system.io] [warning] open: mods/Holy_land/data/text/diplomacy_speech.txt is missing
    03:12:48.114 [data.missing] [warning] missing/invalid cursor for ANISELECT
    03:12:48.117 [data.missing] [warning] missing/invalid cursor for MODIFIER_SABOTAGE
    03:12:48.121 [data.missing] [warning] missing/invalid cursor for MODIFIER_TRADE
    03:12:48.135 [data.missing] [warning] missing/invalid cursor for DRAGGABLE
    03:12:48.135 [data.missing] [warning] missing/invalid cursor for DRAGGING
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_MULTIPLE_SELECT
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_ATTACK
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_CHARACTER
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_RESOURCE
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_FORT
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_MOVE_OBJECT
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_WATCHTOWER
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_DEPLOYMENT_AREA
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_TILE
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_SPECIAL_PIECE
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_PAINT
    03:12:48.138 [data.missing] [warning] missing/invalid cursor for MODIFIER_ADJUST_HEIGHTS
    03:12:48.139 [data.missing] [warning] missing/invalid cursor for MODIFIER_ADD_UNIT
    03:12:48.139 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_SETTLEMENT
    03:12:48.543 [system.io] [warning] open: mods/Holy_land/data/text/religions.txt.strings.bin is missing
    03:12:48.543 [system.io] [warning] open: mods/Holy_land/data/text/religions.txt is missing
    03:12:48.544 [system.io] [warning] open: mods/Holy_land/data/text/climates.txt.strings.bin is missing
    03:12:48.548 [system.io] [warning] open: mods/Holy_land/data/text/climates.txt is missing
    03:12:55.051 [system.io] [warning] open: mods/Holy_land/data/text/rebel_faction_descr.txt.strings.bin is missing
    03:12:55.059 [system.io] [warning] open: mods/Holy_land/data/text/rebel_faction_descr.txt is missing
    03:12:55.949 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    03:12:55.950 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    03:12:55.956 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    03:12:55.957 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    03:12:55.959 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    03:12:55.960 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    03:12:55.963 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    03:12:55.965 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    03:12:55.966 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    03:12:55.967 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    03:12:55.969 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    03:12:55.970 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    03:12:55.972 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    03:12:55.973 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    03:12:55.976 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    03:12:55.977 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    03:12:55.996 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    03:12:55.997 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    03:12:56.005 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    03:12:56.006 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    03:12:56.010 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    03:12:56.012 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    03:12:56.014 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    03:12:56.016 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    03:12:56.018 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    03:12:56.019 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    03:12:56.021 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    03:12:56.022 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    03:12:56.024 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    03:12:56.026 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    03:12:56.028 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    03:12:56.029 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    03:12:56.044 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    03:12:56.046 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    03:12:56.055 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    03:12:56.057 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    03:12:56.060 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    03:12:56.061 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    03:12:56.063 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    03:12:56.064 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    03:12:56.079 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10742, column 23 :
    we should only have trait(Berserker) additional affects for triggers(Battle_Losing_Berserker)
    03:12:56.079 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10742, column 23 :
    we should only have trait(Berserker) additional affects for triggers(Battle_Losing_Berserker)
    03:12:56.079 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10860, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    03:12:56.080 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10860, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    03:12:56.080 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10861, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    03:12:56.080 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10861, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    03:12:56.080 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10871, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing)
    03:12:56.080 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10871, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing)
    03:12:56.080 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10872, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing)
    03:12:56.080 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10872, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing)
    03:12:56.080 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10884, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    03:12:56.080 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10884, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    03:12:56.080 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10885, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    03:12:56.081 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10885, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    03:12:56.081 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10926, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Dread_Let_Them_Go)
    03:12:56.081 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10926, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Dread_Let_Them_Go)
    03:12:56.094 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16823, column 27 :
    we should only have trait(GoodDenouncer) additional affects for triggers(hereticinit1_denouncerclear)
    03:12:56.094 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16823, column 27 :
    we should only have trait(GoodDenouncer) additional affects for triggers(hereticinit1_denouncerclear)
    03:12:56.095 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16831, column 26 :
    we should only have trait(BadDenouncer) additional affects for triggers(hereticinit1_denouncerclear_bad)
    03:12:56.095 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16831, column 26 :
    we should only have trait(BadDenouncer) additional affects for triggers(hereticinit1_denouncerclear_bad)
    03:12:56.095 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16839, column 25 :
    we should only have trait(StrongFaith) additional affects for triggers(hereticinit1_faithclear)
    03:12:56.095 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16839, column 25 :
    we should only have trait(StrongFaith) additional affects for triggers(hereticinit1_faithclear)
    03:12:56.095 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16847, column 22 :
    we should only have trait(Purifier) additional affects for triggers(hereticinit1_purifierclear)
    03:12:56.095 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16847, column 22 :
    we should only have trait(Purifier) additional affects for triggers(hereticinit1_purifierclear)
    03:12:56.097 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17772, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_6)
    03:12:56.097 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17772, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_6)
    03:12:56.097 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17773, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(crusades_6)
    03:12:56.097 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17773, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(crusades_6)
    03:12:56.098 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17782, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_7)
    03:12:56.098 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17782, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_7)
    03:12:56.098 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17825, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_7)
    03:12:56.098 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17825, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_7)
    03:12:56.098 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17826, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(jihads_7)
    03:12:56.098 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17826, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(jihads_7)
    03:12:56.098 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17835, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_8)
    03:12:56.098 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17835, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_8)
    03:12:56.124 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/scribe_ancillary.tga
    03:12:56.126 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/security_religious.tga
    03:12:56.127 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/security_religious.tga
    03:12:56.170 [system.io] [warning] open: mods/Holy_land/data/text/export_advice.txt.strings.bin is missing
    03:12:56.400 [system.io] [warning] open: mods/Holy_land/data/text/export_advice.txt is missing
    03:12:56.837 [system.io] [warning] open: mods/Holy_land/data/text/export_prologue.txt.strings.bin is missing
    03:12:56.886 [system.io] [warning] open: mods/Holy_land/data/text/export_prologue.txt is missing
    03:12:59.165 [system.io] [warning] open: mods/Holy_land/data/text/cursor_action_tooltips.txt.strings.bin is missing
    03:12:59.171 [system.io] [warning] open: mods/Holy_land/data/text/cursor_action_tooltips.txt is missing
    03:13:13.151 [system.io] [warning] open: data/loading_screen/loading_bar.tga.dds is missing
    03:13:13.153 [system.io] [warning] open: mods/Holy_land/data/loading_screen/loading_logo.tga.dds is missing
    03:13:14.122 [system.io] [warning] open: data/loading_screen/loading_bar.tga.dds is missing
    03:13:14.227 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/normans.tga is missing
    03:13:14.227 [system.io] [warning] open: data/menu/symbols/FE_faction_units/normans.tga is missing
    03:13:14.230 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/saxons.tga is missing
    03:13:14.230 [system.io] [warning] open: data/menu/symbols/FE_faction_units/saxons.tga is missing
    03:13:14.232 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/slave.tga is missing
    03:13:14.232 [system.io] [warning] open: data/menu/symbols/FE_faction_units/slave.tga is missing
    03:13:14.246 [system.io] [warning] open: data/menu/_M2_MP_HISTORICAL_BATTLE_CHOOSE_TEAMS.TGA is missing
    03:13:14.251 [system.io] [warning] open: data/menu/TEXTURES/_M2_MAIN_MENU.TGA is missing
    03:13:15.104 [system.io] [warning] open: data/menu/buttons_composite2.tga.dds is missing
    03:13:15.116 [system.io] [warning] open: data/menu/slider_composite.tga.dds is missing
    03:13:15.116 [system.io] [warning] open: data/menu/slider_composite2.tga.dds is missing
    03:13:15.117 [system.io] [warning] open: data/menu/border_4pix_black_gold2.tga.dds is missing
    03:13:15.118 [system.io] [warning] open: data/menu/text_border.tga.dds is missing
    03:13:15.118 [system.io] [warning] open: data/menu/yellow_highlight.tga.dds is missing
    03:13:15.119 [system.io] [warning] open: data/menu/border_4pix_black_gold_selected.tga.dds is missing
    03:13:15.120 [system.io] [warning] open: data/menu/border_4pix_black_gold_black.tga.dds is missing
    03:13:15.120 [system.io] [warning] open: data/menu/_M2_Selection_Glow.tga.dds is missing
    03:13:15.121 [system.io] [warning] open: data/menu/unit_card.tga.dds is missing
    03:13:15.121 [system.io] [warning] open: data/menu/icons.tga.dds is missing
    03:13:37.257 [data.missing] [warning] Missing unit card data/ui/units/jerusalem/#Richard_the_Lionheart.tga
    03:13:42.421 [data.missing] [warning] Missing unit card data/ui/units/antioch/#Philip_King_of_France.tga
    03:13:52.290 [data.missing] [warning] Missing unit card data/ui/units/jerusalem/#Richard_the_Lionheart.tga
    03:13:53.909 [data.missing] [warning] Missing unit card data/ui/units/antioch/#Philip_King_of_France.tga
    03:14:06.266 [data.missing] [warning] Missing unit card data/ui/units/jerusalem/#Richard_the_Lionheart.tga
    03:14:25.002 [data.missing] [warning] Missing unit card data/ui/units/antioch/#Philip_King_of_France.tga
    03:15:14.104 [system.io] [warning] open: mods/Holy_land/data/world/maps/campaign/imperial_campaign/map.rwm is missing
    03:15:14.104 [system.io] [warning] open: mods/Holy_land/data/world/maps/base/map.rwm is missing
    03:15:16.707 [data.invalid] [error] File 'mods/Holy_land/data/world/maps/base/map_roughness.tga' must have dimensions 588, 454

    03:15:24.520 [system.io] [warning] open: data/loading_screen/loading_bar.tga.dds is missing
    03:15:24.521 [system.io] [warning] open: mods/Holy_land/data/loading_screen/loading_logo.tga.dds is missing
    03:15:27.314 [system.io] [warning] open: data/models_effects/building_fire_glow.cas is missing
    03:15:27.385 [system.io] [warning] open: data/models_engine/heavy_onager_torches.cas is missing
    03:15:30.879 [system.io] [warning] open: data/loading_screen/loading_bar.tga.dds is missing
    03:15:31.347 [system.rpt] [error]


    I opened "map_roughness.tga" file with GIMP editor and changed height from 453 to 454 but also automatically was changed width from 588 to 589. Then I saved changes. And now have another log
    Spoiler Alert, click show to read: 
    14:32:28.785 [system.rpt] [always] CPU: SSE2
    14:32:28.786 [system.rpt] [always] ==== system log start, build date: Feb 25 2008 version development ===
    14:32:28.837 [system.io] [always] mounted pack packs/data_0.pack
    14:32:28.886 [system.io] [always] mounted pack packs/data_1.pack
    14:32:28.909 [system.io] [always] mounted pack packs/data_2.pack
    14:32:29.049 [system.io] [always] mounted pack packs/data_3.pack
    14:32:29.091 [system.io] [always] mounted pack packs/data_4.pack
    14:32:29.106 [system.io] [always] mounted pack packs/localized.pack
    14:32:29.132 [system.io] [always] mounted pack mods/holy_land/packs/data.pack
    14:32:29.141 [system.io] [always] mounted pack mods/holy_land/packs/localized.pack
    14:32:29.894 [system.io] [warning] open: mods/Holy_land/data/text/diplomacy_speech.txt.strings.bin is missing
    14:32:29.895 [system.io] [warning] open: mods/Holy_land/data/text/diplomacy_speech.txt is missing
    14:32:51.893 [data.missing] [warning] missing/invalid cursor for ANISELECT
    14:32:52.035 [data.missing] [warning] missing/invalid cursor for MODIFIER_SABOTAGE
    14:32:52.187 [data.missing] [warning] missing/invalid cursor for MODIFIER_TRADE
    14:32:53.168 [data.missing] [warning] missing/invalid cursor for DRAGGABLE
    14:32:53.168 [data.missing] [warning] missing/invalid cursor for DRAGGING
    14:32:53.333 [data.missing] [warning] missing/invalid cursor for MODIFIER_MULTIPLE_SELECT
    14:32:53.333 [data.missing] [warning] missing/invalid cursor for MODIFIER_ATTACK
    14:32:53.333 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_CHARACTER
    14:32:53.333 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_RESOURCE
    14:32:53.333 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_FORT
    14:32:53.333 [data.missing] [warning] missing/invalid cursor for MODIFIER_MOVE_OBJECT
    14:32:53.333 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_WATCHTOWER
    14:32:53.333 [data.missing] [warning] missing/invalid cursor for MODIFIER_DEPLOYMENT_AREA
    14:32:53.333 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_TILE
    14:32:53.333 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_SPECIAL_PIECE
    14:32:53.334 [data.missing] [warning] missing/invalid cursor for MODIFIER_PAINT
    14:32:53.334 [data.missing] [warning] missing/invalid cursor for MODIFIER_ADJUST_HEIGHTS
    14:32:53.334 [data.missing] [warning] missing/invalid cursor for MODIFIER_ADD_UNIT
    14:32:53.334 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_SETTLEMENT
    14:32:59.333 [system.io] [warning] open: mods/Holy_land/data/text/religions.txt.strings.bin is missing
    14:32:59.334 [system.io] [warning] open: mods/Holy_land/data/text/religions.txt is missing
    14:32:59.335 [system.io] [warning] open: mods/Holy_land/data/text/climates.txt.strings.bin is missing
    14:32:59.339 [system.io] [warning] open: mods/Holy_land/data/text/climates.txt is missing
    14:33:25.164 [system.io] [warning] open: mods/Holy_land/data/text/rebel_faction_descr.txt.strings.bin is missing
    14:33:25.204 [system.io] [warning] open: mods/Holy_land/data/text/rebel_faction_descr.txt is missing
    14:33:34.626 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    14:33:34.635 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    14:33:34.872 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    14:33:34.874 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    14:33:34.875 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    14:33:34.877 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    14:33:34.879 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    14:33:34.880 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    14:33:34.882 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    14:33:34.883 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    14:33:34.885 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    14:33:34.886 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    14:33:34.888 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    14:33:34.890 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    14:33:34.892 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    14:33:34.893 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    14:33:34.956 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    14:33:34.964 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    14:33:35.460 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    14:33:35.462 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    14:33:35.465 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    14:33:35.467 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    14:33:35.469 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    14:33:35.471 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    14:33:35.473 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    14:33:35.475 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    14:33:35.477 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    14:33:35.478 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    14:33:35.480 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    14:33:35.481 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    14:33:35.482 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    14:33:35.484 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    14:33:36.004 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    14:33:36.005 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    14:33:36.143 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    14:33:36.144 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    14:33:36.146 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    14:33:36.148 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    14:33:36.149 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    14:33:36.151 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    14:33:36.315 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10742, column 23 :
    we should only have trait(Berserker) additional affects for triggers(Battle_Losing_Berserker)
    14:33:36.315 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10742, column 23 :
    we should only have trait(Berserker) additional affects for triggers(Battle_Losing_Berserker)
    14:33:36.315 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10860, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    14:33:36.315 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10860, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    14:33:36.315 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10861, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    14:33:36.315 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10861, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    14:33:36.315 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10871, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing)
    14:33:36.316 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10871, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing)
    14:33:36.316 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10872, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing)
    14:33:36.316 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10872, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing)
    14:33:36.316 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10884, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    14:33:36.316 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10884, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    14:33:36.316 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10885, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    14:33:36.316 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10885, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    14:33:36.317 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10926, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Dread_Let_Them_Go)
    14:33:36.317 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 10926, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Dread_Let_Them_Go)
    14:33:36.330 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16823, column 27 :
    we should only have trait(GoodDenouncer) additional affects for triggers(hereticinit1_denouncerclear)
    14:33:36.330 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16823, column 27 :
    we should only have trait(GoodDenouncer) additional affects for triggers(hereticinit1_denouncerclear)
    14:33:36.331 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16831, column 26 :
    we should only have trait(BadDenouncer) additional affects for triggers(hereticinit1_denouncerclear_bad)
    14:33:36.331 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16831, column 26 :
    we should only have trait(BadDenouncer) additional affects for triggers(hereticinit1_denouncerclear_bad)
    14:33:36.331 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16839, column 25 :
    we should only have trait(StrongFaith) additional affects for triggers(hereticinit1_faithclear)
    14:33:36.331 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16839, column 25 :
    we should only have trait(StrongFaith) additional affects for triggers(hereticinit1_faithclear)
    14:33:36.331 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16847, column 22 :
    we should only have trait(Purifier) additional affects for triggers(hereticinit1_purifierclear)
    14:33:36.331 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 16847, column 22 :
    we should only have trait(Purifier) additional affects for triggers(hereticinit1_purifierclear)
    14:33:36.333 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17772, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_6)
    14:33:36.333 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17772, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_6)
    14:33:36.333 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17773, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(crusades_6)
    14:33:36.333 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17773, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(crusades_6)
    14:33:36.334 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17782, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_7)
    14:33:36.334 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17782, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_7)
    14:33:36.334 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17825, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_7)
    14:33:36.334 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17825, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_7)
    14:33:36.334 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17826, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(jihads_7)
    14:33:36.334 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17826, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(jihads_7)
    14:33:36.334 [script.err] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17835, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_8)
    14:33:36.335 [game.script] [warning] Trigger parsing warning in mods/Holy_land/data/export_descr_character_traits.txt, at line 17835, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_8)
    14:33:36.607 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/scribe_ancillary.tga
    14:33:36.608 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/security_religious.tga
    14:33:36.610 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/security_religious.tga
    14:33:36.776 [system.io] [warning] open: mods/Holy_land/data/text/export_advice.txt.strings.bin is missing
    14:33:37.008 [system.io] [warning] open: mods/Holy_land/data/text/export_advice.txt is missing
    14:33:37.462 [system.io] [warning] open: mods/Holy_land/data/text/export_prologue.txt.strings.bin is missing
    14:33:37.503 [system.io] [warning] open: mods/Holy_land/data/text/export_prologue.txt is missing
    14:33:42.933 [system.io] [warning] open: mods/Holy_land/data/text/cursor_action_tooltips.txt.strings.bin is missing
    14:33:42.962 [system.io] [warning] open: mods/Holy_land/data/text/cursor_action_tooltips.txt is missing
    14:34:09.901 [system.io] [warning] open: data/loading_screen/loading_bar.tga.dds is missing
    14:34:09.919 [system.io] [warning] open: mods/Holy_land/data/loading_screen/loading_logo.tga.dds is missing
    14:34:10.918 [system.io] [warning] open: data/loading_screen/loading_bar.tga.dds is missing
    14:34:12.135 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/normans.tga is missing
    14:34:12.135 [system.io] [warning] open: data/menu/symbols/FE_faction_units/normans.tga is missing
    14:34:12.150 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/saxons.tga is missing
    14:34:12.150 [system.io] [warning] open: data/menu/symbols/FE_faction_units/saxons.tga is missing
    14:34:12.173 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/slave.tga is missing
    14:34:12.173 [system.io] [warning] open: data/menu/symbols/FE_faction_units/slave.tga is missing
    14:34:12.848 [system.io] [warning] open: data/menu/_M2_MP_HISTORICAL_BATTLE_CHOOSE_TEAMS.TGA is missing
    14:34:13.243 [system.io] [warning] open: data/menu/TEXTURES/_M2_MAIN_MENU.TGA is missing
    14:34:14.397 [system.io] [warning] open: data/menu/buttons_composite2.tga.dds is missing
    14:34:14.439 [system.io] [warning] open: data/menu/slider_composite.tga.dds is missing
    14:34:14.457 [system.io] [warning] open: data/menu/slider_composite2.tga.dds is missing
    14:34:14.465 [system.io] [warning] open: data/menu/border_4pix_black_gold2.tga.dds is missing
    14:34:14.479 [system.io] [warning] open: data/menu/text_border.tga.dds is missing
    14:34:14.480 [system.io] [warning] open: data/menu/yellow_highlight.tga.dds is missing
    14:34:14.481 [system.io] [warning] open: data/menu/border_4pix_black_gold_selected.tga.dds is missing
    14:34:14.483 [system.io] [warning] open: data/menu/border_4pix_black_gold_black.tga.dds is missing
    14:34:14.484 [system.io] [warning] open: data/menu/_M2_Selection_Glow.tga.dds is missing
    14:34:14.506 [system.io] [warning] open: data/menu/unit_card.tga.dds is missing
    14:34:14.521 [system.io] [warning] open: data/menu/icons.tga.dds is missing
    14:34:24.579 [data.missing] [warning] Missing unit card data/ui/units/jerusalem/#Richard_the_Lionheart.tga
    14:34:28.797 [data.missing] [warning] Missing unit card data/ui/units/antioch/#Philip_King_of_France.tga
    14:34:31.726 [system.io] [warning] open: mods/Holy_land/data/world/maps/campaign/imperial_campaign/map.rwm is missing
    14:34:32.730 [system.io] [warning] open: data/loading_screen/loading_bar.tga.dds is missing
    14:34:32.732 [system.io] [warning] open: mods/Holy_land/data/loading_screen/loading_logo.tga.dds is missing
    14:34:34.450 [system.io] [warning] open: data/models_effects/building_fire_glow.cas is missing
    14:34:34.463 [system.io] [warning] open: data/models_engine/heavy_onager_torches.cas is missing
    14:34:35.431 [system.io] [warning] open: data/loading_screen/loading_bar.tga.dds is missing
    14:34:35.812 [system.rpt] [error]



    And still have CTD when trying to load a battle.

    Updated

    The problem solved by deleting map.rwm file before starting mod. Now there is no CTD when I load a battle.
    Last edited by good4eL; June 11, 2011 at 12:45 AM.

  7. #7
    yujote's Avatar Semisalis
    Join Date
    Jun 2010
    Location
    Indianapolis, Indiana
    Posts
    404

    Default Re: Crashes and how to fix them

    my log is this:
    Spoiler Alert, click show to read: 
    16:20:35.067 [system.rpt] [always] CPU: SSE2
    16:20:35.067 [system.rpt] [always] ==== system log start, build date: Feb 25 2008 version development ===
    16:20:35.161 [system.io] [always] mounted pack packs/data_0.pack
    16:20:35.301 [system.io] [always] mounted pack packs/data_1.pack
    16:20:35.442 [system.io] [always] mounted pack packs/data_2.pack
    16:20:35.598 [system.io] [always] mounted pack packs/data_3.pack
    16:20:35.614 [system.io] [always] mounted pack packs/data_4.pack
    16:20:35.629 [system.io] [always] mounted pack packs/localized.pack
    16:20:35.817 [system.io] [warning] open: mods/Eragon/data/text/diplomacy.txt.strings.bin is missing
    16:20:35.817 [system.io] [warning] open: mods/Eragon/data/text/diplomacy.txt is missing
    16:20:36.098 [system.io] [warning] open: mods/Eragon/data/text/diplomacy_speech.txt.strings.bin is missing
    16:20:36.098 [system.io] [warning] open: mods/Eragon/data/text/diplomacy_speech.txt is missing
    16:20:36.254 [system.io] [warning] open: mods/Eragon/data/text/shortcut.txt.strings.bin is missing
    16:20:36.317 [system.io] [warning] open: mods/Eragon/data/text/shortcut.txt is missing
    16:20:41.817 [data.missing] [warning] missing/invalid cursor for ANISELECT
    16:20:41.832 [data.missing] [warning] missing/invalid cursor for MODIFIER_SABOTAGE
    16:20:41.832 [data.missing] [warning] missing/invalid cursor for MODIFIER_TRADE
    16:20:41.864 [data.missing] [warning] missing/invalid cursor for DRAGGABLE
    16:20:41.864 [data.missing] [warning] missing/invalid cursor for DRAGGING
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_MULTIPLE_SELECT
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_ATTACK
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_CHARACTER
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_RESOURCE
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_FORT
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_MOVE_OBJECT
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_WATCHTOWER
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_DEPLOYMENT_AREA
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_TILE
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_SPECIAL_PIECE
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_PAINT
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_ADJUST_HEIGHTS
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_ADD_UNIT
    16:20:41.879 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_SETTLEMENT
    16:20:44.895 [system.io] [warning] open: mods/Eragon/data/text/climates.txt.strings.bin is missing
    16:20:44.895 [system.io] [warning] open: mods/Eragon/data/text/climates.txt is missing
    16:21:01.176 [script.err] [error] Script Error in mods/Eragon/data/descr_mount.txt, at line 117, column 1
    Could not find battle model for mount 'Mount_Adv_English_Armoured_Horse'.
    16:21:01.176 [script.err] [error] Script Error in mods/Eragon/data/descr_mount.txt, at line 147, column 1
    Could not find battle model for mount 'Mount_Adv_English_Barded_Horse'.
    16:21:01.176 [script.err] [error] Script Error in mods/Eragon/data/descr_mount.txt, at line 162, column 1
    Could not find battle model for mount 'Mount_Adv_French_Barded_Horse'.
    16:21:01.176 [script.err] [error] Script Error in mods/Eragon/data/descr_mount.txt, at line 242, column 1
    Could not find battle model for mount 'Mount_AdV_French_Heavy_Horse'.
    16:21:09.020 [system.io] [warning] open: mods/Eragon/data/text/event_titles.txt.strings.bin is missing
    16:21:09.067 [system.io] [warning] open: mods/Eragon/data/text/event_titles.txt is missing
    16:21:09.098 [system.io] [warning] open: mods/Eragon/data/text/event_strings.txt.strings.bin is missing
    16:21:09.192 [system.io] [warning] open: mods/Eragon/data/text/event_strings.txt is missing
    16:21:09.426 [system.io] [warning] open: mods/Eragon/data/text/export_units.txt.strings.bin is missing
    16:21:09.504 [system.io] [warning] open: mods/Eragon/data/text/export_units.txt is missing
    16:21:09.629 [system.io] [warning] open: mods/Eragon/data/text/rebel_faction_descr.txt.strings.bin is missing
    16:21:09.661 [system.io] [warning] open: mods/Eragon/data/text/rebel_faction_descr.txt is missing
    16:21:09.786 [system.io] [warning] open: mods/Eragon/data/text/export_buildings.txt.strings.bin is missing
    16:21:10.270 [system.io] [warning] open: mods/Eragon/data/text/export_buildings.txt is missing
    16:21:19.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    16:21:19.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    16:21:19.114 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    16:21:19.114 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    16:21:19.114 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    16:21:19.114 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    16:21:19.145 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    16:21:19.145 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    16:21:19.145 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    16:21:19.145 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    16:21:19.145 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    16:21:19.145 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    16:21:19.145 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    16:21:19.145 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    16:21:19.161 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    16:21:19.161 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    16:21:19.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    16:21:19.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    16:21:19.473 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    16:21:19.473 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    16:21:19.473 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    16:21:19.489 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    16:21:19.504 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    16:21:19.504 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    16:21:19.520 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    16:21:19.520 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    16:21:19.520 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    16:21:19.520 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    16:21:19.520 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    16:21:19.520 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    16:21:19.520 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    16:21:19.520 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    16:21:19.895 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    16:21:19.895 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    16:21:19.989 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    16:21:19.989 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    16:21:19.989 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    16:21:19.989 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    16:21:19.989 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    16:21:19.989 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    16:21:19.989 [system.io] [warning] open: mods/Eragon/data/text/export_VnVs.txt.strings.bin is missing
    16:21:20.223 [system.io] [warning] open: mods/Eragon/data/text/export_VnVs.txt is missing
    16:21:20.317 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10674, column 23 :
    we should only have trait(Berserker) additional affects for triggers(Battle_Losing_Berserker)
    16:21:20.317 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10674, column 23 :
    we should only have trait(Berserker) additional affects for triggers(Battle_Losing_Berserker)
    16:21:20.317 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10792, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    16:21:20.317 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10792, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    16:21:20.317 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10793, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    16:21:20.317 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10793, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    16:21:20.317 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10803, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing)
    16:21:20.317 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10803, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing)
    16:21:20.317 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10804, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing)
    16:21:20.317 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10804, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing)
    16:21:20.317 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10816, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    16:21:20.317 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10816, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    16:21:20.317 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10817, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    16:21:20.317 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10817, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    16:21:20.317 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10858, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Dread_Let_Them_Go)
    16:21:20.317 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10858, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Dread_Let_Them_Go)
    16:21:20.332 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16756, column 27 :
    we should only have trait(GoodDenouncer) additional affects for triggers(hereticinit1_denouncerclear)
    16:21:20.332 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16756, column 27 :
    we should only have trait(GoodDenouncer) additional affects for triggers(hereticinit1_denouncerclear)
    16:21:20.332 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16764, column 26 :
    we should only have trait(BadDenouncer) additional affects for triggers(hereticinit1_denouncerclear_bad)
    16:21:20.348 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16764, column 26 :
    we should only have trait(BadDenouncer) additional affects for triggers(hereticinit1_denouncerclear_bad)
    16:21:20.348 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16772, column 25 :
    we should only have trait(StrongFaith) additional affects for triggers(hereticinit1_faithclear)
    16:21:20.348 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16772, column 25 :
    we should only have trait(StrongFaith) additional affects for triggers(hereticinit1_faithclear)
    16:21:20.348 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16780, column 22 :
    we should only have trait(Purifier) additional affects for triggers(hereticinit1_purifierclear)
    16:21:20.348 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16780, column 22 :
    we should only have trait(Purifier) additional affects for triggers(hereticinit1_purifierclear)
    16:21:20.348 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17705, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_6)
    16:21:20.348 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17705, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_6)
    16:21:20.348 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17706, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(crusades_6)
    16:21:20.348 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17706, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(crusades_6)
    16:21:20.348 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17715, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_7)
    16:21:20.348 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17715, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_7)
    16:21:20.348 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17758, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_7)
    16:21:20.348 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17758, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_7)
    16:21:20.348 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17759, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(jihads_7)
    16:21:20.348 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17759, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(jihads_7)
    16:21:20.348 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17768, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_8)
    16:21:20.348 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17768, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_8)
    16:21:20.348 [system.io] [warning] open: mods/Eragon/data/text/export_ancillaries.txt.strings.bin is missing
    16:21:20.411 [system.io] [warning] open: mods/Eragon/data/text/export_ancillaries.txt is missing
    16:21:20.567 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/scribe_ancillary.tga
    16:21:20.567 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/security_religious.tga
    16:21:20.567 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/security_religious.tga
    16:21:20.739 [system.io] [warning] open: mods/Eragon/data/text/export_advice.txt.strings.bin is missing
    16:21:20.864 [system.io] [warning] open: mods/Eragon/data/text/export_advice.txt is missing
    16:21:21.239 [system.io] [warning] open: mods/Eragon/data/text/export_prologue.txt.strings.bin is missing
    16:21:21.301 [system.io] [warning] open: mods/Eragon/data/text/export_prologue.txt is missing
    16:21:23.239 [system.io] [warning] open: mods/Eragon/data/text/cursor_action_tooltips.txt.strings.bin is missing
    16:21:23.270 [system.io] [warning] open: mods/Eragon/data/text/cursor_action_tooltips.txt is missing
    16:21:36.020 [system.io] [warning] open: mods/Eragon/data/text/quotes.txt.strings.bin is missing
    16:21:36.051 [system.io] [warning] open: mods/Eragon/data/text/quotes.txt is missing
    16:21:36.301 [system.io] [warning] open: mods/Eragon/data/loading_screen/loading_bar.tga.dds is missing
    16:21:36.348 [system.io] [warning] open: mods/Eragon/data/loading_screen/loading_logo.tga.dds is missing
    16:21:38.114 [system.io] [warning] open: mods/Eragon/data/loading_screen/loading_bar.tga.dds is missing
    16:21:42.129 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/normans.tga is missing
    16:21:42.129 [system.io] [warning] open: data/menu/symbols/FE_faction_units/normans.tga is missing
    16:21:42.223 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/saxons.tga is missing
    16:21:42.223 [system.io] [warning] open: data/menu/symbols/FE_faction_units/saxons.tga is missing
    16:21:42.379 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/slave.tga is missing
    16:21:42.379 [system.io] [warning] open: data/menu/symbols/FE_faction_units/slave.tga is missing
    16:21:42.489 [system.io] [warning] open: mods/Eragon/data/text/battle_descriptions.txt.strings.bin is missing
    16:21:42.489 [system.io] [warning] open: mods/Eragon/data/text/battle_descriptions.txt is missing
    16:21:43.942 [system.io] [warning] open: data/menu/_M2_MP_HISTORICAL_BATTLE_CHOOSE_TEAMS.TGA is missing
    16:21:45.254 [system.io] [warning] open: data/menu/TEXTURES/_M2_MAIN_MENU.TGA is missing
    16:21:46.676 [system.io] [warning] open: data/menu/buttons_composite2.tga.dds is missing
    16:21:46.723 [system.io] [warning] open: data/menu/slider_composite.tga.dds is missing
    16:21:46.786 [system.io] [warning] open: data/menu/slider_composite2.tga.dds is missing
    16:21:46.832 [system.io] [warning] open: data/menu/border_4pix_black_gold2.tga.dds is missing
    16:21:46.879 [system.io] [warning] open: data/menu/text_border.tga.dds is missing
    16:21:46.895 [system.io] [warning] open: data/menu/yellow_highlight.tga.dds is missing
    16:21:46.895 [system.io] [warning] open: data/menu/border_4pix_black_gold_selected.tga.dds is missing
    16:21:46.957 [system.io] [warning] open: data/menu/border_4pix_black_gold_black.tga.dds is missing
    16:21:47.051 [system.io] [warning] open: data/menu/_M2_Selection_Glow.tga.dds is missing
    16:21:47.161 [system.io] [warning] open: data/menu/unit_card.tga.dds is missing
    16:21:47.207 [system.io] [warning] open: data/menu/icons.tga.dds is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_timurids.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_FE.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/base/map_timurids.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_normans.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_FE.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/base/map_normans.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_saxons.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_FE.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/base/map_saxons.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_slave.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_FE.tga is missing
    16:21:57.286 [system.io] [warning] open: mods/Eragon/data/world/maps/base/map_slave.tga is missing
    16:21:57.317 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/leader_pic_england.tga is missing
    16:21:57.395 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/leader_pic_england.tga is missing
    16:21:59.692 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map.rwm is missing
    16:22:00.411 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/descr_battle.txt is missing
    16:22:00.411 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map.rwm is missing
    16:22:00.411 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map.rbm is missing
    16:22:00.411 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map.wfc is missing
    16:22:00.942 [system.rpt] [error] Medieval 2: Total War hat einen unbestimmten Fehler entdeckt und wird jetzt beendet.


    what does it mean? and how do I fix it?

    Please spoiler long text or attach the file
    Last edited by Gigantus; July 19, 2011 at 01:31 AM.
    Check Out My Gaming Blog! (Help Wanted)

  8. #8
    yujote's Avatar Semisalis
    Join Date
    Jun 2010
    Location
    Indianapolis, Indiana
    Posts
    404

    Default Re: Crashes and how to fix them

    Spoiler Alert, click show to read: 
    17:11:41.723 [system.rpt] [always] CPU: SSE2
    17:11:41.723 [system.rpt] [always] ==== system log start, build date: Feb 25 2008 version development ===
    17:11:41.926 [system.io] [always] mounted pack packs/data_0.pack
    17:11:42.082 [system.io] [always] mounted pack packs/data_1.pack
    17:11:42.301 [system.io] [always] mounted pack packs/data_2.pack
    17:11:42.457 [system.io] [always] mounted pack packs/data_3.pack
    17:11:42.473 [system.io] [always] mounted pack packs/data_4.pack
    17:11:42.473 [system.io] [always] mounted pack packs/localized.pack
    17:11:43.895 [system.io] [warning] open: mods/Eragon/data/text/diplomacy.txt.strings.bin is missing
    17:11:43.895 [system.io] [warning] open: mods/Eragon/data/text/diplomacy.txt is missing
    17:11:43.926 [system.io] [warning] open: mods/Eragon/data/text/diplomacy_speech.txt.strings.bin is missing
    17:11:43.926 [system.io] [warning] open: mods/Eragon/data/text/diplomacy_speech.txt is missing
    17:11:44.020 [system.io] [warning] open: mods/Eragon/data/text/shortcut.txt.strings.bin is missing
    17:11:44.036 [system.io] [warning] open: mods/Eragon/data/text/shortcut.txt is missing
    17:11:49.301 [data.missing] [warning] missing/invalid cursor for ANISELECT
    17:11:49.317 [data.missing] [warning] missing/invalid cursor for MODIFIER_SABOTAGE
    17:11:49.364 [data.missing] [warning] missing/invalid cursor for MODIFIER_TRADE
    17:11:49.411 [data.missing] [warning] missing/invalid cursor for DRAGGABLE
    17:11:49.411 [data.missing] [warning] missing/invalid cursor for DRAGGING
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_MULTIPLE_SELECT
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_ATTACK
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_CHARACTER
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_RESOURCE
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_FORT
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_MOVE_OBJECT
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_WATCHTOWER
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_DEPLOYMENT_AREA
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_TILE
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_SPECIAL_PIECE
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_PAINT
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_ADJUST_HEIGHTS
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_ADD_UNIT
    17:11:49.426 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_SETTLEMENT
    17:11:53.176 [system.io] [warning] open: mods/Eragon/data/text/climates.txt.strings.bin is missing
    17:11:53.176 [system.io] [warning] open: mods/Eragon/data/text/climates.txt is missing
    17:11:58.957 [script.err] [error] Script Error in mods/Eragon/data/descr_mount.txt, at line 117, column 1
    Could not find battle model for mount 'Mount_Adv_English_Armoured_Horse'.
    17:11:58.957 [script.err] [error] Script Error in mods/Eragon/data/descr_mount.txt, at line 147, column 1
    Could not find battle model for mount 'Mount_Adv_English_Barded_Horse'.
    17:11:58.957 [script.err] [error] Script Error in mods/Eragon/data/descr_mount.txt, at line 162, column 1
    Could not find battle model for mount 'Mount_Adv_French_Barded_Horse'.
    17:11:58.957 [script.err] [error] Script Error in mods/Eragon/data/descr_mount.txt, at line 242, column 1
    Could not find battle model for mount 'Mount_AdV_French_Heavy_Horse'.
    17:12:03.411 [system.io] [warning] open: mods/Eragon/data/text/event_titles.txt.strings.bin is missing
    17:12:03.442 [system.io] [warning] open: mods/Eragon/data/text/event_titles.txt is missing
    17:12:03.473 [system.io] [warning] open: mods/Eragon/data/text/event_strings.txt.strings.bin is missing
    17:12:03.567 [system.io] [warning] open: mods/Eragon/data/text/event_strings.txt is missing
    17:12:03.754 [system.io] [warning] open: mods/Eragon/data/text/export_units.txt.strings.bin is missing
    17:12:03.832 [system.io] [warning] open: mods/Eragon/data/text/export_units.txt is missing
    17:12:04.004 [system.io] [warning] open: mods/Eragon/data/text/rebel_faction_descr.txt.strings.bin is missing
    17:12:04.036 [system.io] [warning] open: mods/Eragon/data/text/rebel_faction_descr.txt is missing
    17:12:04.176 [system.io] [warning] open: mods/Eragon/data/text/export_buildings.txt.strings.bin is missing
    17:12:04.629 [system.io] [warning] open: mods/Eragon/data/text/export_buildings.txt is missing
    17:12:13.864 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    17:12:13.864 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    17:12:13.973 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    17:12:13.973 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    17:12:13.973 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    17:12:13.973 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    17:12:13.989 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    17:12:14.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    17:12:14.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    17:12:14.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    17:12:14.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    17:12:14.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    17:12:14.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    17:12:14.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    17:12:14.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    17:12:14.004 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    17:12:14.145 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    17:12:14.176 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    17:12:15.176 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    17:12:15.176 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    17:12:15.176 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    17:12:15.176 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    17:12:15.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    17:12:15.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    17:12:15.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    17:12:15.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    17:12:15.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    17:12:15.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    17:12:15.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    17:12:15.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    17:12:15.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    17:12:15.223 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    17:12:15.614 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    17:12:15.614 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    17:12:15.692 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    17:12:15.707 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    17:12:15.707 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    17:12:15.707 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    17:12:15.707 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    17:12:15.707 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    17:12:15.707 [system.io] [warning] open: mods/Eragon/data/text/export_VnVs.txt.strings.bin is missing
    17:12:15.911 [system.io] [warning] open: mods/Eragon/data/text/export_VnVs.txt is missing
    17:12:16.114 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10674, column 23 :
    we should only have trait(Berserker) additional affects for triggers(Battle_Losing_Berserker)
    17:12:16.114 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10674, column 23 :
    we should only have trait(Berserker) additional affects for triggers(Battle_Losing_Berserker)
    17:12:16.114 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10792, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    17:12:16.114 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10792, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    17:12:16.114 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10793, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    17:12:16.114 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10793, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Not_fighting)
    17:12:16.114 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10803, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing)
    17:12:16.114 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10803, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing)
    17:12:16.129 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10804, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing)
    17:12:16.129 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10804, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing)
    17:12:16.129 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10816, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    17:12:16.129 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10816, column 28 :
    we should only have trait(BattleChivalry) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    17:12:16.129 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10817, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    17:12:16.129 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10817, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Chivalry_Dread_Routing2)
    17:12:16.129 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10858, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Dread_Let_Them_Go)
    17:12:16.129 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 10858, column 25 :
    we should only have trait(BattleDread) additional affects for triggers(battle3Dread_Let_Them_Go)
    17:12:16.145 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16756, column 27 :
    we should only have trait(GoodDenouncer) additional affects for triggers(hereticinit1_denouncerclear)
    17:12:16.145 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16756, column 27 :
    we should only have trait(GoodDenouncer) additional affects for triggers(hereticinit1_denouncerclear)
    17:12:16.145 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16764, column 26 :
    we should only have trait(BadDenouncer) additional affects for triggers(hereticinit1_denouncerclear_bad)
    17:12:16.145 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16764, column 26 :
    we should only have trait(BadDenouncer) additional affects for triggers(hereticinit1_denouncerclear_bad)
    17:12:16.145 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16772, column 25 :
    we should only have trait(StrongFaith) additional affects for triggers(hereticinit1_faithclear)
    17:12:16.145 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16772, column 25 :
    we should only have trait(StrongFaith) additional affects for triggers(hereticinit1_faithclear)
    17:12:16.145 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16780, column 22 :
    we should only have trait(Purifier) additional affects for triggers(hereticinit1_purifierclear)
    17:12:16.145 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 16780, column 22 :
    we should only have trait(Purifier) additional affects for triggers(hereticinit1_purifierclear)
    17:12:16.145 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17705, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_6)
    17:12:16.145 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17705, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_6)
    17:12:16.145 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17706, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(crusades_6)
    17:12:16.145 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17706, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(crusades_6)
    17:12:16.145 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17715, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_7)
    17:12:16.145 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17715, column 29 :
    we should only have trait(CrusaderHistory) additional affects for triggers(crusades_7)
    17:12:16.145 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17758, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_7)
    17:12:16.145 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17758, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_7)
    17:12:16.145 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17759, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(jihads_7)
    17:12:16.145 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17759, column 30 :
    we should only have trait(StrategyChivalry) additional affects for triggers(jihads_7)
    17:12:16.145 [script.err] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17768, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_8)
    17:12:16.145 [game.script] [warning] Trigger parsing warning in mods/Eragon/data/export_descr_character_traits.txt, at line 17768, column 26 :
    we should only have trait(JihadHistory) additional affects for triggers(jihads_8)
    17:12:16.145 [system.io] [warning] open: mods/Eragon/data/text/export_ancillaries.txt.strings.bin is missing
    17:12:16.207 [system.io] [warning] open: mods/Eragon/data/text/export_ancillaries.txt is missing
    17:12:16.332 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/scribe_ancillary.tga
    17:12:16.332 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/security_religious.tga
    17:12:16.332 [data.missing] [warning] Failed to find ancillary image data/ui/ancillaries/security_religious.tga
    17:12:16.473 [system.io] [warning] open: mods/Eragon/data/text/export_advice.txt.strings.bin is missing
    17:12:16.582 [system.io] [warning] open: mods/Eragon/data/text/export_advice.txt is missing
    17:12:16.957 [system.io] [warning] open: mods/Eragon/data/text/export_prologue.txt.strings.bin is missing
    17:12:17.020 [system.io] [warning] open: mods/Eragon/data/text/export_prologue.txt is missing
    17:12:19.770 [system.io] [warning] open: mods/Eragon/data/text/cursor_action_tooltips.txt.strings.bin is missing
    17:12:19.848 [system.io] [warning] open: mods/Eragon/data/text/cursor_action_tooltips.txt is missing
    17:12:47.676 [system.io] [warning] open: mods/Eragon/data/text/quotes.txt.strings.bin is missing
    17:12:47.723 [system.io] [warning] open: mods/Eragon/data/text/quotes.txt is missing
    17:12:49.176 [system.io] [warning] open: mods/Eragon/data/loading_screen/loading_bar.tga.dds is missing
    17:12:49.223 [system.io] [warning] open: mods/Eragon/data/loading_screen/loading_logo.tga.dds is missing
    17:12:51.051 [system.io] [warning] open: mods/Eragon/data/loading_screen/loading_bar.tga.dds is missing
    17:13:22.754 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/normans.tga is missing
    17:13:22.770 [system.io] [warning] open: data/menu/symbols/FE_faction_units/normans.tga is missing
    17:13:23.786 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/saxons.tga is missing
    17:13:23.786 [system.io] [warning] open: data/menu/symbols/FE_faction_units/saxons.tga is missing
    17:13:24.942 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/slave.tga is missing
    17:13:24.957 [system.io] [warning] open: data/menu/symbols/FE_faction_units/slave.tga is missing
    17:13:25.848 [system.io] [warning] open: mods/Eragon/data/text/battle_descriptions.txt.strings.bin is missing
    17:13:25.848 [system.io] [warning] open: mods/Eragon/data/text/battle_descriptions.txt is missing
    17:13:29.286 [system.io] [warning] open: data/menu/_M2_MP_HISTORICAL_BATTLE_CHOOSE_TEAMS.TGA is missing
    17:13:31.614 [system.io] [warning] open: data/menu/TEXTURES/_M2_MAIN_MENU.TGA is missing
    17:13:36.676 [system.io] [warning] open: data/menu/buttons_composite2.tga.dds is missing
    17:13:36.832 [system.io] [warning] open: data/menu/slider_composite.tga.dds is missing
    17:13:37.020 [system.io] [warning] open: data/menu/slider_composite2.tga.dds is missing
    17:13:37.270 [system.io] [warning] open: data/menu/border_4pix_black_gold2.tga.dds is missing
    17:13:37.551 [system.io] [warning] open: data/menu/text_border.tga.dds is missing
    17:13:37.598 [system.io] [warning] open: data/menu/yellow_highlight.tga.dds is missing
    17:13:37.598 [system.io] [warning] open: data/menu/border_4pix_black_gold_selected.tga.dds is missing
    17:13:37.786 [system.io] [warning] open: data/menu/border_4pix_black_gold_black.tga.dds is missing
    17:13:37.911 [system.io] [warning] open: data/menu/_M2_Selection_Glow.tga.dds is missing
    17:13:38.129 [system.io] [warning] open: data/menu/unit_card.tga.dds is missing
    17:13:38.223 [system.io] [warning] open: data/menu/icons.tga.dds is missing
    17:14:06.879 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_timurids.tga is missing
    17:14:06.895 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_normans.tga is missing
    17:14:06.895 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_saxons.tga is missing
    17:14:06.895 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map_slave.tga is missing
    17:14:06.926 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/leader_pic_england.tga is missing
    17:14:09.192 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/leader_pic_england.tga is missing
    17:14:16.473 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/leader_pic_hre.tga is missing
    17:14:16.473 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/leader_pic_hre.tga is missing
    17:14:18.176 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map.rwm is missing
    17:14:18.176 [system.io] [warning] open: mods/Eragon/data/world/maps/base/map.rwm is missing
    17:14:18.192 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/descr_battle.txt is missing
    17:14:18.192 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map.rwm is missing
    17:14:18.192 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map.rbm is missing
    17:14:18.192 [system.io] [warning] open: mods/Eragon/data/world/maps/campaign/imperial_campaign/map.wfc is missing
    17:14:38.114 [system.rpt] [error] Medieval 2: Total War hat einen unbestimmten Fehler entdeckt und wird jetzt beendet.


    is a new one that I have, and I changed almost nothing. still, the map wont load

    do the spoiler thingy..
    Last edited by Gigantus; July 19, 2011 at 01:33 AM.
    Check Out My Gaming Blog! (Help Wanted)

  9. #9
    Gigantus's Avatar I am not special - I am a limited edition.
    Patrician took an arrow to the knee spy of the council

    Join Date
    Aug 2006
    Location
    Goa - India
    Posts
    53,125
    Blog Entries
    35

    Default Re: Crashes and how to fix them

    Your log does not point to the reason of the crash.
    You do not provide any info - when does it crash? What did you change? What did you modify? etc....










  10. #10

    Default Re: Crashes and how to fix them

    Hi everyone,

    I need some help with my map. This is the error log i get when trying to start a campaign.

    Spoiler Alert, click show to read: 
    21:57:04.785 [system.rpt] [always] CPU: SSE2
    21:57:04.785 [system.rpt] [always] ==== system log start, build date: Aug 3 2007 version bld-medieval2-kingdoms-104 (45562) ===
    21:57:04.790 [system.io] [always] mounted pack packs/data_0.pack
    21:57:04.791 [system.io] [always] mounted pack packs/data_1.pack
    21:57:04.792 [system.io] [always] mounted pack packs/data_2.pack
    21:57:04.794 [system.io] [always] mounted pack packs/data_3.pack
    21:57:04.795 [system.io] [always] mounted pack packs/data_4.pack
    21:57:04.795 [system.io] [always] mounted pack packs/localized.pack
    21:57:04.811 [system.io] [warning] open: mods/Third_Age/data/text/shortcut.txt.strings.bin is missing
    21:57:04.816 [system.io] [warning] open: mods/Third_Age/data/text/shortcut.txt is missing
    21:57:06.897 [data.missing] [warning] missing/invalid cursor for ANISELECT
    21:57:06.900 [data.missing] [warning] missing/invalid cursor for MODIFIER_SABOTAGE
    21:57:06.904 [data.missing] [warning] missing/invalid cursor for MODIFIER_TRADE
    21:57:06.918 [data.missing] [warning] missing/invalid cursor for DRAGGABLE
    21:57:06.918 [data.missing] [warning] missing/invalid cursor for DRAGGING
    21:57:06.921 [data.missing] [warning] missing/invalid cursor for MODIFIER_MULTIPLE_SELECT
    21:57:06.921 [data.missing] [warning] missing/invalid cursor for MODIFIER_ATTACK
    21:57:06.921 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_CHARACTER
    21:57:06.921 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_RESOURCE
    21:57:06.921 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_FORT
    21:57:06.921 [data.missing] [warning] missing/invalid cursor for MODIFIER_MOVE_OBJECT
    21:57:06.921 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_WATCHTOWER
    21:57:06.921 [data.missing] [warning] missing/invalid cursor for MODIFIER_DEPLOYMENT_AREA
    21:57:06.921 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_TILE
    21:57:06.922 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_SPECIAL_PIECE
    21:57:06.922 [data.missing] [warning] missing/invalid cursor for MODIFIER_PAINT
    21:57:06.922 [data.missing] [warning] missing/invalid cursor for MODIFIER_ADJUST_HEIGHTS
    21:57:06.922 [data.missing] [warning] missing/invalid cursor for MODIFIER_ADD_UNIT
    21:57:06.922 [data.missing] [warning] missing/invalid cursor for MODIFIER_PLACE_SETTLEMENT
    21:57:08.571 [data.missing] [warning] Cannot find the portrait path: data/ui/northern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.573 [data.missing] [warning] Cannot find the portrait path: data/ui/northern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.579 [data.missing] [warning] Cannot find the portrait path: data/ui/northern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    21:57:08.581 [data.missing] [warning] Cannot find the portrait path: data/ui/northern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    21:57:08.583 [data.missing] [warning] Cannot find the portrait path: data/ui/northern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.584 [data.missing] [warning] Cannot find the portrait path: data/ui/northern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.589 [data.missing] [warning] Cannot find the portrait path: data/ui/northern_european/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    21:57:08.590 [data.missing] [warning] Cannot find the portrait path: data/ui/northern_european/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    21:57:08.592 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    21:57:08.593 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/civilians/000.tga, using the default culture path if it exists
    21:57:08.599 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    21:57:08.600 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/rogues/000.tga, using the default culture path if it exists
    21:57:08.602 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.604 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.607 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    21:57:08.608 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    21:57:08.610 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    21:57:08.612 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    21:57:08.614 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.615 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.617 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    21:57:08.618 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    21:57:08.620 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    21:57:08.622 [data.missing] [warning] Cannot find the portrait path: data/ui/mesoamerican/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    21:57:08.637 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.639 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.642 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    21:57:08.643 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    21:57:08.645 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    21:57:08.647 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    21:57:08.648 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.650 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.652 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    21:57:08.653 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    21:57:08.655 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    21:57:08.656 [data.missing] [warning] Cannot find the portrait path: data/ui/greek/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    21:57:08.671 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.673 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.675 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    21:57:08.677 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    21:57:08.679 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    21:57:08.681 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    21:57:08.683 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.684 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.686 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    21:57:08.688 [data.missing] [warning] Cannot find the portrait path: data/ui/eastern_european/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    21:57:08.706 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.708 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.717 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.719 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.721 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    21:57:08.722 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    21:57:08.724 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    21:57:08.726 [data.missing] [warning] Cannot find the portrait path: data/ui/middle_eastern/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    21:57:08.741 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.742 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/princesses/000.tga, using the default culture path if it exists
    21:57:08.745 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    21:57:08.747 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/merchants/000.tga, using the default culture path if it exists
    21:57:08.748 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    21:57:08.750 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/priests/000.tga, using the default culture path if it exists
    21:57:08.752 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.753 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/heretics/000.tga, using the default culture path if it exists
    21:57:08.755 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    21:57:08.756 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/witches/000.tga, using the default culture path if it exists
    21:57:08.758 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    21:57:08.759 [data.missing] [warning] Cannot find the portrait path: data/ui/gondor/portraits/portraits/young/inquisitors/000.tga, using the default culture path if it exists
    21:57:08.890 [system.io] [warning] open: mods/Third_Age/data/text/export_prologue.txt.strings.bin is missing
    21:57:08.896 [system.io] [warning] open: mods/Third_Age/data/text/export_prologue.txt is missing
    21:57:10.148 [system.io] [warning] open: mods/Third_Age/data/text/FactionIntroSubTitles.txt.strings.bin is missing
    21:57:10.162 [system.io] [warning] open: mods/Third_Age/data/text/FactionIntroSubTitles.txt is missing
    21:57:10.162 [system.io] [warning] open: data/text/FactionIntroSubTitles.txt.strings.bin is missing
    21:57:10.508 [system.io] [warning] open: mods/Third_Age/data/loading_screen/loading_bar.tga.dds is missing
    21:57:10.512 [system.io] [warning] open: mods/Third_Age/data/loading_screen/loading_logo.tga.dds is missing
    21:57:11.468 [system.io] [warning] open: mods/Third_Age/data/loading_screen/loading_bar.tga.dds is missing
    21:57:11.533 [system.io] [warning] open: data/menu/symbols/FE_symbols_80/slave.tga is missing
    21:57:11.533 [system.io] [warning] open: data/menu/symbols/FE_faction_units/slave.tga is missing
    21:57:11.539 [system.io] [warning] open: data/menu/_M2_PROVINCIAL_CAMPAIGN_PANELS.TGA is missing
    21:57:11.546 [system.io] [warning] open: data/menu/TEXTURES/_M2_MAIN_MENU.TGA is missing
    21:57:12.333 [system.io] [warning] open: mods/Third_Age/data/menu/buttons_composite2.tga.dds is missing
    21:57:12.345 [system.io] [warning] open: data/menu/slider_composite.tga.dds is missing
    21:57:12.346 [system.io] [warning] open: mods/Third_Age/data/menu/slider_composite2.tga.dds is missing
    21:57:12.346 [system.io] [warning] open: mods/Third_Age/data/menu/border_4pix_black_gold2.tga.dds is missing
    21:57:12.347 [system.io] [warning] open: data/menu/text_border.tga.dds is missing
    21:57:12.347 [system.io] [warning] open: data/menu/yellow_highlight.tga.dds is missing
    21:57:12.348 [system.io] [warning] open: data/menu/border_4pix_black_gold_selected.tga.dds is missing
    21:57:12.348 [system.io] [warning] open: data/menu/border_4pix_black_gold_black.tga.dds is missing
    21:57:12.348 [system.io] [warning] open: data/menu/_M2_Selection_Glow.tga.dds is missing
    21:57:12.349 [system.io] [warning] open: data/menu/unit_card.tga.dds is missing
    21:57:12.350 [system.io] [warning] open: data/menu/icons.tga.dds is missing
    21:57:16.551 [system.io] [warning] open: mods/Third_Age/data/world/maps/campaign/imperial_campaign/map_papal_states.tga is missing
    21:57:16.552 [system.io] [warning] open: mods/Third_Age/data/world/maps/campaign/imperial_campaign/map_normans.tga is missing
    21:57:18.677 [system.io] [warning] open: mods/Third_Age/data/world/maps/campaign/imperial_campaign/map.rwm is missing
    21:57:18.677 [system.io] [warning] open: mods/Third_Age/data/world/maps/base/map.rwm is missing
    21:57:18.677 [system.io] [warning] open: mods/Third_Age/data/world/maps/campaign/imperial_campaign/descr_battle.txt is missing
    21:57:18.677 [system.io] [warning] open: mods/Third_Age/data/world/maps/campaign/imperial_campaign/map.rwm is missing
    21:57:18.677 [system.io] [warning] open: mods/Third_Age/data/world/maps/campaign/imperial_campaign/map.rbm is missing
    21:57:18.678 [system.io] [warning] open: mods/Third_Age/data/world/maps/campaign/imperial_campaign/map.wfc is missing
    21:57:19.347 [system.rpt] [error] Medieval 2: Total War encountered an unspecified error and will now exit.



    Im using the third age mod. Add modified it whit the geomod.
    One the base of their map i created a whole new, deleted all regions and added new one's. I also enable hungary, poland and russia as additional playabel factions, while some factions are no longer playable. But they still have their names and symbols, just different units. I change some names and added some characters. The new factions simply use the same as other factions and i didn't add other things like models or settlements or something.

    I even deleted some parts of the campaign script, which wouldn't fit with the idea of my campaign.
    Now when i start the game i can enter the main menu, but as soon as i want to start a campaign and choose a faction to continue (the new factions are all shown in the menu) the game crashes when hitting the "continue"-button.

    I also encountered crashes when i tryied to use a created faction in custom battle.

    I would be glad if anyone could help me. thx guys, see ya

  11. #11
    Gigantus's Avatar I am not special - I am a limited edition.
    Patrician took an arrow to the knee spy of the council

    Join Date
    Aug 2006
    Location
    Goa - India
    Posts
    53,125
    Blog Entries
    35

    Default Re: Crashes and how to fix them

    There is some coding in TATW that Geomod can't handle (custom stone forts) which then messes up some file son saving.










  12. #12

    Default Re: Crashes and how to fix them

    Thanks for the answer gigantus.
    Is just the possibility of creating such custom forts a problem, because I didn't have any forts on the map yet.
    So is it just possible create at TATW map with gimp ? Or could I use normal m2 map and change it with geomod and then copy the files into the TATW folder ?

    cheers

  13. #13
    Gigantus's Avatar I am not special - I am a limited edition.
    Patrician took an arrow to the knee spy of the council

    Join Date
    Aug 2006
    Location
    Goa - India
    Posts
    53,125
    Blog Entries
    35

    Default Re: Crashes and how to fix them

    Geomod is only set up to recognize the standard stone forts. Processing custom stone forts will lead to errors when Geomod processes the files and saves them. You could move the parts concerning those forts into another text file and then later copy it back.










  14. #14

    Default Re: Crashes and how to fix them

    changed the map in mod, after that there was crashe, when the general captures the settlement.

    the error message just says the mod has crashed.

  15. #15
    Gigantus's Avatar I am not special - I am a limited edition.
    Patrician took an arrow to the knee spy of the council

    Join Date
    Aug 2006
    Location
    Goa - India
    Posts
    53,125
    Blog Entries
    35

    Default Re: Crashes and how to fix them

    What exactly did you change?










  16. #16

    Default Re: Crashes and how to fix them

    I extended the map to the North.

    Geomod found no errors in the made changes.

    Crashe occurs if the General captures the last settlement of the fraction(fraction destroyed).

  17. #17
    irishron's Avatar Cura Palatii
    Join Date
    Feb 2005
    Location
    Cirith Ungol
    Posts
    47,023

    Default Re: Crashes and how to fix them

    What does the log show?

  18. #18
    Gigantus's Avatar I am not special - I am a limited edition.
    Patrician took an arrow to the knee spy of the council

    Join Date
    Aug 2006
    Location
    Goa - India
    Posts
    53,125
    Blog Entries
    35

    Default Re: Crashes and how to fix them

    Check if your descr_campaign.xml (opens with Notepad, if it is present - don't bother if it is not) has got this entry:
    Code:
       <bribery>
          <bribe_to_family_tree bool="false"/>
    The log might actually help here, preferably in trace form.










  19. #19

    Default Re: Crashes and how to fix them

    In descr_campaign_db.xml is this code:
    Spoiler Alert, click show to read: 
    <bribery>
    <bribe_to_family_tree bool="false"/>
    <base_character_chance float="0.4"/>
    <religion_modifier float="0.66"/>
    <combined_attribute_modifier float="0.2"/>
    <briber_attribute_divisor float="3.0"/>
    <bribee_attribute_divisor float="3.0"/>
    <army_size_modifier float="0.035"/>
    <base_settlement_chance float="0.8"/>
    <settlement_loyalty_modifier float="0.01"/>
    <settlement_population_modifier float="0.0001"/>
    <faction_standing_divisor float="10.0"/>
    <max_bribe_chance float="100.0"/>
    <min_bribe_chance float="1.0"/>
    <bribe_chance_modifier float="1.0"/>
    </bribery>


    The last line system.log.txt:
    Spoiler Alert, click show to read: 
    22:12:32.417 [game.script.trigger] [trace] Trigger <0406_Army_General_Trigger> fired
    22:12:33.833 [game.script.trigger] [trace] Trigger <0052_T_Invaded_Settlement> fired
    22:12:33.833 [data.transgression] [info] Applied transgression TC_INVADED_SETTLEMENT from transgressor faction 1809601A against faction 180C29A2
    22:12:33.836 [system.io] [trace] file open,,data/ui/eastern_european/eventpics/settlement_taken.tga,,not found
    22:12:33.836 [system.io] [trace] pack open,packs/data_2.pack,data/ui/eastern_european/eventpics/settlement_taken.tga,217282
    22:12:33.836 [system.io] [info] open: found data/ui/eastern_european/eventpics/settlement_taken.tga (from: packs/data_2.pack)
    22:12:33.837 [system.io] [trace] pack close,,data/ui/eastern_european/eventpics/settlement_taken.tga,,,-217282
    22:12:33.837 [system.io] [trace] file open,,data/ui/eastern_european/eventpics/settlement_taken.tga,,not found
    22:12:33.837 [system.io] [trace] pack open,packs/data_2.pack,data/ui/eastern_european/eventpics/settlement_taken.tga,217282
    22:12:33.837 [system.io] [info] open: found data/ui/eastern_european/eventpics/settlement_taken.tga (from: packs/data_2.pack)
    22:12:33.839 [system.io] [trace] pack close,,data/ui/eastern_european/eventpics/settlement_taken.tga,,,-217282
    22:12:33.839 [system.io] [info] exists: missing mods/RXII/data/ui/generic/eventpics/settlement_taken.tga
    22:12:33.839 [system.io] [info] exists: missing mods/RXII/data/ui/eastern_european/eventpics/settlement_taken.tga
    22:12:33.839 [system.io] [info] exists: missing data/ui/eastern_european/eventpics/settlement_taken.tga.dds
    22:12:33.840 [system.io] [info] exists: found data/ui/eastern_european/eventpics/settlement_taken.tga (from: packs/data_2.pack)
    22:12:33.840 [system.io] [trace] file open,,14B39308,,not found
    22:12:33.840 [system.io] [trace] pack open,packs/data_2.pack,data/ui/eastern_european/eventpics/settlement_taken.tga,217282
    22:12:33.840 [system.io] [info] open: found data/ui/eastern_european/eventpics/settlement_taken.tga (from: packs/data_2.pack)
    22:12:33.840 [system.io] [trace] pack close,,data/ui/eastern_european/eventpics/settlement_taken.tga,,,-217282
    22:12:33.840 [game.script.trigger] [trace] Trigger <0062_UI_Panel_Captured_Settlement_Trigger> fired
    22:12:34.927 [system.rpt] [error]


    Unknown error.

  20. #20
    Gigantus's Avatar I am not special - I am a limited edition.
    Patrician took an arrow to the knee spy of the council

    Join Date
    Aug 2006
    Location
    Goa - India
    Posts
    53,125
    Blog Entries
    35

    Default Re: Crashes and how to fix them

    The crash happens when the export_descr_advice trigger fires. You can try the following to rule out if it is that file:

    1. If the export_descr_advice file does not exists, copy any TXT file in the data folder.
    2. Delete all content and save the copy as export_descr_advice.txt.
    If the export_descr_advice file exists, copy it and go to number 2










Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •