Skip to content
Snippets Groups Projects
Commit 63c8abde authored by MELERIX's avatar MELERIX
Browse files

BETA: Fixing line delimiters in few XSDs.

parent 2cb4df10
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<element name="list">
<complexType>
<sequence minOccurs="1" maxOccurs="1">
<element name="npc" minOccurs="1" maxOccurs="unbounded">
<complexType>
<attribute name="id" use="required">
<simpleType>
<restriction base="positiveInteger">
<minInclusive value="1" />
<maxInclusive value="65535" />
</restriction>
</simpleType>
</attribute>
<attribute name="lowestTrustLimit" type="positiveInteger" use="optional" />
<attribute name="maxHellboundLvl" use="required">
<simpleType>
<restriction base="positiveInteger">
<minInclusive value="1" />
<maxInclusive value="100" />
</restriction>
</simpleType>
</attribute>
<attribute name="minHellboundLvl" use="required">
<simpleType>
<restriction base="positiveInteger">
<minInclusive value="1" />
<maxInclusive value="11" />
</restriction>
</simpleType>
</attribute>
<attribute name="points" type="integer" use="required" />
</complexType>
<element name="list">
<complexType>
<sequence minOccurs="1" maxOccurs="1">
<element name="npc" minOccurs="1" maxOccurs="unbounded">
<complexType>
<attribute name="id" use="required">
<simpleType>
<restriction base="positiveInteger">
<minInclusive value="1" />
<maxInclusive value="65535" />
</restriction>
</simpleType>
</attribute>
<attribute name="lowestTrustLimit" type="positiveInteger" use="optional" />
<attribute name="maxHellboundLvl" use="required">
<simpleType>
<restriction base="positiveInteger">
<minInclusive value="1" />
<maxInclusive value="100" />
</restriction>
</simpleType>
</attribute>
<attribute name="minHellboundLvl" use="required">
<simpleType>
<restriction base="positiveInteger">
<minInclusive value="1" />
<maxInclusive value="11" />
</restriction>
</simpleType>
</attribute>
<attribute name="points" type="integer" use="required" />
</complexType>
</element>
</sequence>
</complexType>
......
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<element name="list">
<complexType>
<sequence minOccurs="1" maxOccurs="1">
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<element name="list">
<complexType>
<sequence minOccurs="1" maxOccurs="1">
<element name="spawnZones" minOccurs="1" maxOccurs="1">
<complexType>
<sequence minOccurs="1" maxOccurs="1">
......@@ -24,7 +24,21 @@
</sequence>
</complexType>
</element>
<element name="npc" minOccurs="1" maxOccurs="1"> <complexType> <sequence minOccurs="1" maxOccurs="1"> <element name="spawn" minOccurs="1" maxOccurs="unbounded"> <complexType> <choice minOccurs="1" maxOccurs="1"> <element name="loc" minOccurs="1" maxOccurs="1"> <complexType> <attribute name="heading" type="nonNegativeInteger" use="required" /> <attribute name="mustKill" type="boolean" use="optional" /> <attribute name="x" type="integer" use="required" /> <attribute name="y" type="integer" use="required" /> <attribute name="z" type="integer" use="required" /> </complexType> </element>
<element name="npc" minOccurs="1" maxOccurs="1">
<complexType>
<sequence minOccurs="1" maxOccurs="1">
<element name="spawn" minOccurs="1" maxOccurs="unbounded">
<complexType>
<choice minOccurs="1" maxOccurs="1">
<element name="loc" minOccurs="1" maxOccurs="1">
<complexType>
<attribute name="heading" type="nonNegativeInteger" use="required" />
<attribute name="mustKill" type="boolean" use="optional" />
<attribute name="x" type="integer" use="required" />
<attribute name="y" type="integer" use="required" />
<attribute name="z" type="integer" use="required" />
</complexType>
</element>
<element name="zone" minOccurs="1" maxOccurs="1">
<complexType>
<attribute name="count" type="positiveInteger" use="required" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment