Introduction to modding: Difference between revisions

From OniGalore
Jump to navigation Jump to search
m (mod tool: obj export addon)
(35 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__TOC__
{{finish}}
 
This page provides an introduction to modding that does not assume that you have prior modding experience or knowledge of the Oni engine. Links to more technical parts of the wiki are interspersed below or can be accessed directly from the wiki's Main Page.
{{TOClimit}}
 
==Introduction to modding==
[[Image:No_easy_button.png|150px|right]]
Modifying, or "modding", a game is generally easier than creating one, because you might only be changing some of the game's existing elements, or creating a limited amount of new data. Nevertheless, modding can be an intimidating field to get into. Our community does not have the polished modding tools of the big engines like Unreal (but we're getting better). You should have a [[wiktionary:DIY|DIY]] personality and a high tolerance for technical details. If this page seems like a chore to read, for instance, then you are definitely not ready for Oni modding :-) We do not yet have any modding solutions with a big red button that says "easy".
 
Like learning a new language, modding your first game is always the hardest, but after that you can more easily pick up new ones. If you take things one step at a time, you can learn a lot from Oni about how to make games in general; in fact, many game developers started out as modders. Additionally, there are lots of different ways for someone to mod; whether your interest is in coding, art, sound, 3D modeling, or general game design, there's something for you to do, and collaborating with others to divide the work according to your abilities can lead to a memorable, rewarding creative experience.
 
*Go to the {{OMD}} to see what kinds of mods are available, or;
*Install the [[Anniversary Edition]] to try out the mods, or;
*Continue reading to get an overview of the game engine.
 
==Introduction to the Oni engine==
Oni runs on a custom engine that Bungie could build for both Windows and the Macintosh (later, PlayStation 2 support was added, however console games are not easily modded, so we do not work with the PS2 version of Oni). At the time development started, Bungie did not yet have a true 3D engine, and Oni's lead coders intended their work to be reused in future cross-platform Bungie titles, so the engine is separated into a lower layer of general-purpose game code called BungieFrameWork (usually referred to as simply '''BFW'''), and an upper layer called '''Oni''' with Oni-specific code. The engine also consists of various subsystems, some of which have colorful animé-related names like [[wikipedia:Akira (film)|Akira]] (environment), [[wikipedia:Motoko Kusanagi|Motoko]] (graphics), and [[wikipedia:My Neighbor Totoro|Totoro]] (animation).
 
Unfortunately, the game was rushed to completion during a change of ownership, and it was not possible for the developers to release any tools or information to aid the fans in modding. The game data also reflects Oni's rocky development, being assembled somewhat haphazardly, containing unused and duplicate resources, and also missing a number of resources that the engine looks for during gameplay. One good thing that can be said about the engine is that it is solid enough to run smoothly over top of the errors that it regularly encounters in the data. That being said, it's easy to crash the engine when modding, as is the case with all game engines.
 
Due to the lack of modding tools/information at the time of Oni’s release, fans had to explore the wild jungle of raw game data and create modding tools through reverse-engineering. It took over seven years to unlock most of the game's secrets –- and the work is still ongoing. But to make a long story short, we can now mod almost all types of data effectively, allowing us to create entirely new levels and characters. Now we're turning our focus to making tools that are user-friendly so artists can work more freely.
 
Altogether, we have identified over 100 types of resources (often called "file types" on this wiki, and "tags" in many other game modding communities) in the game data, however we only directly edit about half of these. It may sound intimidating at first, but depending on the kind of modding you want to do, you might be able to start working with only a little knowledge of the engine.
 
*Go to [[Oni]] for the full story on Oni's development, or;
*Go to [[History of Oni modding]] to read about the community's accomplishments up until now, or;
*Continue reading to learn about the game data files.


{{finish}}
==Introduction to the game data==
A game can be compared to a theater play: in both cases, you have <u>stages</u>, <u>actors</u>, <u>scripts</u>, and <u>music</u>. A level is built so that when the player performs certain actions or reaches certain locations on the <u>stage</u>, further events are set in motion according to the <u>script</u>. The player is told what to do through various textual instructions, cutscenes, and/or voice acting (more <u>scripts</u>), and he interacts with [[wikipedia:Artificial intelligence (video games)|AI]] <u>actors</u>. <u>Music</u> will often play dynamically behind all this, changing along with the flow of events.


==introduction==
In Oni's case, the <u>stages</u>, <u>actors</u>, and <u>music</u> (and other sounds) are all packed together into files inside GameDataFolder/ that end in ".dat", ".raw", and, on Macs, ".sep". The level0_Final data files provide resources for all levels, and when you load a Chapter, an additional set of data files provide the level-specific resources for that Chapter (e.g. level12_Final for Chapter 10). The <u>scripts</u> are stored in separate, plain-text files ending in ".bsl", in GameDataFolder/IGMD/. The player's progress is stored in persist.dat, next to the Oni application.
In sum, modding Oni looks like writing a theatre play: You have stages, actors, and scripts - wide areas, buildings, rooms, decorations, characters running from A to B whereas the protagonist triggers most events.
Due the none-existence of modding tools at the time of Oni’s release, fans had to document the data jungle and create modding tools painfully by their own. It took over seven years to ''unlock'' most possibilities – and the work is still ongoing. Read '''[[History_of_Oni_modding|HERE]]''' the full story.


*Go to [[Oni (folder)]] for information on each file, or;
*Go to [[Game data terminology]] to learn the precise terms for Oni's data, or;
*Continue reading to learn the general process of modding.


Scripts are written in Bungie Script Language and stored as *.bsl files, that's why we often say "BSL mods".
==Introduction to the modding workflow==
They build up the level logic, simply said they make the level to appear logic/intelligent, they give basic commands to game engine. ''Spawn enemies there if player reaches point X, give them weapons, start cutscene '', etc..
The general order of events in creating a mod is (1) unpacking the resources you wish to edit, (2) editing them, and (3) re-packing them into Oni's level data. These days, you can rely entirely on the Anniversary Edition Installer to re-pack your data, which means that you just need to know how to create the kind of mod package that the AEI requires. If you are only creating a script mod, then you don't need to unpack any data, but you'll still need to know how to place your script(s) in a mod package.


'''''Add something here about how to find a given resource.'''''


OBD refers to Oni Binay Data. Script commands are useless when their addressed resources don't exist. A BSL command might say "ai2_movetoflag characterA 7" (characterA moves to point 7) but the actual movement animation and flag comes from the binaries, in this case called TRAM and FLAG. [[OBD:File_types|Every resource]] has a four-letter-acronym. (Make sure to check out the talk pages, they might contain additional information such as '''[[XML_basic_tutorial#supported_file_types|XML documentations]]'''.) For example, TRAM stands for Totoro Animation. Nowadays, TRAM can be converted to XML almost bug-free. XML files can be read and rewritten more easily by hand but still lacks user-friendliness when it comes to a few special file types.
===Data unpacking===
{| border=0 cellspacing=20 cellpadding=0 align=right
The game data cannot be edited easily until our tools convert it into something more modder-friendly. Thus you will usually start by using OniSplit to break level data files (a .dat file supplemented by a .raw file, and on the Mac a .sep file as well) into their component resources (.oni files), then converting those resources into something editable. The editable format you arrive at will depend on the kind of data you're editing. It might be plain-text, XML, PNG, Collada, WAV, etc.
| [http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XSI_modding/RAICOMthrow_fw_kick.png http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XSI_modding/RAICOMthrow_fw_kick_TN.png]
''An "appetizer screenshot".''
|}


===Third-party tools===
If you are scripting, then you might need nothing more than a text editor. For editing textures, you might only need a free bitmap editor. For creating levels or characters, you'll need a full 3D modeling package. Thankfully, since Oni is graphically primitive, you won't need to know as much about modeling as with a modern game, and there are free modelers available (but not as good as the commercial ones). Our recommendations for tools will be found under the appropriate subsections of "Modding resources", below.


Some binary resources don't suit XML. These are 3D objects and animations, sounds and textures, they become converted into their native formats.<br>By modding it is often meant that you can also create complete new resources.
===Community tools===
* 3D objects (characters, objects, levels) and animations can be modified/created in {{ModTool}}, [http://sketchup.google.com/ SketchUp] is also good for levels.
'''''Talk about scripting assistants, XmlTools, Vago, and other tools we've made, and which are available from within the AEI.'''''
* Texture can be modified/created in your favorite graphic program: [http://www.gimp.org/ GIMP], [http://www.adobe.com/products/photoshop/compare/ Photoshop], etc. – as long as these programs outputs files in formats that can be reconverted.


===Mod creation===
To see how mods normally look and how they are distributed and installed, you should download the [[Anniversary Edition]] and choose to install some mods. You can then look at the packages that have been downloaded to AE/AEInstaller/packages/.


In any case make sure to download [[AE]] which provides you a sophisticated modding framework.
*Go to [[OniSplit]]'s page to learn how to unpack and reassemble the game data, or;
*Go to [[XmlTools]]' page to learn how to smartly alter the game data during mod installation, or;
*Go to [[Making a mod package]] to learn how to assemble a mod, or;
*Continue reading to learn about the types of modding you can perform.


==Introduction to areas of modding==
The data which Oni relies upon comes from scripts, game data (resources), and [[persist.dat]].


==links to tools, documentations and tutorials==
===Editing scripts===
===BSL===
The easiest kind of modding is scripting. Scripts are written in the BFW Scripting Language and stored as plain-text files with the suffix .bsl in the sub-folders inside GameDataFolder/IGMD/. Scripts take a lifeless level and spawn characters in it (Konoko and the AI-driven [[wikipedia:Non-player_character|NPC]]s), give the level a logical flow of events, drive cutscenes, make the AIs play certain roles, and alter the level's appearance.
* introduction and database links [[BSL|HERE]]
* tutorials: [[BSL:Tutorial/Scratch]]


Scripting is the easiest way to mod because you can work with existing game data, and only have to modify BSL files using a text editor. It's quick and easy to see the results of your work (just reload the level), and you have lots of accessible examples to learn from (14 levels' worth!). That being said, scripts sometimes reference game resources in technical ways, so you will have to learn how certain data types work in order to script effectively.


===OBD===
*Go to the [[BSL]] namespace to start learning about scripting, or;
====file converting in general====
*Continue reading to learn what's involved with editing resources.
* tool download: [http://www.mods.oni2.net/node/38 OniSplit]
** tool download: [http://www.mods.oni2.net/node/69 AETools - GUI for Macintosh]
** tool download: [http://www.mods.oni2.net/node/72 OniSplit GUI for Windows]
** tutorial: [[XML_basic_tutorial|basics]]


===Modding resources===
Broadly speaking, Oni's resources can be broken down as: '''environments''' (architecture, triggers, and furniture), '''characters''' (class data, models), '''weapons''' (ditto), '''text''' (diary pages, objectives, subtitles, etc.), and '''sound''' (music, voice-overs, and sound effects). However, new levels do not require all this data to be made from scratch. You might decide to re-use a level or some of its resources, or make a new level populated with existing characters, etc.


====3D====
*Go to the [[XML]] namespace to get a plain-English introduction to the types of game data and learn the (relatively) user-friendly XML modding technique, or;
* tool tutorial: [[User:Iritscen/BlenderTutorial|Blender]]
*Go to the [[OBD]] namespace to learn more technical details about the game data, or;
* tool download: {{ModTool}}
*Continue reading to start down the path to modding specific kinds of resources.
** obj export requires an [http://www.si-community.com/community/viewtopic.php?f=35&t=797 addon]
* tool tutorial: [http://oni.bungie.org/community/forum/viewtopic.php?id=1229 OCF's XSI thread]
* tool download: [http://sketchup.google.com/ SketchUp]
* tutorial: [[AE:Importing_character_models|Importing character models TRBS]]
* tutorial: [[AE:Importing_weapon_models]]
* tutorial: [[SketchUp_tutorials_and_tips|SketchUp]]


====Environments====
'''''Talk about AKEVs and related data here. Mention Mod Tool, [[SketchUp_tutorials_and_tips|SketchUp]].'''''


====Animation====
* tool download: {{ModTool}}
: You need to add some stuff to that file to make it actually work as an animation. In particular the animation type, from/to states and varient needs to be set.
: For all I know this works with animations exported from Oni and modified in Softimage. If you come up with a completly new animation it should work as long as the skeleton is similar to the one used in Oni.
: Note that the geometry that is present inside the Collada file is used to compute the "vertical extents" so it better be the same or close to the one the animation is intended for.
: The biggest problem are the attacks. While it's not difficult to add attacks to [http://oni.bungie.org/community/forum/viewtopic.php?pid=23230#p23230 the xml file], computing the necessary "extents" is not going to be easy. I guess in the end I'll have to add some command to OniSplit to do it.
: '''Edit:''' attack extents becomes automatically calculated with onisplit v0.9.55.0 and newer
* tutorial: [[AE:Authoring_custom_camera_animations]]
* tutorial: [[AE:Authoring_custom_camera_animations]]


====Textures====
'''''Mention [http://www.gimp.org/ Gimp], Paint.NET.'''''


====HEX====
* tutorial: [[AE:Modifying textures|Modifying textures (TXMP)]]
* any hex-editor
* tool download: [http://www.mods.oni2.net/node/67 OniUnPacker]
** tutorial: tweak [[OBD_talk:TRAM|animation]]
* tutorial: [[AE:Adding_spawnable_characters|Adding spawnable characters to a level CHAR]]
* tutorial: [[AE:Adding_character_classes|Adding character classes ONCC]]


====Characters====
Characters in Oni are built with a simple 19-part skeleton. '''''Talk about ONCCs and related data here. Mention [[Mod Tool]], [[User:Iritscen/BlenderTutorial|Blender]].'''''


====Sound====
* tutorial: [[Importing_character_models|Importing character models (TRBS)]]
* Instructions how to import sounds and links to conversion tools can be found [[OBD_talk:SNDD|HERE]].
* tutorial: [[Adding_spawnable_characters|Adding spawnable characters to a level (CHAR)]]
* tutorial: [[Adding_character_classes|Adding character classes (ONCC)]]
{| border=0 cellspacing=20 cellpadding=0 style="float:right"
| [http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XSI_modding/RAICOMthrow_fw_kick.png http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XSI_modding/RAICOMthrow_fw_kick_TN.png]
''An "appetizer screenshot".''
|}
* tutorial: [[OBD_talk:TRAM|Tweak animation (TRAM)]]


'''''Talk about OBANs and TRAMs here. Mention Mod Tool.'''''


====Textures====
: You need to add some stuff to that file to make it actually work as an animation. In particular the animation type, from/to states, and variant need to be set. For all I know this works with animations exported from Oni and modified in Softimage. If you come up with a completely new animation it should work as long as the skeleton is similar to the one used in Oni.
* tool download: [http://www.gimp.org/ gimp]
 
* tutorial: [[AE:ModTXMP|Modifying textures TXMP]]
====Weapons====
* tutorial: [[Importing_weapon_models]]
 
====Text====
As long as you don't confuse IDs of instances and stick to the structure, these types shouldn't pose a problem.
 
Important text-related file type are:
* [[XML:OPge|XML:OPge (Objective page)]]
* [[XML:DPge|XML:DPge (Diary page)]]
* [[XML:WPge|XML:WPge (Weapon page)]]
* [[XML:TxtC|XML:TxtC (Text Console)]]
 
Less important (rarely used) file:
* [[XML:SUBT|XML:SUBT (Subtitles)]]


Not important:
* [[XML:HPge|XML:HPge (Help page)]]
* [[XML:IGHH|XML:IGHH (Explains HUD elements)]]


==inspiration needed ?==
====Sound and Music====
* ''play some existing mods to get ideas''
* Instructions on importing sounds and links to conversion tools can be found [[XML:SNDD|HERE]].
* [[Modding_brainstorms|Modding Brainstorms]]
* [[AE:Food_for_thought]]
* [[Anniversary_Edition/To-do]]
* [[AE:Requests]]


==Need some inspiration?==
To get ideas, play some existing mods (which you can install with the [[AE]]), or look at the pages below.
* [[Modding brainstorms]]
* [[Review criticisms]]
* [[Animation ideas]]


[[Category:Modding tutorials]]
[[Category:Modding tutorials]]

Revision as of 03:58, 3 December 2015

Unfinished building-60px.jpg

This page is unfinished. Can you fill in any missing information?
If it is not clear which part of the page is unfinished, ask on the talk page.

This page provides an introduction to modding that does not assume that you have prior modding experience or knowledge of the Oni engine. Links to more technical parts of the wiki are interspersed below or can be accessed directly from the wiki's Main Page.

Introduction to modding

No easy button.png

Modifying, or "modding", a game is generally easier than creating one, because you might only be changing some of the game's existing elements, or creating a limited amount of new data. Nevertheless, modding can be an intimidating field to get into. Our community does not have the polished modding tools of the big engines like Unreal (but we're getting better). You should have a DIY personality and a high tolerance for technical details. If this page seems like a chore to read, for instance, then you are definitely not ready for Oni modding :-) We do not yet have any modding solutions with a big red button that says "easy".

Like learning a new language, modding your first game is always the hardest, but after that you can more easily pick up new ones. If you take things one step at a time, you can learn a lot from Oni about how to make games in general; in fact, many game developers started out as modders. Additionally, there are lots of different ways for someone to mod; whether your interest is in coding, art, sound, 3D modeling, or general game design, there's something for you to do, and collaborating with others to divide the work according to your abilities can lead to a memorable, rewarding creative experience.

  • Go to the Oni Mod Depot to see what kinds of mods are available, or;
  • Install the Anniversary Edition to try out the mods, or;
  • Continue reading to get an overview of the game engine.

Introduction to the Oni engine

Oni runs on a custom engine that Bungie could build for both Windows and the Macintosh (later, PlayStation 2 support was added, however console games are not easily modded, so we do not work with the PS2 version of Oni). At the time development started, Bungie did not yet have a true 3D engine, and Oni's lead coders intended their work to be reused in future cross-platform Bungie titles, so the engine is separated into a lower layer of general-purpose game code called BungieFrameWork (usually referred to as simply BFW), and an upper layer called Oni with Oni-specific code. The engine also consists of various subsystems, some of which have colorful animé-related names like Akira (environment), Motoko (graphics), and Totoro (animation).

Unfortunately, the game was rushed to completion during a change of ownership, and it was not possible for the developers to release any tools or information to aid the fans in modding. The game data also reflects Oni's rocky development, being assembled somewhat haphazardly, containing unused and duplicate resources, and also missing a number of resources that the engine looks for during gameplay. One good thing that can be said about the engine is that it is solid enough to run smoothly over top of the errors that it regularly encounters in the data. That being said, it's easy to crash the engine when modding, as is the case with all game engines.

Due to the lack of modding tools/information at the time of Oni’s release, fans had to explore the wild jungle of raw game data and create modding tools through reverse-engineering. It took over seven years to unlock most of the game's secrets –- and the work is still ongoing. But to make a long story short, we can now mod almost all types of data effectively, allowing us to create entirely new levels and characters. Now we're turning our focus to making tools that are user-friendly so artists can work more freely.

Altogether, we have identified over 100 types of resources (often called "file types" on this wiki, and "tags" in many other game modding communities) in the game data, however we only directly edit about half of these. It may sound intimidating at first, but depending on the kind of modding you want to do, you might be able to start working with only a little knowledge of the engine.

  • Go to Oni for the full story on Oni's development, or;
  • Go to History of Oni modding to read about the community's accomplishments up until now, or;
  • Continue reading to learn about the game data files.

Introduction to the game data

A game can be compared to a theater play: in both cases, you have stages, actors, scripts, and music. A level is built so that when the player performs certain actions or reaches certain locations on the stage, further events are set in motion according to the script. The player is told what to do through various textual instructions, cutscenes, and/or voice acting (more scripts), and he interacts with AI actors. Music will often play dynamically behind all this, changing along with the flow of events.

In Oni's case, the stages, actors, and music (and other sounds) are all packed together into files inside GameDataFolder/ that end in ".dat", ".raw", and, on Macs, ".sep". The level0_Final data files provide resources for all levels, and when you load a Chapter, an additional set of data files provide the level-specific resources for that Chapter (e.g. level12_Final for Chapter 10). The scripts are stored in separate, plain-text files ending in ".bsl", in GameDataFolder/IGMD/. The player's progress is stored in persist.dat, next to the Oni application.

  • Go to Oni (folder) for information on each file, or;
  • Go to Game data terminology to learn the precise terms for Oni's data, or;
  • Continue reading to learn the general process of modding.

Introduction to the modding workflow

The general order of events in creating a mod is (1) unpacking the resources you wish to edit, (2) editing them, and (3) re-packing them into Oni's level data. These days, you can rely entirely on the Anniversary Edition Installer to re-pack your data, which means that you just need to know how to create the kind of mod package that the AEI requires. If you are only creating a script mod, then you don't need to unpack any data, but you'll still need to know how to place your script(s) in a mod package.

Add something here about how to find a given resource.

Data unpacking

The game data cannot be edited easily until our tools convert it into something more modder-friendly. Thus you will usually start by using OniSplit to break level data files (a .dat file supplemented by a .raw file, and on the Mac a .sep file as well) into their component resources (.oni files), then converting those resources into something editable. The editable format you arrive at will depend on the kind of data you're editing. It might be plain-text, XML, PNG, Collada, WAV, etc.

Third-party tools

If you are scripting, then you might need nothing more than a text editor. For editing textures, you might only need a free bitmap editor. For creating levels or characters, you'll need a full 3D modeling package. Thankfully, since Oni is graphically primitive, you won't need to know as much about modeling as with a modern game, and there are free modelers available (but not as good as the commercial ones). Our recommendations for tools will be found under the appropriate subsections of "Modding resources", below.

Community tools

Talk about scripting assistants, XmlTools, Vago, and other tools we've made, and which are available from within the AEI.

Mod creation

To see how mods normally look and how they are distributed and installed, you should download the Anniversary Edition and choose to install some mods. You can then look at the packages that have been downloaded to AE/AEInstaller/packages/.

  • Go to OniSplit's page to learn how to unpack and reassemble the game data, or;
  • Go to XmlTools' page to learn how to smartly alter the game data during mod installation, or;
  • Go to Making a mod package to learn how to assemble a mod, or;
  • Continue reading to learn about the types of modding you can perform.

Introduction to areas of modding

The data which Oni relies upon comes from scripts, game data (resources), and persist.dat.

Editing scripts

The easiest kind of modding is scripting. Scripts are written in the BFW Scripting Language and stored as plain-text files with the suffix .bsl in the sub-folders inside GameDataFolder/IGMD/. Scripts take a lifeless level and spawn characters in it (Konoko and the AI-driven NPCs), give the level a logical flow of events, drive cutscenes, make the AIs play certain roles, and alter the level's appearance.

Scripting is the easiest way to mod because you can work with existing game data, and only have to modify BSL files using a text editor. It's quick and easy to see the results of your work (just reload the level), and you have lots of accessible examples to learn from (14 levels' worth!). That being said, scripts sometimes reference game resources in technical ways, so you will have to learn how certain data types work in order to script effectively.

  • Go to the BSL namespace to start learning about scripting, or;
  • Continue reading to learn what's involved with editing resources.

Modding resources

Broadly speaking, Oni's resources can be broken down as: environments (architecture, triggers, and furniture), characters (class data, models), weapons (ditto), text (diary pages, objectives, subtitles, etc.), and sound (music, voice-overs, and sound effects). However, new levels do not require all this data to be made from scratch. You might decide to re-use a level or some of its resources, or make a new level populated with existing characters, etc.

  • Go to the XML namespace to get a plain-English introduction to the types of game data and learn the (relatively) user-friendly XML modding technique, or;
  • Go to the OBD namespace to learn more technical details about the game data, or;
  • Continue reading to start down the path to modding specific kinds of resources.

Environments

Talk about AKEVs and related data here. Mention Mod Tool, SketchUp.

Textures

Mention Gimp, Paint.NET.

Characters

Characters in Oni are built with a simple 19-part skeleton. Talk about ONCCs and related data here. Mention Mod Tool, Blender.

RAICOMthrow_fw_kick_TN.png

An "appetizer screenshot".

Talk about OBANs and TRAMs here. Mention Mod Tool.

You need to add some stuff to that file to make it actually work as an animation. In particular the animation type, from/to states, and variant need to be set. For all I know this works with animations exported from Oni and modified in Softimage. If you come up with a completely new animation it should work as long as the skeleton is similar to the one used in Oni.

Weapons

Text

As long as you don't confuse IDs of instances and stick to the structure, these types shouldn't pose a problem.

Important text-related file type are:

Less important (rarely used) file:

Not important:

Sound and Music

  • Instructions on importing sounds and links to conversion tools can be found HERE.

Need some inspiration?

To get ideas, play some existing mods (which you can install with the AE), or look at the pages below.