game server gameserver

If something doesn't fit in any other forum then post it here.
Forum rules
READ NOW: L2j Forums Rules of Conduct
User avatar
tukune
Posts: 533
Joined: Sun Mar 29, 2009 2:35 pm
Location: Japan

game server gameserver

Post by tukune »

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.
User avatar
MELERIX
L2j Veteran
L2j Veteran
Posts: 6667
Joined: Sat Sep 23, 2006 11:31 pm
Location: Chile
Contact:

Re: game server gameserver

Post by MELERIX »

imho if we want to follow a "standar structure", we should rename...

community -> communityserver
game-> gameserver
login -> loginserver
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: game server gameserver

Post by jurchiks »

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.
User avatar
MELERIX
L2j Veteran
L2j Veteran
Posts: 6667
Joined: Sat Sep 23, 2006 11:31 pm
Location: Chile
Contact:

Re: game server gameserver

Post by MELERIX »

is just a cosmetic change suggested by tukune to maintain project consistency ;)
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: game server gameserver

Post by jurchiks »

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.
User avatar
MELERIX
L2j Veteran
L2j Veteran
Posts: 6667
Joined: Sat Sep 23, 2006 11:31 pm
Location: Chile
Contact:

Re: game server gameserver

Post by MELERIX »

ok, then is just gameserver -> game ?
User avatar
Stake
Posts: 383
Joined: Sun Mar 23, 2008 9:33 pm
Location: Hungary
Contact:

Re: game server gameserver

Post by Stake »

Let's just give the name GS and LS!
Image
Last edited by Stake on Wed Aug 31, 2011 4:55 pm, edited 1 time in total.
Image
Image
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: game server gameserver

Post by jurchiks »

@MELERIX -
quoting tukune:
L2J_Server/dist/game
L2J_DataPack/sql/server
build/dist/gameserver
L2J_Server.zip /gameserver
should be:
L2J_Server/dist/game
L2J_DataPack/sql/game
build/dist/game
L2J_Server.zip /game
3rd+4th are in build.xml, 2nd is just a rename of sql folder.
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.
dream555
Posts: 47
Joined: Sat Aug 13, 2011 2:02 pm

Re: game server gameserver

Post by dream555 »

.........................................
User avatar
tukune
Posts: 533
Joined: Sun Mar 29, 2009 2:35 pm
Location: Japan

Re: game server gameserver

Post by tukune »

:evil:

Code: Select all

L2J_DataPack_BETA +- dist |   +- community |       +- data +- logindata +- data
  :D

Code: Select all

L2J_DataPack_BETA +- dist     +- community     |   +- data     +- login     |   +- data     +- game         +- data 
build.xml

Code: Select all

<target name="dist" depends="init" description="Syncronizes build space contents with project.">    <sync todir="build/dist">        <fileset dir="dist" />    </sync></target>
User avatar
MELERIX
L2j Veteran
L2j Veteran
Posts: 6667
Joined: Sat Sep 23, 2006 11:31 pm
Location: Chile
Contact:

Re: game server gameserver

Post by MELERIX »

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
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: game server gameserver

Post by jurchiks »

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.
User avatar
tukune
Posts: 533
Joined: Sun Mar 29, 2009 2:35 pm
Location: Japan

Re: game server gameserver

Post by tukune »

:twisted: svn move data dist/game/data

very very easy
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: game server gameserver

Post by jurchiks »

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.
User avatar
MELERIX
L2j Veteran
L2j Veteran
Posts: 6667
Joined: Sat Sep 23, 2006 11:31 pm
Location: Chile
Contact:

Re: game server gameserver

Post by MELERIX »

tukune wrote::twisted: svn move data dist/game/data

very very easy
yes, is totally easy, you can do that with few clicks in Eclipse, but the trouble is other...

is that the amount of files is really big, and it will affect a lot of contributions xD
Post Reply