🖥️INSTALLATION
This is the official documentation and system overview for the Welcome Vehicle System by iZaap Studios — now available in our store.
🚀 How to Start the Script for Proper Operation
Download and install Oxmysql (required dependency): 👉 https://github.com/overextended/oxmysql
1. Add the following lines to your server.cfg
# iZaap Studios - Punishment System
ensure oxmysql
ensure izaap_welcome
🛠️ Insert the SQL and Configure Your Framework:
-- Tabla para registrar si un jugador ya reclamó su vehículo de bienvenida
CREATE TABLE IF NOT EXISTS `player_welcome_vehicle` (
`citizenid` VARCHAR(64) NOT NULL,
`claimed` BOOLEAN NOT NULL DEFAULT FALSE,
PRIMARY KEY (`citizenid`)
);
Last updated