· 8 years ago · Apr 02, 2018, 12:40 PM
1-- DYNAMIC SPAWNING SYSTEM
2-- Create databases for spawn group template, and spawn group membership
3-- Current flags
4-- 0x01 Legacy Spawn Mode (spawn using legacy spawn system)
5-- 0x02 Manual Spawn (don't automatically spawn, instead spawned by core as part of script)
6DROP TABLE IF EXISTS `spawn_group_template`;
7CREATE TABLE `spawn_group_template` (
8 `groupId` int(10) unsigned NOT NULL,
9 `groupName` varchar(100) NOT NULL,
10 `groupFlags` int(10) unsigned NOT NULL DEFAULT '0',
11 PRIMARY KEY (`groupId`)
12) ENGINE=MyISAM DEFAULT CHARSET=utf8;