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

[RME 3.7.0] Can't edit signs in 7.6

overdriven

Active Member
Joined
Mar 10, 2020
Messages
70
Solutions
1
Reaction score
42
When I right click on sign properties it doesn't show the Text property, so I cannot edit the text:
1646084163689.png

Other writables like letters or blackboards have this property, but not signs.
I'm using 7.6 tibia files from ots.me, items.otb from RME (size: 183 KB).
 
Solution
items.xml (RME)
XML:
<item id="1429" article="a" name="sign">
    <attribute key="allowdistread" value="1"/> <!-- add this line -->
</item>
items.xml (RME)
XML:
<item id="1429" article="a" name="sign">
    <attribute key="allowdistread" value="1"/> <!-- add this line -->
</item>
 
Solution
Works, thanks!

Solution for posterity:

XML:
<!-- signs -->
<item id="1429" article="a" name="sign">
    <attribute key="allowdistread" value="1"/>
</item>
<item id="1430" article="a" name="sign">
    <attribute key="allowdistread" value="1"/>
</item>
<item id="1431" article="a" name="sign">
    <attribute key="allowdistread" value="1"/>
</item>
<item id="1432" article="a" name="sign">
    <attribute key="allowdistread" value="1"/>
</item>
<item id="1433" article="a" name="sign">
    <attribute key="allowdistread" value="1"/>
</item>
<item id="1434" article="a" name="sign">
    <attribute key="allowdistread" value="1"/>
</item>
<item id="1440" article="a" name="sign">
    <attribute key="allowdistread" value="1"/>
</item>
<item id="1441" article="a" name="sign">
    <attribute key="allowdistread" value="1"/>
</item>
 
Back
Top