• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

TFS 1.X+ Question about item attributes

Thorn

Spriting since 2013
Joined
Sep 24, 2012
Messages
2,203
Solutions
1
Reaction score
921
Location
Chile
Hello guys, i have tfs 1.3 and i have some questions, would be great if anyone could answer them for me, here i go:

1) if i do this:

Code:
<item id="28703" article="an" name="golden knight axe">
        <attribute key="weight" value="4100" />
        <attribute key="defense" value="33" />
        <attribute key="attack" value="300" />
        <attribute key="weaponType" value="axe" />
        <attribute key="extradef" value="150" />
        <attribute key="elementIce" value="70" />
        <attribute key="elementFire" value="70" />
        <attribute key="elementEarth" value="70" />
        <attribute key="elementEnergy" value="70" />
        <attribute key="skillAxe" value="15" />
        <attribute key="skillShield" value="10" />
        <attribute key="healthGain" value="10" />
        <attribute key="healthTicks" value="2000" />
        <attribute key="showattributes" value="1" />
        <attribute key="hitpointsleechamount" value="30" />
        <attribute key="hitpointsleechchance" value="100" />
        <attribute key="manaleechamount" value="30" />
        <attribute key="manaleechchance" value="100" />
    </item>

i want that the axe attack 300 normal hit, and 70 of all those elements, but now it only attacks normal 300+70 energy, is possible that the axe attack with all those elements at the same time? using all of them?

2) is there any way in tfs 1.x to increase attack speed of a weapon? is it safe? why was it remove? i knew attackSpeed but doesn't work anymore.

3) that manaleachamount, is 30 mana? 30% mana? 30% mana of the total of the creature goes to you? D: i dont get that

thanks in advance!!!
 
Solution
only 2 damages, primary and secondary.
manaleachamount: you attack damage is 1000, gain 300 mp.
manalechchance :D chance 0-100
You have to use a script on the weapon to deal damage with several elements.
only 2 damages, primary and secondary.
manaleachamount: you attack damage is 1000, gain 300 mp.
manalechchance :D chance 0-100
You have to use a script on the weapon to deal damage with several elements.
 
Solution
Back
Top