-
Notifications
You must be signed in to change notification settings - Fork 3
Edit Elements
Dan Gerendasy edited this page Feb 9, 2017
·
7 revisions
Edit Elements are elements placed directly within a tymod element. They specify a certain type of mod or edit. Edits tell the Mod Manager what to do.
Currently, the Ty Mod Manager only supports the following edit types.
Type | Description |
---|---|
[[global | Edit-Element-global]] |
[[translation | Edit-Element-translation]] |
[[resource | Edit-Element-resource]] |
[[level | Edit-Element-level]] |
[[plugin | Edit-Element-plugin]] |
Edit Elements can only be placed within a tymod element. The following XML file is valid.
<root>
<tymod name="Main Menu Music Override" version="1.0.0" tyversion="[]" authors="Dnawrkshp" description="Chew Z by ADHDJ (https://soundcloud.com/adhdjklol/chew-z-1)">
<resource source="SingleMod/Chew_Z_ADHDJ.ogg" dest="music_frontend.ogg"/>
<translation name="TEXT_LEVEL_Z1">
<german value="Bambi Cliffs"></german>
</translation>
</tymod>
<tymod name="Rapidfire Kaboomarang" version="1.0.0" tyversion="[,r1402]" authors="Dnawrkshp" description="Give Ty some roids.">
<global source="global.model" type="inclusive" name="prop_0538_rang_23">
<flightTime value="5"></flightTime>
<range value="10000.0"></range>
</global>
</tymod>
</root>
However this one is invalid. A tymod must be placed only directly within a root element. All edit elements must be placed directly within a tymod element as well.
<root>
<tymod name="Main Menu Music Override" version="1.0.0" tyversion="[]" authors="Dnawrkshp" description="Chew Z by ADHDJ (https://soundcloud.com/adhdjklol/chew-z-1)">
<resource source="SingleMod/Chew_Z_ADHDJ.ogg" dest="music_frontend.ogg"/>
<!-- This should be placed within root, not a tymod -->
<tymod name="Rapidfire Kaboomarang" version="1.0.0" tyversion="[,r1402]" authors="Dnawrkshp" description="Give Ty some roids.">
<global source="global.model" type="inclusive" name="prop_0538_rang_23">
<flightTime value="5"></flightTime>
<range value="10000.0"></range>
</global>
</tymod>
</tymod>
<!-- This is also in the wrong place -->
<translation name="TEXT_LEVEL_Z1">
<german value="Bambi Cliffs"></german>
</translation>
</root>