• 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+ Show attributes on items

T

Tibia Demon

Guest
How can I edit this
to show attributes on items like normal attributes instead of showing it in skills window.
C++:
criticalhitchance
criticalhitamount
lifeleechchance
lifeleechamount
manaleechchance
manaleechamount
one example is enough and is it possible to have amount more than 100?
 
Solution
I don't know if they added this to source, if not you could try to compile with it, it worked for me on tfs 1.3 10.98 if i remember right :)

Make sure you are using it properly on an item like this:
<attribute key="criticalhitchance" value="4" />
<attribute key="criticalhitamount" value="4" />

** This will not get rid of it showing in the skills window, but it will show when you "look" on item
I don't know if they added this to source, if not you could try to compile with it, it worked for me on tfs 1.3 10.98 if i remember right :)

Make sure you are using it properly on an item like this:
<attribute key="criticalhitchance" value="4" />
<attribute key="criticalhitamount" value="4" />

** This will not get rid of it showing in the skills window, but it will show when you "look" on item
 
Solution
Back
Top