henna >+5 Base stats

If something doesn't fit in any other forum then post it here.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
Metaron
Posts: 1
Joined: Sat Jul 30, 2011 11:15 am

henna >+5 Base stats

Post by Metaron »

Immediately apologize if anything is written or not okrektno tuda, I know English bad.
Where in the nucleus to be correct when applied krasok taken into account more than + 5
Michalis
Posts: 73
Joined: Mon Dec 21, 2009 4:44 pm

Re: henna >+5 Base stats

Post by Michalis »

Metaron wrote:Immediately apologize if anything is written or not okrektno tuda, I know English bad.
Where in the nucleus to be correct when applied krasok taken into account more than + 5
Agree :shock: well my friend don't use translator because you confuse us more!
try to explain with your words
"We can change the world, if God give us the source code".
User avatar
BiggBoss
L2j Veteran
L2j Veteran
Posts: 1104
Joined: Wed Apr 15, 2009 3:11 pm
Location: Spain

Re: henna >+5 Base stats

Post by BiggBoss »

com.l2jserver.gameserver.model.actor.instance.L2PcInstance.recalcHennaStats()

Code: Select all

    private void recalcHennaStats()    {        _hennaINT = 0;        _hennaSTR = 0;        _hennaCON = 0;        _hennaMEN = 0;        _hennaWIT = 0;        _hennaDEX = 0;                for (int i=0;i<3;i++)        {            if (_henna[i]==null)continue;            _hennaINT += _henna[i].getStatINT();            _hennaSTR += _henna[i].getStatSTR();            _hennaMEN += _henna[i].getStatMEM();            _hennaCON += _henna[i].getStatCON();            _hennaWIT += _henna[i].getStatWIT();            _hennaDEX += _henna[i].getStatDEX();        }                if (_hennaINT>5)_hennaINT=5;        if (_hennaSTR>5)_hennaSTR=5;        if (_hennaMEN>5)_hennaMEN=5;        if (_hennaCON>5)_hennaCON=5;        if (_hennaWIT>5)_hennaWIT=5;        if (_hennaDEX>5)_hennaDEX=5;    } 
Image
blarke
Posts: 77
Joined: Thu Nov 18, 2010 7:48 am

Re: henna >+5 Base stats

Post by blarke »

wow. how much time did it take to decode this, BiggBoss? :shock:
without your response, i'd still fail to understand what the request was :)
User avatar
BiggBoss
L2j Veteran
L2j Veteran
Posts: 1104
Joined: Wed Apr 15, 2009 3:11 pm
Location: Spain

Re: henna >+5 Base stats

Post by BiggBoss »

its easly understandable reading the topics title
Image
Post Reply