Skip to content

EscaDevs/esca-allowlist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

esca-allowlist

To open the menu /allowlist

             ESCA - Allowlist v1.0
- Allowlist in game panel.
- 3 separate authorization options for manager accounts.
- Quickly add allowlist.
- See Allowlist list.
- Allowlist deletion.
- Search option in Allowlist.

Welcome to ESCA DEVS, Free and Paid scripts. Here you can find the best for your server. If you have any problems or suggestions. We are doing raffles on discord! Don't forgot to join our discord.

DISCORD

IMAGE

image

image

image

SQL

CREATE TABLE IF NOT EXISTS `allowlist` (
  `hex` varchar(50) DEFAULT NULL,
  `nickname` varchar(50) DEFAULT NULL,
  `adminname` varchar(50) DEFAULT NULL,
  `lastonline` varchar(50) DEFAULT 'Unknown'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;


CREATE TABLE IF NOT EXISTS `allowlist_admin` (
  `username` varchar(50) DEFAULT NULL,
  `password` varchar(50) DEFAULT NULL,
  `admin_name` varchar(50) DEFAULT NULL,
  `auth` enum('added','remove','all') DEFAULT 'added'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;


INSERT INTO `allowlist_admin` (`username`, `password`, `admin_name`, `auth`) VALUES
  ('owner', 'owner', 'Owner', 'all'),
  ('admin', 'admin', 'Admin', 'added');

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors