15% OFF for new customers: NEWCUSTOMERBrowse resourcesPremium FiveM resources in ROXI styleView collectionInstant Tebex delivery after purchaseSetup docs15% OFF for new customers: NEWCUSTOMERBrowse resourcesPremium FiveM resources in ROXI styleView collectionInstant Tebex delivery after purchaseSetup docs15% OFF for new customers: NEWCUSTOMERBrowse resourcesPremium FiveM resources in ROXI styleView collectionInstant Tebex delivery after purchaseSetup docs15% OFF for new customers: NEWCUSTOMERBrowse resourcesPremium FiveM resources in ROXI styleView collectionInstant Tebex delivery after purchaseSetup docs
ROXI ScriptsROXI ScriptsClean FiveM Resources
HomeResourcesDocumentation
HomeResourcesDocumentation
ROXI Scripts

ROXI Scripts

0%

ROXI ScriptsROXI ScriptsClean FiveM Resources

Clean FiveM resources with modern UI, practical setup, and secure server-side logic.

Powered byTebex

Products

  • All Resources
  • ESX Resources
  • QBCore Resources
  • Qbox Resources

Resources

  • Documentation
  • Discord Support

Legal

  • Terms of Service
  • Privacy Policy
  • Refund Policy

© 2026 ROXI Scripts

ROXI Scripts is not affiliated with Rockstar Games, Take-Two Interactive, or Cfx.re.

Currency:
/
RoxiReports
  • Overview
  • Installation
  • Configuration
  • SQL & Tables
  • Discord Bridge
  • Workflow
RoxiCrosshairs
  • Overview
  • Installation
  • Configuration
  • SQL & Tables
  • Exports
DocsSQL & Tables
RoxiCrosshairs

SQL & Tables

Database tables used by RoxiCrosshairs and manual install notes.

RoxiCrosshairs SQL

RoxiCrosshairs stores normalized JSON configs, favorite links, and active player preferences. The full schema is included in sql/schema.sql.

Tables

  • roxi_crosshairs - saved crosshair configs, labels, owners, and public state.
  • roxi_crosshair_favorites - saved favorites when community favorites are enabled.
  • roxi_crosshair_preferences - active crosshair selection per configured owner key.

Schema example

CREATE TABLE IF NOT EXISTS `roxi_crosshairs` (
  `id` int NOT NULL AUTO_INCREMENT,
  `config` longtext NOT NULL,
  `label` varchar(80) NOT NULL DEFAULT 'My Crosshair',
  `owner_identifier` varchar(80) NOT NULL,
  `owner_name` varchar(80) NOT NULL,
  `is_public` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `idx_owner` (`owner_identifier`),
  KEY `idx_public` (`is_public`)
);

Manual install

-- Import this file:
-- RoxiCrosshairs/sql/schema.sql

Ownership note

The owner_identifier column stores whichever owner key your config chooses. With license, it stores a license-based key. With citizenid, it stores a citizenid-based key.

Related Docs

  • Overview
  • Installation
  • Configuration

Related Resources

  • Browse all resources
  • Ask in Discord
PreviousConfigurationNextExports
Need help?Join Discord