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

Looted amulets are x1 charges & website problem

Bash

Member
Joined
Nov 7, 2008
Messages
116
Reaction score
15
Hello! I have 2 troubles in my server, lets see if someone can help me!
Using OTX based on 0.3.6.

1: Amulets looted by monsters are always x1 charges
-My items.xml are with correct charges (ex: ssa <attribute key="charges" value="5"/>), also showing attributes.
- Tryed to add subtype="5" inside monster loot, didnt work.
- NPC's are selling with good charges.

2: Double IP at some subpages of website
- When someone click at forum thread always gives a error because on the url the server ip is multiplied x2, like this (w w w.//IP/IP/forum.php?cat=3)
- Then same when someone click at one guild.

3- This is just one question, it is possible to add a cast channel for the viewers and caster? If it's yes, how?



Thanks in advance!!!
 
Charges Issue:
Can you post your Items.xml example please. Just one of the the items that show up as 1x charge.
Also check if any of the other items that are similar are working properly when dropped. Dragon Necklace, Protection Amulet, Garlic Necklace, Elven amulet, SSA)

EDIT: Try changing the monster files to something like this:
<item id="2197" chance="800" subtype="5" /><!-- stone skin amulet -->
instead of this:
<item id="2197" chance="800"/><!-- stone skin amulet -->

Website Issue:
Could you please provide your forum.php and guilds.php or make sure they look like this on the matching lines. Imgur: The most awesome images on the Internet


Channel request:
Not sure about this but I'll look into it for you. Send me a PM and i'll discuss with you.
 
Last edited:
Thanks for your answer! the problem of the forum/guilds has been fixed, thanks!
Btw i already tried subtype and didnt work.

This is an example od my stone skin amulet at items.xml

Code:
    <item id="2197" article="a" name="stone skin amulet">
        <attribute key="weight" value="700"/>
        <attribute key="slotType" value="necklace"/>
        <attribute key="charges" value="5"/>
        <attribute key="showcharges" value="1"/>
        <attribute key="absorbPercentPhysical" value="80"/>
        <attribute key="absorbPercentDeath" value="80"/>
        <attribute key="showattributes" value="1"/>

All the amulets/necklaces are with correct charges
 
Back
Top