Jump to content
  • 0

Skills Changes Went Wrong


mikemaster

Question

hey i am doing some tests in the skills section :D D

 

so right now i am trying to balance a bit titans and tyrants by not allowing them to have those crazy stats while using bow and i thought this could happen by not enabling the stats of 

Fist Fury/Frenzy/Zealot/Bear Spirit Totem/Rage while using a bow 

 

 I thought i could make it but i get an error  that says i should close the "effects" but it is closed so it leads me to the conclusion i messed up :P

I am giving you one of the changes i made which are definitely wrong :D

 
<effect name="Buff" time="120" val="0" stackOrder="1" stackType="possession"> 
				<mul order="0x30" stat="cAtk" val="1.2"/>
					<using kind="Dual Fist" />
				</mul>
				<mul order="0x30" stat="pAtk" val="1.2"/> 
					<using kind="Dual Fist" />
				</mul>
				<mul order="0x30" stat="runSpd" val="0.7"/> 
				</mul>
			</effect>

 

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

/>

 in

<mul order="0x30" stat="runSpd" val="0.7"/>

means that you are closing mul tag.

</mul>

also means that you are closing mul tag,you can't close the same tag twice!

Try:

 

<effect name="Buff" time="120" val="0" stackOrder="1" stackType="possession"> 
				<mul order="0x30" stat="cAtk" val="1.2">
					<using kind="Dual Fist" />
				</mul>
				<mul order="0x30" stat="pAtk" val="1.2"> 
					<using kind="Dual Fist" />
				</mul>
				<mul order="0x30" stat="runSpd" val="0.7"/>
			</effect>
Edited by StealthyS4m
Link to comment
Share on other sites

  • 0

 

hey i am doing some tests in the skills section :D D

 

so right now i am trying to balance a bit titans and tyrants by not allowing them to have those crazy stats while using bow and i thought this could happen by not enabling the stats of 

Fist Fury/Frenzy/Zealot/Bear Spirit Totem/Rage while using a bow 

 

 I thought i could make it but i get an error  that says i should close the "effects" but it is closed so it leads me to the conclusion i messed up :P

I am giving you one of the changes i made which are definitely wrong :D

 
<effect name="Buff" time="120" val="0" stackOrder="1" stackType="possession"> 
				<mul order="0x30" stat="cAtk" val="1.2"/>
					<using kind="Dual Fist" />
				</mul>
				<mul order="0x30" stat="pAtk" val="1.2"/> 
					<using kind="Dual Fist" />
				</mul>
				<mul order="0x30" stat="runSpd" val="0.7"/> 
				</mul>
			</effect>

 

Remove the /> from runSpd or the </mul> and try again.

Link to comment
Share on other sites

  • 0
<mul order="0x30" stat="cAtk" val="1.2"/>
	<using kind="Dual Fist" />
</mul>

You close the mul tag on first line, and with </mul> everytime :|

 

Just use eclipse with xmltools to avoid such mistakes

Edited by Sdw
Link to comment
Share on other sites

  • 0

Try with this:

<effect name="Buff" time="120" val="0" stackOrder="1" stackType="possession">
                <mul order="0x30" stat="cAtk" val="1.2">
                    <using kind="Dual Fist" />
                </mul>
                <mul order="0x30" stat="pAtk" val="1.2">
                    <using kind="Dual Fist" />
                </mul>
                <mul order="0x30" stat="runSpd" val="0.7 /">
            </effect>
Edited by 'Baggos'
Link to comment
Share on other sites

  • 0

 

Try with this:

<effect name="Buff" time="120" val="0" stackOrder="1" stackType="possession">
                <mul order="0x30" stat="cAtk" val="1.2">
                    <using kind="Dual Fist" />
                </mul>
                <mul order="0x30" stat="pAtk" val="1.2">
                    <using kind="Dual Fist" />
                </mul>
                <mul order="0x30" stat="runSpd" val="0.7 /">
            </effect>

it gives an error this time about the mul closing part... :/

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...