Jump to content

Recommended Posts

Posted

Turorial how to balance classes by yourself. The point of tutorial is: to balance all fighter classes and all mystic classes (for example: at your server fighters are too strong or too weak.. and the same with mystics). Every class has two "armor masteries" one for fighters and one for mystics, so we will need edit these skills and add for them bonuses.

All Fighters has Armor Mastery with 142 id: skill0142_0.png. All Mystics has Armor Mastery with 244 id: skill0244_0.png.

 

Now, we need go to data/stats/skills/ folder. And edit 0100-0199.xml and 0200-0299.xml. There we will find 142id and 244id skills (aka mystic and fighter armor mastery pasive skills). So we need edit them to balance classes by your own.

 

At fighter armor mastery (id: 142) we will see:

<skill id="142" levels="5" name="Armor Mastery">
##HERE WE WILL NEED TO INSERT FIRST LINE FROM BELOW.
  <table name="#pDef"> 9 11 12 13 14 </table>
  <table name="#rEvas"> 0 0 0 3 3 </table>
  <set name="power" val="0.0"/>
  <set name="target" val="TARGET_SELF"/>
  <set name="skillType" val="BUFF"/>
  <set name="operateType" val="OP_PASSIVE"/>
  <set name="castRange" val="-1"/>
  <set name="effectRange" val="-1"/>
  <for>
##AFTER <for> HERE WE WILL NEED INSERT SECOND LINE FROM BELOW (and do not put 2 <for> lines).
<add order="0x40" stat="pDef" val="#pDef"/>
<add order="0x40" stat="rEvas" val="#rEvas">
  <and>
	<using kind="Light"/>
	<not>
	  <using kind="Heavy,Magic"/>
	</not>
  </and>
</add>
  </for>
</skill>

 

At mystic armor mastery (id: 244) we will see:

<skill id="244" levels="3" name="Armor Mastery">
##HERE WE WILL NEED TO INSERT FIRST LINE FROM BELOW.
  <table name="#pDef"> 6.7 8.0 9.2 </table>
  <set name="power" val="0.0"/>
  <set name="target" val="TARGET_SELF"/>
  <set name="skillType" val="BUFF"/>
  <set name="operateType" val="OP_PASSIVE"/>
  <set name="castRange" val="-1"/>
  <set name="effectRange" val="-1"/>
  <for>
##AFTER <for> HERE WE WILL NEED INSERT SECOND LINE FROM BELOW (and do not put 2 <for> lines).
<add order="0x40" stat="pDef" val="#pDef"/>
  </for>
</skill>

 

#######################################

 

Now you should use one's own discretion for class balancing.  ;) Here is few possible classes stats boosts (or for belittle):

 

M.Atk. speed boost:

  <table name="#mAtkSpd"> 0 0 0 0 85 </table>
...
  <for>
<add order="0x40" stat="mAtkSpd" val="#mAtkSpd"/>

85* number means the same as acument lv3.

 

P.Atk. speed boost:

  <table name="#pAtkSpd"> 0 0 0 0 85 </table>
...
  <for>
<add order="0x40" stat="pAtkSpd" val="#pAtkSpd"/>

85* number means the same as haste lv2.

 

P.Def. boost:

  <table name="#pDef"> 0 0 0 0 85 </table>
...
  <for>
<add order="0x40" stat="pDef" val="#pDef"/>

85* number means the same as shield lv3.

 

M.Def. boost:

  <table name="#mDef"> 0 0 0 0 85 </table>
...
  <for>
<add order="0x40" stat="mDef" val="#mDef"/>

85* number means the same as  magic barrier lv2.

 

P.Atk. boost:

  <table name="#pAtk"> 0 0 0 0 85 </table>
...
  <for>
<add order="0x40" stat="pAtk" val="#pAtkf"/>

85* number means the same as might lv3.

 

M.Atk. boost:

  <table name="#mAtk"> 0 0 0 0 85 </table>
...
  <for>
<add order="0x40" stat="mAtk" val="#mAtk"/>

85* number means the same as greater empower lv3.

 

Decrease/Increase dagger skill chance to hit the target:

  <table name="#Tab-blowRate"> 0 0 0 0 0.7 </table>
...
  <for>
<add order="0x40" stat="blowRate" val="#Tab-blowRate"/>

 

[#Tab-] Means - if "tab-number" is 1.5 then "something stat" increases by 50%. If "tab-number" is below then 1, then "something stat" decreases (0.5= -50%) etc.   :-X

 

#######################################

 

And how it looks like edited.xml for Mystics (id:244):

<skill id="244" levels="3" name="Armor Mastery">
  <table name="#pDef"> 0 0 0 0 85 </table> #INCREASES p.def.
  <table name="#mAtk"> 0 0 0 0 85 </table> #INCREASES m.atk.
  <table name="#mAtkSpd"> 0 0 0 0 85 </table> #INCREASES m.atk spd.
  <set name="power" val="0.0"/>
  <set name="target" val="TARGET_SELF"/>
  <set name="skillType" val="BUFF"/>
  <set name="operateType" val="OP_PASSIVE"/>
  <set name="castRange" val="-1"/>
  <set name="effectRange" val="-1"/>
  <for>
<add order="0x40" stat="pDef" val="#pDef"/> #NEW ADDED  p.def.
<add order="0x40" stat="mAtk" val="#mAtk"/> #ADDED m.atk.
<add order="0x40" stat="mAtkSpd" val="#mAtkSpd"/> #ADDED m.atk spd.
  </for>
</skill>

Attention! If there is old the same lines as new one's, we need delete old one's. For example: there cannot be two p.def lines. So we delete old one's:

  <table name="#pDef"> 6.7 8.0 9.2 </table>

   <add order="0x40" stat="pDef" val="#pDef"/>

 

The same thing we can do with fighters armor mastery .xml(id:142)...

 

#######################################

 

Also stats are possible can boosted by percents. Using something like that:

  <table name="#Tab-somethingStat"> 0 0 0 0 0.7 </table>
...
  <for>
<add order="0x40" stat="somethingStat" val="#Tab-somethingStat"/>

 


  • somethingStat may be (every boost may be de-boost):
    [tt]*pDef
    *mDef
    *pAtk
    *mAtk
    *pAtkSpd
    *mAtkSpd
    *sDef - shield defense
    *cAtk - Critical Dmg
    *pvpPhysDmg - p.atk on PvP
    *pvpMagicalDmg - m.atk on Pvp
    *pvpPhysSkillsDmg - fighter skill dmg on PvP
     
    *cancelVuln - cancel skills resist boost
    *debuffVuln - debuff skills restist boost
    *fallVuln - falldown boost
     
    *critVuln - RESISTENSE TO CRIT DMG!
    *pReuse - Fighters skill reuse time!
    *mReuse - Mystics skill reuse time!
    *bowReuse - bow atk delay.. (do not use this for balance)
     
    *rEvas - Evasion rate
    *rShld - Shield rate
    *shldAngle - Shield def Angle
    *rCrit - Critical Rate
    *blowRate - Dagger skills atk change rate
    *mCritRate - M.atk critical hit rate
    *cancel - cancel rate (corrupt skill)
     
    *accCombat - Acuracy
    *pAtkRange - P.atk range (do not use this for balance)
    *mAtkRange - M.atk range
    *pAtkAngle - Pole angle boost (do not use this for balance)
    *atkCountMax - How many mobs posible hit by 1hit  (do not use this for balance)
     
    *maxHp - H boost
    *maxCp - Cp boost
    *maxMp - Mp boost
    *regHp - Hp regeneration
    *regCp - Cp regeneration
    *regMp - Mp regeneration (For pvp servers you may boost this thousand times..)
    *gainMp - Gets more mp from recharging
    *gainHp - Gets more hp from healing.
    *giveHp - Heals more at healing
    *bonusHp - Extra heal at healing
     
    *breath - increases breath capability
    *runSpd - normal char speed
    *walkSpd - Increases walk speed
     
    *reflectDam - Reflect damage boost
    *ReflectSkillMagic - Mystics skills atk. reflect damage boost
    *ReflectSkillPhysic - Fighter skills atk. reflect damage boost
    *absorbDam - Drain skills absorb boost
    *transDam - Transfer body skill boost
    [/tt]
    EXTRA:
    Do not use this for balance. This one is good for egz: custom donation  item = exp/sp boost, inv/wh/freight boost, private sell/buy boost or for dwarven/common craft boost.
     
    [tt]*rExp - Exp & SP rate 
     
    *inventoryLimit - Inventory slot boost
    *whLimit - Warehouse slot boost
    *FreightLimit - Freight slot boost
    *PrivateSellLimit - Private sell boost
    *PrivateBuyLimit - Private buy boost
    *DwarfRecipeLimit - Dwarf recipe reg boost
    *CommonRecipeLimit - Common recipe reg boost[/tt]
     

There are also more, but other only are resists so they doesn't needed.

 

That's it! I hope that I helped for someone.  :o

Posted

Yeah its all my work and idea ;) Also There is another idea about balancing every class by fire/water/earth/wind/holy/dark & by their weapons damage. Maybe at future I will write how to do that too.

Posted

bullshit in l2 everything affects everything

 

step1 you need a new char_template to balance stats

step2 you need to restrict the armors only to mastery

step3 you need to edit skill chances and times

 

and thats when you have balance

Posted

bullshit in l2 everything affects everything

 

step1 you need a new char_template to balance stats

step2 you need to restrict the armors only to mastery

step3 you need to edit skill chances and times

 

and thats when you have balance

 

I Totally Agree With You!!  for first time: D:)

 

i gave him +1 Cause of his work !

Posted

I Totally Agree With You!!  for first time: D:)

 

i gave him +1 Cause of his work !

Did u read what he wrote?

 

He wrote many things missing, not added etc etc.

 

U can call it offensive post, if u agree with him then why u gave him +1? :D

 

anyway, the share stays good even if its not completed.

Posted

bullshit in l2 everything affects everything

 

step1 you need a new char_template to balance stats

step2 you need to restrict the armors only to mastery

step3 you need to edit skill chances and times

 

and thats when you have balance

U are serious?  ;D

 

Maybe yes, but this way is much more simple and easier. Much more stats boost/de-boost. And u only need to edit 2skills. No need to know any knowledge of sql scripts. + Explanation how everything works.

 

*pDef

*mDef

*pAtk

*mAtk

*pAtkSpd

*mAtkSpd

*sDef - shield defense

*cAtk - Critical Dmg

*pvpPhysDmg - p.atk on PvP

*pvpMagicalDmg - m.atk on Pvp

*pvpPhysSkillsDmg - fighter skill dmg on PvP

 

*cancelVuln - cancel skills resist boost

*debuffVuln - debuff skills restist boost

*fallVuln - falldown boost

 

*critVuln - RESISTENSE TO CRIT DMG!

*pReuse - Fighters skill reuse time!

*mReuse - Mystics skill reuse time!

*bowReuse - bow atk delay.. (do not use this for balance)

 

*rEvas - Evasion rate

*rShld - Shield rate

*shldAngle - Shield def Angle

*rCrit - Critical Rate

*blowRate - Dagger skills atk change rate

*mCritRate - M.atk critical hit rate

*cancel - cancel rate (corrupt skill)

 

*accCombat - Acuracy

*pAtkRange - P.atk range (do not use this for balance)

*mAtkRange - M.atk range

*pAtkAngle - Pole angle boost (do not use this for balance)

*atkCountMax - How many mobs posible hit by 1hit  (do not use this for balance)

 

*maxHp - H boost

*maxCp - Cp boost

*maxMp - Mp boost

*regHp - Hp regeneration

*regCp - Cp regeneration

*regMp - Mp regeneration (For pvp servers you may boost this thousand times..)

*gainMp - Gets more mp from recharging

*gainHp - Gets more hp from healing.

*giveHp - Heals more at healing

*bonusHp - Extra heal at healing

 

*breath - increases breath capability

*runSpd - normal char speed

*walkSpd - Increases walk speed

 

*reflectDam - Reflect damage boost

*ReflectSkillMagic - Mystics skills atk. reflect damage boost

*ReflectSkillPhysic - Fighter skills atk. reflect damage boost

*absorbDam - Drain skills absorb boost

*transDam - Transfer body skill boost

 

I Totally Agree With You!!  for first time: D:)

 

i gave him +1 Cause of his work !

lol take back your karma!! :D I here to help everyone for free!  ;D :P

Posted

it's not a balance..

"Turorial how to balance classes by yourself." First of all you need to test all charactars (at your server) who is too strong or too weak. And then add them what they need. Its not only for balance by yourself! For example some servers want to add to fighter atk.spd & to mystics m.spd, its good tutorial for them too. :|

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • SOCNET — is a universal service combining a digital goods store, an SMM panel, and a Telegram bot for purchasing Telegram Stars; here you will find TikTok, Instagram, Reddit, Twitter, Telegram, Facebook, LinkedIn, WhatsApp, SnapChat, YouTube, Google, Discord accounts, emails (Outlook, Hotmail, Gmail, Rambler, Firstmail, and others), access to ChatGPT 5, gift cards, and premium subscriptions to many services — all at the best prices! We are currently actively looking for new suppliers for various product categories, which include: Priority list of positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old accounts (brute or cracked origin, self-regs) with post and comment karma from 100 up to 100,000+ | Full access with email included — LinkedIn old accounts with real connections | Geo: Europe/USA | Full email access + active 2FA password — Instagram old accounts (2010-2023) | Full email access (possibly with attached 2FA password) — Facebook old accounts (2010-2023) | Full email access (possibly with attached 2FA password) | With friends or without friends | Geo: Europe/USA/Asia — Threads accounts | Full email access (possibly with attached 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts We are also open to considering other product categories from you, feel free to contact us through the details listed below in this thread! ⚡ Terms of cooperation: ⚡ 1. You prepare a preliminary description of your product 2. We publish your product in our online store and Telegram bots (in both Russian and English). 3. After the product is sold in our stores, we transfer the funds to you by any convenient method within 24 hours from the moment of sale (any cryptocurrency, PayPal, Payeer, TG Stars, and other methods)   ‼ If you have doubts about working with us or are afraid to send the product first, we agree to work through an escrow service of a trusted provider, or you can simply check out the huge base of reviews about our services in this Google document (reviews from our website, Telegram bot, and other platforms where our products are listed). Document ⭐ We invite you to COOPERATE and EARN with us ⭐ Do you want to sell your product or service in our stores and earn money? Become our partner or propose mutually beneficial cooperation? Become our wholesale client and receive the best conditions and discounts? You can contact us through the CONTACTS listed in this thread. We build a reliable partnership network in all areas of online business. We are ready to participate in joint content creation, giveaways, and events! If you work in digital, traffic, accounts, or media and other fields — let’s discuss possible cooperation. We value quality, transparency, and growth. If this resonates with you — write to us, we are open to dialogue! Our current list of partners ⭐ Our contacts ⭐ ➡ Telegram ➡ WhatsApp ➡ Email: solomonbog@socnet.store ➡ Discord: socnet_support ⭐ Our online store ⭐ SOCNET.STORE ⭐ Our Telegram bot for purchasing Telegram Stars ⭐ SOCNET.CC ⭐ Our SMM Panel for social media promotion ⭐ SOCNET.PRO ⭐ Telegram shop ⭐ SOCNET.SHOP   ✅ News resources ➡ Telegram channel ➡ Discord server ➡ WhatsApp channel
    • SOCNET — is a universal service combining a digital goods store, an SMM panel, and a Telegram bot for purchasing Telegram Stars; here you will find TikTok, Instagram, Reddit, Twitter, Telegram, Facebook, LinkedIn, WhatsApp, SnapChat, YouTube, Google, Discord accounts, emails (Outlook, Hotmail, Gmail, Rambler, Firstmail, and others), access to ChatGPT 5, gift cards, and premium subscriptions to many services — all at the best prices! We are currently actively looking for new suppliers for various product categories, which include: Priority list of positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old accounts (brute or cracked origin, self-regs) with post and comment karma from 100 up to 100,000+ | Full access with email included — LinkedIn old accounts with real connections | Geo: Europe/USA | Full email access + active 2FA password — Instagram old accounts (2010-2023) | Full email access (possibly with attached 2FA password) — Facebook old accounts (2010-2023) | Full email access (possibly with attached 2FA password) | With friends or without friends | Geo: Europe/USA/Asia — Threads accounts | Full email access (possibly with attached 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts We are also open to considering other product categories from you, feel free to contact us through the details listed below in this thread! ⚡ Terms of cooperation: ⚡ 1. You prepare a preliminary description of your product 2. We publish your product in our online store and Telegram bots (in both Russian and English). 3. After the product is sold in our stores, we transfer the funds to you by any convenient method within 24 hours from the moment of sale (any cryptocurrency, PayPal, Payeer, TG Stars, and other methods)   ‼ If you have doubts about working with us or are afraid to send the product first, we agree to work through an escrow service of a trusted provider, or you can simply check out the huge base of reviews about our services in this Google document (reviews from our website, Telegram bot, and other platforms where our products are listed). Document ⭐ We invite you to COOPERATE and EARN with us ⭐ Do you want to sell your product or service in our stores and earn money? Become our partner or propose mutually beneficial cooperation? Become our wholesale client and receive the best conditions and discounts? You can contact us through the CONTACTS listed in this thread. We build a reliable partnership network in all areas of online business. We are ready to participate in joint content creation, giveaways, and events! If you work in digital, traffic, accounts, or media and other fields — let’s discuss possible cooperation. We value quality, transparency, and growth. If this resonates with you — write to us, we are open to dialogue! Our current list of partners ⭐ Our contacts ⭐ ➡ Telegram ➡ WhatsApp ➡ Email: solomonbog@socnet.store ➡ Discord: socnet_support ⭐ Our online store ⭐ SOCNET.STORE ⭐ Our Telegram bot for purchasing Telegram Stars ⭐ SOCNET.CC ⭐ Our SMM Panel for social media promotion ⭐ SOCNET.PRO ⭐ Telegram shop ⭐ SOCNET.SHOP   ✅ News resources ➡ Telegram channel ➡ Discord server ➡ WhatsApp channel
    • sell adena, items, account l2rebon signature x1 - 1kk = 1 dollars l2reborn x10 - 500kk = 4 dollars E-Global x Lu4 - 1kk = 2 dollars BOHPTS - x20-x500 TOP PRICE DISCORD - GODDARDSHOP TELEGRAM - MMOPROMO THE BEST PRICES IN THE WORLD OF LINEAGE 2
    • Can you reupload system patch?
    • he was my customer many years ago, i setup his acp and some statistics on his website, plus some security it is big difference than "friend"   its more dissapointment than hate, take example acis, how many years still development. PS: you know i was selling websites and i still sell donate panels for l2 servers right?
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock