root/trunk/AE-go_GameServer/data/static_data/portals/portal_templates.xsd

14481514
2
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
2
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3
3
4
	<xs:include schemaLocation="../import.xsd" />
4
	<xs:include schemaLocation="../import.xsd" />
5
	<xs:include schemaLocation="../global_types.xsd" />
5
6
6
	<xs:element name="portal_templates">
7
	<xs:element name="portal_templates">
7
		<xs:complexType>
8
		<xs:complexType>
...
...
14
	</xs:element>
15
	</xs:element>
15
16
16
	<xs:complexType name="Portal">
17
	<xs:complexType name="Portal">
18
		<xs:sequence>
19
			<xs:element name="entrypoint" type="EntryPoint" minOccurs="1" maxOccurs="1"/>
20
			<xs:element name="exitpoint" type="ExitPoint" minOccurs="1" maxOccurs="1"/>
21
		</xs:sequence>
22
		<xs:attribute name="race" type="Race" />
17
		<xs:attribute name="group" type="xs:boolean" />
23
		<xs:attribute name="group" type="xs:boolean" />
18
		<xs:attribute name="maxlevel" type="xs:int" />
24
		<xs:attribute name="maxlevel" type="xs:int" />
19
		<xs:attribute name="minlevel" type="xs:int" />
25
		<xs:attribute name="minlevel" type="xs:int" />
20
		<xs:attribute name="instance" type="xs:boolean" />
26
		<xs:attribute name="instance" type="xs:boolean" />	
27
		<xs:attribute name="npcid" type="xs:int" />
28
	</xs:complexType>
29
30
	<xs:complexType name="EntryPoint">
31
		<xs:attribute name="mapid" type="xs:int" />
32
		<xs:attribute name="x" type="xs:float" />
33
		<xs:attribute name="y" type="xs:float" />
21
		<xs:attribute name="z" type="xs:float" />
34
		<xs:attribute name="z" type="xs:float" />
35
	</xs:complexType>
36
37
	<xs:complexType name="ExitPoint">
38
		<xs:attribute name="mapid" type="xs:int" />
39
		<xs:attribute name="x" type="xs:float" />
22
		<xs:attribute name="y" type="xs:float" />
40
		<xs:attribute name="y" type="xs:float" />
23
		<xs:attribute name="x" type="xs:float" />
41
		<xs:attribute name="z" type="xs:float" />
24
		<xs:attribute name="mapid" type="xs:int" />
25
		<xs:attribute name="npcid" type="xs:int" />
26
	</xs:complexType>
42
	</xs:complexType>
27
</xs:schema>
43
</xs:schema>
28
44