Jump to content

Recommended Posts

Posted

File: Server_16_10_2007.part01.rar

DownloadLink: Download part 1

----------------------------------------------------------------------------------------------

File: Server_16_10_2007.part02.rar

DownloadLink: Download part 2

----------------------------------------------------------------------------------------------

File: Server_16_10_2007.part03.rar

DownloadLink: Download part 3

----------------------------------------------------------------------------------------------

 

-----------------------------------------------------------------------------------------------

 

 

 

Lineage II Private Server Setup Guide To guide einai sta agglika,

 

 

 

-----------------------------------------------------------------------------------------------

 

Required:

 

* Athlon 64 4200+ Processor

* 4GB RAM

* 200GB HDD

* 10mbit dedicated connection

* Microsoft Windows 2003 Server x64

 

 

Recommended:

 

* Dual Intel Xeon 2.8Ghz

* 8GB or 16GB RAM

* 2x or 3x 200GB 10k+ RPM HDDs (SCSi)

* 100mbit dedicated connection

* Microsoft Windows 2003 Server x64

 

 

 

MSSQL:

 

 

 

Download MSSQL

 

 

 

Extract your Lineage2 Server (170MB+) files onto a directory. Extract L2server.zip (1.81 MB) into your Server's root directory that contains CacheD, L2LogD, L2NPC, NewAuth, etc. Overwrite all the files when prompt. Extract DBScript.zip (103.4 KB) into your Server's root directory that contains the folder DBScript and override all the files.

 

 

 

When installing MSSQL. Make sure you take note of the account/user login and password!! You'll need them for later. Here's a quick walkthru installation guide:

 

 

 

Make sure you choose "Local Computer"

 

Then "Creater a new instance of SQL Server, or install Client Tools" //or something similar. If you don't have this option prompt. Don't worry about it. You get this if you're installing again for the 2nd time.

 

Make sure you pick "Server and Client Tools" along the way in the installation process.

 

It'll automatically check "Default" for instance name or you can specific one. It doesn't really matter which one you pick as long as you remember the instance name.

 

Along the way in the installation process, make sure you pick an option that uses Both MySQL Login and Windows Login.

 

 

 

-----------------------------------------------------------------------------------------------

 

IP Configurations

 

-----------------------------------------------------------------------------------------------

 

 

 

Go to your Lineage 2 Server folder.

 

 

 

In each of these following folders: L2LogD, CacheD, NewAuth, PetitionD, L2NPC, and L2Server, they contain a configuration file that is either a *.ini or *.txt document. You don't need to change anything and make sure they're set at 127.0.0.1. The only time you would need to change them is if you are loading them from multiple computers! It doesn't matter if you even have a router! As long as you are loading all 6 Process from the same machine, you just need to keep most of the IP adress as 127.0.0.1.

 

Change the following lines in config.txt under "NewAuth\etc" folder:

 

DevServerIP="24.68.124.198" //Change this to your Internet IP address, your WAN, the IP that you get from your ISP. Visit What Is My Ip to find it.

 

logdip="127.0.0.1" //Change this to what you used for your L2LogD.ini address.

 

Change the following lines in l2cache.ini under CacheD folder:

 

address="127.0.0.1" //Change this only if you plan to load this from a different computer! Adjust it to the ip of that computer! If PC2 has IP of 192.168.0.121 and it is planning to load L2CacheD.exe there. Then change it, otherwise leave it as 127.0.0.1!

 

 

 

Change the following lines in l2logd.ini under L2LogD folder:

 

address="127.0.0.1" //Same thing as L2CacheD.ini

 

 

 

Change the following lines in config.txt under PetitionD\etc folder:

 

webAuthServer="127.0.0.1" //Same thing as L2CacheD.ini

 

 

 

Change the following lines in L2NPC.ini under L2NPC folder:

 

//Change them accordingly to what you adjusted for them. If L2LogD.ini has ip of 192.168.0.121 on PC2. Then change that IP in L2NPC.ini to that. You are pointing L2NPC.exe to connect to the other Server Processes. Leave the ports alone!

 

 

 

[LogD]

 

address="127.0.0.1"

 

port=3999

 

 

 

[CacheD]

 

address="127.0.0.1"

 

port=2008

 

 

 

[server]

 

address="127.0.0.1"

 

port=2002

 

 

 

[map]

 

directory="map"

 

 

 

[World]

 

WorldId=1

 

 

 

[db]

 

address="127.0.0.1"

 

user="gamma" //This should be your MSSQL Login (I used sa since it sets up the sa account for you when you install SQL and sa has all permissions)

 

password="l2online" //This should be your MSSQL Password

 

[setting]

 

;Country=0 KR

 

;Country=1 US

 

;Country=2 JP

 

;Country=3 TW

 

;Country=4 CN

 

Country=1 //Change this accordingly to what "CLIENT" version you allow to connect!

 

ExceptionMailing=false

 

MailServer=ncs-mail.ncsoft.co.kr

 

 

 

Change the following lines in l2server.ini under L2Server folder:

 

//Again, the same explaination from L2NPC.ini config applies here as well!

 

[LogD]

 

address="127.0.0.1"

 

port=3999

 

 

 

[CacheD]

 

address="127.0.0.1"

 

port=2006

 

 

 

[AuthD]

 

address="127.0.0.1"

 

port=2104

 

 

 

[petitionD]

 

address="127.0.0.1"

 

port=2107

 

WorldId=1 //Leave this as 1 if you don't plan to run multiple servers! WorldId = ServerId in lin2db (will be explained furtherdown). If they're not the same number, your server won't be connecting to the same gameworld or won't find one to connect to!

 

 

 

------------------------------------------------------------------------------------------

 

Setting up Database Scripts

 

------------------------------------------------------------------------------------------

 

Important! - If you are running MSSQL Server on the same machine that's hosting the server. Leave everything at 127.0.0. and 127.0.0.1!! The only time you would need to change this is if you're trying to connect to a different computer running Lineage 2 Chronicle One Server! You would then need to adjust it accordingly to that computer's IP!

 

 

 

Important!! #2 - If you already have an existing mysql db installed and are changing connection to connect to a different MSSQL Server (say to your friend's computer). You will need to update your MSSQL database information again. By doing this, make sure you export all your previous data! Because if you input the new IP changes, everything from the previous data will be lost! All character and account information are stored in lin2db and lin2world!

 

 

 

open lin2comm_new.sql under DBScript

 

 

 

find

 

set @conn_str = '127.0.0.' + @world_id + ''';''sa'';''l2online'

 

change 127.0.0. to the first 3 sets of numbers of your internal IP (If your internal IP is 192.168.0.121 then enter 192.168.0.)

 

change "sa" as your SQL database account

 

change "l2online" as your SQL database password

 

there are 3 lines you have to change

 

find

 

'SQLOLEDB', '127.0.0.1';'sa';'l2online'

 

change 127.0.0.1 to your internal IP

 

change "sa" as your SQL database account

 

change "l2online" as your SQL database password

 

there is only 1 line you have to change

 

save and close the file.

 

open lin2world_20040609_all.sql under DBScript

 

find

 

set @conn_str = '127.0.0.' + @world_id + ''';''sa'';''l2online'

 

change 127.0.0. to the first 3 sets of numbers of your internal IP (If your internal IP is 192.168.0.121 then enter 192.168.0.)

 

change "sa" as your SQL database account

 

change "l2online" as your SQL database password

 

there are 3 lines you have to change

 

 

 

find

 

'SQLOLEDB', '127.0.0.1';'sa';'l2online'

 

change 127.0.0.1 to your internal IP

 

change "sa" as your SQL database account

 

change "l2online" as your SQL database password

 

there are 2 lines you have to change

 

save and close the file

 

Correct order to load server processes:

 

Make sure you always load the processes in this order:

 

1/2. AuthD.

2/1. CacheD.

3. L2Server.

4. L2NPC.

 

AuthD rarely ever crashes, and you can also reload it whenever you want, it should not affect the server in general, except that people won't be able to login while it's being reloaded.

 

Since CacheD acts as a bridge to the database, if you close it, L2Server will also shutdown along with L2NPC.

 

If you close L2Server, L2NPC is also going to close.

 

L2NPC rarely ever crashes aswell, but if it does, you'll be able to reload it. However, it always takes about 10-15 minutes to fully load all NPCs.

 

Server security:

 

If you want to stay on track, you'll need to have a secure server. Otherwise people [MaxCheaters.com Grin] will jump in your server, burn it and destroy all of your work with no mercy.

Apart from protection DLLs, such as Depmax and Amped which can be found in this PPC release you'll also need to configure your Firewall to block certain ports or else you'll be susceptible to SQL/CacheD injections, and that's not good.

 

Filter the following ports in your firewall: (windows firewall, for example)

 

* 1433 (SQL) (only local area network access / closed)

* 2002 (only local area network access / closed)

* 2008 (only local area network access / closed)

* 2012 (only local area network access / closed)

* 2106 (auth) (open to the public / open)

* 7777 (l2server) (open to the public / open)

 

Original Poster: mpelades4ever from pc magazine

Posted

WebM0nster im really new this WILL be my first server but i have things that are not clear...like for what are the 3 files on the top and do i have to download the 3 files AND the MSSQL  or not and where is this DBScript.zip and pls check this topic often cuz i want to ask questions cuz its my very first server and i want it to be succesfull maybe not more than 200 players but i want to try and make it just for the start /i hope you understand/ and ty for the guide.

Posted

Make sure you choose "Local Computer"

 

Then "Creater a new instance of SQL Server, or install Client Tools" //or something similar. If you don't have this option prompt. Don't worry about it. You get this if you're installing again for the 2nd time.

 

Make sure you pick "Server and Client Tools" along the way in the installation process.

 

It'll automatically check "Default" for instance name or you can specific one. It doesn't really matter which one you pick as long as you remember the instance name.

 

Along the way in the installation process, make sure you pick an option that uses Both MySQL Login and Windows Login.

 

 

Where is that??? in which folder which file...

  • 2 weeks later...
  • 5 months later...
  • 3 weeks later...
Posted

hmm i downloaded this pacj and was gonna try it but none of the exes run on my 64bit system as it says it need serial for it.

This one need to be cracked before it can be used. Wouldnt it be more usefule to send the crack on same pack your sharing instead of sharing a one there we must search thge net for working extenders or cracks for it.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • Web: https://cheatcenter.net/ Apex Legends Phoenix Macro We are excited to introduce our new development, Phoenix private macros for Apex Legends. Recently, it has become harder to develop stable and undetectable cheats for Apex, so we decided to add a safer option to our range. Our macros offer a revolutionary solution in the world of Apex scripts and macros. Everything is launched and configured through a convenient menu and works with all weapons and computer mouse models. So, our program is very user-friendly. Phoenix Macros provide you with an advantage in the game while minimizing the risk of your account being banned. In addition, we offer our program at a very affordable price. If you don't want to risk using cheats, then Phoenix Macro is perfect for you! Product Description Weapon recoil control (Apex Macros) Enable - You can enable/disable the macro during the game Weapon - the choice of weapons with which the macro will work Works with all weapons in the game Scopes - works with all scopes in the game Attachments - works with all weapon mods in the game Control X / Y - adjustment of vertical and horizontal recoil Auto-detection of weapons in your arms Auto-detection of weapon modules Hipfire - macro works when you shoot from the hip (not aiming) Legit Mode - is a safer way to control recoil List of supported weapons (Script / Macros for All Weapons) R99 R301 Alternator RE45 Flatline Spitfire C.A.R. Hemlock Rampage Devotion Volt P2020 SCOUT G7 Havoc PDW L-Star w30-30 Nemesis List of supported modules for guns Double Tap Trigger Turbocharger 2x HCOG "Bruiser" 1x-2x Variable Holo 3x HCOG "Ranger" 2x-4x Variable AOG Barrel Stabilizer Laser Sight Add. Script Features (Phoenix Macro) Binds - bind keys to select the desired weapon Autodetection - automatic detection of weapons in hands when holding a key Selector Circle - a convenient window for selecting weapons (in the form of a circle / wheel) Anti OBS - hide the script window and menu on screenshots and when recording via OBS Languages - English, French, German, Italian, Polish, Portuguese (Brazilian), Russian, Spanish and Turkish Use Controller - phoenix macro for apex works with gamepads
    • Web: https://cheatcenter.net/ Apex Legends Dullwave Hack The private cheat Dullwave for Apex Legends. What sets this product apart is its balance and high quality, with a Loot ESP feature offering a wide range of settings. The primary function of the software is the AIM, specifically a vector-based system, perfect for both Legit and Semi-Rage playstyles. The next menu option is Loot. The item ESP is highly effective, with a variety of settings and categories, making it both visually appealing and user-friendly. Player ESP also matches the quality of AIM and Loot, providing a full-featured player display with smooth performance and multiple customization options. Notably, the Dullwave cheat stands out for its excellent performance and minimal risk of getting banned. If you're looking to try something new and reliable in the realm of Apex Legends cheats, Dullwave is an outstanding choice. Product Description AIM Enabled - enable aimbot, aiming assistance when shooting Bind - select a key to activate the aimbot (hold) Bone - body parts that the aimbot will target FOV - the size of the aimbot's working area Draw FOV - show the aimbot's working area as a circle around the sight Smooth - the smoothness of the aimbot, the smoother the aimbot is Prediction - predicting the enemy's trajectory Visible Check - only target enemies not behind walls Draw Snapline - draw a line to the current aimbot target Dynamic Smooth - dynamic smoothness, depending on the situation Ignore Knocked - ignore knocked enemies Max Distance - limit the range of the aim ESP (Wallhack) Max Distance - limit the range of the aim Box ESP - wh in the form of boxes Box Style - box style, corners or full 2D boxes Health Bar - show the amount of HP using a bar Armor Bar - Show the amount of armor players have using a bar Skeleton - wh in the form of skeletons Distance - distance to targets Name ESP - players' nicknames Snaplines - wh in the form of lines Weapon - weapons in the hands of players Glow - outline of character models Spectators - show the number of players who are watching you after death Loot ESP (Items) Loot ESP - wh showing items (loot) Rarity Filter - filter items based on their rarity Glow - outline of items Ammo - show ammunition Heal - first aid kits, items for treatment Scopes - sights for weapons Weapons - various weapons Deathbox - boxes of dead players with loot inside Grenades - grenade, explosive Equipment - helmets, armor, backpacks Attachments - various modules for weapons Distance - distance to loot
    • Web: https://cheatcenter.net/ Albion Online Radar Hack We are excited to introduce a new product in our store: a private radar for Albion Online. Creating software with powerful features for this game is quite challenging, which is why radar software remains one of the most useful and safest options available. With this radar, you can easily detect resources, mobs, players, and other in-game objects. The software comes with numerous customizable settings, allowing you to tailor it to your preferences. In short, if you want to significantly boost your farming and leveling speed in Albion Online, this radar is an invaluable tool you shouldn’t overlook. Product Description Players Radar for Albion Online Enable On Mount Name Health Distance Players in Your Party (Team Check) Mobs Radar for Albion Online Hostile (Enemies) Boss Miniboss Mists Wisps (Common, Uncommon, Rare, Epic, Legendary) World (Items, Loot) Wood Rock Fiber Ore Hide Filter by Tier & Enchantment Hiden Cheast Avalone Drone Player Lootbag Mob Lootbag Dungeons Solo Group Corrupt Hellgate Mist Portal Distance Misc (Other Settings) Zoom Transparency Point Scale Text Scale Disable Radar Key Disable Player Key Custom Colors CFG System      
    • Web: https://cheatcenter.net AIMBOT Bone Select bind Prediction Draw FOV Fov Smooth Enable team check Limit dist VISUAL Skeleton Corner Box Health Bar Distance Nickname Enable team check Limit dist LOOT Armor plate Armor heavy Ammo Gasmask Weapon Money Kill streak Crates Stimulator Limit distance Colors Color visible Color Unvisible Color Visible team Color UnVisible team  
    • nice share, now if you add some details per file, i will unban your main account  😄
  • Topics

×
×
  • Create New...