Skip to content
Jav edited this page Dec 2, 2020 · 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';
  • Download php extensions : sqlsrv and pdo_sqlsrv to place the .dll in the extension folder of your php (ext).

Becarefull about the x64 and x86 part, if you need thread safe or not and make sure they are enabled in the php.ini (if you don't know take thread safe)

CMS

  • Download the CMS : https://azuriom.com/en/download
  • Unzip the files in your webserver then go to my-site.com/install.php
  • When it asks you which game to install click minecraft (don't worry we will change that later)
  • Follow the steps

Once the CMS is up and running we will edit the file .env If you don't see it in your web root folder make sure to show hidden files.

  • Find AZURIOM_GAME and change it to AZURIOM_GAME=flyff

Flyff plugin

  • Drop the flyff.zip inside a directory named 'flyff' in the plugins folder of your azuriom website root
  • Go to the panel admin and enable the plugin
  • if your website run under sql server you have nothing else to do

For those that installed the website with mysql or something else, you will have to go to the settings tab of the flyff plugin, don't click somewhere else it might error out (for now) in case type this in the url /admin/flyff/settings. then fill the form and save

  • Now go to the Servers section (left menu in admin panel) and add a Flyff server (default port for WorldServer is 29000, used for in-game real time item transfers in the shop)
Clone this wiki locally