Re: I want to make a scene with custom parts.
ToastyGuise wrote:
I did exactly what it said and heres my index:
Code:
DataModule
ModuleName = Base Set
IncludeFile = Base.rte/Materials.ini
IncludeFile = Base.rte/Sounds.ini
IncludeFile = Base.rte/Effects.ini
IncludeFile = Base.rte/Ammo.ini
IncludeFile = Base.rte/Devices.ini
IncludeFile = Base.rte/Actors.ini
IncludeFile = Base.rte/Scenes.ini
IncludeFile = Base.rte/Activities.ini
IncludeFile = HR.rte/index.ini
IncludeFile = L4D.rte/index.ini
IncludeFile = MDC.rte/index.ini
IncludeFile = SAW.rte/index.ini
But it still douesn't show up in the selection area.
If your using HR, L4d, MDC, and Saw,
you must copy ALL the files over, into base.rte, dropping the .RTE on the other mods.
Such as Base.rte/HR/index.ini
data modules can NOT load files from other .rte's.
So, copy the .rte into base.rte, drop the RTE on the mods name, so for saw.rte, you'd have
IncludeFile = Base.rte/Saw/Index.ini
All of those, must be included in base.rte/index.ini BEFORE scenes.ini, not after. so what you would need is....
Code:
DataModule
ModuleName = Base Set
IncludeFile = Base.rte/Materials.ini
IncludeFile = Base.rte/Sounds.ini
IncludeFile = Base.rte/Effects.ini
IncludeFile = Base.rte/Ammo.ini
IncludeFile = Base.rte/Devices.ini
IncludeFile = Base.rte/Actors.ini
IncludeFile = Base.rte/HR/index.ini
IncludeFile = Base.rte/L4D/index.ini
IncludeFile = Base.rte/MDC/index.ini
IncludeFile = Base.rte/SAW/index.ini
IncludeFile = Base.rte/Scenes.ini
IncludeFile = Base.rte/Activities.ini
(sorry about the extra tabs, all I did was copy/paste it...