summaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
Diffstat (limited to 'example')
-rw-r--r--example/clientdata/equip.xml39
1 files changed, 29 insertions, 10 deletions
diff --git a/example/clientdata/equip.xml b/example/clientdata/equip.xml
index be180a0..db7aecc 100644
--- a/example/clientdata/equip.xml
+++ b/example/clientdata/equip.xml
@@ -1,19 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Notes:
The id and name parameters must be unique.
- The count parameter indicates the 'size' of the slot.
+ The capacity parameter indicates the 'size' of the slot.
The visible parameter indicates whether the item is visible
on the map character. Hence, whether the server should send appearance
updates when making changes on it.
-->
<equip-slots>
- <slot id="1" name="Hand" capacity="2" visible="true" weapon="true" />
- <slot id="2" name="Torso" capacity="1" visible="true" />
- <slot id="3" name="Arms" capacity="1" />
- <slot id="4" name="Head" capacity="1" visible="true" />
- <slot id="5" name="Legs" capacity="1" visible="true" />
- <slot id="6" name="Ring" capacity="1" />
- <slot id="7" name="Necklace" capacity="1" />
- <slot id="8" name="Feet" capacity="1" visible="true" />
- <slot id="9" name="Ammo" capacity="1" ammo="true" />
+ <slot id="1" name="Hand" capacity="2" visible="true" weapon="true">
+ <box x="8" y="123" />
+ <box x="129" y="123" />
+ </slot>
+ <slot id="2" name="Torso" capacity="1" visible="true">
+ <box x="50" y="40" />
+ </slot>
+ <slot id="3" name="Arms" capacity="1">
+ <box x="8" y="78" />
+ </slot>
+ <slot id="4" name="Head" capacity="1" visible="true">
+ <box x="70" y="0" />
+ </slot>
+ <slot id="5" name="Legs" capacity="1" visible="true">
+ <box x="50" y="208" />
+ </slot>
+ <slot id="6" name="Ring" capacity="1">
+ <box x="129" y="78" />
+ </slot>
+ <slot id="7" name="Necklace" capacity="1">
+ <box x="90" y="40" />
+ </slot>
+ <slot id="8" name="Feet" capacity="1" visible="true">
+ <box x="90" y="208" />
+ </slot>
+ <slot id="9" name="Ammo" capacity="1" ammo="true">
+ <box x="8" y="168" />
+ </slot>
</equip-slots>