🖥️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
);
📦 If You Use ox_inventory
, Add This to Your server.cfg
:
setr inventory:weaponmismatch false
Last updated