game server gameserver
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
- tukune
- Posts: 533
- Joined: Sun Mar 29, 2009 2:35 pm
- Location: Japan
game server gameserver
login directory is the same name.
L2J_Server/dist/login
L2J_DataPack/sql/login
build/dist/login
L2J_Server.zip /login
game server directory are all different names.
L2J_Server/dist/game
L2J_DataPack/sql/server
build/dist/gameserver
L2J_Server.zip /gameserver
I want the same.
L2J_Server/dist/login
L2J_DataPack/sql/login
build/dist/login
L2J_Server.zip /login
game server directory are all different names.
L2J_Server/dist/game
L2J_DataPack/sql/server
build/dist/gameserver
L2J_Server.zip /gameserver
I want the same.
- MELERIX
- L2j Veteran
- Posts: 6667
- Joined: Sat Sep 23, 2006 11:31 pm
- Location: Chile
- Contact:
Re: game server gameserver
imho if we want to follow a "standar structure", we should rename...
community -> communityserver
game-> gameserver
login -> loginserver
community -> communityserver
game-> gameserver
login -> loginserver
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: game server gameserver
what do you need the "server" at the end of each name for? the whole thing is a server, you don't need to explicitly say it...
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- MELERIX
- L2j Veteran
- Posts: 6667
- Joined: Sat Sep 23, 2006 11:31 pm
- Location: Chile
- Contact:
Re: game server gameserver
is just a cosmetic change suggested by tukune to maintain project consistency 

- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: game server gameserver
He didn't suggest to add "server" (that's what you suggested), he suggested to have directory names same as login, all with the same name... and login has no "server" appended to it.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- MELERIX
- L2j Veteran
- Posts: 6667
- Joined: Sat Sep 23, 2006 11:31 pm
- Location: Chile
- Contact:
- Stake
- Posts: 383
- Joined: Sun Mar 23, 2008 9:33 pm
- Location: Hungary
- Contact:
Re: game server gameserver
Last edited by Stake on Wed Aug 31, 2011 4:55 pm, edited 1 time in total.


- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: game server gameserver
@MELERIX -
quoting tukune:
Same for community, if there is smth like that.
quoting tukune:
should be:L2J_Server/dist/game
L2J_DataPack/sql/server
build/dist/gameserver
L2J_Server.zip /gameserver
3rd+4th are in build.xml, 2nd is just a rename of sql folder.L2J_Server/dist/game
L2J_DataPack/sql/game
build/dist/game
L2J_Server.zip /game
Same for community, if there is smth like that.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
-
- Posts: 47
- Joined: Sat Aug 13, 2011 2:02 pm
Re: game server gameserver
.........................................
- tukune
- Posts: 533
- Joined: Sun Mar 29, 2009 2:35 pm
- Location: Japan
Re: game server gameserver

Code: Select all
L2J_DataPack_BETA +- dist | +- community | +- data +- logindata +- data

Code: Select all
L2J_DataPack_BETA +- dist +- community | +- data +- login | +- data +- game +- data
Code: Select all
<target name="dist" depends="init" description="Syncronizes build space contents with project."> <sync todir="build/dist"> <fileset dir="dist" /> </sync></target>
- MELERIX
- L2j Veteran
- Posts: 6667
- Joined: Sat Sep 23, 2006 11:31 pm
- Location: Chile
- Contact:
Re: game server gameserver
yes 
is the same that I want to do in DP, but trouble is the amount of files to move in DP, thats why I leave it as is for now xD

is the same that I want to do in DP, but trouble is the amount of files to move in DP, thats why I leave it as is for now xD
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: game server gameserver
well, at least the login/community part can be done, I think...
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- tukune
- Posts: 533
- Joined: Sun Mar 29, 2009 2:35 pm
- Location: Japan
Re: game server gameserver

very very easy
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: game server gameserver
he means the changeset would be huge. AFAIK SVN considers it a deleted + added file, it can't say "this file was moved to that folder" remotely.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
- MELERIX
- L2j Veteran
- Posts: 6667
- Joined: Sat Sep 23, 2006 11:31 pm
- Location: Chile
- Contact:
Re: game server gameserver
yes, is totally easy, you can do that with few clicks in Eclipse, but the trouble is other...tukune wrote:svn move data dist/game/data
very very easy
is that the amount of files is really big, and it will affect a lot of contributions xD