summaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-08-30 21:08:21 +0200
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-08-30 21:08:21 +0200
commit5661e7d0ce2c3233d302d65ac4cd7b016af27cde (patch)
tree41e376373bc56fb4a88c99e0d8e370edab942c93 /example
parent800772fc10d923b315277490e7e009fe116e8ce5 (diff)
parent6204fdfdae8139083b48a114b954a844b0df707c (diff)
downloadmanaserv-5661e7d0ce2c3233d302d65ac4cd7b016af27cde.tar.gz
manaserv-5661e7d0ce2c3233d302d65ac4cd7b016af27cde.tar.xz
manaserv-5661e7d0ce2c3233d302d65ac4cd7b016af27cde.zip
Merge branch 'equipment-fix'
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>