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
henna >+5 Base stats
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Posts: 73
- Joined: Mon Dec 21, 2009 4:44 pm
Re: henna >+5 Base stats
AgreeMetaron 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

try to explain with your words
"We can change the world, if God give us the source code".
- BiggBoss
- L2j Veteran
- Posts: 1104
- Joined: Wed Apr 15, 2009 3:11 pm
- Location: Spain
Re: henna >+5 Base stats
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; }
-
- Posts: 77
- Joined: Thu Nov 18, 2010 7:48 am
Re: henna >+5 Base stats
wow. how much time did it take to decode this, BiggBoss?
without your response, i'd still fail to understand what the request was

without your response, i'd still fail to understand what the request was

- BiggBoss
- L2j Veteran
- Posts: 1104
- Joined: Wed Apr 15, 2009 3:11 pm
- Location: Spain