Skip to content
Jav edited this page Jan 15, 2024 · 10 revisions

Database

It is recommended to use MySQL for the website and then configure the SQLServer connection after selecting the game flyff during the setup.

USE [master];
GO
CREATE LOGIN MyNewAdminUser 
    WITH PASSWORD    = N'abcd',
    CHECK_POLICY     = OFF,
    DEFAULT_LANGUAGE = us_english,
    CHECK_EXPIRATION = OFF;
GO
EXEC sp_addsrvrolemember 
    @loginame = N'MyNewAdminUser', 
    @rolename = N'sysadmin';

CMS

  • Download the CMS : https://azuriom.com/en/download
  • Follow the installation steps
  • Now go to the Servers section (left menu in admin panel) and add a Flyff server (default port for PN_ADBILL is 29000, used for in-game real time item transfers in the shop)
  • Keep in mind that if the CMS is on the same machine as the flyff server, the ip address has to be 127.0.0.1
Clone this wiki locally