Jump to content

Recommended Posts

Posted

hello

i was playing with some skills stats like 

 

PVP_PHYSICAL_DMG("pvpPhysDmg"),
PVP_MAGICAL_DMG("pvpMagicalDmg"),
PVP_PHYS_SKILL_DMG("pvpPhysSkillsDmg"),
 
and i saw a guy asking somewhere for pvpPhysicalDef stats so i tryed to make em.. its based on l2jfrozen also.
 
com.l2jfrozen.gameserver.skills.stats

find this

PVP_PHYS_SKILL_DMG("pvpPhysSkillsDmg"),

and below add these

 

PVP_PHYSICAL_DEF("pvpPhysDef"),
PVP_MAGICAL_DEF("pvpMagicalDef"),
PVP_PHYS_SKILL_DEF("pvpPhysSkillsDef"),

now go to 

com.l2jfrozen.gameserver.skills.formulas

find always the first line and add the +

if((attacker instanceof L2PcInstance || attacker instanceof L2Summon) && (target instanceof L2PcInstance || target instanceof L2Summon))
{
if(skill == null)
{
damage *= attacker.calcStat(Stats.PVP_PHYSICAL_DMG, 1, null, null);
+damage /= target.calcStat(Stats.PVP_PHYSICAL_DEF, 1, null, null);
}
else
{
damage *= attacker.calcStat(Stats.PVP_PHYS_SKILL_DMG, 1, null, null);
+damage /= target.calcStat(Stats.PVP_PHYS_SKILL_DEF, 1, null, null);
}
}
// Pvp bonusses for dmg
if((attacker instanceof L2PcInstance || attacker instanceof L2Summon) && (target instanceof L2PcInstance || target instanceof L2Summon))
{
if(skill.isMagic())
{
damage *= attacker.calcStat(Stats.PVP_MAGICAL_DMG, 1, null, null);
+damage /= target.calcStat(Stats.PVP_MAGICAL_DEF, 1, null, null);
}
else
{
damage *= attacker.calcStat(Stats.PVP_PHYS_SKILL_DMG, 1, null, null);
+damage /= target.calcStat(Stats.PVP_PHYS_SKILL_DEF, 1, null, null);
}
}
// Dmg bonusses in PvP fight
if(isPvP)
{
if(skill == null)
{
damage *= attacker.calcStat(Stats.PVP_PHYSICAL_DMG, 1, null, null);
+damage /= target.calcStat(Stats.PVP_PHYSICAL_DEF, 1, null, null);
}
else
{
damage *= attacker.calcStat(Stats.PVP_PHYS_SKILL_DMG, 1, null, null);
damage /= target.calcStat(Stats.PVP_PHYS_SKILL_DMG, 1, null, null);
}
}

so you can go ingame and use as stats "pvpPhysDef" , "pvpMagicalDef" , "pvpPhysSkillsDef"

its tested and works fine.

 

also something else to make a better balance with the mages. Its exactly the same with the critical damage that fighters got. this is for mages magical critical damage in a better way than it is.

com.l2jfrozen.gameserver.skills.stats

find

CRITICAL_DAMAGE_ADD("cAtkAdd"),

and below add 

MAGICAL_CRITICAL_DAMAGE("mcAtk"),
MCRITICAL_DAMAGE_ADD("mAtkAdd"),
MCRIT_VULN("mCritVuln"),

now go to 

com.l2jfrozen.gameserver.model.actor.stats.CharStat

find

public final double getCriticalDmg(L2Character target, double init)
{
return calcStat(Stats.CRITICAL_DAMAGE, init, target, null);
}

and below add

/**
* Return the MCritical Damage rate (base+modifier) of the L2Character.
*
* @param target the target
* @param init the init
* @return the critical dmg
*/
public final double getMagicalCriticalDmg(L2Character target, double init)
{
return calcStat(Stats.MAGICAL_CRITICAL_DAMAGE, init, target, null);
}

now go to 

com.l2jfrozen.gameserver.datatables.xml.AugmentationData

find and delete this line

if(as.getStat() == Stats.CRITICAL_DAMAGE)

and add this one

if(as.getStat() == Stats.CRITICAL_DAMAGE || as.getStat() == Stats.MAGICAL_CRITICAL_DAMAGE)

finally go to 

com.l2jfrozen.gameserver.skills.formulas

find 

else if(mcrit)
{
//damage *= 4;
damage *= Config.MAGIC_CRITICAL_POWER;
}and replace it with 
else if (mcrit)
{
//Finally retail like formula
double mAtkMultiplied = damage + attacker.calcStat(Stats.MAGICAL_CRITICAL_DAMAGE, damage, target, skill);
double mAtkVuln = target.calcStat(Stats.MCRIT_VULN, 1, target, null);
double improvedDamageBymriticalMulAndVuln = mAtkMultiplied * mAtkVuln;
double improvedDamageBymriticalMulAndAdd = improvedDamageBymriticalMulAndVuln + attacker.calcStat(Stats.MCRITICAL_DAMAGE_ADD, 0, target, skill);


damage = improvedDamageBymriticalMulAndAdd;


}

now you will have stats "mcAtk" , "mAtkAdd", "mCritVuln".

 

also i've got a cp drain and mp drain on attack. its like "absorbDam"

com.l2jfrozen.gameserver.skills.stats

find

ABSORB_DAMAGE_PERCENT("absorbDam"),

and below add

ABSORB_CP_PERCENT("absorbCp"),
ABSORB_MP_PERCENT("absorbMp"),

now go to 

com.l2jfrozen.gameserver.model.L2Characters

find

double absorbPercent = getStat().calcStat(Stats.ABSORB_DAMAGE_PERCENT, 0, null, null);


if (absorbPercent > 0)
{
int maxCanAbsorb = (int) (getMaxHp() - getCurrentHp());
int absorbDamage = (int) (absorbPercent / 100. * damage);


if (absorbDamage > maxCanAbsorb)
{
absorbDamage = maxCanAbsorb; // Can't absord more than max hp
}


if (absorbDamage > 0)
{
setCurrentHp(getCurrentHp() + absorbDamage);


// Custom messages - nice but also more network load
// Custom messages - nice but also more network load
if (Config.CUSTOM_MSG)
{
if (this instanceof L2PcInstance)
((L2PcInstance) this).sendMessage("You absorbed " + absorbDamage + " Hp.");
}
}
}

and below add

// Absorb CP from the damage inflicted
double absorbCPPercent = getStat().calcStat(Stats.ABSORB_CP_PERCENT, 0, null, null);


if (absorbCPPercent > 0)
{
int maxCanAbsorb = (int) (getMaxCp() - getCurrentCp());
int absorbDamage = (int) (absorbCPPercent / 100. * damage);


if (absorbDamage > maxCanAbsorb)
{
absorbDamage = maxCanAbsorb; // Can't absord more than max hp
}


if (absorbDamage > 0)
{
setCurrentCp(getCurrentCp() + absorbDamage);


// Custom messages - nice but also more network load
// Custom messages - nice but also more network load
if (Config.CUSTOM_MSG)
{
if (this instanceof L2PcInstance)
((L2PcInstance) this).sendMessage("You absorbed " + absorbDamage + " Cp.");
}
}
}


// Absorb HP from the damage inflicted
double absorbMPPercent = getStat().calcStat(Stats.ABSORB_MP_PERCENT, 0, null, null);


if (absorbMPPercent > 0)
{
int maxCanAbsorb = (int) (getMaxMp() - getCurrentMp());
int absorbDamage = (int) (absorbMPPercent / 100. * damage);


if (absorbDamage > maxCanAbsorb)
{
absorbDamage = maxCanAbsorb; // Can't absord more than max hp
}


if (absorbDamage > 0)
{
setCurrentMp(getCurrentMp() + absorbDamage);


// Custom messages - nice but also more network load


// Custom messages - nice but also more network load
if (Config.CUSTOM_MSG)
{
if (this instanceof L2PcInstance)
((L2PcInstance) this).sendMessage("You absorbed " + absorbDamage + " Mp.");
}
}
}

so u can use "absorbCp", "absorbMp"

 

well thats all ;D its nothing special but it can help 
 

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

    • Server owners, Top.MaxCheaters.com is now live and accepting Lineage 2 server listings. There is no voting, no rankings manipulation, and no paid advantages. Visibility is clean and equal, and early listings naturally appear at the top while the platform grows. If your server is active, it should already be listed. Submit here https://Top.MaxCheaters.com This platform is part of the MaxCheaters.com network and is being built as a long-term reference point for the Lineage 2 community. — MaxCheaters.com Team
    • ⚙️ General Changed “No Carrier” title to “Disconnected” to avoid confusion after abnormal DC. On-screen Clan War kill notifications will no longer appear during Sieges, Epics, or Events. Bladedancer or SwordSinger classes can now log in even when Max Clients (2) is reached, you cannot have both at the same time. The max is 3 clients. Duels will now be aborted if a monster aggros players during a duel (retail-like behavior). Players can no longer send party requests to blocked players (retail-like). Fixed Researcher Euclie NPC dialogue HTML error. Changed Clan leave/kick penalty from 12 hours to 3 hours. 🧙 Skills Adjusted Decrease Atk. Spd. & Decrease Speed land rates in Varka & FoG. Fixed augmented weapons not getting cooldown when entering Olympiad. 🎉 Events New Team vs Team map added. New Save the King map added (old TvT map). Mounts disabled during Events. Letter Collector Event enabled Monsters drop letters until Feb. 13th Louie the Cat in Giran until Feb. 16th Inventory slots +10 during event period 📜 Quests Fixed “Possessor of a Precious Soul Part 1” rare stuck issue when exceeding max quest items. Fixed Seven Signs applying Strife buff/debuff every Monday until restart. 🏆 Milestones New milestone: “Defeat 700 Monsters in Varka” 🎁 Rewards: 200 Varka’s Mane + Daily Coin 🌍 NEW EXP Bonus Zones Hot Springs added Varka Silenos added (hidden spots excluded) As always, thank you for your support! L2Elixir keeps evolving, improving, and growing every day 💙   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs
    • https://sms.pro/ — we are an SMS activation platform  seeking partners  mobile number providers  mobile number owners  owners of GSM modems  SIM card owners We process 1,000,000 activations every day.  寻找合作伙伴  手机号码提供商  手机号码持有者  GSM调制解调器持有者  SIM卡持有者 我们每天处理1,000,000次激活。  Ищем партнеров  Владельцы сим карт  провайдеров  владельцев мобильных номеров  владельцев модемов  Обрабатываем от 1 000 000 активаций в день ⚡️ Fast. Reliable.   https://sms.pro/ Support: https://t.me/alismsorg_bot
    • "WHAT I WILL SEE ON NEW SEASON ? *More easy farm and augment than ever before ! *Free VIP characters for everyone for first 2 days after opening ! Improved olympiad engine to work more correctly. 3 New skins / outfits. Fixed raid boss spawns. Fixed olympiad crit errors. New farming Ivory Tower area. Fixed augmentation rate. Increased all mob drops rate by +20%. And much more..."   1. I have clicked VIP 23.01.2026 20:00 a few second after open server. 2 Days is 48h. Now 24.01.2026 I have 17 hours left, so my VIP will expire 08:00 25.01.2026. Where is 12h? SCAM.   2. Where is ivory tower area?   3. When next wipe?   
  • 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..