What do I need to rename?
Notepad++
can you tell me how you did fix it exactly?
First, run the installer and perform the installation until the last step.
In the window of installation log, select all, copy it with Ctrl+c and paste the log into a new text file.
Open the text file and make a research (Ctrl+f) for "Error!".
Normally, you should find errors for three items:
Replace models for item itm_fauchard
Replace models for item itm_imodbits_ruined_fauchard
Error! Replaceable item is not exists!
Replace models for item itm_imodbits_damaged_fauchard
Replace models for item itm_imodbits_commoners_fauchard
Error! Replaceable item is not exists!
Replace models for item itm_imodbits_villagers_fauchard
Error! Replaceable item is not exists!
Replace models for item itm_imodbits_elders_fauchard
Error! Replaceable item is not exists!
Replace models for item itm_voulge
Replace models for item itm_imodbits_cracked_voulge
Replace models for item itm_imodbits_chipped_voulge
Replace models for item itm_imodbits_heavy_voulge
Replace models for item itm_imodbits_powerful_voulge
Replace models for item itm_imodbitsent_voulge
Error! Replaceable item is not exists!
Replace models for item itm_voulge_alt
Replace models for item itm_imodbits_chipped_voulge_alt
Replace models for item itm_imodbits_heavy_voulge_alt
Replace models for item itm_imodbits_powerful_voulge_alt
Replace models for item itm_imodbits_excellent_voulge_alt
Error! Replaceable item is not exists!
Now that you have errors, go to the installer folder and open with notepad++: Heirloom Models by Final_Boss\Mods\{01}Heirloom Models by Final_Boss\
mod.xmlMade Ctrl+f and enter the name of the item that was a mistake.
I'll take the fauchard in example.
error:
Replace models for item itm_fauchard
Replace models for item itm_imodbits_ruined_fauchard
Error! Replaceable item is not exists!
Replace models for item itm_imodbits_damaged_fauchard
Replace models for item itm_imodbits_commoners_fauchard
Error! Replaceable item is not exists!
Replace models for item itm_imodbits_villagers_fauchard
Error! Replaceable item is not exists!
Replace models for item itm_imodbits_elders_fauchard
Error! Replaceable item is not exists!
Ctrl+f "fauchard"
<replace_model item_id="itm_fauchard" model_id="fauchard_h1"/>
<replace_model item_id="itm_imodbits_ruined_fauchard" model_id="fauchard_h1"/>
<replace_model item_id="itm_imodbits_damaged_fauchard" model_id="fauchard_h1"/>
<replace_model item_id="itm_imodbits_commoners_fauchard" model_id="fauchard_h2"/>
<replace_model item_id="itm_imodbits_villagers_fauchard" model_id="fauchard_h3"/>
<replace_model item_id="itm_imodbits_elders_fauchard" model_id="fauchard_h4"/>
Now, I get the error and I know where I can repair.
It remains for me to know how to repair.
Errors tell me: "Replaceable item is not exists!"
So either they do not really exist, or they do not have the same name.
The second being more likely, you just need to find the right names.
For that, you must go into your cRPG folder.
Find the "item_kinds1.txt" file and open it with notepad++.
Once the "item_kinds1" opened, repeat a research on the word "fauchard".
You should find a first entry:
itm_fauchard Fauchard Fauchard 1 fauchard_h1 0
But we have seen in the mod.xml that there was six entry so you make next in the research in order to find the six entry:
itm_fauchard Fauchard Fauchard 1 fauchard_h1 0
itm_imodbits_damaged_fauchard Damaged_Fauchard Damaged_Fauchard 1 fauchard_h1 0
itm_imodbits_bent_fauchard Bent_Fauchard Bent_Fauchard 1 fauchard_h1 0
itm_imodbits_deadly_fauchard Deadly_Fauchard Deadly_Fauchard 1 fauchard_h2 0
itm_imodbits_balanced_fauchard Balanced_Fauchard Balanced_Fauchard 1 fauchard_h3 0
itm_imodbits_masterwork_fauchard Masterwork_Fauchard Masterwork_Fauchard 1 fauchard_h4 0
Now, compare that contains mod.xml with what we found in the item_kinds1.txt:
<replace_model item_id="itm_fauchard" model_id="fauchard_h1"/>
<replace_model item_id="itm_imodbits_ruined_fauchard" model_id="fauchard_h1"/>
<replace_model item_id="itm_imodbits_damaged_fauchard" model_id="fauchard_h1"/>
<replace_model item_id="itm_imodbits_commoners_fauchard" model_id="fauchard_h2"/>
<replace_model item_id="itm_imodbits_villagers_fauchard" model_id="fauchard_h3"/>
<replace_model item_id="itm_imodbits_elders_fauchard" model_id="fauchard_h4"/>
itm_fauchard Fauchard Fauchard 1 fauchard_h1 0
itm_imodbits_damaged_fauchard Damaged_Fauchard Damaged_Fauchard 1 fauchard_h1 0
itm_imodbits_bent_fauchard Bent_Fauchard Bent_Fauchard 1 fauchard_h1 0
itm_imodbits_deadly_fauchard Deadly_Fauchard Deadly_Fauchard 1 fauchard_h2 0
itm_imodbits_balanced_fauchard Balanced_Fauchard Balanced_Fauchard 1 fauchard_h3 0
itm_imodbits_masterwork_fauchard Masterwork_Fauchard Masterwork_Fauchard 1 fauchard_h4 0
We see that these are names that do not match.
We just have to replace the names in the mod.xml:
<replace_model item_id="itm_fauchard" model_id="fauchard_h1"/>
<replace_model item_id="itm_imodbits_damaged_fauchard" model_id="fauchard_h1"/>
<replace_model item_id="itm_imodbits_bent_fauchard" model_id="fauchard_h1"/>
<replace_model item_id="itm_imodbits_deadly_fauchard" model_id="fauchard_h2"/>
<replace_model item_id="itm_imodbits_balanced_fauchard" model_id="fauchard_h3"/>
<replace_model item_id="itm_imodbits_masterwork_fauchard" model_id="fauchard_h4"/>
Simply repeat the operation for each item with an error (itm_voulge, itm_voulge_alt).
Finally, they just save the mod.xml and restart the installer
ps: sorry for my bad english.