Page 1 of 3

[SOLVED][EPILOGUE] Can't download datapack and server

Posted: Sat Jul 13, 2019 4:13 am
by Geemo
Hi,

I can't download the git repositories from:

https://bitbucket.org/l2jserver/l2j_datapack.git
&
https://bitbucket.org/l2jserver/l2j_server.git

Can someone please give me a hand?
Thanks in advance.

Re: Can't download datapack and server

Posted: Sat Jul 13, 2019 12:02 pm
by Geemo
May I know what happened that is not working?

Re: Can't download datapack and server

Posted: Sat Jul 13, 2019 5:42 pm
by canislupus
That is a git link, you need git

If you want to download the source code as zip check this link

Re: Can't download datapack and server

Posted: Sun Jul 14, 2019 5:17 am
by Geemo
canislupus wrote: Sat Jul 13, 2019 5:42 pm That is a git link, you need git
I am using the option in eclipse:
"Clone git repository"

But I have no luck :(

Can you show me another way to get the server and datapack?

Re: Can't download datapack and server

Posted: Sun Aug 11, 2019 3:51 pm
by canislupus
I don't have eclipse at the moment, the good news is you can do it without eclipse.

Git is a standalone version control system, please have a look at the following guides:

https://help.github.com/en/articles/clo ... repository
https://confluence.atlassian.com/bitbuc ... 17891.html
https://git-scm.com/book/en/v2/Git-Basi ... Repository
https://www.wikihow.com/Clone-a-Repository-on-Github

Cheers

Re: Can't download datapack and server

Posted: Sat Aug 17, 2019 2:47 pm
by Zoey76
Geemo wrote: Sat Jul 13, 2019 4:13 am Hi,

I can't download the git repositories from:

https://bitbucket.org/l2jserver/l2j_datapack.git
&
https://bitbucket.org/l2jserver/l2j_server.git

Can someone please give me a hand?
Thanks in advance.
Follow the official guides here: http://www.l2jserver.com/

Re: Can't download datapack and server

Posted: Sat Jan 18, 2020 8:31 pm
by Geemo
I am installing the server.
I am on the following step:
Get L2J CLI and Install the Database

But this link doesn't work:
https://github.com/L2J/l2j-server-cli/r ... -1.0.2.zip

From where can I get the file?

Re: Can't download datapack and server

Posted: Sat Jan 18, 2020 9:15 pm
by Geemo
Another thing is how can I get the source code of l2 epilogue or gracia final

Re: Can't download datapack and server

Posted: Sat Jan 18, 2020 10:31 pm
by Geemo
Geemo wrote: Sat Jan 18, 2020 8:31 pm I am installing the server.
I am on the following step:
Get L2J CLI and Install the Database

But this link doesn't work:
https://github.com/L2J/l2j-server-cli/r ... -1.0.2.zip

From where can I get the file?
Ok, I found the l2j CLI but I am still missing gracia final or gracia epilogue source. If anyone could help me

Re: Can't download datapack and server

Posted: Sun Jan 19, 2020 12:41 am
by Zoey76
Geemo wrote: Sat Jan 18, 2020 10:31 pm
Geemo wrote: Sat Jan 18, 2020 8:31 pm I am installing the server.
I am on the following step:
Get L2J CLI and Install the Database

But this link doesn't work:
https://github.com/L2J/l2j-server-cli/r ... -1.0.2.zip

From where can I get the file?
Ok, I found the l2j CLI but I am still missing gracia final or gracia epilogue source. If anyone could help me
Server: https://bitbucket.org/l2jserver/l2j-ser ... /Epilogue/
Datapack: https://bitbucket.org/l2jserver/l2j-ser ... /Epilogue/

Re: Can't download datapack and server

Posted: Sun Jan 19, 2020 1:38 am
by Geemo
Zoey76 wrote: Sun Jan 19, 2020 12:41 am
Geemo wrote: Sat Jan 18, 2020 10:31 pm
Geemo wrote: Sat Jan 18, 2020 8:31 pm I am installing the server.
I am on the following step:
Get L2J CLI and Install the Database

But this link doesn't work:
https://github.com/L2J/l2j-server-cli/r ... -1.0.2.zip

From where can I get the file?
Ok, I found the l2j CLI but I am still missing gracia final or gracia epilogue source. If anyone could help me
Server: https://bitbucket.org/l2jserver/l2j-ser ... /Epilogue/
Datapack: https://bitbucket.org/l2jserver/l2j-ser ... /Epilogue/
Zoey thanks a lot.

Re: Can't download datapack and server

Posted: Sun Jan 19, 2020 2:49 am
by Geemo
Another question, how do I get to see the Java classes and files in eclipse? I tried to use gradle but when I open the build folder I can't find the build to assemble and test the project.

Re: Can't download datapack and server

Posted: Sun Jan 19, 2020 5:05 am
by Zoey76
Geemo wrote: Sun Jan 19, 2020 2:49 am Another question, how do I get to see the Java classes and files in eclipse? I tried to use gradle but when I open the build folder I can't find the build to assemble and test the project.
You need to import as a Maven project if you are using develop, otherwise as Eclipse project.

Re: Can't download datapack and server

Posted: Sun Jan 19, 2020 5:55 am
by Geemo
How can I know which jdk version I can use to run ant for this epilogue?

Re: Can't download datapack and server

Posted: Sun Jan 19, 2020 6:44 am
by Zoey76
Geemo wrote: Sun Jan 19, 2020 5:55 am How can I know which jdk version I can use to run ant for this epilogue?
Inside the build.xml there is a fragment with the following code:

Code: Select all

<target name="compile" depends="version" description="Compile the source.">
	<javac destdir="${build.classes}" optimize="on" debug="on" source="1.6" target="1.6" nowarn="off">
		<src path="${src}" />
		<classpath refid="classpath" />
	</javac>
</target>
It means Java 6.