Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!
Archlord Emulator + tools

Archlord Emulator + tools Ep5

No permission to download
Joined
Jul 1, 2008
Messages
423
Reaction score
54
marelegg submitted a new resource:

Archlord Emulator + tools - archlord , emu.ator archlord , archlord private server

The Archlord Emulator, brought to life by the Osman (also known as Osy), stands as a remarkable testament to the power of passion, dedication, and collaborative efforts within the gaming community.

Archlord, a once-beloved MMORPG, left a lasting imprint on the gaming landscape. Unfortunately, the original servers of the game were eventually brought down, leaving dedicated fans yearning for the nostalgic experiences the game once offered. Enter Osman, a talented individual who took it upon...

Read more about this resource...
 
Hello,

May you share an extracted VM please ? because I have difficult with potsgres :/
Tutorial to install postgresql the specified version PostgreSQL 9.6.x version:

PostgreSQL version 9.6.x version download links:

mirror 1: mirror2: mirror3: mirror4:
Tutorial how to install postgreSQL:


One of the reasons this can happen is because the installer attempts to install an older version of the VC++ runtime than what you are currently using its error of vc++ runtimes.
A workaround is to prevent the runtimes from installing with the --install_runtimes option creating a shortcut of installer and adding the parameters like :

postgresql-9.6.12-1-windows-x64.exe --install_runtimes 0

Now re-run the installation using shortcut and PostgreSQL will install without problems.

aEKIL - Archlord Emulator + tools - RaGEZONE Forums


BSUl - Archlord Emulator + tools - RaGEZONE Forums




Then you need to create an username and an database + password and grant priv using PostgreSQL terminal after installation:


Code:
createuser -U postgres alef_user
createdb -U postgres alef
psql -U postgres (type in your password)
ALTER USER alef_user WITH ENCRYPTED PASSWORD 'alef_pwd';
GRANT ALL PRIVILEGES ON DATABASE alef TO alef_user;
\q

Or follow the next simple tutorial how to create an default username/database with password:



Use navicat to connect after this to postrgesql database to be able to work easy and faster.

Tutorial:



Now you can restore the database.bak using PostgreSQL terminal:

Code:
pg_restore -U alef_user -d alef < database.bak

Or using navicat connection (the easy way) , using query builder to create the tables into the database of archlord:


Code:
CREATE TABLE accounts (
    account_id VARCHAR(50) PRIMARY KEY NOT NULL,
    data BYTEA
);

CREATE TABLE guilds (
    guild_id VARCHAR(50) PRIMARY KEY NOT NULL,
    data BYTEA
);

Tutorial to create tables into navicat for PostgreSQL database using query builder:



Hope it helps alot,if there are any questions please dont hesitate to ask and sure dont forget to LIKE and rate the release of source.
 
Last edited:
Tutorial to install postgresql the specified version PostgreSQL 9.6.x version:

PostgreSQL version 9.6.x version download links:

mirror 1: mirror2: mirror3: mirror4:
Tutorial how to install postgreSQL:


One of the reasons this can happen is because the installer attempts to install an older version of the VC++ runtime than what you are currently using its error of vc++ runtimes.


Now re-run the installation using shortcut and PostgreSQL will install without problems.

View attachment 266648

View attachment 266649



Then you need to create an username and an database + password and grant priv using PostgreSQL terminal after installation:


Code:
createuser -U postgres alef_user
createdb -U postgres alef
psql -U postgres (type in your password)
ALTER USER alef_user WITH ENCRYPTED PASSWORD 'alef_pwd';
GRANT ALL PRIVILEGES ON DATABASE alef TO alef_user;
\q

Or follow the next simple tutorial how to create an default username/database with password:



Use navicat to connect after this to postrgesql database to be able to work easy and faster.

Tutorial:



Now you can restore the database.bak using PostgreSQL terminal:

Code:
pg_restore -U alef_user -d alef < database.bak

Or using navicat connection (the easy way) , using query builder to create the tables into the database of archlord:


Code:
CREATE TABLE accounts (
    account_id VARCHAR(50) PRIMARY KEY NOT NULL,
    data BYTEA
);

CREATE TABLE guilds (
    guild_id VARCHAR(50) PRIMARY KEY NOT NULL,
    data BYTEA
);

Tutorial to create tables into navicat for PostgreSQL database using query builder:



Hope it helps alot,if there are any questions please dont hesitate to ask and sure dont forget to LIKE and rate the release of source.

I will retry, because I thought I have some issue with database.bak

I tried to usee navicate, but i have only account and guilds tables... I think I missed somethings :/...
 
Last edited:
May I ask if this is an opensource or close source?
Also, how far this emulator emulates?
If you have been checked the original post , there we have also uploaded a source code to github by osman, but its incomplete and there many things not work.

I would like to say im rebuilding it right now from 0 using leaked serverfiles , containing some original code and it will handle everything until episode 8,and i would like to build it into a new language and other database structure for fast management and less memory usage.

For the moment will be closed but i would help where i can somehow if someone needs help.

More progress you will have to see on ExVal new mmorpg game portal that will come with many games and with my games also : Archlord 2,Archlord ,and others in future.
 
Back