Added: a brand-new default dashboard template.
You can now add multiple game/login server builds.
Full support for running both PTS & L2J servers simultaneously, with switching between them.
Payment systems: added OmegaPay and Pally (new PayPal-style API).
Account history now stores everything: donations, items delivered to characters, referrals, transfers between game accounts, and coin transfers to another master account.
Personal Promo Code System: you can create a promo code and assign it to a user or promoter. When donating, a player can enter this promo code to receive bonus coins, and the promo code owner also receives a bonus — all fully configurable in the admin panel.
Look demo site: demo
MoMoProxy has updated more static residential proxies for USA location, anyone interested in can view: https://momoproxy.com/static-residential-proxies
Question
BlackDevilDev
BUILD FAILED
C:\workspace\L2J_CommunityServer\build.xml:38: Unable to find a javac compiler;
com.sun.tools.javac.Main is not on the classpath.
Perhaps JAVA_HOME does not point to the JDK.
It is currently set to "C:\Program Files\Java\jre6"
this is problem what is this guys,how can fix this problem?
the code from Build.xml
<target name="compile" depends="init"> <javac destdir="${build.classes}" optimize="on" debug="on" source="1.6" target="1.6" nowarn="off"> <src path="${src}"/> <classpath refid="classpath"/> </javac> </target> <target name="jar" depends="compile"> <jar destfile="${build}/l2jcommunity.jar"> <fileset dir="${build.classes}"/> </jar> <copy todir="${build.dist.community}"> <fileset dir="${build}"> <include name="l2jcommunity.jar"/> </fileset> </copy> </target> <target name="dist" depends="jar"> <copy todir="${build.dist.community}"> <fileset dir="${src}"> <include name="log.cfg"/> <include name="console.cfg"/> </fileset> </copy> <copy todir="${build.dist.libs}"> <fileset dir="${src}/../lib"> <include name="*.jar"/> </fileset> </copy> <copy todir="${build.dist.doc}"> <fileset dir="${basedir}"> <include name="changes.txt"/> <include name="LICENSE.txt"/> <include name="README.txt"/> </fileset> </copy> <copy todir="${build.dist.doc}"> <fileset dir="${src}/../lib"> <include name="*LICENSE*"/> </fileset> </copy> <copy todir="${build.dist.community}"> <fileset dir="dist"> <include name="startCommunityServer.*"/> </fileset> </copy> <fixcrlf srcdir="${build.dist.community}" eol="lf" eof="remove" includes="**/*.sh"/> <fixcrlf srcdir="${build.dist.community}" eol="crlf" eof="remove" includes="**/*.bat"/> <mkdir dir="${build.dist.community}/log"/> <mkdir dir="${build.dist.community}/config"/> <copy todir="${build.dist.community}/config"> <fileset dir="java/config"> <include name="*.properties"/> </fileset> </copy> <zip destfile="${build}/L2J_CommunityServer.zip" basedir="${build.dist}" /> </target> <target name="clean"> <delete dir="${build}"/> </target> </project>3 answers to this question
Recommended Posts