Προς το περιεχόμενο

Official Lineage 2 Topic


irmaiden

Προτεινόμενες αναρτήσεις

ναι την βρήκα τελικα αλλα την έγραφα με μία /

 

όλα τα skills γιατί δεν τα δίνει στον gm?

 

Τι νοημα θα ειχε αυτο?

Ο ρολος του Admin ειναι να εποπτευει και να βοηθαει τους παιχτεςι.

Αν παλι θες να κανεις το χαβαλε σου εχει απο το πανελ επιλογες να του προσθεσεις τα skill που θες!

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

έπρεπε να αλλάξω και αν γίνω wizard->spellsinger

 

μετά μου τα εδωσε όλα

 

απλά θέλω να είμαι μεγάλο lvl, ακόμα δεν έχω κάνει τις ρυθμίσεις για να μπορούν να παίζουν παιχτες μέσω internet, απλά δοκιμάζω για να γνωρίζω τι δυνατότητες υπάρχουν

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Δημοσ. (επεξεργασμένο)

Ksereis pos na steiso Lineage II server se Linux???

Thelo na ta balo se ena pc to opoio tha einai kati san prive server sto internet se grami adsl 512 an exete arketes leptomeries kai links me arxeia steilte ta parakalo sto mail.

Euxaristo ek ton proteron

Επεξ/σία από comfuzio
Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Αποτι εχω ακουσει το αρχειο L2JRU ειναι που περιεχει τα αρχεια για να στησεις server σε Linux μηχανημα.

Σου εκανα και c/p τον παρακατω οδηγο.

Ενημερωσε μας αν δουλευει :)

 

Making a L2 Server

Faq by Champloo

Before Starting You will need to make sure you have you have at least the minimum requirements if you would like to play Lineage II. I have included those specifications

below.

Minimum Req. Recommended Req.

CPU Pentium 3 800MHz Pentium 4 1GHz or better

RAM Higher than 256MB Higher than 512MB

GFX GeForce2 or better Geforce4 Ti or better

::Step 1::

*Note: You will need to have approximately 5 GB of free space available on your hard drive.*

Download and install the Lineage 2 Chronicle 3 client.

::Step 2::

*Note: If you already have Directx 9.0c installed skip to step 3*

Download and Install Directx 9.0c

Directx 9.0c can be found here:

>http://www.microsoft.com/windows/directx/default.aspx

::Step 3::

Download and install MySql

MySql can be found here:

>http://dev.mysql.com/downloads/mysql/4.1.html

*Note: Scroll halfway down the page and you will find the Windows downloads section. You will want to download the Windows (x86) 4.1.12 35.7M version.*

During the installation you will encounter a security setting for the root password. It will be the first of two check boxes. It is imperative you remember this password.

At some point the config process will give you the ability to allow it to begin on startup. Make sure you check that.

::Step 4::

Download and Install Navicat.

Navicat is a gui that lets you easily navigate the creation of Sql database's, tables, etc. Although it isn't necessary, I highly recommend it as it will make things easier for both new and advanced users. In this faq you will find I have provided two ways of installing the Sql databases, one with Navicat and one without it for those who prefer not to use it.

You can download Navicat here:

>http://www.navicat.com/download.html

After installation, Navicat will ask you about the root password you set up during the installation of MySql. Input that password.

::Step 5::

Download and extract the required datafiles, L2J-DataPack_NIO.zip and l2j-server.zip into the folder. After you have done that, download l2jserver.jar and overwrite the old file located in the folder.

These files can be found here:

>http://l2j.mazylis.lt:8080/L2J/L2JRU/

::Step 6::

Configure the Server.cfg file.

# Bind ip of the gameserver, use * to bind on all available IPs

GameserverHostname=*

GameserverPort=7777

# This is transmitted to the clients connecting from an external network, so it has to be a public IP or resolvable hostname

ExternalHostname=ur.ip.ad.dress

# This is transmitted to the client from the same network, so it has to be a public IP or resolvable hostname

InternalHostname=ur.lan.ip.here

# Bind ip of the loginserver, use * to bind on all available IPs

LoginserverHostname=*

# Database info

Driver=com.mysql.jdbc.Driver

#Driver=org.hsqldb.jdbcDriver

URL=jdbc:mysql://localhost/l2jdb?cachePrepStmts=true&prepStmtCacheSize=50

#URL=jdbc:hsqldb:hsql://localhost/l2jdb

Login=root

Password=(your password)

MaximumDbConnections=5

#Datapack root directory, defaults to current directory from which the server is started

#DatapackRoot = C:\l2jru\

::Step 7::

Establish the database.

Go ahead and open Navicat, you'll notice on the left side of the menu you will have a Connections column. Go ahead and right click on whatever is there and delete it.

Next right click that column and Select New Connection. Name this connection l2jdb. It has to be this as we have set it to this in the cfg file.

Test the connection. If you have included your root password into that, it should have no problem. If you cannot connect to mysql, thats because its not running. A restart might help. But it will usually be running after the install.

Now you have a connection named "l2jdb". Right click the connection and add a new database. After the db database shows, right click it & "Execute Batch File", you will then search within your l2jru folder for a directory called sql. You will have files ranging from Accounts to Weapons. You will execute each batch file, and as you do they will appear into your table data area to the right.

::Step 7 (Without Navicat)::

Establish the database.

Right click on full_install.bat and select edit. Find the lines that read

set mysqlBinPath=C:\mysql\bin

set user=root

set pass=

set DBname=l2jdb

and change that to

set mysqlBinPath=C:\Program Files\MySQL\MySQL Server 4.1\bin

set user=root

set pass=(your password)

set DBname=l2jdb

Save, then run it. This will do all the work you just did with Navicat. The only purpose of Navicat is to easily and orderly edit sql table data. Which you may need if you get further into creating your own server. From editing quests to adding items and others.

It will take a few moments and then it should be done. Press any key to continue.

::Step 8::

Edit the host file to connect to your server

Find the host file in "C:/windows/system32/drivers/etc". Go ahead and right click open and select notepad from the list. Add this line to play alone. Or if you are connecting to a server, their respective IP.

127.0.0.1 l2authd.lineage2.com

It can be added at the bottom of whatever you have in there currently, on its own line. Save and exit.

::You have now completed your Lineage 2 Chronicle 3 server::

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

den to exo kanei akomi thelo na stiso se ena mtx pc pou tha agoraso apo 15/10 linux kai na ton kano dns server gia onomatologia se dika mou site kai afou tha trexei pou tha trexei na exei kai autos lineage 2 server. Otan stithei kai paizei normal tha sas po link gia na mpainete kai eseis :D

Apo tin alli exo ena diko mou site http://www.comfuzio.com to opoio einai se enan server stin ameriki ekei mporo arage na sikoso lineage server?

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

-Ξεκινήστε τον Apache/mysql server τρέχοντας το αρχείο C:\server\start.bat (Σιγουρευτείτε οτι το drive w: είναι διαθέσιμο)

 

se auto to vima exo kolisi

 

molis trexo to start.bat vgeni to parathiro kai lei

 

the disk w is busy. Use start.bat [disk letter]

Pieste ena pliktro gia na sinexisete.

 

kai klini.

 

ti mpori na ftei???

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Που το διαβασες αυτο?

 

pouthena, aplos to xerw apo tis syzhthseis pou ginontousan palia sto l2j forum. mono ean trexeis ton l2j server xwris datapacks eisai apolytos nomimos (gi auto alloste den kanoun release ton server me dedomena - npc,classes,ktl). to eipa mono kai mono gia na to exete ypopsin sas (den nomizw na sas enoxleisei kaneis).

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

telika ta katafera kai ego doulevi mia xara

to provlima den katalava pio itan kai den mou etrxe apo tin arxi

 

a kai gia opious endiaferontai exi vgi nea ekdosi sto paketo (929)

mporite na vrite latest ekdosi edo:

http://forum.ragezone.com/showthread.php?t=70987

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

εγώ έχω πρόβλημα..

 

οι άλλοι δεν μπορούν να συνδεθούν επάνω μου μέσω internet

 

συγκεκριμένα έχω 2 pc το κεντρικό, και το άλλο στο οποίο είναι ο σέρβερ, μήπως πρέπει στο firewall να στέλνω τα πακέτα απο το κεντρικό στην ip του 2ου pc? πως το κάνω όσο και αν έψαξα το μόνο που κατάφερα είναι να βλέπω αυτόν που προσπαθεί να συνδεθεί και μέχρι εκεί

 

έχω το sygate personal firewall

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Δημιουργήστε ένα λογαριασμό ή συνδεθείτε για να σχολιάσετε

Πρέπει να είστε μέλος για να αφήσετε σχόλιο

Δημιουργία λογαριασμού

Εγγραφείτε με νέο λογαριασμό στην κοινότητα μας. Είναι πανεύκολο!

Δημιουργία νέου λογαριασμού

Σύνδεση

Έχετε ήδη λογαριασμό; Συνδεθείτε εδώ.

Συνδεθείτε τώρα

  • Δημιουργία νέου...