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

    • Really nice work and another great idea from you Nick. Fermata keeps getting more impressive with every release. The latest work with lighting, world objects, effects and overall scene customization shows how much potential this project really has. It’s not just about making Interlude look better, but about giving an old client modern possibilities while still keeping the original Lineage 2 feeling.   Great work once again, definitely an exciting project to follow!
    • ⚡ Weekend Stock Refresh! Fast order fulfillment is active. Get Gemini Pro Advanced + Google One cloud storage activated on your own personal email within minutes.
    • New Release World & atmosphere A complete dynamic weather system has arrived, with Clear, Light Rain, Rain, Heavy Rain, Storm, Snow, and Windy presets. Rain and snow react to roofs, wind moves foliage, lightning illuminates storms, exposed ground becomes wet and develops puddles, and snow builds up and melts over time. Weather includes Low to Ultra quality levels and advanced controls for precipitation, wind, cloud cover, lightning, surface wetness, puddles, and snow. The game server can also select or restore the current weather while local quality settings continue to control rendering cost. The weather can be controlled from the server with custom packets. For more details use Shift+Alt+P. Enhanced lighting now allows authored lamps, fires, and other light sources to illuminate towns and interiors. Lights can pulse, flicker, blink, and strobe, flames produce warm dynamic light, and lamps display depth-aware halos. Remastered emissive surfaces are now supported, beginning with illuminated windows in Giran that glow and cast light into their surroundings. Broadcasting Towers now use their correct original scale and animated rings and glow effects. Map, quests & navigation A complete quest journal has been added, with active and completed quests, expandable stages, descriptions, requirements, item progress, quest inventory integration, location controls, and quest cancellation. Quest objectives now appear through flashing minimap and world-map markers, an overhead directional guide, a notification button beside chat, and rotating quest symbols above eligible NPCs. Server-directed radar markers now work across the live minimap and world map, including the original overhead guidance effect and arrival behavior. The original tutorial system now works, including scrollable tutorial pages, animated illustrations, the flashing question button, tutorial links, and movement, camera, pickup, and sit/rest progression events. Server-opened town maps now display their original artwork and the supplied player marker. Shops, storage & items Personal, clan, castle, and freight warehouses now work, including deposits, withdrawals, stack quantities, fees, weight and capacity previews, tooltips, and the original warning and empty-storage dialogs. Account freight now works through the original recipient picker and delivery window, allowing items to be sent to another character on the same account. Multisell exchanges now work, with paged recipe lists, product details, required materials, quantity selection, warnings, and server-backed completion. Manor seed purchasing is now supported through the shop interface, including availability and pricing. Inventory items can now be dragged to the trash button and destroyed after the appropriate warning or quantity prompt. The original in-game calculator now works with mouse and keyboard input. Community The Community Board is now available from the system menu or Alt+B, with Home, Favorites, Region, Clan, Memo, Mail, and Friends sections, retained navigation, forms, scrolling, minimization, and server-provided pages. Characters, cameras & events Striders and Wyverns now render as fully animated mounts with the rider attached correctly. Striders remain ground-based, while Wyverns support three-dimensional flight. Characters now enter a proper falling state after high drops or airborne dismounts, with falling animations and server-authoritative landing and fall-damage handling. Players can now sit on authored world chairs using the correct sit, wait, and stand animations. Server-driven special camera sequences now work, including target tracking, interpolation, duration, widescreen bars, and restoration to the normal camera. GM camera mode and server-authorized ///fly movement are now supported. The original 102-second Kamael teaser sequence has been restored with its complete slideshow, transitions, panning artwork, localized subtitles, and narration. Hats, masks, circlets, and other hair accessories now use their authored head placement and correctly adjust the character's hairstyle. Timed server confirmation dialogs, short-duration status effects, regeneration previews, and the seasonal Christmas Seal presentation are now supported. Interface & performance Character creation has been refined with corrected description wrapping, clipping, layout, and name-entry presentation. Tutorial and NPC dialog windows now use polished proportional scrollbars, improved HTML layout, and correctly sized illustrations and controls. A new independent 3D render-resolution setting offers Native, 720p, 900p, 1080p, 1440p, and 4K choices while keeping the window, HUD, text, and FermaUI at native resolution. Major rendering optimizations reduce unnecessary work in local lighting, shadows, visibility, exposure, bloom, post-processing, and GPU diagnostics. Download from the launcher you have installed, or at https://updates.fermata.gg/ if you don't have the launcher. Fermata Light Engine Preview All lights can be baked in the client, shipped to the users, and exported and imported as .femlight files.
  • 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..