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
When a player is retail sub his level can't be increased to 81, 82 etc
in subclass.java we have if (expValue > (Experience.LEVEL[81] - 1))
if (levelValue > 80)
levelValue = 80;
hi im new to this java thing, and im knda lost. i jsut want my subclass to get to 85. problem is after decompiling the class file and doing the necessary edits, i dont know how to compile it (already downloaded eclipse). i dont know how to use eclipse or execute javac; cant find any executeable file for any java stuff and cant find a compile button for eclipse.
Anyone know have some detailed instructions in layman's terms?
also found this from some other forum:
"you won't need eclipse or anything else to run and compile java apps.
Use the terminal to do it:
javac filename.java
(to compile)
java filename.java
(to execute/run)"
jus778 wrote:hi im new to this java thing, and im knda lost. i jsut want my subclass to get to 85. problem is after decompiling the class file and doing the necessary edits, i dont know how to compile it (already downloaded eclipse). i dont know how to use eclipse or execute javac; cant find any executeable file for any java stuff and cant find a compile button for eclipse.
Anyone know have some detailed instructions in layman's terms?
also found this from some other forum:
"you won't need eclipse or anything else to run and compile java apps.
Use the terminal to do it:
javac filename.java
(to compile)
java filename.java
(to execute/run)"
What is that "terminal" he's saying?
Don't do it that way, use eclipse to compile the source. Also, decompiling the source files are bad, get the source from the SVN, do your changes, then compile via eclipse.