XML:XML Modding Lessons: Difference between revisions

From OniGalore
Jump to navigation Jump to search
m (ignore this)
m (more intuitive sorted lists of modding tutorials)
Line 34: Line 34:
{{Divhide|end}}
{{Divhide|end}}


==Directory==
==Hitting the learning curve==
;What can I change in the game?
*[[XML:File types|Database of Oni's resource types]]
*[[XML:File types|Database of Oni's resource types]]
;How do I edit XML?
*[[XML:Basic tutorial|Basic tutorial]]
*[[XML:Basic tutorial|Basic tutorial]]
;How do I get my mod into the game?
*[[Making a patch mod]]
;How do I do more complex mods?
*[[XML:Advanced tutorial|Advanced tutorial]]
*[[XML:Advanced tutorial|Advanced tutorial]]
*[[XML:Expert tutorial|Expert tutorial]]
*[[XML:Expert tutorial|Expert tutorial]]
*[[Making a patch mod]]
 
 
===Popular modding types requiring XML===
;How do I create levels?
* [[XML:ONLV]]
; How do I add characters to a level?
*[[Adding_spawnable_characters]]
; How do I add Daodan to a character?
* [[XML:Daodan]]
;How do I add contrails to character moves?
* [[XML:TRAM#Adding_colorful_trails]]
 
 


{{XML}}
{{XML}}

Revision as of 19:57, 17 July 2019

XML.png
This article builds on the general introduction to modding found at Modding Oni.

The XML namespace is devoted to explaining Oni's data types in plainer English than the technical documentation at OBD, and provides tutorials in XML modding.

Oni's resources could be separated into one of two categories: media (such as textures and sounds), and non-media (such as character class data). Most of the non-media data can be exported to XML. This allows much easier modding than the hex-editing of the old days (compare the two methods here). Some media resources can also be edited as "XML", referring to the fact that an XML file will be created alongside the resource's image/sound file when it is exported from the game data, and this XML companion file contains metadata about the media resource that allows OniSplit to re-import the resource when you are done editing it.

To learn what the different resource types do, and to see which types can be edited through XML, see the database link below. Though XML modding can generally be done with nothing more than OniSplit's command line interface and a text editor, the tutorials linked to below are written with the Anniversary Edition in mind, because the AE provides modding tools (including a GUI for OniSplit), gives you a framework for testing your mod package, and globalizes more of Oni's data so it can be used in any level.

Hitting the learning curve

What can I change in the game?
How do I edit XML?
How do I get my mod into the game?
How do I do more complex mods?


Popular modding types requiring XML

How do I create levels?
How do I add characters to a level?
How do I add Daodan to a character?
How do I add contrails to character moves?