Author Topic: 7th Heaven Updates (Coming With Catalog 3.0)  (Read 60070 times)

Chrysalis

  • ESUI Developer
  • Global moderator
  • *
  • Posts: 414
    • View Profile
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #75 on: 2019-07-17 00:16:07 »
No worries, is there any instructions on how to compile them posted anywhere?

Also since you supplied that exe for testing on another post I dont need that one anymore anyway but I am still willing to help the project.

TurBoss

  • 7th Heaven Crew
  • *
  • Posts: 15
    • View Profile
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #76 on: 2019-07-20 01:44:31 »
No worries, is there any instructions on how to compile them posted anywhere?

Also since you supplied that exe for testing on another post I dont need that one anymore anyway but I am still willing to help the project.

hello,

you may need visual studio comunity 2017 and open the solution with it (sln file)

if you have any question poke me on the discord 7h room

thanks!

EQ2Alyza

  • 7th Heaven Crew
  • Global moderator
  • *
  • Posts: 3200
  • Dilly-Dally Shilly-Shally
    • View Profile
    • EQ2Alyza - YouTube Channel
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #77 on: 2019-07-20 03:03:36 »
No worries, is there any instructions on how to compile them posted anywhere?

Also since you supplied that exe for testing on another post I dont need that one anymore anyway but I am still willing to help the project.

Not anything definite and clear. Kaldarasha started one awhile back, but never really took off with it: http://forums.qhimm.com/index.php?topic=15985.0

The basic idea is that you need to create a root folder, which typically is labeled the mod name. After that, create subfolders within it that lead to the files you want 7H to inject for modding. The mod.xml then needs to be constructed to read from those folders and setup the options used in the Configure button within 7H. Break open the MO Test I posted and study how it's working. I've changed that Test IRO for Catalog 3.0 release, so here is another example for reference:

Code: [Select]
<?xml version="1.0"?>
<ModInfo>
  <ID>3ee8d570-ac8b-471e-ad3f-53de21248652</ID>
  <Author>Qhimm Modding Community</Author>
  <Version>3.0</Version>
  <Link></Link>
  <PreviewFile>Previews\menu_interface.png</PreviewFile>

================Main Menu================

<ModFolder Folder="01 - Main Menu\1A - Avalanche GUI - Team Avalanche - 2.1.0" ActiveWhen="Main Menu = 1" />
<ModFolder Folder="01 - Main Menu\1B - Menu Enhancement - DLPB - R05c"  ActiveWhen="Main Menu = 2" />
<ModFolder Folder="01 - Main Menu\1C - Menu Overhaul - DLPB - R03e"  ActiveWhen="Main Menu = 3" />

================Items + Materia Icons================

<ModFolder Folder="01 - Main Menu\2A1 - Normal Items + Normal Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 1</Option>
<Option>Icons = 1</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2A2 - Normal Items + Shiny Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 1</Option>
<Option>Icons = 2</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2A3 - Colored Items + Normal Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 1</Option>
<Option>Icons = 3</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2A4 - Colored Items + Shiny Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 1</Option>
<Option>Icons = 4</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2B1 - Normal Items + Normal Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 2</Option>
<Option>Icons = 1</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2B2 - Normal Items + Shiny Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 2</Option>
<Option>Icons = 2</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2B3 - Colored Items + Normal Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 2</Option>
<Option>Icons = 3</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2B4 - Colored Items + Shiny Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 2</Option>
<Option>Icons = 4</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2C1 - Normal Items + Normal Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 3</Option>
<Option>Icons = 1</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2C2 - Normal Items + Shiny Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 3</Option>
<Option>Icons = 2</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2C3 - Colored Items + Normal Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 3</Option>
<Option>Icons = 3</Option>
</And>
</ActiveWhen>
</ModFolder>
<ModFolder Folder="01 - Main Menu\2C4 - Colored Items + Shiny Materia">
<ActiveWhen>
<And>
<Option>Main Menu = 3</Option>
<Option>Icons = 4</Option>
</And>
</ActiveWhen>
</ModFolder>

==========Avatars==========

<ModFolder Folder="02 - Avatars\Aerith - AbyssWolf"  ActiveWhen="Avatars - Aerith = 1" />
<ModFolder Folder="02 - Avatars\Aerith - Milo Leonhart"  ActiveWhen="Avatars - Aerith = 2" />
<ModFolder Folder="02 - Avatars\Aerith - Minmin"  ActiveWhen="Avatars - Aerith = 3" />
<ModFolder Folder="02 - Avatars\Aerith - Zendar"  ActiveWhen="Avatars - Aerith = 4" />

<ModFolder Folder="02 - Avatars\Barret - AbyssWolf"  ActiveWhen="Avatars - Barret = 1" />
<ModFolder Folder="02 - Avatars\Barret - Milo Leonhart"  ActiveWhen="Avatars - Barret = 2" />
<ModFolder Folder="02 - Avatars\Barret - Minmin"  ActiveWhen="Avatars - Barret = 3" />
<ModFolder Folder="02 - Avatars\Barret - Zendar"  ActiveWhen="Avatars - Barret = 4" />

<ModFolder Folder="02 - Avatars\Cait Sith - AbyssWolf"  ActiveWhen="Avatars - Cait Sith = 1" />
<ModFolder Folder="02 - Avatars\Cait Sith - Milo Leonhart"  ActiveWhen="Avatars - Cait Sith = 2" />
<ModFolder Folder="02 - Avatars\Cait Sith - Minmin"  ActiveWhen="Avatars - Cait Sith = 3" />
<ModFolder Folder="02 - Avatars\Cait Sith - Zendar"  ActiveWhen="Avatars - Cait Sith = 4" />

<ModFolder Folder="02 - Avatars\Chocobo - Milo Leonhart"  ActiveWhen="Avatars - Chocobo = 1" />
<ModFolder Folder="02 - Avatars\Chocobo - Minmin"  ActiveWhen="Avatars - Chocobo = 2" />
<ModFolder Folder="02 - Avatars\Chocobo - Zendar"  ActiveWhen="Avatars - Chocobo = 3" />

<ModFolder Folder="02 - Avatars\Cid - AbyssWolf"  ActiveWhen="Avatars - Cid = 1" />
<ModFolder Folder="02 - Avatars\Cid - Milo Leonhart"  ActiveWhen="Avatars - Cid = 2" />
<ModFolder Folder="02 - Avatars\Cid - Minmin"  ActiveWhen="Avatars - Cid = 3" />
<ModFolder Folder="02 - Avatars\Cid - Zendar"  ActiveWhen="Avatars - Cid = 4" />

<ModFolder Folder="02 - Avatars\Cloud - AbyssWolf"  ActiveWhen="Avatars - Cloud = 1" />
<ModFolder Folder="02 - Avatars\Cloud - Milo Leonhart"  ActiveWhen="Avatars - Cloud = 2" />
<ModFolder Folder="02 - Avatars\Cloud - Minmin"  ActiveWhen="Avatars - Cloud = 3" />
<ModFolder Folder="02 - Avatars\Cloud - Zendar"  ActiveWhen="Avatars - Cloud = 4" />

<ModFolder Folder="02 - Avatars\Cloud Young - AbyssWolf"  ActiveWhen="Avatars - Young Cloud = 1" />
<ModFolder Folder="02 - Avatars\Cloud Young - Milo Leonhart"  ActiveWhen="Avatars - Young Cloud = 2" />
<ModFolder Folder="02 - Avatars\Cloud Young - Minmin"  ActiveWhen="Avatars - Young Cloud = 3" />
<ModFolder Folder="02 - Avatars\Cloud Young - Zendar"  ActiveWhen="Avatars - Young Cloud = 4" />

<ModFolder Folder="02 - Avatars\Red XIII - AbyssWolf"  ActiveWhen="Avatars - Red XIII = 1" />
<ModFolder Folder="02 - Avatars\Red XIII - Milo Leonhart"  ActiveWhen="Avatars - Red XIII = 2" />
<ModFolder Folder="02 - Avatars\Red XIII - Minmin"  ActiveWhen="Avatars - Red XIII = 3" />
<ModFolder Folder="02 - Avatars\Red XIII - Zendar"  ActiveWhen="Avatars - Red XIII = 4" />
<ModFolder Folder="02 - Avatars\Red XIII - WolfMan - Red Werewolf"  ActiveWhen="Avatars - Red XIII = 5" />
<ModFolder Folder="02 - Avatars\Red XIII - Wolfman - WereXIII"  ActiveWhen="Avatars - Red XIII = 6" />

<ModFolder Folder="02 - Avatars\Sephiroth - Milo Leonhart"  ActiveWhen="Avatars - Sephiroth = 1" />
<ModFolder Folder="02 - Avatars\Sephiroth - Minmin"  ActiveWhen="Avatars - Sephiroth = 2" />
<ModFolder Folder="02 - Avatars\Sephiroth - Zendar"  ActiveWhen="Avatars - Sephiroth = 3" />

<ModFolder Folder="02 - Avatars\Tifa - AbyssWolf"  ActiveWhen="Avatars - Tifa = 1" />
<ModFolder Folder="02 - Avatars\Tifa - Milo Leonhart"  ActiveWhen="Avatars - Tifa = 2" />
<ModFolder Folder="02 - Avatars\Tifa - Minmin"  ActiveWhen="Avatars - Tifa = 3" />
<ModFolder Folder="02 - Avatars\Tifa - Zendar"  ActiveWhen="Avatars - Tifa = 4" />

<ModFolder Folder="02 - Avatars\Vincent - AbyssWolf"  ActiveWhen="Avatars - Vincent = 1" />
<ModFolder Folder="02 - Avatars\Vincent - Milo Leonhart"  ActiveWhen="Avatars - Vincent = 2" />
<ModFolder Folder="02 - Avatars\Vincent - Minmin"  ActiveWhen="Avatars - Vincent = 3" />
<ModFolder Folder="02 - Avatars\Vincent - Zendar"  ActiveWhen="Avatars - Vincent = 4" />

<ModFolder Folder="02 - Avatars\Yuffie - AbyssWolf"  ActiveWhen="Avatars - Yuffie = 1" />
<ModFolder Folder="02 - Avatars\Yuffie - Milo Leonhart"  ActiveWhen="Avatars - Yuffie = 2" />
<ModFolder Folder="02 - Avatars\Yuffie - Minmin"  ActiveWhen="Avatars - Yuffie = 3" />
<ModFolder Folder="02 - Avatars\Yuffie - Zendar"  ActiveWhen="Avatars - Yuffie = 4" />

==========Backgrounds==========

<ModFolder Folder="03 - Backgrounds\Game Over"  ActiveWhen="Game Over = 1" />

<ModFolder Folder="03 - Backgrounds\Prelude Credits - Grimmy"  ActiveWhen="Prelude Credits = 1" />
<ModFolder Folder="03 - Backgrounds\Prelude Credits - JordieBo"  ActiveWhen="Prelude Credits = 2" />
<ModFolder Folder="03 - Backgrounds\Prelude Credits - Strayoff"  ActiveWhen="Prelude Credits = 3" />

<ModFolder Folder="03 - Backgrounds\Start Menu - 01"  ActiveWhen="Start Menu = 1" />
<ModFolder Folder="03 - Backgrounds\Start Menu - 02"  ActiveWhen="Start Menu = 2" />
<ModFolder Folder="03 - Backgrounds\Start Menu - 03"  ActiveWhen="Start Menu = 3" />
<ModFolder Folder="03 - Backgrounds\Start Menu - 04"  ActiveWhen="Start Menu = 4" />
<ModFolder Folder="03 - Backgrounds\Start Menu - 05"  ActiveWhen="Start Menu = 5" />
<ModFolder Folder="03 - Backgrounds\Start Menu - 06"  ActiveWhen="Start Menu = 6" />
<ModFolder Folder="03 - Backgrounds\Start Menu - 07"  ActiveWhen="Start Menu = 7" />
<ModFolder Folder="03 - Backgrounds\Start Menu - 08"  ActiveWhen="Start Menu = 8" />
<ModFolder Folder="03 - Backgrounds\Start Menu - 09"  ActiveWhen="Start Menu = 9" />
<ModFolder Folder="03 - Backgrounds\Start Menu - 10" ActiveWhen="Start Menu = 10" />

================Configuration================

 <ConfigOption>
    <Type>List</Type>
    <Default>0</Default>
    <ID>Main Menu</ID>
    <Name>Main Menu</Name>
    <Description>Avalanche GUI               Team Avalanche               Version 2.1.0                          Menu Enhancement        DLPB + Kranmer               Version R05c (Reunion)              Menu Overhaul                DLPB + Kranmer               Version R03e (Reunion)</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - Avalanche GUI" PreviewFile="Previews\avalanche_gui.gif"/>
    <Option Value="2" Name="2 - Menu Enhancement" PreviewFile="Previews\menu_enhancement.gif"/>
    <Option Value="3" Name="3 - Menu Overhaul" PreviewFile="Previews\menu_overhaul.gif"/>
  </ConfigOption>

  <ConfigOption>
    <Type>List</Type>
    <Default>0</Default>
    <ID>Icons</ID>
    <Name>Icons</Name>
    <Description>Options for the item and materia icons.</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - Normal Items + Normal Materia" PreviewFile="Previews\normal_items+normal_materia.png"/>
    <Option Value="2" Name="2 - Normal Items + Shiny Materia" PreviewFile="Previews\normal_items+shiny_materia.png"/>
    <Option Value="3" Name="3 - Colored Items + Normal Materia" PreviewFile="Previews\colored_items+normal_materia.png"/>
    <Option Value="4" Name="4 - Colored Items + Shiny Materia" PreviewFile="Previews\colored_items+shiny_materia.png"/>
  </ConfigOption>
   
  <ConfigOption>
    <Type>List</Type>
    <Default>1</Default>
    <ID>Game Over</ID>
    <Name>Game Over</Name>
    <Description></Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - Game Over" PreviewFile="Previews\game_over.png"/>
  </ConfigOption>
   
  <ConfigOption>
    <Type>List</Type>
    <Default>2</Default>
    <ID>Prelude Credits</ID>
    <Name>Prelude Credits</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - Grimmy" PreviewFile="Previews\grimmy.png"/>
    <Option Value="2" Name="2 - JordieBo" PreviewFile="Previews\jordiebo.png"/>
    <Option Value="3" Name="3 - Strayoff" PreviewFile="Previews\strayoff.png"/>
  </ConfigOption>

  <ConfigOption>
    <Type>List</Type>
    <Default>7</Default>
    <ID>Start Menu</ID>
    <Name>Start Menu</Name>
    <Description>Listed by Title</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - Remix" PreviewFile="Previews\remix.png"/>
    <Option Value="2" Name="2 - Red Buster" PreviewFile="Previews\red_buster.png"/>
    <Option Value="3" Name="3 - Midgar" PreviewFile="Previews\midgar.png"/>
<Option Value="4" Name="4 - Friends" PreviewFile="Previews\friends.png"/>
    <Option Value="5" Name="5 - Cloud" PreviewFile="Previews\cloud.png"/>
    <Option Value="6" Name="6 - Simple" PreviewFile="Previews\simple.png"/>
    <Option Value="7" Name="7 - Buster Glare" PreviewFile="Previews\buster_glare.png"/>
<Option Value="8" Name="8 - Standoff" PreviewFile="Previews\standoff.png"/>
    <Option Value="9" Name="9 - Midgar Buster" PreviewFile="Previews\midgar_buster.png"/>
    <Option Value="10" Name="10 - Gold Hilt Buster" PreviewFile="Previews\gold_hilt_buster.png"/>
  </ConfigOption> 
 
  <ConfigOption>
    <Type>List</Type>
    <Default>0</Default>
    <ID>Avatars</ID>
    <Name>======Avatars======</Name>
    <Description>Avatars - Main Characters</Description>
    <Option Value="0" Name="" PreviewFile="Previews\.png"/>
  </ConfigOption>

  <ConfigOption>
    <Type>List</Type>
    <Default>3</Default>
    <ID>Avatars - Aerith</ID>
    <Name>Aerith</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\Previews\no_change.png"/>
    <Option Value="1" Name="1 - AbyssWolf" PreviewFile="Previews\aerith_abysswolf.png"/>
    <Option Value="2" Name="2 - Milo Leonhart" PreviewFile="Previews\aerith_milo_leonhart.png"/>
    <Option Value="3" Name="3 - Minmin" PreviewFile="Previews\aerith_minmin.png"/>
    <Option Value="4" Name="4 - Zendar" PreviewFile="Previews\aerith_zendar.png"/>
  </ConfigOption>

  <ConfigOption>
    <Type>List</Type>
    <Default>3</Default>
    <ID>Avatars - Barret</ID>
    <Name>Barret</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - AbyssWolf" PreviewFile="Previews\barret_abysswolf.png"/>
    <Option Value="2" Name="2 - Milo Leonhart" PreviewFile="Previews\barret_milo_leonhart.png"/>
    <Option Value="3" Name="3 - Minmin" PreviewFile="Previews\barret_minmin.png"/>
    <Option Value="4" Name="4 - Zendar" PreviewFile="Previews\barret_zendar.png"/>
  </ConfigOption>
 
  <ConfigOption>
    <Type>List</Type>
    <Default>3</Default>
    <ID>Avatars - Cait Sith</ID>
    <Name>Cait Sith</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - AbyssWolf" PreviewFile="Previews\cait_sith_abysswolf.png"/>
    <Option Value="2" Name="2 - Milo Leonhart" PreviewFile="Previews\cait_sith_milo_leonhart.png"/>
    <Option Value="3" Name="3 - Minmin" PreviewFile="Previews\cait_sith_minmin.png"/>
    <Option Value="4" Name="4 - Zendar" PreviewFile="Previews\cait_sith_zendar.png"/>
  </ConfigOption>
 
  <ConfigOption>
    <Type>List</Type>
    <Default>2</Default>
    <ID>Avatars - Chocobo</ID>
    <Name>Chocobo</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - Milo Leonhart" PreviewFile="Previews\chocobo_milo_leonhart.png"/>
    <Option Value="2" Name="2 - Minmin" PreviewFile="Previews\chocobo_minmin.png"/>
    <Option Value="3" Name="3 - Zendar" PreviewFile="Previews\chocobo_zendar.png"/>
  </ConfigOption>
 
  <ConfigOption>
    <Type>List</Type>
    <Default>3</Default>
    <ID>Avatars - Cid</ID>
    <Name>Cid</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - AbyssWolf" PreviewFile="Previews\cid_abysswolf.png"/>
    <Option Value="2" Name="2 - Milo Leonhart" PreviewFile="Previews\cid_milo_leonhart.png"/>
    <Option Value="3" Name="3 - Minmin" PreviewFile="Previews\cid_minmin.png"/>
    <Option Value="4" Name="4 - Zendar" PreviewFile="Previews\cid_zendar.png"/>
  </ConfigOption>
 
  <ConfigOption>
    <Type>List</Type>
    <Default>3</Default>
    <ID>Avatars - Cloud</ID>
    <Name>Cloud</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - AbyssWolf" PreviewFile="Previews\cloud_abysswolf.png"/>
    <Option Value="2" Name="2 - Milo Leonhart" PreviewFile="Previews\cloud_milo_leonhart.png"/>
    <Option Value="3" Name="3 - Minmin" PreviewFile="Previews\cloud_minmin.png"/>
    <Option Value="4" Name="4 - Zendar" PreviewFile="Previews\cloud_zendar.png"/>
  </ConfigOption>
 
  <ConfigOption>
    <Type>List</Type>
    <Default>3</Default>
    <ID>Avatars - Young Cloud</ID>
    <Name>Cloud Young</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - AbyssWolf" PreviewFile="Previews\pcloud_abysswolf.png"/>
    <Option Value="2" Name="2 - Milo Leonhart" PreviewFile="Previews\pcloud_milo_leonhart.png"/>
    <Option Value="3" Name="3 - Minmin" PreviewFile="Previews\pcloud_minmin.png"/>
    <Option Value="4" Name="4 - Zendar" PreviewFile="Previews\pcloud_zendar.png"/>
  </ConfigOption>
 
  <ConfigOption>
    <Type>List</Type>
    <Default>3</Default>
    <ID>Avatars - Red XIII</ID>
    <Name>Red XIII</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - AbyssWolf" PreviewFile="Previews\red_abysswolf.png"/>
    <Option Value="2" Name="2 - Milo Leonhart" PreviewFile="Previews\red_milo_leonhart.png"/>
    <Option Value="3" Name="3 - Minmin" PreviewFile="Previews\red_minmin.png"/>
    <Option Value="4" Name="4 - Zendar" PreviewFile="Previews\red_zendar.png"/>
    <Option Value="5" Name="5 - WolfMan - Red Werewolf" PreviewFile="Previews\red_wolfman_1.png"/>
    <Option Value="6" Name="6 - WolfMan - WereXIII" PreviewFile="Previews\red_wolfman_2.png"/>
  </ConfigOption>
 
  <ConfigOption>
    <Type>List</Type>
    <Default>2</Default>
    <ID>Avatars - Sephiroth</ID>
    <Name>Sephiroth</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - Milo Leonhart" PreviewFile="Previews\sephiroth_milo_leonhart.png"/>
    <Option Value="2" Name="2 - Minmin" PreviewFile="Previews\sephiroth_minmin.png"/>
    <Option Value="3" Name="3 - Zendar" PreviewFile="Previews\sephiroth_zendar.png"/>
  </ConfigOption>
 
  <ConfigOption>
    <Type>List</Type>
    <Default>3</Default>
    <ID>Avatars - Tifa</ID>
    <Name>Tifa</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - AbyssWolf" PreviewFile="Previews\tifa_abysswolf.png"/>
    <Option Value="2" Name="2 - Milo Leonhart" PreviewFile="Previews\tifa_milo_leonhart.png"/>
    <Option Value="3" Name="3 - Minmin" PreviewFile="Previews\tifa_minmin.png"/>
    <Option Value="4" Name="4 - Zendar" PreviewFile="Previews\tifa_zendar.png"/>
  </ConfigOption>
 
  <ConfigOption>
    <Type>List</Type>
    <Default>3</Default>
    <ID>Avatars - Vincent</ID>
    <Name>Vincent</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - AbyssWolf" PreviewFile="Previews\vincent_abysswolf.png"/>
    <Option Value="2" Name="2 - Milo Leonhart" PreviewFile="Previews\vincent_milo_leonhart.png"/>
    <Option Value="3" Name="3 - Minmin" PreviewFile="Previews\vincent_minmin.png"/>
    <Option Value="4" Name="4 - Zendar" PreviewFile="Previews\vincent_zendar.png"/>
  </ConfigOption>
 
  <ConfigOption>
    <Type>List</Type>
    <Default>3</Default>
    <ID>Avatars - Yuffie</ID>
    <Name>Yuffie</Name>
    <Description>Listed by Author</Description>
    <Option Value="0" Name="0 - No Change" PreviewFile="Previews\no_change.png"/>
    <Option Value="1" Name="1 - AbyssWolf" PreviewFile="Previews\yuffie_abysswolf.png"/>
    <Option Value="2" Name="2 - Milo Leonhart" PreviewFile="Previews\yuffie_milo_leonhart.png"/>
    <Option Value="3" Name="3 - Minmin" PreviewFile="Previews\yuffie_minmin.png"/>
    <Option Value="4" Name="4 - Zendar" PreviewFile="Previews\yuffie_zendar.png"/>
  </ConfigOption>
 
================Compatibility================

<Compatibility>
     <Setting>
      <MyID>Main Menu</MyID>
      <MyValue>0</MyValue>
      <ModID>3ee8d570-ac8b-471e-ad3f-53de21248652</ModID>
      <TheirID>Icons</TheirID>
      <Require>0</Require>
     </Setting>
</Compatibility>
 
<Compatibility>
     <Setting>
      <MyID>Main Menu</MyID>
      <MyValue>1</MyValue>
      <ModID>3ee8d570-ac8b-471e-ad3f-53de21248652</ModID>
      <TheirID>Icons</TheirID>
      <Forbid>0</Forbid>
     </Setting>
</Compatibility>
 
<Compatibility>
     <Setting>
      <MyID>Main Menu</MyID>
      <MyValue>2</MyValue>
      <ModID>3ee8d570-ac8b-471e-ad3f-53de21248652</ModID>
      <TheirID>Icons</TheirID>
      <Require>0</Require>
     </Setting>
</Compatibility>
 
<Compatibility>
     <Setting>
      <MyID>Main Menu</MyID>
      <MyValue>3</MyValue>
      <ModID>3ee8d570-ac8b-471e-ad3f-53de21248652</ModID>
      <TheirID>Icons</TheirID>
      <Forbid>0</Forbid>
     </Setting>
</Compatibility>

</ModInfo>

Also note the folders that need to be used for the mods to apply:

Direct Mode = ON (as seen in your [gamedir]\direct folder)
battle
char
menu
world
etc

Direct Mode = OFF (as seen in your [gamedir]\data folder)
battle.lgp
char.lgp
menu_us.lgp
world_us.lgp
etc

It's not very user friendly when starting off, but once you learn it and figure out a good workflow, it's not so bad. Feel free to PM or Discord with me any specific questions you might have.

TrueOdin

  • *
  • Posts: 49
    • View Profile
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #78 on: 2019-09-19 11:46:23 »
Hi everybody, for anyone tuning into this thread I am one of the contributors of 7h and from now the project requires VS2019 ( Community edition which is free works fine ).

Yuffie1983

  • *
  • Posts: 206
    • View Profile
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #79 on: 2019-09-20 18:39:47 »
Hi everybody, for anyone tuning into this thread I am one of the contributors of 7h and from now the project requires VS2019 ( Community edition which is free works fine ).

Is there a ETA on a release of the latest catalog please.

LordUrQuan

  • Alpha testing your worst nightmares
  • *
  • Posts: 602
  • LOAD "FF2J",8,1
    • View Profile
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #80 on: 2019-09-20 19:25:41 »
Is there a ETA on a release of the latest catalog please.
The "stop being a whiny git: answer: When it's done(tm)

The less "stop being a whiny git" answer: Not only is the catalog being updated, but a ton of mods are also being re-checked for bugs and problematic interactions, the guides and tutorials are being updated, and depending on how much time certain people have and the testing time others have, 7H itself may even see an update.  In other words, this is going to be bigger than just a list of new mods to pick from.

Yuffie1983

  • *
  • Posts: 206
    • View Profile
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #81 on: 2019-09-20 20:57:18 »
The "stop being a whiny git: answer: When it's done(tm)

The less "stop being a whiny git" answer: Not only is the catalog being updated, but a ton of mods are also being re-checked for bugs and problematic interactions, the guides and tutorials are being updated, and depending on how much time certain people have and the testing time others have, 7H itself may even see an update.  In other words, this is going to be bigger than just a list of new mods to pick from.


I was not being a whiny git, just asking a civil question for god sake. 

LordUrQuan

  • Alpha testing your worst nightmares
  • *
  • Posts: 602
  • LOAD "FF2J",8,1
    • View Profile
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #82 on: 2019-09-20 21:21:40 »
I was not being a whiny git, just asking a civil question for god sake.
That's why I included the "less git-ty" answer.  You'll need to forgive us for being a little cranky of late... one of the best coders is settling into a new job, other folks have personal issues in play, and then you have those special snowflakes (since muted) who demand personal attention RIGHT THIS D2MN3D MINUTE!!1!!!  It's been years since a lot of this stuff was last actively developed, and rather than just throw it out there like a steaming pile of Remako poo, the old guard and us fresh bloods are trying to bring everything up to modern standards so it Just Works(tm) without crazy workarounds (see "640x480 mode").  Much of what will find its way into Catalog v3 is available via Strife's "Mods of the Round" subscription URL, it just hasn't all been vetted to play nicely together, and a couple of things (like Reunion R06) haven't actually been released yet.

Edit:  And then there's the excitement of tearing apart FF8-Remake... some of the coders are wetting themselves just with how crazy dotEMU screwed things up on that, and seeing what might be possible.

EQ2Alyza

  • 7th Heaven Crew
  • Global moderator
  • *
  • Posts: 3200
  • Dilly-Dally Shilly-Shally
    • View Profile
    • EQ2Alyza - YouTube Channel
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #83 on: 2019-09-20 22:26:38 »
Is there a ETA on a release of the latest catalog please.

3-day weekend and typhoon 17 sweeping into Japan this weekend, so I’ll probably be indoors most of the time. I “hope” I can release something this weekend, but I’m not promising anything. It’ll be done when it’s done is the only real answer I can give.

Gensoul

  • *
  • Posts: 46
    • View Profile
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #84 on: 2019-10-04 18:50:26 »
Edit:  And then there's the excitement of tearing apart FF8-Remake... some of the coders are wetting themselves just with how crazy dotEMU screwed things up on that, and seeing what might be possible.

Kinda off topic, but I'm happy to hear some people might actually enjoy the challenge of modding FF8-R instead of just crying that it's a pile of poo and refusing to touch it.

Back on topic: Thanks to everyone who has worked on 7th Heaven. What a godsend for modding FF7 it is.

Idubaren

  • *
  • Posts: 80
    • View Profile
Re: 7th Heaven Updates (Coming With Catalog 3.0)
« Reply #85 on: 2019-12-13 21:18:50 »
Hello there! I seem to be having a problem with 7th Haeven, I don't know if I should post this here, been long since I came to this forum so, I guess I'll say it here. I seem to be having problems to boot up Final Fantasy VII through 7th heaven mod manager, it shows up the black screen and the little sound but then it just closes. I launched the ISO and everything but... that happens. I got some mods like New Threat and Because and Menu Overhaul, but with the mo exe it just gives me a crash error and with the bc exe it shows up the black screen but then it crashes off


EDIT: Fixed, it was a thing about the sound driver i had to change on the "RunFFVIIConfig.exe"
« Last Edit: 2019-12-13 21:26:23 by Iduabren »