
Originally Posted by
mekomeko
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.

Originally Posted by
mekomeko
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.

Originally Posted by
mekomeko
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.