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

Hide Item attributes in TFS 1.2

UnLucky

New Member
Joined
Jul 15, 2021
Messages
36
Reaction score
1
GitHub
UnLucky
Hello, I have a question, is it possible to hide item attributes in TFS 1.2?

Now, i have that :
18:10 You see a dwarven armor (Arm:10, protection physical +5%).
It weighs 130.00 oz.

I need have like that :
18:10 You see a dwarven armor (Arm:10).
It weighs 130.00 oz.

But I still need the item to give protection physical +5%. But invisible to the player


Lua:
    <item id="2503" article="a" name="dwarven armor">
        <attribute key="weight" value="13000" />
        <attribute key="armor" value="10" />
        <attribute key="slotType" value="body" />
        <attribute key="absorbPercentPhysical" value="5" />


2 The question is, can 0.5% protection be provided?
 
Last edited:
Hello, I have a question, is it possible to hide item attributes in TFS 1.2?
Yes, by editing these lines.
2 The question is, can 0.5% protection be provided?
Unless you change the types you cannot, its stored as int here
 
Last edited:
Yes, by editing these lines.

Unless you change the types you cannot, its stored as int here
Could you show me how it should look properly replaced? how hide it?
 
Back
Top