10 lines
		
	
	
		
			346 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			346 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| DROP TABLE IF EXISTS `random_spawn_loc`;
 | |
| CREATE TABLE `random_spawn_loc` (
 | |
|   `groupId` tinyint(3) unsigned NOT NULL,
 | |
|   `x` mediumint(6) NOT NULL,
 | |
|   `y` mediumint(6) NOT NULL,
 | |
|   `z` mediumint(6) NOT NULL,
 | |
|   `heading` mediumint(6) NOT NULL DEFAULT '0',
 | |
|   PRIMARY KEY (`groupId`,`x`,`y`,`z`,`heading`)
 | |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 | 
