[HELP] About Saving your progress in the aura kingdom game

Results 1 to 2 of 2
  1. #1
    Apprentice mekomeko is offline
    MemberRank
    Oct 2021 Join Date
    20Posts

    Support [HELP] About Saving your progress in the aura kingdom game

    I play with my friend, but since I don't have a 24/7 server, I taught him how to set up a server, and sometimes we play on a network server, but I would like to merge his progress to my server.
    my question is:
    1. How can I save your data and upload it to my server?.
    2. How to merge two different servers?.
    3. this question is a bit different, can you put the lancer class? because I see that the weapons and other objects exist but the lancer class does not appear.


  2. #2
    Valued Member UseresU is offline
    MemberRank
    Nov 2015 Join Date
    GermanyLocation
    115Posts

    Re: [HELP] About Saving your progress in the aura kingdom game

    Quote Originally Posted by mekomeko View Post
    How can I save your data and upload it to my server?.
    You can use a database dump and transfer the database from one server to another.
    As user postgres, use
    Code:
    pg_dump ffaccount > ffaccount.sql
    pg_dump ffdb1 > ffdb1.sql
    pg_dump ffmember > ffmember.sql
    to save your database and
    Code:
    psql -d ffaccount -c "\i 'ffaccount.sql';"
    psql -d ffdb1 -c "\i 'ffdb1.sql';"
    psql -d ffmember -c "\i 'ffmember.sql';"
    to restore it.

    Quote Originally Posted by mekomeko View Post
    How to merge two different servers?.
    That one is tricky to pull off. You would have to merge the database tables, but here is why that's so hard:
    Let's say, both of you have created a character on your own server. Each of the servers hands out a player id. Both of your characters will get the same id from their respective server. What you would have to do is change one of the player ids and then merge the tables. But not only do you get player ids that have to be unique, you also get ids from a lot of other things. You would have to change all of them, without changing ids like item ids or eidolon ids that are fixed in the files.

    Quote Originally Posted by mekomeko View Post
    can you put the lancer class?
    You either need exceptional skills when it comes to modifying the server files or you need newer server files.



Advertisement