12345678910111213141516171819202122232425262728293031323334353637383940 |
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:element name="list">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="access" maxOccurs="unbounded" minOccurs="0">
- <xs:complexType>
- <xs:simpleContent>
- <xs:extension base="xs:string">
- <xs:attribute type="xs:integer" name="level" use="required" />
- <xs:attribute type="xs:string" name="name" use="required" />
- <xs:attribute type="xs:string" name="nameColor" use="optional" />
- <xs:attribute type="xs:string" name="titleColor" use="optional" />
- <xs:attribute type="xs:integer" name="childAccess" use="optional" />
- <xs:attribute type="xs:boolean" name="isGM" use="optional" />
- <xs:attribute type="xs:boolean" name="allowPeaceAttack" use="optional" />
- <xs:attribute type="xs:boolean" name="allowFixedRes" use="optional" />
- <xs:attribute type="xs:boolean" name="allowTransaction" use="optional" />
- <xs:attribute type="xs:boolean" name="allowAltg" use="optional" />
- <xs:attribute type="xs:boolean" name="giveDamage" use="optional" />
- <xs:attribute type="xs:boolean" name="takeAggro" use="optional" />
- <xs:attribute type="xs:boolean" name="gainExp" use="optional" />
- </xs:extension>
- </xs:simpleContent>
- </xs:complexType>
- </xs:element>
- <xs:element name="admin" maxOccurs="unbounded" minOccurs="0">
- <xs:complexType>
- <xs:simpleContent>
- <xs:extension base="xs:string">
- <xs:attribute type="xs:string" name="command" use="required" />
- <xs:attribute type="xs:string" name="accessLevel" use="optional" />
- <xs:attribute type="xs:boolean" name="confirmDlg" use="optional" />
- </xs:extension>
- </xs:simpleContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|