Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

L2J Server packs repository+Tools

Status
Not open for further replies.
Custom Title Activated
Member
Joined
Jul 19, 2004
Messages
2,818
Reaction score
13
Well the purpouse of this thread is to merge in some way all the server packs shares... I think if we merge them all in one place things will be a lil less messed up and will avoid many questions from new users.

The reason of this thread is also to start a some kind of F.A.Q. related to the L2JServers in general. The thread will have 2 parts.
This one with the shares and the F.A.Q. and will be closed for posting.
And the second part of it on the Get server Help section to talk about latest versions and tools shared on this thread. On that thread you will post your contribs for the F.A.Q. and once they get checked they will be moved to this thread to keep the F.A.Q. clean obviously proper credits will be given.

Well, having that clear... let's continue with the purpose of this thread... The files!
SERVER PACKS

#############################################
# L2JOfficial
# SVN:
# Timeline:
# Forums:
#############################################
CT2 Gracia Final Branch - Clean Compile, no extras









#############################################
# L2JFree
# SVN: svn://l2jfree.com/repo/l2j-free
# Timeline:
# Forums:
#############################################
CT2 Gracia Final Branch - Clean Compile, no extras











CT2 Gracia Part 2 Branch (Has Legacy CT1 support) - Clean Compile, no extras




<<<<<<< Useless since CT2 Part 2 Stable 1.2.10

















CT2 Gracia Part 1 Branch (Has Legacy CT1 support) - Clean Compile, no extras











CT1.5 Hellbound Branch (Has Legacy CT1 support) - Clean Compile, no extras

(Thnxs Evill33t for this compilation, I'm a lil bit busy to compile it)












CT1 Branch - Clean Compile, no extras






















Interlude Branch - Clean Compile, no extras


























#############################################
# L2EMU
# SVN:
# Timeline:
# Forums:
#############################################
CT1.5 Hellbound Branch (Has Legacy CT1 support) - Clean Compile, no extras





CT1 Branch - Clean Compile, no extras















Interlude Branch - Clean Compile, no extras












#############################################
# Geodatas & Pathnodes
# SVN: svn://l2-geodata.com/repo/geodata
# Timeline:
# Forums:
#############################################
CT2 Part 2 Branch



Pathnodes (For those who still use pre-generated pathnodes)





CT2 Part 1 Branch


Pathnodes are generated on the fly now, so no need to use pre-generated ones


CT1/Hellbound Branch



























Interlude Branch




OTHER TOOLS


#############################################
# L2DAT_EncDec
# SVN:
# Timeline:
# Forums:
#############################################








(French & Portuguesse Lang file included from this Rev)
(German Lang file included from this Rev)

(Spanish and Italian Lang files included from this Rev)


#############################################
# Michelle's Dropcalc
# Forums:
#############################################
With CT2 Final Support



With CT2 Support???


With CT1 Support!







(Thnx tReXpert) (Needs to work)

More stuff will be added soon... Until that... if you wanna talk about anything in here do it on THIS THREAD

Droppo.-
 
Last edited:
Custom Title Activated
Member
Joined
Jul 19, 2004
Messages
2,818
Reaction score
13
Re: [Share]Server packs repository+Tools

-----------------------------
.: Frequently Asked Questions :.
--------------------------------
Q 001- I got this message on my server window. How can I fix this?
Code:
WARNING Could not store char base data: com.mysql.jdbc.exceptions.jdbc4.MySQLSyn
taxErrorException: Unknown column 'apprentice' in 'field list'
A- Run this query
Code:
ALTER TABLE `characters` ADD `apprentice` int(1) NOT NULL DEFAULT 0 AFTER `lvl_joined_academy`;

Q 002- I got this message on my server window. How can I fix this?
Code:
WARNING Could not restore active effect data: com.mysql.jdbc.exceptions.jdbc4.My
SQLSyntaxErrorException: Unknown column 'buff_index' in 'order clause'
A- Run this query
Code:
ALTER TABLE character_skills_save ADD buff_index int(2) NOT NULL default 0;

Q 003- How to make an automatic task like restart server every xx hours?
A- L2J servers have an internal cron called Global Task, Open your DB and
open global_task table and add a new entry with this params:

task = restart
type = TYPE_SHEDULED
param1 = "milleseconds to restart" (for example 1h =1*60*60*1000= 3600000)

The SQL query will be like this:

Code:
INSERT INTO global_tasks (id,task,type,last_activation,param1,param2,param3) VALUES ('','restart','TYPE_SHEDULED','0','3600000','', '');

Code:
    More information about Global Task:

    type:
    TYPE_NONE = Never execute this task (to disable a task)
    TYPE_STARTUP = Execute this task every startup
    TYPE_SHEDULED = Execute this task after "param1" milleseconds
    TYPE_FIXED_SHEDULED = Execute this task every "param2" milleseconds with a
                          initial delay of "param1" milleseconds
    TYPE_TIME = Execute this task on a concrete data defined on "param1"
    TYPE_SPECIAL = Internal purposes
    TYPE_GLOBAL_TASK = Execute this task each "param1" days on a defined hour
                       defined on "param2" (format: HH:MM:SS)

    task: We created 3 posible task for administrator:
    restart = restart the server, use "param3" to defined milleseconds before
              restart the server and players alert with a message of restart.
    shudown = like restart but shutdown the server
    jython  = execute the jython file defined on "param3" (cron jython files
              need to be located at data/jscript/cron directory)

Q 004- How can I change characters starting locations?

A- Change in 'char_templates.sql' the "x", "y","z" values

Example:
INSERT INTO `char_templates` VALUES (4, 'Human Knight', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588 );

Q 005- How can i enable the Buffer?

A- You just need to add this line of code inside the __int__.py that is inside the folder gameserver\data\jscript\custom\
(If you added the buffer's folder in the Custom folder) & (If your buffer has different name "Not 9999_NPCBuffer" then change it)

Code:
'4000_ShadowWeapons',
'5011_l2day',
'6050_KetraOrcSupport',
'6051_VarkaSilenosSupport',
'7000_HeroItems',
'8000_RaidbossInfo',
[COLOR="Red"][B]'9999_NPCBuffer'[/B][/COLOR]

Do you have any good information to be added here??? pots it on THIS THREAD
 
Last edited:
Status
Not open for further replies.
Back
Top