Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can not start my conversion mod
Mudbill Offline
Muderator

Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation: 179
#12
RE: Can not start my conversion mod

Ah, I think you've misunderstood how the resources are supposed to be. You shouldn't remove / edit the lines that are already there, because your mod may still depend on some of the stock assets, and if they are no longer within this scope, the game won't find them. Only add new lines for your own mod. It's enough to add only 1 line at the top of your mod's folder name, because AddSubDirs will add everything underneath it.

PHP Code: (Select All)
<Resources>
  <
Directory Path="/FinalRevelations" AddSubDirs="true" />
  
  <
Directory Path="/_temp" AddSubDirs="true" />
  <
Directory Path="/fonts" AddSubDirs="false" />
  <
Directory Path="/maps" AddSubDirs="true" />
  <
Directory Path="/textures" AddSubDirs="true" />
  <
Directory Path="/models" AddSubDirs="true" />
  <
Directory Path="/gui" AddSubDirs="true" />
  <
Directory Path="/static_objects" AddSubDirs="true" />
  <
Directory Path="/sounds" AddSubDirs="true" />
  <
Directory Path="/main_menu" AddSubDirs="true" />
  <
Directory Path="/shaders" AddSubDirs="true" />
  <
Directory Path="/lights" AddSubDirs="true" />
  <
Directory Path="/billboards" AddSubDirs="true" />
  <
Directory Path="/entities" AddSubDirs="true" />
  <
Directory Path="/graphics" AddSubDirs="true" />
  <
Directory Path="/viewer" AddSubDirs="true" />
  <
Directory Path="/particles" AddSubDirs="true" />
  <
Directory Path="/models" AddSubDirs="true" />
  <
Directory Path="/music" AddSubDirs="true" />
  <
Directory Path="/flashbacks" AddSubDirs="true" />
  <
Directory Path="/textures" AddSubDirs="true" />    
  <
Directory Path="/misc" AddSubDirs="true" />
  <
Directory Path="/commentary" AddSubDirs="true" />
  <
Directory Path="/custom_stories" AddSubDirs="true" />
</
Resources

This should fix that. Also make sure that since it's in your mod's root folder, that this is in your main_init.cfg:

PHP Code: (Select All)
Resources "FinalRevelations/resources.cfg" 

(This post was last modified: 07-31-2016, 11:31 PM by Mudbill.)
07-31-2016, 11:29 PM
Find


Messages In This Thread
Can not start my conversion mod - by Krusti - 07-31-2016, 11:23 AM
RE: Can not start my conversion mod - by Mudbill - 07-31-2016, 12:15 PM
RE: Can not start my conversion mod - by Krusti - 07-31-2016, 01:14 PM
RE: Can not start my conversion mod - by Mudbill - 07-31-2016, 02:49 PM
RE: Can not start my conversion mod - by Krusti - 07-31-2016, 03:18 PM
RE: Can not start my conversion mod - by Mudbill - 07-31-2016, 04:10 PM
RE: Can not start my conversion mod - by Krusti - 07-31-2016, 06:34 PM
RE: Can not start my conversion mod - by Mudbill - 07-31-2016, 07:24 PM
RE: Can not start my conversion mod - by Krusti - 07-31-2016, 08:35 PM
RE: Can not start my conversion mod - by Mudbill - 07-31-2016, 10:21 PM
RE: Can not start my conversion mod - by Krusti - 07-31-2016, 11:24 PM
RE: Can not start my conversion mod - by Mudbill - 07-31-2016, 11:29 PM
RE: Can not start my conversion mod - by Krusti - 08-01-2016, 12:50 AM
RE: Can not start my conversion mod - by Mudbill - 08-01-2016, 08:09 AM
RE: Can not start my conversion mod - by Mudbill - 08-01-2016, 09:29 AM



Users browsing this thread: 1 Guest(s)