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.
hello everyone !
I need help with a l2script Rev H5-Salvation/Classic build. I compiled the project, installed everything but I can't log in to the server, it won't log me in. I tried a thousand ways without good results. I leave you the error when logging in either with the H5-Salvation Client.
ERROR ---> WARN: IPBANMANAGER ---> IP !!!!
I'm waiting for help! Thank you!
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.