Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE `groups` (
- `id` int(11) NOT NULL,
- `name` varchar(255) NOT NULL COMMENT 'group name',
- `flags` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
- `customflags` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
- `access` int(11) NOT NULL,
- `violationaccess` int(11) NOT NULL,
- `maxdepotitems` int(11) NOT NULL,
- `maxviplist` int(11) NOT NULL,
- `outfit` int(11) NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Zrzut danych tabeli `groups`
- --
- INSERT INTO `groups` (`id`, `name`, `flags`, `customflags`, `access`, `violationaccess`, `maxdepotitems`, `maxviplist`, `outfit`) VALUES
- (1, 'Player', 0, 0, 0, 0, 0, 0, 0),
- (2, 'Tutor', 16809984, 524291, 1, 0, 0, 0, 0),
- (3, 'Senior Tutor', 68736352256, 524303, 2, 1, 0, 0, 0),
- (4, 'Gamemaster', 510024081247, 4189375, 3, 3, 4000, 200, 75),
- (5, 'Community Manager', 542239465466, 4189695, 4, 4, 6000, 300, 266),
- (6, 'God', 546534563834, 4194303, 5, 4, 8000, 400, 302);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement