🖥️INSTALLATION
Here you’ll find the full documentation to help you install and configure our VIP Weapons System from the iZaap Studios store.

🚀 How to Start the Script for Proper Operation
Download and install MenuV (required dependency): 👉 https://github.com/ThymonA/menuv
Download and install Oxmysql (required dependency): 👉 https://github.com/overextended/oxmysql
Add the following lines to your
server.cfg
# iZaap Studios - VIP Weapons System
ensure oxmysql
ensure menuv
ensure izaap_vipweapons🛠️ Insert the SQL and Configure Your Framework:
CREATE TABLE IF NOT EXISTS izaap_vip_settings (
id INT NOT NULL DEFAULT 1 PRIMARY KEY,
webhook_url VARCHAR(500) DEFAULT NULL
);
INSERT IGNORE INTO izaap_vip_settings (id, webhook_url) VALUES (1, '');
CREATE TABLE IF NOT EXISTS izaap_weapons_templates (
id INT AUTO_INCREMENT PRIMARY KEY,
label VARCHAR(100) NOT NULL,
weapon_hash VARCHAR(100) NOT NULL,
components LONGTEXT DEFAULT NULL
);
CREATE TABLE IF NOT EXISTS izaap_vip_weapons (
id INT AUTO_INCREMENT PRIMARY KEY,
identifier VARCHAR(100) NOT NULL,
weapon_hash VARCHAR(100) NOT NULL,
components LONGTEXT DEFAULT NULL
);
IzaapConfig = {}
IzaapConfig.Framework = "qb" --ESX o QB
IzaapConfig.VIPWeaponsCommand = "menudearmasvip"
IzaapConfig.VIPWeaponsKey = "F10"
IzaapConfig.AdminCommand = "panel"
IzaapConfig.Language = "en" --en o es
if Config.Framework == 'qb' then
QBCore = exports['qb-core']:GetCoreObject()
elseif Config.Framework == 'esx' then
ESX = exports["es_extended"]:getSharedObject()
else
print '^1[^6IIZAAP_VIP_WEAPONS^1] ^2Framework no encontrado, ingrese esx o qb^0'
return
end
IzaapConfig = {}
IzaapConfig.Framework = "esx" --ESX o QB
IzaapConfig.VIPWeaponsCommand = "menudearmasvip"
IzaapConfig.VIPWeaponsKey = "F10"
IzaapConfig.AdminCommand = "panel"
IzaapConfig.Language = "en" --en o es
if Config.Framework == 'qb' then
QBCore = exports['qb-core']:GetCoreObject()
elseif Config.Framework == 'esx' then
ESX = exports["es_extended"]:getSharedObject()
else
print '^1[^6IIZAAP_VIP_WEAPONS^1] ^2Framework no encontrado, ingrese esx o qb^0'
return
end
📦 If You Use ox_inventory, Add This to Your server.cfg:
setr inventory:weaponmismatch false
Last updated
