Elemental atribute: Max level

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
thecast
Posts: 117
Joined: Fri May 22, 2009 7:12 am

Elemental atribute: Max level

Post by thecast »

Hello!
I have a question regarding the operation of the program in Elementals.java
To add elemental atribute, the code:

{
0, // Level 1
25, // Level 2
75, // Level 3
150, // Level 4
175, // Level 5
225, // Level 6
300, // Level 7
325, // Level 8
375, // Level 9
450, // Level 10
475, // Level 11
525, // Level 12
600, // Level 13
}

and
public static enum ElementalItemType
{
Stone(3), Roughore(3), Crystal(6), Jewel(9), Energy(12);

public int _maxLevel;

private ElementalItemType(int maxLvl)
{
_maxLevel = maxLvl;
}
}


But I have a question:
In the current version is working up to level 7, 9 or 13?

If it is limited, how do I increase the max attribute to level 9?
SquiD
Posts: 3
Joined: Mon Aug 27, 2012 4:10 pm

Re: Elemental atribute: Max level

Post by SquiD »

Try use Jewels to add lvl9

("Elemental Type", "ID of ITEM")
fireJewel(FIRE, 9558),
waterJewel(WATER, 9559),
windJewel(WIND, 9561),
earthJewel(EARTH, 9560),
divineJewel(HOLY, 9563),
darkJewel(DARK, 9562);

For me, work fine.
Image
felpudito
Posts: 8
Joined: Wed Nov 26, 2008 6:36 am

Re: Elemental atribute: Max level

Post by felpudito »

Level 9 is working fine, from freya
But no lvel 12....
Energy works, but you can´t get more than 450 element.
mangdar
Posts: 68
Joined: Tue May 11, 2010 7:22 am

Re: Elemental atribute: Max level

Post by mangdar »

How to find jewel of elements?
Post Reply