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

Items Dont Give Stats as it shold

simson361

The Grim Reaper
Joined
Aug 4, 2010
Messages
626
Reaction score
27
Location
sweden
hey, for example this Donate Ring - (club fighting +1, sword fighting +1, axe fighting +1, distance fighting +1, magic level +1, protection physical +3%, death +3%, speed +15)
it dossent give the stats as it shold do, dose anyone know whats wrong or how to fix this? :)
 
@Vendeliiko i bet its nothing here
Code:
    <item id="7697" article="a" name="Donate Ring">
        <attribute key="weight" value="80" />
        <attribute key="skillAxe" value="1" />
        <attribute key="skillClub" value="1" />
        <attribute key="skillSword" value="1" />
        <attribute key="skillDist" value="1" />
        <attribute key="magiclevelpoints" value="1" />
        <attribute key="absorbPercentDeath" value="3" />
        <attribute key="absorbPercentPhysical" value="3" />
        <attribute key="speed" value="30" />
        <attribute key="slotType" value="ring" />
        <attribute key="showattributes" value="1" />
    </item>
 
You need to add the item at movement xml too :p

should look like this !

PHP:
    <movevent type="Equip" itemid="12645" slot="head" event="function" value="onEquipItem">
        <vocation id="3"/>
        <vocation id="3" showInDescription="0"/>
    </movevent>
    <movevent type="DeEquip" itemid="12645" slot="head" event="function" value="onDeEquipItem"/>
 
Please consider using the search function as questions like this have been answered for about 100 times before.
 
sure thing @Summ iv tryed to use the serch function but i dont like it and have a hard time finind answers thats related to same question thats why i ask here but i alweys try to go for serch first becuse its way faster if i find it there.
 
Back
Top