Documentation
  • Weed Script
    • Installation
      • RedEM-RP
      • RSG
      • QR CORE
      • QBR CORE
      • VORP
      • SQL
    • Accessible code
  • Report System
    • Installation
    • Accessible code
  • SafeZone Creator
    • Installation
    • SQL File
    • Accessible code
  • Promo Codes Creator
    • Installation
    • Accessible code
  • Player Manager
    • Installation
    • Accessible code
Powered by GitBook
On this page
  1. SafeZone Creator

SQL File

SQL file for "Advanced Safe Zone Creator" script

Copy the following code and run the query in your phpMyAdmin/HeidiSQL/...:

CREATE TABLE IF NOT EXISTS `enpwr_safezones` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
  `data` LONGTEXT DEFAULT '{}' 'utf8mb3_general_ci',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
PreviousInstallationNextAccessible code

Last updated 1 year ago