XML:ONVL: Difference between revisions

From OniGalore
Jump to navigation Jump to search
(Created page with " {{Template:XMLModdingHints}} {| border=0 cellspacing=20 cellpadding=0 style="margin-left:auto; margin-right:auto" | The xml code on this page is compatible with onisplit '''v...")
 
(+ temp + cat)
Line 1: Line 1:
{{XML_File_Header | type=ONVL | prev=ONSK | next=ONWC | name=Oni Variant List }}


{{Template:XMLModdingHints}}
===general information===
{| border=0 cellspacing=20 cellpadding=0 style="margin-left:auto; margin-right:auto"
* The xml code on this page is compatible with onisplit '''v0.9.61.0'''
| The xml code on this page is compatible with onisplit '''v0.9.61.0'''
|}
 
'''general information'''
* '''ONVLvariant_list.oni''' is global. (It can be found in edition/GameDataFolder/level0_... )
* '''ONVLvariant_list.oni''' is global. (It can be found in edition/GameDataFolder/level0_... )
* See also '''[[OBD_talk:ONCV|ONCV]]''' for more information.
* See also '''[[XML:ONCV|ONCV]]''' for more information.
* <u>You can't produce a list which contains a placeholder</u>. ONVL is checking all its links at game start, Oni will crash if a ONCV is missing.
* <u>You can't produce a list which contains a placeholder</u>. ONVL is checking all its links at game start, Oni will crash if a ONCV is missing.
* Create new ONCVs and add them to ONVL if you want to create groups for random designs or when you want to change character spawning on game difficulty level hard.
* Create new ONCVs and add them to ONVL if you want to create groups for random designs or when you want to change character spawning on game difficulty level hard.
Line 35: Line 32:
| ONCV''name'' (file suffix .oni not used)
| ONCV''name'' (file suffix .oni not used)
|}
|}
{{XML}}

Revision as of 12:54, 9 November 2012

ONVL : Oni Variant List
XML modding tips
  • See HERE to start learning about XML modding.
  • See HERE if you are searching for information on how to handle object coordinates.
  • See HERE for some typical modding errors and their causes.
XML.png
XML

ONSK << Other file types >> ONWC

switch to OBD page

general information

  • The xml code on this page is compatible with onisplit v0.9.61.0
  • ONVLvariant_list.oni is global. (It can be found in edition/GameDataFolder/level0_... )
  • See also ONCV for more information.
  • You can't produce a list which contains a placeholder. ONVL is checking all its links at game start, Oni will crash if a ONCV is missing.
  • Create new ONCVs and add them to ONVL if you want to create groups for random designs or when you want to change character spawning on game difficulty level hard.


example

<?xml version="1.0" encoding="utf-8"?>
<Oni>
   <ONVL id="0">
       <Variants>
           <Link>ONCVany</Link>
           <Link>ONCVcomguy</Link>
           [...]
           <Link>ONCVblackops_swat</Link>
       </Variants>
   </ONVL>
</Oni>
XML tag content type description
<Link> link ONCVname (file suffix .oni not used)