View Single Post
  #13  
Unread 02-07-2006, 07:37 AM
DBurgdorf's Avatar
DBurgdorf DBurgdorf is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Apr 2005
Server: Permafrost
Posts: 320
Default

Quote:
Originally Posted by Xhi
If I install both the Milquetowst InfoCenter and your Tradeskill mod, all of the windows in the Provisioner's Cookbook window (after pressing the button from the Recipe Book) display nothing but blue background.
You're correct in assuming that this problem is due to duplicate <include> calls. I ran into the same problem back when I was pulling the same info files info two or more different windows myself.

The problem is easily fixed by "fooling" the system into thinking that two different files are being called.

In one or the other of the mods, replace the <include> calls structured like this:

<include>infocenter/harvesting/tier1.txt</include>

With calls structured like this:

<include>dummydir/../infocenter/harvesting/tier1.txt</include>

(A simple global search and replace from ">infocenter/" to ">dummydir/../infocenter/" will do the trick nicely.)

Even though the two references are of course calls to the same file, the system will treat them as calls to different files, and the data will load into both windows.

-- Darryl
__________________
Creator of the various Milquetowst mods
(But no longer actively modding)
Reply With Quote