LaunchKit · 2026
Back to Skills

fivem-dev

FiveM RP server engineering for QBCore, ESX.

0
1.7k downloads
by @dktrn9ne

Setup & Installation

openclaw skills install @dktrn9ne/fivem-dev

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install fivem-dev

What This Skill Does

Covers FiveM roleplay server development across QBCore, ESX, and QBox frameworks. Handles Lua scripting, resource debugging, MLO creation and optimization, performance profiling, and server configuration. Includes client/server separation, event security, and database integration with oxmysql.

Covers the full stack of FiveM development in one skill, from Lua logic and framework internals to MLO pipelines and live server tuning, rather than requiring separate generalist coding and game-modding context.

When to use it

  • Debugging a broken QBCore inventory resource
  • Migrating an ESX job system to QBox
  • Profiling and fixing client-side resmon spikes
  • Writing a new gang/duty system from scratch
  • Setting up fxmanifest.lua and config.lua for a new resource

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: my QBCore inventory resource is causing server resmon spikes every 30 seconds

AGENT
  1. 1Inspect the resource's server-side Lua for unthrottled loops or tick callbacks
  2. 2Identify event spam or unindexed database queries in the persistence layer
  3. 3Propose targeted fixes: loop throttling, query batching, or state bag replacement
  4. 4Validate fxmanifest.lua dependency order and shared object lifecycle
  5. 5Provide corrected code with comments explaining each change
OUTPUT

Refactored resource with documented performance fixes and stable resmon readings