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
- Browse Scripts: Visit our store to explore available products
- Purchase: Complete your purchase through Tebex
- Download: Access your purchase through Keymaster
- 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.zip2. 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 needed3. Database Setup
Most scripts include a database file:
# Import the SQL file
mysql -u username -p database_name < db.sql4. 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_scriptname6. Restart Your Server
# Restart to apply changes
restart serverGetting 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:
- Check the troubleshooting guide
- Review the script-specific documentation
- Join our Discord
- Contact support with your purchase details