Biyei Store
  • โ„น๏ธInformation
    • ๐Ÿ‘‹Welcome
    • ๐Ÿ”FiveM Asset Escrow System
  • ๐ŸงพScripts
    • ๐Ÿ”ซVip Weapons
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • ๐Ÿ†Arenas PvP
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โฌ†๏ธExports
      • ๐ŸŽ’Statesbags
      • โš’๏ธCommon issues
    • ๐Ÿ”ซSkin Changer
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • โœ…SafeZones
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • ๐ŸŽ’Statebags
      • โš’๏ธCommon issues
    • ๐Ÿ“›Red Zones
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • โญPartner Code System
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • ๐Ÿ“Announcement System
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • ๐Ÿช™Coins + Reward System
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • ๐ŸšจDefcon Alert
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • ๐ŸจDepartment
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • ๐Ÿ“ฆCustom Box Creator
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • ๐Ÿ‘ทโ€โ™€๏ธMultipleJobs
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
  • ๐ŸŒŒOld Scripts
    • ๐Ÿš˜xVehicleRent
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • ๐Ÿ‘ทโ€โ™€๏ธxMultipleJobs
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • โš›๏ธxStorm
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • โฌ†๏ธxLift
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • ๐Ÿ”ซhPaintball
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
    • ๐Ÿš—hVehicleShop
      • ๐Ÿ’ฟInstallation
      • โš™๏ธConfiguration
      • โš’๏ธCommon issues
Powered by GitBook
On this page
  • โ€ข STEP 1: DEPENDENCIES
  • โ€ข STEP 2: INSTALL SQL
  • โ€ข STEP 3: SET DISCORD BOT TOKEN
  • โ€ข STEP 4: START ORDER
  1. Old Scripts
  2. hPaintball

Installation

Discover how to install your script.

PrevioushPaintballNextConfiguration

Last updated 1 year ago

โ€ข STEP 1: DEPENDENCIES

Make sure you have this resources installed in your server!

  1. Support ESX, QB-CORE or Custom Framework

  2. Need download and ensure

โ€ข STEP 2: INSTALL SQL

Install the SQL files in the [Installation] folder.

SQL for ESX:

ALTER TABLE `users` ADD COLUMN `is_inPaintball` INT NULL DEFAULT 0;
ALTER TABLE `users` ADD COLUMN `last_paintball_loc` LONGTEXT NULL DEFAULT NULL;

CREATE TABLE IF NOT EXISTS `biyei_hpaintball_stats` (
  `identifier` varchar(50) NOT NULL DEFAULT 'AUTO_INCREMENT',
  `name` varchar(80) NOT NULL DEFAULT '',
  `kills` int(11) NOT NULL,
  `wins` int(11) NOT NULL,
  `deaths` int(11) NOT NULL,
  `avatar` longtext NOT NULL,
  PRIMARY KEY (`identifier`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

SQL for QBCore:

ALTER TABLE `players` ADD COLUMN `is_inPaintball` INT NULL DEFAULT 0;
ALTER TABLE `players` ADD COLUMN `last_paintball_loc` LONGTEXT NULL DEFAULT NULL;

CREATE TABLE IF NOT EXISTS `biyei_hpaintball_stats` (
  `identifier` varchar(50) NOT NULL DEFAULT 'AUTO_INCREMENT',
  `name` varchar(80) NOT NULL DEFAULT '',
  `kills` int(11) NOT NULL,
  `wins` int(11) NOT NULL,
  `deaths` int(11) NOT NULL,
  `avatar` longtext NOT NULL,
  PRIMARY KEY (`identifier`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

โ€ข STEP 3: SET DISCORD BOT TOKEN

You can change it in line #1

shared/sv_editable.lua

BotToken = '' -- It is important to put a discord token to show the pictures.

โ€ข STEP 4: START ORDER

Ensure the resources in this order.

ensure xsound
ensure biyei_hpaintball

You will need to put a on our resource to load the discord images in the players stats.

xsound
discord token bot
๐ŸŒŒ
๐Ÿ”ซ
๐Ÿ’ฟ
Page cover image