hello there. Like title saying all hpconsume skills dont consume any hp. For example sacrifice will heal without consuming any HP.
The skill in data/stats/skills XML file is just fine (checked more than 100 times)...
About L2Character.java hp consume, it is fine too.
// Consume HP if necessary and Send the Server->Client packet StatusUpdate with current HP and MP to all other L2PcInstance to inform
if (skill.getHpConsume() > 0)
{
double consumeHp;
consumeHp = calcStat(Stats.HP_CONSUME_RATE, skill.getHpConsume(), null, null);
if ((consumeHp + 1) >= getCurrentHp())
{
consumeHp = getCurrentHp() - 1.0;
}
getStatus().reduceHp(consumeHp, this, true);
su.addAttribute(StatusUpdate.CUR_HP, (int) getCurrentHp());
isSendStatus = true;
}
I checked every singe line to find any problems but nothing...everything seems normal
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.
I just had another 2-hour chat with the support team, and my group has finally been restored.
They confirmed that my profile had been hacked. After months of waiting there is finally some justice.
I’m looking for this guy. Come out,
Lendel Lindemberg
Selling L2-Kandra Gold Style PvP Server Files!
Files include:
Demonic and Angelic Wings
Dynasty and Apella sets
Custom Gold Weapons
Custom zones
And much more!
Selling for a symbolic price of €25, as I want to try other packs in the future.
For details and purchase, contact me via message.
Question
Milli
hello there. Like title saying all hpconsume skills dont consume any hp. For example sacrifice will heal without consuming any HP.
The skill in data/stats/skills XML file is just fine (checked more than 100 times)...
About L2Character.java hp consume, it is fine too.
I checked every singe line to find any problems but nothing...everything seems normal
Im working on Freya client l2jserver.
7 answers to this question
Recommended Posts
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.