Jump to content

Recommended Posts

Posted

Part 1. Introduction:

 

Let's begin with what such XML? It is the text format intended for storage of the structured data, for information interchange between programs, and also for creation on its basis of more specialised languages of a marking (for example, XHTML), sometimes named dictionaries.

The first line of the XML-document is called as announcement XML is the unessential line specifying the version of standard XML (usually it is 1.0 => the Example:), also the coding of symbols and external dependences here can be specified. An example: UTF-8 "standalone ="yes"?>

The specification demands, that processors XML necessarily supported Junikod-codings UTF-8 and UTF-16. Admit admissible, are supported and other codings are widely used also.

As in XML there is a possibility of addition of the comment. The comment can be placed in any place of a tree. XML comments take places in pair tags. Two signs a hyphen (-) the Example: <! Is a comment-> cannot be applied in any part in the comment.

 

But we will not go deep into all features XML, us the part which concerns Lineage 2 XML in server Lineage 2 interests only it is applied to the description the stats of weapon, the reservation, skills etc. For the weapon for example parametres phys. And the magician. Attacks, for the reservation - protection, for skills - duration of action, force, effect etc. And for example "servername.xml" are stored in a file names of servers by default. These names can be easily changed. But besides changes on a server part changes from outside the client are necessary also (from outside the client it is necessary to change a file "servername-e.dat". Change *.dat files of the client can by means of special programs - L2Dat_EncDec and L2 FileEdit. In the following part I will learn you to change stat of items.

 

Part 2. Change Items stats.

All XML files with stats, skills are , in serverpacks of Lineage 2, here: \gameserver\data\stats

 

For a bright example we take Item  Shirt (Is on such way: gameserver\data\stats\armor\0000-0099.xml). It is imperceptible NG a item of world Lineage 2. On its example I will explain that, where and when it is necessary to change. Here fragment XML of a code:

<item id = ' 21 ' name = "shirt">

 

<for>

<cond><player race="Human"/></cond>

<add stat='pDef' order='0x10' val='36'>

<target kind="skeleton">

</add>

</for>

</item>

 

The first line is necessary only for language XML, pass it.

 

The second line specifies ID things and its name (they should coincide with same in a DB).

 

Then there are some conditions (condition) for acceptance by a thing of changes for stats (when the weapon is dressed or removed).

Such conditions there can be from a zero, one, two, or more. The condition is concluded in a tag <for>.

 

The condition tag consists of the condition which it is necessary to check up on the player and effect on stats of the player. In  an example a condition effect addition is race Human (if not Human - the effect does not join). The condition is concluded in a tag <cond>, and it is not obligatory. If conditions are not specified - all players (which dress this reservation \weapon) will gain effect from it.

 

The effect is an addition or multiplication stats of the player on the set quantity. In an example stat ' pDef ' (power defence) and its value 36. It means that to power defence the player value 36 will be added. I will describe ' order ' more low.

 

In the end, even if function it is connected to the player, it is necessary that there was a condition when it will work. In our example the condition is that: pDef it will be increased only when the purpose of the player - attack skeleton.

 

And again: there can be a set of conditions <for>, they can have a condition attached to the player <cond>, and each of them can influence on one or the several stat of the player (<add>, <sub>, <mul>, <div>), and every stat will be added only in that case when the condition will be executed.

 

Certainly, all it is not obligatory. For the majority of subjects of the reservation and the weapon you will have something idle time similar to it:

Code:

 

<item id = ' 21 ' name = "shirt">

<for>

<add stat ='pDef ' order = ' 0x10 ' val = ' 36 '/>

</for>

</item>

That only adds 36 points to power defence for each player which will dress her, without any conditions.

 

Tag <add/> means addition and is a variable. On its place can as to be, for example, <sub/>, <set/>, <mul/>, <enchant/>

 

And so. What mean these values?

 

[color=black]<add/>[/color] – addition stats. That is if you dress a thing, your stats will increase. Value order will be 0×10. <add val = ' 100 ′ order = »0×10 ″ stat ='pDef '/>

 

The given code means that at clothing of a item your stat will increase 100 (in this case  will increase p. Def).

 

2. [color=black]<sub/>[/color] – subtraction  of stats. That is if you dress a thing, your stat will decrease. order as – 0×10. <sub val = ' 100 ′ order = »0×10 ″ stat ='mDef '/>. 

The given code means that at clothing of a item 100 units will be taken away from your stat (in this case M. Def).

 

3. [color=black]<set/>[/color] – appoints to you strict value of stat. That is if you dress a thing with value 20 that stat but which this value influences will be equal 20. Order 0×08. <set val = ' 100 ′ order = »0×08 ″ stat ='pDef '/>.

The given code means that at clothing of a thing you have 100 units of stat (in this case P. Def)

 

4. <mul/> - multiplication of stats. That is if you dress a thing, your stat will be increased. Order 0x30.

 

<mul val = ' 100 ' order = "0x10" stat ='mDef '/>

 

The given code means that at clothing of a thing value of stat will be increased on 100 (in this case M. Def).

 

5. <enchant/> - shows, on how many will increase stat at enchant for +1. Order 0x0C.

 

<enchant val = ' 100 ' order = "0x0C" stat ='pDef '/>

 

The given code means that at thing sharpening on 1 your stat(in this case P. Def) will increase on 100.

 

The table of values "order" is more low resulted:

 

0x08 - set

0x10 - add/sub (the weapon, the reservation, costume jewellery) and (STR, CON, DEX, INT, WIT, MEN)

0x20 - it is not necessary

0x30 - mul/div (masteries, buffs, debuffs, SA (special possibilities of the weapon), reservation bonuses)

0x40 - add/sub (masteries, buffs, debuffs, SA (special possibilities of the weapon))

0x50,0x60 - it is not necessary

0x0C - enchant

 

0x08 - set

 

0x10 - add/sub (the weapon, the reservation, costume jewellery) and (STR, CON, DEX, INT, WIT, MEN)

 

0x20 - it is not necessary

 

0x30 - mul/div (masteries, buffs, debuffs, SA (special possibilities of the weapon), reservation bonuses)

 

0x40 - add/sub (masteries, buffs, debuffs, SA (special possibilities of the weapon))

 

0x50,0x60 - it is not necessary

 

0x0C - enchant

 

Part 3. Change skills:

 

The biggest part of my article :) I Will begin with values for you should know that change.

 

Change of maximum quantity HP - maxHp

Change of maximum quantity CP - maxCp

Change of maximum quantity MP - maxMp

Regeneration НР - regHp

Regeneration СР - regCp

Regeneration МР - regMp

Efficiency is sickly - gainHp

Ability it is sickly - giveHp

Bonus it is sickly - bonusHp

Physical protection - pDef

Magic protection - mDef

Physical attack - pAtk

Magic attack - mAtk

Speed of physical attack - pAtkSpd

Speed of magic attack - mAtkSpd

Speed of recoil - mReuse

Protection by a board - sDef

Corner of protection by a board - shieldDefAngle

Critical blow - cAtk

Increase to critical blow - cAtkAdd

Phys.loss in pvp (for example for Duel Might) - pvpPhysDmg

The magician. oss - pvpMagicalDmg

Loss with skill - pvpPhysSkillsDmg

Chance of blocking by a board - rShld

Chance crit - rCrit

Chance Blow - blowRate

Chance Lethal - lethalRate

The magician.crit. Chance - mCritRate (mCrit does not work!!)

EXP, SP chance - rExp

Cancel - cancel

Accuracy - accCombat

Cover zone Phys. Attacks - pAtkRange (for fighters)

Cover zone the magician. Attacks - mAtkRange (for mages)

Angle of attack (only for soldiers) - pAtkAngle

Quantity attacked - atkCountMax

Recoil Phys.skill - atkReuse

Speed of run - runSpd

Speed of walking - walkSpd

 

STR - STR

DEX - DEX

WIT - WIT

INT - INT

MEN - MEN

 

Vulnerability

 

Aggression - aggressionVuln

Bleeding - bleedVuln

Poison - poisonVuln

Stun - stunVuln

Paralyze - paralyzeVuln

Keeping spells - rootVuln

Dream - sleepVuln

Movement - movementVuln

Fire - fireVuln

Wind - windVuln

Water - waterVuln

The Earth - earthVuln

Sacred attacks - holyVuln

Dark attacks - darkVuln

Resist to cancel - cancelVuln

Debuff - debuffVuln

resist to crit - critVuln

 

Ressists against the weapon (here I think the description it is not necessary)

 

noneWpnVuln

swordWpnVuln

bluntWpnVuln

daggerWpnVuln

bowWpnVuln

crossbowWpnVuln

poleWpnVuln

etcWpnVuln

fistWpnVuln

dualWpnVuln

dualFistWpnVuln

bigSwordWpnVuln

 

Reflection

 

Percent of a reflected loss - reflectDam (pay attention! not reflectDmg!! reflectDam)

Percent of a disseminated loss - absorbDam

Percent of a transferable loss - transDam

Reflexion the magician. skills - reflectSkillMagic

Reflexion Phys. skills - reflectSkillPhysic

 

Another (for an example):

 

Attack to giants - pAtk-giants

Protection on to indulge - pDef-undead

Attack to animals - pAtk-animals

Protection on monsters - pDef-monsters

Stock limit - inventoryLimit

Limit ВХ - whLimit

Freight a limit - FreightLimit

Sale limit. - PrivateSellLimit

Consumption МР Phys. skills - PhysicalMpConsumeRate

Consumption МР the magician. skills - MagicalMpConsumeRate

Consumption МР Dance - DanceMpConsumeRate

Consumption НР - HpConsumeRate

Consumption МР - MpConsume

Consumption soulshots - soulShotCount

Skill Мastery - skillMastery

Stay time under water - breath

 

1. target - Tag which shows on whom will undertake target that is visible from the name. Accepts following values:

 

TARGET_SELF - Designates that skill use it will be exclusive on its owner (self buff  type Battle Roar or War Cry)

TARGET_NONE - The purpose not visible

TARGET_ONE - Designates that the purpose of your skills - that who is in target

TARGET_AREA - Designates that skill will be mass

TARGET_AGGREMENT - Designates that the purpose will be the one who attacks you

 

2. skilltype - Tag, specifying in type skill (Buff, Debuff)

Accepts following values:

BUFF -  (has positive influence)

DEBUFF -  (has negative influence)

 

3. operatetype - this Tag serves for type definition of skill (active or passive)

OP_ACTIVE - Active skill, can be used the player

OP_PASSIVE - Passive skill, skill with such operateType cannot be used (operates always)

 

It were the obligatory variables used in skills. Now we will pass to the rests:

 

power - skill force

-hitTime - speed. For buff it is speed of reading of a spell, for Phys. skill - speed of attack

-reuseDelay - recoil of skill

-hpconsume, mpconsume - consumption МР, НР

-castRange is a range of this or that use skill (distance)

-isMagic,

isDebuff, isBuff are directing tags, can matter "true" and"false". For example, isBuff = true (it means that skill is buff type)

-effectRange - action radius (for mass skill)

Now I will tell to you about value tag in skills.

 

Tag

In skills  Lineage 2 meets very often. Usually given tag

It is used for "addition of difficult actions" to skill. If skill

Has a difficult variant of realisation that usually in Tag add some

Separate values which are realised in a  java server Lineage.

The most important tag for use here is.

Let's give an example uses tag:

<for>

<effect name="Type" val="value" time="Time of action" stackOrder="variable" stackType="variable">

</effect>

</for>

</skill>

 

That this means:

 

name is a type of effect

val - Value of effect. For debuff - chance of passage, for fighting skills - force.

time - time of action of effect

StackOrder and stackType are values already explaned in given skill. order both type or values.

 

I think with skills we have understood, now we will pass to zones.

 

Part 4. Zones

 

<zone id = "ID zones" type = "type" shape = "kind" minZ = "minimum Z co-ordinate" maxZ = "maximum Z co-ordinate">

 

<! - the comment->

 

</zone>

 

Let's pass on values:

 

id - the zone identifier.

type - zone type (town, arena, jailzone). For example:

Town - a peace zone (city)

Arena - a fighting zone (PVP)

JailZone - a zone. Simply zone (excuse for allegory:)). On another - prison. In it conversation and a teleport are forbidden.

shape is a form or a zone kind. Can be two types:

-nPoly

-Cupoid.

minZ is is minimum admissible co-ordinate of height (z) in the given zone.

maxZ is as much as possible admissible co-ordinate of height (z) in a zone.

minZ and maxZ are used for passage avoidance through structures, failures under them etc.

The zone can set a name:

 

As inside tags the description of points "respawn" of character  in them is used.

Let's give an example: Look a file zone.xml in the serverpack, for an example.

 

<stat name = "spawnX" val = "X co-ordinate"/>

<stat name = "spawnY" val = "Y co-ordinate"/>

<stat name = "spawnZ" val = "Z co-ordinate"/>

 

These co-ordinates show where there will be respawnd a player being in a zone.

 

I Hope I have helped U A little with It And Sorry For My English...

 

Credits: worldonline

Posted
  On 7/10/2010 at 10:44 AM, Leki said:

all this write you? or copy translate with google and paste? :D

Credits: WOrldOnline I have just translated it...

Posted
  On 7/10/2010 at 6:35 PM, Onix said:

good guide mate thnx for your share actually its good for newbie .

 

keep up !

 

NP I will try my best ;)

  • Vision locked this topic
Guest
This topic is now closed to further replies.


  • Posts

    • MoMoProxy has updated more static residential proxies for USA location, anyone interested in can view: https://momoproxy.com/static-residential-proxies
    • This post originally appeared on MmoGah.   Dear Exiles, here's a detailed guide for Path of Exile 3.26 Gauntlet, tailored for beginners and focused on the top 5 builds that balance survivability, damage, and ease of gearing in the Hardcore Solo Self-Found (HCSSF) environment. This guide goes deep into mechanics, gear, leveling, and strategy—no fluff, just actionable insights.       What Is the Gauntlet in PoE 3.26? The Gauntlet is a community-run event, often organized by Zizaran, which pushes players into a brutal version of the game:   ● Hardcore Solo Self-Found (HCSSF): No trading, no partying, no outside help. ● Global Modifiers: Increased monster damage, life, elemental penetration, extra projectiles, and more. ● Limited Portals: Only 3 portals per boss kill count toward points. ● Custom Ascendancies: In 3.26, the Fishia League introduces new ascendancy classes like Ancestral Commander and Servant of Arakali.   The goal? Survive, level up, kill bosses, and earn points for prizes. But first, you need a build that won't crumble under pressure.   Top 5 Builds for Gauntlet Beginners These builds are chosen for their tankiness, simplicity, and ability to progress through the campaign and early maps with minimal gear.   1. Raise Zombie Puppeteer (Necromancer) Why It Works: Minions absorb damage, keeping you safe. Scales well with minimal gear. Strong bossing potential with high zombie levels.   Core Mechanics: Uses Raise Zombie as the main damage source. Strength stacking boosts zombie power. Animate Guardian adds utility and buffs.   Defensive Layers: Minions tank hits. Block chance from gear and passive tree. Energy shield and life stacking.   Leveling Tips: Use Summon Skeletons and Raise Zombie early. Prioritize +minion gem levels and strength gear. Transition to spectres and Animate Guardian by Act 5.   Pros: Safe, ranged playstyle. Easy to gear in SSF. Strong boss damage.   Cons: Minion AI can be clunky. Damage may taper off in the late game without investment.   2. Power Siphon Mines (Scavenger Saboteur) Why It Works: Ranged mine playstyle avoids direct damage. One-button mechanics for comfort. Fast leveling and strong suppression.   Core Mechanics: Power Siphon linked to mines for remote detonation. Uses High-Impact Mine Support and Minefield Support. Cloak of Flames for early damage scaling.   Defensive Layers: High evasion and suppression. Life stacking and stun immunity. Arctic Armor and Flesh and Stone for mitigation.   Leveling Tips: Start with Stormblast Mine or Explosive Trap. Switch to Power Siphon at level 28. Use Smoke Mine and Flame Dash for mobility.   Pros: Safe ranged playstyle. Low gear dependency. Comfortable mechanics.   Cons: Mines require setup. It can feel clunky without proper gem links.   3. Ice Nova Archmage (Hierophant) Why It Works: Combines Mind Over Matter (MoM) with mana stacking. Strong AoE and single-target damage. Good defenses and smooth leveling.   Core Mechanics: Ice Nova cast on Frostbolt for double damage. Archmage Support scales damage with mana. Hierophant ascendancy boosts mana and endurance charges.   Defensive Layers: MoM absorbs damage via mana. High armor and resistances. Chill and freeze for crowd control.   Leveling Tips: Start with Holy Flame Totem or Rolling Magma. Switch to Ice Nova after Act 3. Stack mana and use Clarity early.   Pros: Strong defenses and damage. Scales well into the endgame. Beginner-friendly caster setup.   Cons: Requires mana management. Squishy if not geared properly.   4. Explosive Arrow Ballista (Ancestral Commander) Why It Works: Totems do the work while you stay safe. Easy to gear and scale. Great for campaign progression.   Core Mechanics: Explosive Arrow linked to Ballista Totem Support. Totems stack arrows for massive explosions. Ancestral Commander ascendancy grants endurance charges and slam synergy.   Defensive Layers: Totems absorb aggro. High life and resistances. Fortify from gear or ascendancy.   Leveling Tips: Use Caustic Arrow or Split Arrow early. Switch to Explosive Arrow at level 28. Prioritize attack speed and totem placement.   Pros: Safe, passive playstyle. Strong single-target damage. Easy to respec and adapt.   Cons: Totem AI can be slow. Requires positioning for optimal damage.   5. Lightning Strike Daughter of Oshabi Why It Works: High energy shield and shrine buffs. Converts physical damage to chaos. Fast, clear, and strong bossing.   Core Mechanics: Lightning Strike with pure energy shield gear. Oath of the Magi node doubles armor defenses. Ghost Dance for ES sustain.   Defensive Layers: 10,000+ energy shield. Suppression and resist caps. Stun immunity and chaos conversion.   Leveling Tips: Use Smite or Molten Strike early. Transition to Lightning Strike with ES gear. Stack shrine buffs and movement speed.   Pros: Tanky and fast. Handles tier 17 maps. Good for face-tanking bosses.   Cons: Requires ES gear early. Shrine RNG can affect consistency.   Beginner Tips for Gauntlet Success Campaign Strategy: Overlevel before boss fights. Cap resistances ASAP. Use movement skills to dodge mechanics. Practice Acts 1, 4, and 9—they're deadly.   Gear Prioritization: Life and resistances > damage. Movement speed on boots. Vendor recipes for gear upgrades.   Flask Setup: 1 Instant Life Flask 1 Granite Flask 1 Jade Flask 1 Quicksilver Flask 1 Utility Flask (e.g., Sulphur or Basalt)   Passive Tree Tips: Prioritize life nodes early. Take suppression and block nodes. Avoid complex mechanics—simplicity wins.   Mapping and Bossing Strategy Mapping: Use fast-clearing skills. Avoid risky map mods. Keep portals in reserve.   Bossing: Learn boss mechanics. Use Sniper's Mark or Assassin's Mark. Position mercenaries or totems strategically.   Final Thoughts The Gauntlet is unforgiving, but with the right build and mindset, you can push deep into the event—even as a beginner. Focus on survivability, learn from each death, and don't be afraid to restart. Every run teaches you something new.
    • SocNet x Dolphin Anty Partnership — Reaching New Heights Together! We’re excited to announce our new partnership with the anti-detect browser Dolphin Anty! Thank you for your trust and support — it's because of you that we continue to grow, expand, and bring even more value and opportunities to our customers. This partnership with Dolphin Anty offers more convenience, security, and flexibility for your work and automation needs. Read more on Dolphin Anty’s official blog: https://dolphin-anty.com/blog/en/socnet-and-dolphin-anty/ We’re also looking for new suppliers! — Snapchat accounts — Reddit accounts with karma — LinkedIn accounts with connections Contact us via DM or support to discuss terms — we’re always open to partnership proposals! Explore our online store: ➡ Accounts: Telegram, Facebook, Reddit, Twitter (X), Instagram, YouTube, TikTok, Discord, VK, LinkedIn, GitHub, Snapchat, Gmail, and emails (Outlook, Firstmail, Rambler, Onet, Gazeta, GMX, Yahoo, Proton, Web.de), Google Voice, Google Ads ➡ Premium Subscriptions: Telegram Premium, Twitter X Premium, YouTube Premium, Spotify Premium, Netflix Premium, Discord Nitro, ChatGPT Plus/PRO, XBOX Game Pass ➡ Additional Services: Telegram Stars, proxies (IPv4, IPv6, ISP, Mobile), VPNs (Outline, WireGuard, others), VDS/RDP servers To celebrate the partnership, use promo code DOLPHIN15 for 15% off in our online store! SMM Panel Services: ➡ Use our SMM Panel to boost: Facebook, Instagram, Telegram, Spotify, SoundCloud, YouTube, Reddit, Threads, Kick, Discord, LinkedIn, Likee, VK, Twitch, Kwai, website traffic, TikTok, TrustPilot, Apple Music, TripAdvisor, Snapchat, and more. Get $1 Trial Credit for your first SMM Panel launch: Just submit a support ticket titled "Get Trial Bonus" on our website. ➡ Go to the SMM Panel (clickable) or contact support via bot. Our Key Products: ➡ Online Store: Click ➡ Telegram Store Bot: Click ➡ SMM Panel: Click Payment methods: bank cards · crypto · other popular methods Returning customers get extra discounts & promo codes! Support Contacts: ➡ Telegram: https://t.me/solomon_bog ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ ✉ Email: solomonbog@socnet.store ➡ Telegram Channel: https://t.me/accsforyou_shop You can also use these contacts to: — consult about bulk purchases — propose partnerships (our partners: https://socnet.bgng.io/partners ) — become a supplier SocNet — Digital Goods & Premium Subscriptions Store
  • 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