eAthena - is MMORPG emulator written and actively developed from ~2004 up to ~2011. Since around 2011 year after some drama and not only, whole old community (https://eathena.ws) died, and split to few modern and actual up to date emulators:
This project almost dead, and not supported anymore. Strongly recommend you to take a look for projects linked above.
The repository good source for different information and tracking history changes. Also, optionally in 22 November 2018 the branch has been updated, and now support VS 2017 Community.
The differences between emulators above not too big, almost all of them interconnected in different systems or features. But use different codebase because of split in 2011 and continuing developed what you can track on their official forums.
apt-get install git make gcc mysql-server libmysqlclient-dev zlib1g-dev libpcre3-dev screen
Where:
- git - a tool for cloning/pushing, etc whatever to work with repository and tracking changes
- make and gcc - for compilation
- MySQL-server (required 5.6 version, not 5.7) - where will be stored database
- libmysqlclient-dev - required for the emulator to work with database
- libpcre3-dev - required for pcre support in script engine and not only
- screen - a tool for simply running the emulator in the background on the server and returning back to console every time when it needed.
Note: MySQL >= 5.7 not supported. Please consider to use MySQL-Server <= 5.6
adduser eathena
Enter pass and make sure nobody except you know it.
Then you will see /conf/
folder, almost all settings there.
Files what required to edit to make emulator works:
- map_athena.conf
userid: s1 <--- change to your username (what will be used in login table (userid) on account with ID = 1)
passwd: p1 <--- change to your username (what will be used in login table (user_pass) on account with ID = 1)
map_ip: 127.0.0.1 - change to your public IP address (or non-touch if you run it on local pc)
- char_athena.conf
userid: s1 <--- change to your username (what will be used in login table (userid) on account with ID = 1)
passwd: p1 <--- change to your username (what will be used in login table (user_pass) on account with ID = 1)
char_ip: 127.0.0.1 - change to your public IP address (or non-touch if you run it on local pc)
- inter_athena.conf - where you will set user/pass to connect your databases on MySQL server
sql.db_hostname: 127.0.0.1
sql.db_port: 3306
sql.db_username: change_to_main_mysql_db_user
sql.db_password: change_to_main_mysql_db_pass
sql.db_database: name_of_main_db
sql.codepage:
// MySQL Character SQL server
char_server_ip: 127.0.0.1
char_server_port: 3306
char_server_id: change_to_main_mysql_db_user
char_server_pw: change_to_main_mysql_db_pass
char_server_db: name_of_main_db
// MySQL Map SQL Server
map_server_ip: 127.0.0.1
map_server_port: 3306
map_server_id: change_to_main_mysql_db_user
map_server_pw: change_to_main_mysql_db_pass
map_server_db: name_of_main_db
// MySQL Log SQL Database
log_db_ip: 127.0.0.1
log_db_port: 3306
log_db_id: change_to_log_mysql_db_user
log_db_pw: change_to_log_mysql_db_pass
log_db_db: name_of_log_db
log_codepage:
Required: MySQL <= 5.6 only, current emulator not work fine on MySQL >= 5.7
Create a MySQL database and users:
- Login to your mysql-server
mysql -uroot -p<your password>
- Create two databases, one for main game db, second where will be stored emulator logs
- Main db: > create database
name_of_main_db
; # please replacename_of_main_db
to your own, example: myserver_db - Logs db: > create database
name_of_log_db
; # please replacename_of_log_db
to your own, example: myserver_log - Now, need to create two separate users with some privilegies for both of created databases:
- Main DB User: >
GRANT create, select, insert, delete, alter, update, drop ON name_of_main_db.* TO 'change_to_main_mysql_db_user'@'localhost' IDENTIFIED BY 'change_to_main_mysql_db_pass';
# please replace values here to correct one what you will use (and in config above too) - Main LOG User: >
GRANT create, select, insert, delete, alter, update, drop ON name_of_log_db.* TO 'change_to_log_mysql_db_user'@'localhost' IDENTIFIED BY 'change_to_log_mysql_db_pass';
# please replace values here to correct one what you will use (and in config above too)
Import SQL Tables
- mysql -u root -p<replace_to_your_pass> name_of_main_db < sql/main.sql
- mysql -u root -p<replace_to_your_pass> name_of_main_log < sql/logs.sql
Now, you need to edit a login table and change s1
p1
values there to yours in configs.
For example i have in char_athena.conf
and map_athena.conf
next data:
userid: thisismyuser
passwd: mycoolpassword
So, I need to do next than:
- Login to your mysql console (
mysql -uroot -p<yourpass>
) - Use proper database: >
use name_of_main_db;
- Display current database structure: >
describe login;
- Display current values: >
select * FROM 'login' \G;
- Replace
s1
,p1
on your main administrative account (for server purposes): >update login set userid='thisismyuser', user_pass='mycoolpassword' WHERE account_id='1';
- Now mysql configuration is complete, and you can able to compile emulator and connect (see below)
1. cd eathena
2. chmod +x configure
3. ./configure
4. make sql
Make all created files executable:
chmod +x *_sql
chmdo +x run-server.sh
- Go to your emulator folder with
cd
(cd path/to/your/emulator) - Now enter:
screen -S loginserv
hit enter, and you will be under screen session (to which you can always return back easily) - Now enter
./login-server_sql
and press enter - Hit CTRL + A, then press just D key without holding anything (yes, two combinations) at this point you will send the screen to detach state, and you will be able to launch another emulator windows
- Now
screen -S charserver
, hit enter ./char-server_sql
press enter, then CTRL+A; and then D for detaching- Now last map-server:
screen -S mapserver
, hit enter ./map-server_sql
press enter, then CTRL+A; and then D for detaching
That it, now the whole emulator must be running fine. Note: If it running without any errors, you will not see any WARNINGS or ERRORS messages in screen consoles.
How access each of the server? Super easy:
screen -ls
- will display available screens in the detached state to which you can switchscreen -X <name_of_screen>
, for example, if you wish to see map-serverscreen -S mapserver
- If you will press CTRL + A and will use Arrow Up / Down you able to scroll up or down.
- If you wish to cancel the focus to another server, you need send screen to detach mod, hit
CTRL+A, then press D
How restart server?
- Log in to each screen, and press CTRL+C
- Repeat Launching steps.
Optionally you can use athena_start.sh (personally me, don't like it, too buggy)
For this question, you will not receive an answer here. Use or herc.ws, or rathena.org, boards.
- (Download Visual Studio Community 2017)[https://visualstudio.microsoft.com/vs/community/] or whatever is actual when you reading the information.
- In installer select C++ (around 6.66GB to download and install for VS 2017) and install
- When you will finish instalation, just launch eathena-17.sln
- CTRL + SHIFT + B, or
Build -> Build
. - If you see any of errors in output, right click on the whole solution -> Retarget Solution, OK, and try again.
- What about mysql part, configuration, etc, it's the same, so find any portable or like that mysql server and do almost everything above except adding a user.
That it.