Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] Updated Database Import Scripts

Skilled Illusionist
Joined
Dec 21, 2013
Messages
392
Reaction score
181
Sup all,

I updated the scripts for import of the database files:
  • db_account_alter
  • dbalter
The updated scripts automatically import the necessary sk and ska files as well as their _alter counterparts and also create the database associated, if it does not exist. Very useful for those who are starting out.

What To Edit
You need to edit the following variables inside the scripts:
Code:
$db_name = "FFAccount";
$db_account = "postgres";
$db_password = "dev";
to match or customize them to your Postgresql setup. The database name can be changed to whatever you want but the account and password must match your Postgresql username and password.

How To Use
  • Overwrite the existing files inside the db folder or wherever you have the originals located.
  • Set the permission of them to 771 or 777 to make the executable, if not already.
  • Execute them by running:
Code:
./db_account_alter
./dbalter

Note
This does not include the script for FFMember. Should be compatible with other server files as well like the recent released Grand Fantasia and Twin Saga server files.

Enjoy.
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Nov 16, 2018
Messages
83
Reaction score
7
What is it?
Can you tell me exactly what the impact is?
 
Initiate Mage
Joined
Feb 20, 2023
Messages
3
Reaction score
0
Sup all,

I updated the scripts for import of the database files:
  • db_account_alter
  • dbalter
The updated scripts automatically import the necessary sk and ska files as well as their _alter counterparts and also create the database associated, if it does not exist. Very useful for those who are starting out.

What To Edit
You need to edit the following variables inside the scripts:
Code:
$db_name = "FFAccount";
$db_account = "postgres";
$db_password = "dev";
to match or customize them to your Postgresql setup. The database name can be changed to whatever you want but the account and password must match your Postgresql username and password.

How To Use
  • Overwrite the existing files inside the db folder or wherever you have the originals located.
  • Set the permission of them to 771 or 777 to make the executable, if not already.
  • Execute them by running:
Code:
./db_account_alter
./dbalter

Note
This does not include the script for FFMember. Should be compatible with other server files as well like the recent released Grand Fantasia and Twin Saga server files.

Enjoy.
Thank you Eperty
 
Back
Top