Docs/Getting Started/Installation

Installation Guide

Standard Installation

  1. 01Download the resource from your purchase dashboard
  2. 02Extract the archive into your server's resources/ directory
  3. 03Add ensure resource-name to your server.cfg
  4. 04Configure the config.lua file (see Configuration section)
  5. 05Restart your server

File Structure

resource-name/
├── client/
│   ├── main.lua
│   └── modules/
├── server/
│   ├── main.lua
│   └── modules/
├── shared/
│   └── config.lua
├── sql/
│   └── install.sql
└── fxmanifest.lua

Database Setup

If the resource includes a sql/ folder, import the SQL file into your database before starting the resource:

sql
-- Run via your database management tool
SOURCE sql/install.sql;

Verify Installation

After starting the resource, check your server console for:

[ORB] Resource initialized successfully
[ORB] Version: X.X.X — Build: STABLE

If you see errors, refer to the Troubleshooting section or contact support.