61 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			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;
 | |
| 
 | |
| INSERT INTO `random_spawn_loc` VALUES
 | |
| -- Aged ExAdventurer quest
 | |
| (136,89856,-7248,-3034,0),
 | |
| (136,79232,-5904,-2864,0),
 | |
| (136,77584,-1120,-3626,0),
 | |
| (136,96640,-1296,-3648,0),
 | |
| (136,94416,-10256,-3245,0),
 | |
| 
 | |
| -- Guards on kamael island
 | |
| (137,-73271,53065,-3696,59621),
 | |
| (137,-77006,45317,-2752,19656),
 | |
| (137,-77375,44929,-2720,13828),
 | |
| (137,-80400,40591,-2824,39386),
 | |
| (137,-81005,39627,-2840,30125),
 | |
| (137,-82545,55187,-2848,5047),
 | |
| (137,-83304,58078,-2768,44634),
 | |
| (137,-83539,45978,-2832,1972),
 | |
| (137,-84169,39571,-2448,34277),
 | |
| (137,-92675,56763,-2840,18707),
 | |
| (137,-92931,55027,-2592,63304),
 | |
| (138,-103659,50494,-2000,40765),
 | |
| (138,-107335,48421,-1416,25399),
 | |
| (138,-107347,47372,-1464,59666),
 | |
| (138,-107788,45439,-1584,28523),
 | |
| (138,-109520,47211,-1288,44919),
 | |
| (138,-109520,48888,-1208,49863),
 | |
| (139,-116128,50592,-696,16859),
 | |
| (139,-116225,50135,-744,10002),
 | |
| (139,-116556,50016,-808,5365),
 | |
| (139,-116619,49487,-872,21965),
 | |
| (139,-117008,50954,-728,55329),
 | |
| (139,-117055,49577,-896,3880),
 | |
| (139,-117080,49690,-880,63806),
 | |
| (139,-117606,49650,-920,17813),
 | |
| (139,-117779,50125,-920,47382),
 | |
| (139,-118000,50105,-968,27540),
 | |
| (139,-118097,49912,-936,11260),
 | |
| (139,-120378,37949,1408,4430),
 | |
| (140,-121910,61003,-2368,64230),
 | |
| (140,-122440,55179,-1608,56123),
 | |
| (140,-122475,54840,-1560,5826),
 | |
| (140,-122928,43524,888,44634),
 | |
| (140,-123215,44319,928,30481),
 | |
| (140,-123401,61164,-2656,47517),
 | |
| (140,-123800,60127,-2632,56043),
 | |
| (140,-123943,60348,-2632,22373),
 | |
| (141,-124298,74848,-2800,35875),
 | |
| (141,-124355,71875,-2800,58069),
 | |
| (141,-124356,77403,-3392,58154),
 | |
| (141,-124608,74480,-2704,57957),
 | |
| (141,-126495,61819,-2704,33561); | 
