Jump to content

Recommended Posts

Posted

[move]Hi again! :) [/move]

 

It gonna be an usefull guide so read it! ^^

 

First: Tattoo/Armor/Weapon

Tatto/Armor.

 

Go here:

gameserver\data\stats\armor\

 

open XML what u need to edit.

I'm looking for Tattoo of Power in 0400-0499.xml.

 

default is:

<item id="485" name="Tattoo of Power">
 <for>
   <add val="53" order="0x10" stat="pDef"/>
   <enchant val="0" order="0x0C" stat="pDef"/>
 </for>
</item>

 

What we can add here?

    <add  order="0x40" stat="maxHp" val="5000"/> -  + max HP

    <add  order="0x40" stat="maxCp" val="250"/> - +max CP

    <mul  order="0x40" stat="pAtk" val="1.10"/> - + P.Attack power

    <mul  order="0x40" stat="pAtkSpd" val="1.10"/> - + Attack Speed

    <add  order="0x40" stat="maxMp" val="2000"/> - + Max MP

    <mul  order="0x40" stat="mAtk" val="1.10"/> - + M.Attack power

    <mul  order="0x40" stat="mAtkSpd" val="1.10"/>  - + Casting Speed

    <add val="53" order="0x10" stat="pDef"/> - +max pdefense

    <add val="53" order="0x10" stat="mDef"/> - +max mdefense

(i think that's enough)

 

[glow=green,2,300]What means what?[/glow]

You Can see here.

 

 

Mage tattoo like this:

<item id="485" name="Tattoo of Power">
 <for>
    <add  order="0x10" stat="pDef"/>
    <add  order="0x40" stat="maxCp" val="250"/>
    <add  order="0x10" stat="mDef"/>
    <add  order="0x40" stat="maxMp" val="2000"/>
    <mul  order="0x40" stat="mAtk" val="1.10"/>
    <mul  order="0x40" stat="mAtkSpd" val="1.10"/>
   <enchant val="0" order="0x0C" stat="pDef"/>
 </for>
</item>

 

We can change the values with:

val="how many stat we wan't to add with number" (example: val="44444")

order="how many % we want to add" (example: order="0x40" (+4%))

 

When we wan't to edit armor (usualy we add +pdef) the mode if the editing like this too.

 

Weapon.

 

go here:

gameserver\data\stat\weapon

 

I gonna edit : Vesper Trower what in: 13400-13499.

 

Original:

<item id="13467" name="Vesper Thrower">
 <for>
   <set val="724" order="0x08" stat="pAtk"/>
   <set val="176" order="0x08" stat="mAtk"/>
   <set val="12" order="0x08" stat="rCrit"/>
   <add val="-3" order="0x10" stat="accCombat"/>
   <set val="293" order="0x08" stat="pAtkSpd"/>
   <enchant val="0" order="0x0C" stat="pAtk"/>
   <enchant val="0" order="0x0C" stat="mAtk"/>
 </for>
</item>

 

What we can add here?

    <add  order="0x40" stat="maxHp" val="5000"/> -  + max HP

    <add  order="0x40" stat="maxCp" val="250"/> - +max CP

    <mul  order="0x40" stat="pAtk" val="1.10"/> - + P.Attack power

    <mul  order="0x40" stat="pAtkSpd" val="1.10"/> - + Attack Speed

    <add  order="0x40" stat="maxMp" val="2000"/> - + Max MP

    <mul  order="0x40" stat="mAtk" val="1.10"/> - + M.Attack power

    <mul  order="0x40" stat="mAtkSpd" val="1.10"/>  - + Casting Speed

    <add val="53" order="0x10" stat="pDef"/> - +max pdefense

    <add val="53" order="0x10" stat="mDef"/> - +max mdefense

(i think that's enough)

 

But,we only change the stats.

 

<item id="13467" name="Vesper Thrower">
 <for>
   <set val="1000" order="0x08" stat="pAtk"/>
   <set val="176" order="0x08" stat="mAtk"/>
   <set val="15" order="0x08" stat="rCrit"/>
   <add val="-3" order="0x10" stat="accCombat"/>
   <set val="307" order="0x08" stat="pAtkSpd"/>
   <enchant val="0" order="0x0C" stat="pAtk"/>
   <enchant val="0" order="0x0C" stat="mAtk"/>
 </for>
</item>

 

 

Second: The skills

 

Go here:

gamserver\data\stats\skills

 

Bufftime:

 

I gonna edit Flame chant,what in: 1000-1099.xml

<skill id="1002" levels="3" name="Flame Chant" enchantLevels1="30" enchantLevels2="30">
 <table name="#enchantMagicLvl"> 76 76 76 77 77 77 78 78 78 79 79 79 80 80 80 81 81 81 82 82 82 82 83 83 83 84 84 85 85 85 </table>
 <enchant1 name="magicLvl" val="#enchantMagicLvl"/>
 <enchant2 name="magicLvl" val="#enchantMagicLvl"/>
 <table name="#ench1time"> 1240 1280 1320 1360 1400 1440 1480 1520 1560 1600 1640 1680 1720 1760 1800 1840 1880 1920 1960 2000 2040 2080 2120 2160 2200 2240 2280 2320 2360 2400 </table>
 <table name="#ench2mpConsume"> 160 157 154 152 149 146 143 141 138 135 133 130 127 124 122 119 116 114 111 108 105 103 100 97 95 92 89 86 84 81 </table>
 <table name="#ench2mpInitialConsume"> 40 39 38 38 37 36 36 35 34 34 33 32 32 31 30 30 29 28 28 27 26 25 25 24 23 23 22 21 21 20 </table>
 <table name="#mpInitialConsume"> 21 31 41 </table>
 <table name="#mpConsume"> 84 123 163 </table>
 <table name="#mAtkSpd"> 1.15 1.23 1.3 </table>
 <table name="#aggro"> 285 418 532 </table>
 <set name="mpInitialConsume" val="#mpInitialConsume"/>
 <set name="mpConsume" val="#mpConsume"/>
 <set name="target" val="TARGET_PARTY"/>                                                 <---stats
 <set name="skillRadius" val="1000"/>
 <set name="reuseDelay" val="4000"/>
 <set name="hitTime" val="2500"/>
 <set name="skillType" val="BUFF"/>
 <set name="isMagic" val="true"/>
 <set name="operateType" val="OP_ACTIVE"/>
 <set name="aggroPoints" val="#aggro"/>
 <enchant2 name="mpConsume" val="#ench2mpConsume"/>
 <enchant2 name="mpInitialConsume" val="#ench2mpInitialConsume"/>
 <for>
   <effect name="Buff" time="72000(it's the bufftime,it's set for 20 hour in seconds)" val="0" stackOrder="#mAtkSpd" stackType="casting_time_down">
     <mul order="0x30" stat="mAtkSpd" val="#mAtkSpd"/>
   </effect>
 </for>
 <enchant1for>
   <effect name="Buff" time="#ench1time" val="0" stackOrder="1.3" stackType="casting_time_down"> 
     <mul order="0x30" stat="mAtkSpd" val="1.3"/>
   </effect>
 </enchant1for>
</skill>

 

 

[move]::: credits to me :::

::: Watch updates,becouse the guide is undone! :::[/move]

Posted

You means it:

val="how many stat we wan't to add with number" (example: val="44444")

order="how many % we want to add" (example: order="0x40" (+4%))

?

Posted

add to the guide meaning of <mul> and <add> tag...

plus you should explain what does 0x10, 0x20, 0x30, 0x0C etc, because I really doubt, that they mean percent...

Posted

add to the guide meaning of <mul> and <add> tag...

plus you should explain what does 0x10, 0x20, 0x30, 0x0C etc, because I really doubt, that they mean percent...

Rin4a pwn you ! :D:D:D

 

You can view all values right here http://www.l2jdp.com/trac/wiki/XML

 

 

  • 9 months later...
  • 2 months later...
  • 4 weeks later...
  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • 🔥 Grand Opening: 29 May 2026 – 19:00 Germany Time Website: https://l2-lorena.com/ Discord: https://discord.gg/TYZ88Tgx4b ━━━━━━━━━━━━━━━━━━━━━━ General Information • Chronicle: Interlude • Server Type: PvP Rates • EXP/SP: x5000 • Adena: x500 • Drop: x500 Premium Account • 2x EXP / Drop / Adena ━━━━━━━━━━━━━━━━━━━━━━ Starting Setup • Starting Town: Aden • Starting Level: 76 • Starting Gear: S-Grade ━━━━━━━━━━━━━━━━━━━━━━ Enchant System • Safe Enchant: +4 • Normal Scroll: 50% • Blessed Scroll: 70% • Crystal Scroll: 100% ━━━━━━━━━━━━━━━━━━━━━━ Subclass System • All classes available • Dominator subclass enabled • Dominator subclass cost: 20 Donate Coins ━━━━━━━━━━━━━━━━━━━━━━ Items Balance • Custom items • Elegia Armor added as Custom Set • Rare S-Grade items with boosted stats • Balanced PvP gameplay ━━━━━━━━━━━━━━━━━━━━━━ Siege & PvP Rewards • Aden Castle special reward: 200 Donate Coins • Competitive PvP and siege-focused gameplay ━━━━━━━━━━━━━━━━━━━━━━ Epic Bosses • All Epic Bosses available up to Valakas ━━━━━━━━━━━━━━━━━━━━━━ Augmentation Rates • Top LS: 100% skill chance • High LS: 7% skill chance • Mid LS: 3% skill chance ━━━━━━━━━━━━━━━━━━━━━━ Perfect For Players Who Want ✔ Fast progression ✔ Clean Interlude gameplay without custom chaos ✔ Active PvP action ✔ Competitive sieges ✔ Long-term fun
    • I think u need https://adrenalinebot.com/en/script/anti-captcha/ But contact tech support to be sure it works on ur server
    • Hello everyone, Are you looking for a server where you can have fun with friends and relive the good old days of Lineage II? Join us for an enjoyable adventure, exciting battles, and a nostalgic old-school experience together with the community. Introducing a Gold-style fast progression gameplay experience — no more spending months in the same zone farming endlessly. Enjoy faster progress, more action, and a more rewarding adventure from the very beginning. For more information and updates, visit our Facebook page and join the community! Download patch:https://mega.nz/file/hEUAFIAY#8F5BMBRV_v-O1gjDTLsCkmFiWFMvT3hzVYSMdswm2rs
    • ⚡ PRIVATE L2 SOURCE CODE & CONTRACT BUILDS Essence / Classic / High Five / Main GOD Private enterprise-level Lineage 2 development for serious projects ENGLISH For many years our studio was known mostly for public Lineage 2 builds and public development services. However, for many years now our main focus has been private development for serious projects and investors. Over time we moved away from mass-market development and focused on quality, stability, deep detailing and long-term project support. This approach allowed us to create products of a completely different level designed for large live-projects and long-term operation. Today, in addition to our old public builds, we also offer private enterprise-level solutions developed by a full professional team with many years of Lineage 2 experience. We work only with serious teams, investors and projects that understand the value of quality private development. ◆ L2 Essence — Private Builds & Source Code Latest protocols: 557–559+ Available only on a long-term contract basis. Includes: • 100% official content implementation • Custom interface systems • Active protocol updates while the contract is active • Full access to the project source code • Full technical support for the project • Bug fixing and feature development • Help with launch and long-term server development • A full professional development team working on your project • Java developers, datapack developers and project management • Many years of experience with large live projects • Long-term private cooperation and support Contract terms: Start: 10,000 USD Monthly contract: 3,000 USD / month Older Essence source code available for direct purchase: • Protocols 507–520 — 10,000 USD • Protocols 474–502 — 7,000 USD • Protocols 447–464 Seven Signs — 5,000 USD • Protocol 388 Crusade — 2,500 USD Full details: https://mmore.dev/en/essense2.html ◆ L2 Classic — Private Builds & Source Code Latest protocols: 557–559+ Available only on a long-term contract basis. Includes: • 100% official content implementation • Custom interface systems • Active protocol updates while the contract is active • Full access to the project source code • Full technical support for the project • Bug fixing and feature development • Help with launch and long-term server development • A full professional development team working on your project • Java developers, datapack developers and project management • Many years of experience with large live projects • Long-term private cooperation and support Contract terms: Start: 10,000 USD Monthly contract: 3,000 USD / month Classic source code available for direct purchase: • Classic 542 protocol — 15,000 USD • Classic 520 protocol — 12,000 USD • Classic 507 protocol — 10,000 USD • Classic 286 protocol — 8,000 USD Negotiable. Contract support is available. Full details: https://mmore.dev/en/classic2.html ◆ High Five — Private Build Private High Five build with years of live-server experience. Includes: • 100% official content • Full access to the project source code • Full technical support for the project • Bug fixing and feature development • Help with launch and long-term server development • A full professional development team working on your project • Java developers, datapack developers and project management • Many years of experience with large live projects • Long-term private cooperation and support Contract terms: Start: 3,000 USD Monthly contract: 3,000 USD / month Full details: https://mmore.dev/en/hf2.html ◆ Main / GOD — In Development Development of the Main / GOD branch, protocol 559+, has started. Pre-orders and sponsorship discussions are open. We accept only a limited number of projects from different regions with maximum regional exclusivity for each partner. IMPORTANT The latest Essence and Classic protocols are available only through long-term private contracts. Direct source code sales are available only for older protocols. If you need the newest protocols, active development, updates and support — contract work is the correct option. РУССКИЙ Ранее наша студия в основном занималась публичными сборками Lineage 2 и массовыми услугами разработки. Однако уже много лет основное направление нашей работы — приватная разработка для серьёзных проектов и инвесторов. Со временем мы ушли от работы на массовость и сосредоточились на качестве, стабильности, глубокой детализации и долгосрочном развитии проектов. Именно такой подход позволил нам создать продукты совершенно другого уровня, рассчитанные на крупные live-проекты и долгосрочную эксплуатацию. Сегодня помимо наших старых публичных сборок мы также предлагаем приватные enterprise-level решения, над которыми работает полноценная команда профессиональных разработчиков с многолетним опытом работы в сфере Lineage 2. Мы работаем только с серьёзными командами, инвесторами и проектами, которые понимают ценность качественной приватной разработки. ◆ L2 Essence — приватные сборки и исходники Актуальные протоколы: 557–559+ Доступны только на контрактной основе. Входит: • 100% реализация официального контента • Кастомные интерфейсные системы • Обновления протоколов на время действия контракта • Полный доступ к исходному коду проекта • Полная техническая поддержка проекта • Исправление ошибок и доработка функционала • Помощь с запуском и развитием сервера • Работа целой команды профессионалов над вашим проектом • Java-разработчики, datapack-разработчики и project management • Многолетний опыт работы с крупными live-проектами • Долгосрочная приватная работа и сопровождение проекта Условия контракта: Стартовый взнос: 10,000 USD Ежемесячно: 3,000 USD / месяц Старые протоколы Essence для прямой покупки исходников: • Протоколы 507–520 — 10,000 USD • Протоколы 474–502 — 7,000 USD • Протоколы 447–464 Seven Signs — 5,000 USD • Протокол 388 Crusade — 2,500 USD Подробнее: https://mmore.dev/essense2.html ◆ L2 Classic — приватные сборки и исходники Актуальные протоколы: 557–559+ Доступны только на контрактной основе. Входит: • 100% реализация официального контента • Кастомные интерфейсные системы • Обновления протоколов на время действия контракта • Полный доступ к исходному коду проекта • Полная техническая поддержка проекта • Исправление ошибок и доработка функционала • Помощь с запуском и развитием сервера • Работа целой команды профессионалов над вашим проектом • Java-разработчики, datapack-разработчики и project management • Многолетний опыт работы с крупными live-проектами • Долгосрочная приватная работа и сопровождение проекта Условия контракта: Стартовый взнос: 10,000 USD Ежемесячно: 3,000 USD / месяц Исходники Classic для прямой покупки: • Classic 542 protocol — 15,000 USD • Classic 520 protocol — 12,000 USD • Classic 507 protocol — 10,000 USD • Classic 286 protocol — 8,000 USD Торг возможен. Контрактная поддержка доступна. Подробнее: https://mmore.dev/classic2.html ◆ High Five — приватная сборка Приватная High Five сборка с многолетним опытом работы на живых проектах. Входит: • 100% официальный контент • Полный доступ к исходному коду проекта • Полная техническая поддержка проекта • Исправление ошибок и доработка функционала • Помощь с запуском и развитием сервера • Работа целой команды профессионалов над вашим проектом • Java-разработчики, datapack-разработчики и project management • Многолетний опыт работы с крупными live-проектами • Долгосрочная приватная работа и сопровождение проекта Условия контракта: Стартовый взнос: 3,000 USD Ежемесячно: 3,000 USD / месяц Подробнее: https://mmore.dev/hf2.html ◆ Main / GOD — в разработке Мы начали разработку ветки Main / GOD, протокол 559+. Открыты предварительные обсуждения, предзаказы и спонсорские контракты. Принимается ограниченное количество проектов из разных регионов мира с максимальной региональной эксклюзивностью для каждого партнёра. ВАЖНО Самые актуальные протоколы Essence и Classic доступны только на долгосрочном контракте. Прямая продажа исходного кода доступна только для более старых протоколов. Если вам нужны самые свежие версии, развитие, обновления и поддержка — выбирайте контрактную работу с нашей командой. CONTACTS / КОНТАКТЫ Telegram:  @L2scripts Microsoft Teams:   l2-scripts.com@outlook.com      Old Skype account: Urchika E-mail:    L2scripts.com@gmail.com IMPORTANT All discussions, project details, examples, testing access, source code demonstrations, technical discussions and cooperation terms are discussed strictly in Telegram only. We do not discuss private development publicly on the forum. Telegram is the main and preferred communication platform for all serious inquiries. ВАЖНО Все обсуждения, детали проектов, примеры, предоставление тестирования, демонстрации исходников, технические вопросы и условия сотрудничества обсуждаются строго только в Telegram. Публично на форуме приватная разработка не обсуждается. Telegram — основная и приоритетная платформа для связи по всем серьёзным вопросам. All questions are discussable. We work for the best Lineage 2 projects in the world.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..