FLYFF GURU

FlyFF Server Tutorials

Every step of running a FlyFF Private Server, broken into focused video tutorials — from installing SQL Server to compiling the v19 source code and using the bundled editor tools. Pick a topic below and follow along.

Beginner15 minutes

How to Make Your Own FlyFF Private Server (Newest v19 Build)

A complete walkthrough for launching your own FlyFF Private Server using the Ultimate-Build v19 source. The fastest path from a fresh Windows machine to a running game server with logged-in characters.

Intermediate25 minutes

How to Compile the FlyFF Source Code

Walk through compiling the FlyFF source code in Visual Studio, resolving common build errors, and producing the server executables yourself instead of using the pre-compiled binaries.

Beginner20 minutes

How to Install SQL Server for Your FlyFF Server

Set up SQL Server with the right authentication mode, attach the FlyFF databases, and verify the connection from your server processes — the most common point where new FlyFF server owners get stuck.

Beginner18 minutes

FlyFF Server Tools Overview & Usage

A guided tour of the editor tools shipped with the FlyFF v19 bundle: the character simulator, drop editor, NPC dialogue editor, monster property editor, item property editor, and the world map / dungeon editor.

Beginner2 minutes

How to Create an Admin Account on Your FlyFF Server

Promote a character to administrator level by editing config.ini in your server program folder. The fastest way to grant yourself in-game GM commands.

Beginner1 minute

How to Switch FlyFF Theme: Classic vs. Gold

Toggle between the Classic FlyFF UI and the Gold theme by editing one line in your client config. No client rebuild required.

Beginner8 minutes

How to Add Starter Items, Weapons & Fashion to FlyFF Characters

Give every newly-created character a custom starting inventory — weapons, helmets, fashion sets — by editing JobItem.inc in the resource folder.

Intermediate12 minutes

How to Edit FlyFF NPC Shop Items & Prices

Customize what each NPC sells, organize items into shop tabs, and set custom prices. Covers the differences between v16 (price in character.inc) and v19 (price in spec_item).

Intermediate15 minutes

How to Edit FlyFF Monster Drops, HP, and Attack

Change drop tables, drop chances, refine levels, and stats for any monster, giant, or boss in FlyFF — including how the cryptic propmoverEx drop arguments work.

Beginner5 minutes

How to Edit FlyFF Server Rates: EXP, Gold, and Drop

Set your server's EXP rate, item drop rate, piece drop rate, and gold (penya) rate by editing one block in Event.lua. Takes effect on next server restart.

Beginner5 minutes

How to Edit FlyFF Level-Up Rewards

Give players free items at specific levels — perfect for newbie boost packages or milestone rewards. Configured in Event.lua via SetLevelUpGift.

Intermediate12 minutes

How to Edit FlyFF Armor, Jewelry, and Weapon Stats

Customize how items behave: jewelry effects in accessory.inc, weapon and CS attributes in spec_item, and full armor set bonuses in propItemEtc.inc.

Beginner4 minutes

How to Add Coliseum Access to a FlyFF NPC

Wire up the Coliseum entry menu to any NPC by adding the right AddMenu calls in character.inc — including the two entry tier menus (COLOENTER01 and COLOENTER02).

Intermediate10 minutes

How to Fix the +10 Aura SFX in FlyFF

Restore the original +10 aura visual effect by disabling the new SFX flag in the source code and replacing the affected SFX files.

Beginner20 minutes

How to Manage Your FlyFF Website Through the Admin Panel

Add donate-store items, manage donate points, post news with images, register download links, and tune server rate values displayed on the website — all through the bundled admin panel.

Intermediate5 minutes

How to Fix the FlyFF Website Player Count

A broken stored procedure is the most common cause of the website player count showing zero or stuck values. This guide replaces uspChangeMultiServer with the corrected version.