Modding: Difference between revisions

From Archon Wiki
Jump to navigation Jump to search
(Created page with "= Modding Guide = == The Basics == == Creating a Campaign == == File Layout Guide ==")
 
Line 6: Line 6:


== File Layout Guide ==
== File Layout Guide ==
<nowiki>MYCAMPAIGN
│  backdrop.dds
│  Campaign.txt
│  icon.dds
│  sides.txt
│  Squads.csv
│  Terrain.txt
│  text1.txt
│  uniticons.dds
├───AI
│      AI.bsf
├───ANIM
│      MyAnim.s3f
├───BONUS
│      MyBonus.BSF
├───CARDS
│      cards.txt
├───DATA
│  │  music.txt
│  │  sfx0.txt
│  │
│  ├───BATTLE
│  │  ├───SCRIPTS
│  │  ├───UNITS
│  │  │      MyUnit.txt
│  │  │      MyUnit_0.s3f
│  │  │
│  │  └───UNITTEXTURES
│  ├───MUSIC
│  ├───SOUNDS
│  └───UI
│      │  Campaign_Overlay.txt
│      │  EndCamp.txt
│      │  SCENUI_MyScenario.txt
│      │
│      └───TEXTURES
│          │  CampaignListIcon.dds
│          │
│          └───ICONS
│                  MyUnit.dds
│                  MyUnit_SLOT.dds
├───OBJECTS
├───TILES
├───SCENARIOS
│      MyScenario.bam
│      MyScenario.bsf
│      MyScenario.dds</nowiki>

Revision as of 22:28, 13 January 2017

Modding Guide

The Basics

Creating a Campaign

File Layout Guide

MYCAMPAIGN
│   backdrop.dds
│   Campaign.txt
│   icon.dds
│   sides.txt
│   Squads.csv
│   Terrain.txt
│   text1.txt
│   uniticons.dds
│
├───AI
│       AI.bsf
│
├───ANIM
│       MyAnim.s3f
│
├───BONUS
│       MyBonus.BSF
│
├───CARDS
│       cards.txt
│
├───DATA
│   │   music.txt
│   │   sfx0.txt
│   │
│   ├───BATTLE
│   │   ├───SCRIPTS
│   │   ├───UNITS
│   │   │       MyUnit.txt
│   │   │       MyUnit_0.s3f
│   │   │
│   │   └───UNITTEXTURES
│   ├───MUSIC
│   ├───SOUNDS
│   └───UI
│       │   Campaign_Overlay.txt
│       │   EndCamp.txt
│       │   SCENUI_MyScenario.txt
│       │
│       └───TEXTURES
│           │   CampaignListIcon.dds
│           │
│           └───ICONS
│                   MyUnit.dds
│                   MyUnit_SLOT.dds
│
├───OBJECTS
├───TILES
├───SCENARIOS
│       MyScenario.bam
│       MyScenario.bsf
│       MyScenario.dds