EQ2Emu Source now resides at https://github.com/emagi/eq2emu/ https://www.eq2emu.com
Gogs 65a2eb9b84 Installer Initial Commit | 4 년 전 | |
---|---|---|
Content | 4 년 전 | |
DB | 4 년 전 | |
EQ2 | 4 년 전 | |
Lua | 4 년 전 | |
installer | 4 년 전 | |
server | 4 년 전 | |
.gitignore | 4 년 전 | |
LICENSE.md | 4 년 전 | |
README.md | 4 년 전 |
Based on https://www.eq2emulator.net/ visit https://www.eqpvp.com/ or https://www.zeklabs.com/ for more details
Install Game: Install AoM client available on Steam: https://store.steampowered.com/app/201230/EverQuest_II/
Update Login Server: Navigate to EverQuest install directory, eg. C:\Steam\steamapps\common\EverQuest 2
a. Open eq2_default.ini with your Notepad or other flavor editor
b. Replace first line with 'cl_ls_address a.b.c.d' - where a.b.c.d is one or many IPv4 addresses
eg. cl_ls_address 192.168.0.2
c. Save Changes
d. Always Open EverQuest2.exe to start the game, DO NOT USE EQ2.EXE
e. Splash login account / name is one provided by Login Server or otherwise created in 'Getting Started (Server)' Step 4 below.
Note: These instructions for now will be primarily based in Windows, but any Linux savvy individual should be able to translate the steps
Software Requirement: MariaDB (MySQL DB, etc.) to allow EQ2Emulator LoginServer / WorldServer to interface
Obtain Latest Install (be sure to select OS on the right hand side as default will be a linux distro): https://mariadb.com/downloads/
Installation Instructions for MariaDB can be found here: https://mariadb.com/kb/en/installing-mariadb-msi-packages-on-windows/
Note: Be sure to remember the user and password defined in the installation!! Used in later steps.
Open MySQL Client: Login using the password (assigned to root or other default user) setup in the MariaDB installation.
Source in Databases: Issue the following commands to setup EQ2Emulator's databases for login (eq2ls) and world (eq2emu).
You must first go into source C:\[YOUREQ2EMUGITSRC]\DB\ and extract world_db.zip 'Here' into the same \DB\ directory.
Run the following commands in the MySQL Client prompt: create database eq2ls; create database eq2emu; \u eq2ls source C:\[YOUREQ2EMUGITSRC]\DB\ls_db.sql \u eq2emu source C:\[YOUREQ2EMUGITSRC]\DB\world_db.sql
Add World Account (in Login Server database, eq2ls):
\u eq2ls
insert into login_worldservers set name='TestLabs',account='testlabs',description='TestLabs',password=sha2('testpass',512),note='',login_version='0.7.3-dev';
The account and password will be used in Step 5 for the 'account' and 'password' parameters.
Open the C:\[YOUREQ2EMUGITSRC]\server\LoginServer.ini file (Notepad or other flavor editor)
Note: Steps to find your LAN IP (command prompt, ipconfig, IPv4 address): https://www.lifewire.com/ip-config-818377
Find your WAN (Internet) IP: https://www.google.com/search?q=what+is+my+ip
Modify the [LoginServer] section:
Save Changes
Open the C:\[YOUREQ2EMUGITSRC]\server\login_db.ini file (Notepad or other flavor editor)
Open the C:\[YOUREQ2EMUGITSRC]\server\world_db.ini file (Notepad or other flavor editor)
Start the Login Server: C:\[YOUREQ2EMUGITSRC]\server\EQ2Login__Debug.exe
Start the World Server: C:\[YOUREQ2EMUGITSRC]\server\EQ2World__Debug.exe
Startup EverQuest2.exe (DO NOT USE EQ2.EXE AS IT WILL PATCH!) and login using credentials of your choice. After login the account will be automatically created.
Optional: After creating a character and logging in give yourself all admin privileges to use commands/GM access
\u eq2emu
update characters set admin_status=255 where name='charname';
TBD
Authors reside at https://www.zeklabs.com/ and https://www.eqpvp.com/
This project is licensed under the GNU General Public License - see the LICENSE.md file for details