• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved infinite charges on custom rings tfs 1.3

Thorn

Spriting since 2013
Joined
Sep 24, 2012
Messages
2,203
Solutions
1
Reaction score
923
Location
Chile
Hello guys, im having a problem with some rings im implementing, and i have searched in the forums but all ppl that had this problem didnt put the solution or it was never solved :S
the rings dont loose charges, they are infinite (custom only)

this only happens with my custom rings, so i guess im missing something, stone skin amulet and might ring work fine

btw reflect is a custom attribute that works perfect


Code:
<item id="29553" article="a" name="golden reflective ring">
        <attribute key="weight" value="290" />
        <attribute key="slotType" value="ring" />
        <attribute key="charges" value="50" />
        <attribute key="showcharges" value="1" />
        <attribute key="reflect" value="75" />
        <attribute key="showattributes" value="1" />
    </item>

here is might ring
Code:
 <item id="2164" article="a" name="might ring">
        <attribute key="weight" value="100" />
        <attribute key="slotType" value="ring" />
        <attribute key="charges" value="20" />
        <attribute key="showcharges" value="1" />
        <attribute key="absorbPercentAll" value="20" />
        <attribute key="showattributes" value="1" />
    </item>

also i added the ring to movements, i dont know what else to do besides that D:
 
Back
Top