Skip to content
Jav edited this page Oct 12, 2021 · 10 revisions

Database

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)
Clone this wiki locally