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

Ring Funny Problem

Dorianek

Member
Joined
Nov 29, 2018
Messages
247
Reaction score
10
Location
Poland
It works even when it is not used and time flies

37671


C++:
    <item id="ID" article="a" name="NAME RING">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="transformEquipTo" value="ID" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    
        or
        
            <item id="ID" article="a" name="NAME RING">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="decayTo" value="0" />
        <attribute key="transformDeEquipTo" value="ID" />
        <attribute key="duration" value="2760" />
        <attribute key="showduration" value="1" />
        <attribute key="showattributes" value="1" />
    </item>
 
Solution
Check movements.xml If you already have onequip/deequip also get sure that
XML:
transformDeEquipTo
XML:
transformEquipTo
Have the right ideas because it didn't transform back when you deequiped them.
Check movements.xml If you already have onequip/deequip also get sure that
XML:
transformDeEquipTo
XML:
transformEquipTo
Have the right ideas because it didn't transform back when you deequiped them.
 
Solution
Back
Top