Gridbase
Introduction

Getting Started

Your first steps with Gridbase scripts

Getting Started with Gridbase

Welcome! This guide will help you get up and running with Gridbase scripts quickly and efficiently.

Prerequisites

Before purchasing and installing any Gridbase script, ensure you have:

Server Requirements

  • A FiveM server (artifact 22443 recommended)
  • Lua 5.4 enabled in your server configuration
  • Database server (MySQL 8.0+ or MariaDB 10.6+ recommended)
  • Basic understanding of FiveM resource management

Framework

Most Gridbase scripts support multiple frameworks:

  • QBOX (Qbox-project)
  • ESX (Legacy and Extended)
  • OX (Overextended)
  • QB-Core (QBCore Framework)
  • Custom (With bridge customization)

Not sure which framework to choose? Check our Framework Selection Guide.

Common Dependencies

Many of our scripts require:

Purchase Process

  1. Browse Scripts: Visit our store to explore available products
  2. Purchase: Complete your purchase through Tebex
  3. Download: Access your purchase through Keymaster
  4. License Key: Your CFX account is automatically linked

Installation Steps

1. Extract the Resource

# Extract the downloaded archive to your resources folder
cd resources/[gridbase]
unzip gridbase_scriptname.zip

2. Install Dependencies

Ensure all required dependencies are installed and started before the resource:

-- In your server.cfg
ensure ox_lib
ensure oxmysql
-- Add other dependencies as needed

3. Database Setup

Most scripts include a database file:

# Import the SQL file
mysql -u username -p database_name < db.sql

4. Configure the Resource

Edit the configuration file (usually in shared/config.lua):

return {
    Framework = 'QBOX', -- Change to your framework
    -- Other configuration options...
}

5. Start the Resource

Add to your server.cfg:

ensure gridbase_scriptname

6. Restart Your Server

# Restart to apply changes
restart server

Getting Help

Documentation

Each script has comprehensive documentation covering:

  • Installation and setup
  • Configuration options
  • Exports and events
  • Integration guides
  • Troubleshooting

Support Channels

If you encounter issues:

  1. Check the troubleshooting guide
  2. Review the script-specific documentation
  3. Join our Discord
  4. Contact support with your purchase details

Next Steps