Pixel Scripts Documentation
  • 👋Introduction
  • 🔧Admin Menu
    • 🖥️Installation
    • 🖇️Dependencies
    • 📖Configuration
  • 🔫Crafting
    • 🖥️Installation
    • 🖇️Dependencies
    • 📖Configuration
Powered by GitBook
On this page
  1. Admin Menu

Installation

How to install the script?

  • Insert the resource to the resources folder

  • Run the SQL's

CREATE TABLE IF NOT EXISTS `px_adminmenu_ban_player` (
  `identifier` longtext DEFAULT NULL CHECK (json_valid(`identifier`)),
  `reason` varchar(50) DEFAULT NULL,
  `staffer` varchar(50) DEFAULT NULL,
  `date` varchar(50) DEFAULT NULL,
  `time` varchar(50) DEFAULT NULL,
  `idban` varchar(50) DEFAULT NULL,
  `banned` int(11) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  • Configure the config in the path shared/config.lua

  • Configure the language in the path shared/language.lua

  • Start the resource in your server.cfg file by writing: ensure px_adminmenu

  • For safety, the server remains

Note: Don't rename the resource otherwise it would not work

PreviousAdmin MenuNextDependencies

Last updated 1 year ago

🔧
🖥️