How to add the Rune on SP/EXP/Drop for Interlude to the server

How to add the Rune on SP/EXP/ for Interlude to the server like on Gracia Final or HF

For addition the fleece needs to bring the skill interesting you in to data/stat/skills
Example:
<skill id="90004" levels="1" name="Rune of SP 50%" >
<!--
Description: Acquired SP increase by 50%.
-->
<set name="icon" val="br_cashtex.skill.br_cash_rune_of_sp_buff_3" />
<set name="magicLevel" val="1" />
<set name="target" val="TARGET_SELF" />
<set name="skillType" val="BUFF" />
<set name="operateType" val="OP_PASSIVE" />
<for>
<mul order="0x30" stat="SpMultiplier" val="1.5" />
</for>
</skill>
This skill will give boost SP + 50% stat - SpMultiplier
For addition of a EXP multiplier stat - ExpMultiplier
For addition of a drop multiplier - DropMultiplier
To add a stat drop multiplier - ItemDropMultiplier
To add adena stat multiplier stat - AdenaDropMultiplier
To add multiplier spoil stat - SpoilDropMultiplier
For Bonus to enchant items - EnchantBonusMultiplier

The following step it is necessary to add the item (data/items) to which we will attach the skill interesting us:

<etcitem id="9201" name="Rune of SP : 50%" add_name="5 hour limited time">
<set name="class" value="OTHER"/>
<set name="crystal_type" value="NONE"/>
<set name="dropable" value="false"/>
<set name="durability" value="300"/> - we specify time in this floor action of a rune - in our example it is 5 hours. 300 minutes.
<set name="icon" value="br_cashtex.item.br_cash_rune_of_exp_i00"/>
<set name="temporal" value="true"/> - also we don't forget to specify that it is temporary ity.
<set name="tradeable" value="false"/>
<set name="type" value="RUNE"/> - Item type
<set name="weight" value="120"/> - Item weight
<skills>
<skill id="90004" level="1"/>
</skills>
</etcitem>

AND FOR FINISH:
finally you need to add all these skills and items in game client. If you don't make it, instead of objects black squares in a game will be displayed.

Client items for modification:
system/etcitemgrp.dat
system/ItemName-e.dat
system/skillgrp.dat
system/skillname-e.dat

Patch link https://lucera2.com/data/LuceraTestPatch.zip
Included is Exp/Sp/Drop to default pack ID is 9210 9211 9212 9213 9214 9215
 
Last edited:
@Deazer

For addition of a drop multiplier -
DropMultiplier
To add a stat drop multiplier - ItemDropMultiplier

could you please explain me the difference between those 2?

thank you
 
DropMultiplier - peaces, recipe and etc
ItemDropMultiplier - equipmets
i'm getting this error only on dropmultiplier:

skill xml:
<table name="#power">1.0 0.5 0.1</table>
<for>
<mul order="0x30" stat="SpoilDropMultiplier" val="#power"/>
<mul order="0x30" stat="ItemDropMultiplier" val="#power"/>
<mul order="0x30" stat="DropMultiplier" val="#power"/>
</for>

gameserver error:
Unknown name 'DropMultiplier' for enum BaseStats
[16:04:15] ERROR Error loading skill 56605
java.util.NoSuchElementException: Unknown name 'DropMultiplier' for enum BaseStats
at l2.gameserver.stats.Stats.valueOfXml(Unknown Source)
at l2.gameserver.skills.DocumentBase.attachFunc(Unknown Source)
at l2.gameserver.skills.DocumentBase.parseTemplate(Unknown Source)
at l2.gameserver.skills.DocumentSkill.parseSkill(Unknown Source)
at l2.gameserver.skills.DocumentSkill.parseDocument(Unknown Source)
at l2.gameserver.skills.DocumentBase.parse(Unknown Source)
at l2.gameserver.skills.SkillsEngine.loadSkills(Unknown Source)
at l2.gameserver.skills.SkillsEngine.loadAllSkills(Unknown Source)
at l2.gameserver.tables.SkillTable.load(Unknown Source)
at l2.gameserver.data.xml.Parsers.parseAll(Unknown Source)
at l2.gameserver.GameServer.<init>(Unknown Source)
at l2.gameserver.GameServer.main(Unknown Source)

Apparently the comamand 'DropMultiplier' is not recognized by the gameserver. Am i right?

After deleting this line i get zero gameserver errors: <mul order="0x30" stat="DropMultiplier" val="#power"/>
 
<mul order="0x30" stat="DropMultiplier" val="#power"/>
нет такого.
В классик есть:
EXP("ExpMultiplier"),
SP("SpMultiplier"),
RAID_EXP("RaidExpMultiplier"),
RAID_SP("RaidSpMultiplier"),
ITEM_REWARD_MULTIPLIER("ItemDropMultiplier"),
ADENA_REWARD_MULTIPLIER("AdenaDropMultiplier"),
SPOIL_REWARD_MULTIPLIER("SpoilDropMultiplier"),
SEAL_STONES_REWARD_MULTIPLIER("SealStonesMultiplier"),
QUEST_DROP_MULTIPLIER("QuestDropMultiplier"),
ENCHANT_BONUS_MULTIPLIER("EnchantBonusMultiplier"),
ENCHANT_SKILL_BONUS_MULTIPLIER("EnchantSkillBonusMultiplier"),
 
ItemDropMultiplier
that's what i said in my gameserver error. @Deazer quoted:
For addition of a drop multiplier - DropMultiplier
To add a stat drop multiplier - ItemDropMultiplier

but in classic files there's no DropMultiplier info.
it's a bug to fix considering THEY BOTH are supposed to interfere in two different kind of drops?
 
Back
Top