Skip to main content

🚀 Getting Started

This guide helps you install MulderDev Scripts on your RedM server.

📋 Prerequisites

Before you begin, make sure you have the following:

Framework

Database

  • oxmysql - MySQL wrapper for FiveM/RedM

Server

  • A working RedM server with the above dependencies

📥 General Installation

Installation is similar for all scripts:

1. Download

Download the script and extract it.

2. Copy

Copy the script folder (e.g., mulderdev_beekeeping) to your resources folder.

server/
└── resources/
├── [vorp]/
│ ├── vorp_core/
│ └── vorp_inventory/
├── oxmysql/
└── mulderdev_beekeeping/ ← Copy here

3. Database

Execute the SQL file(s) that come with the script:

  • sql_install.sql or install.sql - Fresh installation
  • sql_migration.sql - When updating from older versions
Important

Execute the SQL commands only once! For updates, use the migration file.

4. Server.cfg

Add the script to your server.cfg:

ensure oxmysql
ensure vorp_core
ensure vorp_inventory

# MulderDev Scripts
ensure mulderdev_beekeeping
ensure mulderdev_shop
# ... more scripts

5. Configuration

Open the config.lua in the script folder and adjust the settings:

-- Example: Change language
Config.Locale = "en" -- "de" for German, "en" for English

6. Start Server

Restart your server or use:

refresh
ensure mulderdev_scriptname

🔧 Configuration

Each script has a config.lua file with all settings.

Common Settings

SettingDescription
Config.LocaleLanguage: "de" or "en"
Config.DebugDebug mode (if available)

⚠️ Troubleshooting

Script doesn't start

  1. Check the server console (F8) for error messages
  2. Make sure all dependencies are installed
  3. Check the order in server.cfg

Database errors

  1. Check if SQL commands were executed
  2. Check the oxmysql connection

Items missing

  1. Execute the SQL commands for items
  2. Check if item images are in vorp_inventory/html/img/items/

📚 Next Steps

Choose a script and follow the specific documentation: