diff options
author | Erik Schilling <ablu.erikschilling@googlemail.com> | 2013-08-04 19:03:03 +0200 |
---|---|---|
committer | Erik Schilling <ablu.erikschilling@googlemail.com> | 2013-09-01 00:52:17 +0200 |
commit | 4fc1974292861485729ef72609311cb47632d47f (patch) | |
tree | c71390916ec55373edfa5ffb7587ea016e80578e /example | |
parent | b4ddc47bd54a0de8be8798a0416dd09cc4da662b (diff) | |
download | manaserv-4fc1974292861485729ef72609311cb47632d47f.tar.gz manaserv-4fc1974292861485729ef72609311cb47632d47f.tar.bz2 manaserv-4fc1974292861485729ef72609311cb47632d47f.tar.xz manaserv-4fc1974292861485729ef72609311cb47632d47f.zip |
Do not make all attributes persistent
By default they are not persistent now (meaning that they wont get
stored in the database).
Diffstat (limited to 'example')
-rw-r--r-- | example/attributes.xml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/example/attributes.xml b/example/attributes.xml index 09868892..ee567f26 100644 --- a/example/attributes.xml +++ b/example/attributes.xml @@ -11,7 +11,8 @@ modifiable="true" scope="character" minimum="0" - maximum="255"> + maximum="255" + persistent="true"> <modifier stacktype="stackable" modtype="additive" tag="str" effect="Strength %+.1f" /> </attribute> <attribute id="2" name="Agility" @@ -19,7 +20,8 @@ modifiable="true" scope="character" minimum="0" - maximum="255"> + maximum="255" + persistent="true"> <modifier stacktype="stackable" modtype="additive" tag="agi" effect="Agility %+.1f" /> </attribute> <attribute id="3" name="Vitality" @@ -27,7 +29,8 @@ modifiable="true" scope="character" minimum="0" - maximum="255"> + maximum="255" + persistent="true"> <modifier stacktype="stackable" modtype="additive" tag="vit" effect="Vitality %+.1f" /> </attribute> <attribute id="4" name="Intelligence" @@ -35,7 +38,8 @@ modifiable="true" scope="character" minimum="0" - maximum="255"> + maximum="255" + persistent="true"> <modifier stacktype="stackable" modtype="additive" tag="int" effect="Intelligence %+.1f" /> </attribute> <attribute id="5" name="Dexterity" @@ -43,7 +47,8 @@ modifiable="true" scope="character" minimum="0" - maximum="255"> + maximum="255" + persistent="true"> <modifier stacktype="stackable" modtype="additive" tag="dex" effect="Dexterity %+.1f" /> </attribute> <attribute id="6" name="Willpower" @@ -51,7 +56,8 @@ modifiable="true" scope="character" minimum="0" - maximum="255"> + maximum="255" + persistent="true"> <modifier stacktype="stackable" modtype="additive" tag="wil" effect="Willpower %+.1f" /> </attribute> <attribute id="7" name="Accuracy" |