• 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!

Solved Stone skin amulets!

enriel

Big L
Joined
Dec 14, 2007
Messages
1,254
Reaction score
2
Location
Montenegro
Stone skin amulets dont work on TFS..
here is the code:
<item id="2197" article="a" name="stone skin amulet">
<attribute key="weight" value="760"/>
<attribute key="slotType" value="necklace"/>
<attribute key="charges" value="5"/>
<attribute key="showcharges" value="1"/>
<attribute key="absorbPercentPhysical" value="80"/>
</item>

I want it so when you shot sd or any kinda rune it will be immune against it.
 
Last edited by a moderator:
<item id="2197" article="a" name="stone skin amulet">
<attribute key="weight" value="760"/>
<attribute key="slotType" value="necklace"/>
<attribute key="charges" value="5"/>
<attribute key="absorbPercentPhysical" value="100"/>
</item>

That would be about as much as I can help you with. If they dont work on the TFS server then you have an old server, and you need to download the latest TFS server available.

And you wont be able to make yourself immune against elements, stone skin amulets only work with physical damage. making it protect you against any element would require source editing, which is way to farfetched for you lol.

<attribute key="showcharges" value="1"/>

I dont have a clue why that is in there, thats for runes.
 
Well I had <attribute key="absorbPercentPhysical" value="95"/> But still they hit 300 with sd and ssa charges isn't removing, Only when a monster attacks you the ssa charge goes away.
 
maybe cause sd is hitting with death damage.
You could try

<attribute key="absorbPercentDeath" value="95"/>

but probably wont work.

if it does. then you can most likely add

<attribute key="absorbPercentPhysical" value="95"/>
<attribute key="absorbPercentDeath" value="95"/>
<attribute key="absorbPercentEnergy" value="95"/>
<attribute key="absorbPercentFire" value="95"/>

etc. but like i said. doubt it will work. worth a try though
 
Code:
invisible
value
speed
healthGain
healthTicks
manaGain
manaTicks
manaShield
skillSword
skillAxe
skillClub
skillDist
skillFish
skillShield
skillFist
maxHitPoints
maxHitPointsPercent
maxManaPoints
maxManaPointsPercent
soulPoints
soulPointsPercent
magicPoints
magicPointsPercent
absorbPercentAll
absorbPercentEnergy
absorbPercentFire
absorbPercentPoison(or absorbPercentEarth)
absorbPercentLifeDrain
absorbPercentManaDrain
absorbPercentDrown
absorbPercentPhysical
suppressDrunk
suppressEnergy
suppressFire
suppressPoison
suppressLifeDrain
suppressDrown
suppressFreeze
suppressDazzle
suppressCurse

And if youre talking to me if I have sources - yes, I can compile server and edit it myself, so gtfo u wannabe.
 
Back
Top