ls sql refactor
This commit is contained in:
parent
49d6d0c831
commit
b8fd6101ef
@ -1,77 +1,12 @@
|
||||
-- Table: `appearances`
|
||||
USE `eq2emu`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
DROP TABLE IF EXISTS appearances;
|
||||
CREATE TABLE appearances (
|
||||
id INTEGER PRIMARY KEY,
|
||||
appearance_id INTEGER NOT NULL UNIQUE,
|
||||
name TEXT NOT NULL,
|
||||
min_client_version INTEGER NOT NULL DEFAULT 0
|
||||
);
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2emu
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `appearances`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `appearances`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `appearances` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`appearance_id` int(10) unsigned NOT NULL,
|
||||
`name` varchar(250) NOT NULL,
|
||||
`min_client_version` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `AppIDX` (`appearance_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=37005 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2emu
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `appearances`
|
||||
--
|
||||
|
||||
LOCK TABLES `appearances` WRITE;
|
||||
/*!40000 ALTER TABLE `appearances` DISABLE KEYS */;
|
||||
INSERT INTO `appearances` VALUES
|
||||
INSERT INTO appearances VALUES
|
||||
(1,1,'staticobjects/encounter_chest',283),
|
||||
(2,2,'staticobjects/everling_portrait',283),
|
||||
(3,3,'staticobjects/bed_single',283),
|
||||
@ -6393,7 +6328,7 @@ INSERT INTO `appearances` VALUES
|
||||
(6319,7445,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_the_truth_of_marr',843),
|
||||
(6320,7446,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_wrath_of_nature',843),
|
||||
(6321,7447,'accessories/wieldable_items/weapons/exp04/_epic/bow/exp04_bow_eagles_talon',843),
|
||||
(6322,7448,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_gorynn\'s_fist',843),
|
||||
(6322,7448,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_gorynn''s_fist',843),
|
||||
(6323,7449,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_hand_of_serenity',843),
|
||||
(6324,7450,'accessories/wieldable_items/weapons/exp04/_epic/pike/exp04_pike_dream_scorcher',843),
|
||||
(6325,7451,'accessories/wieldable_items/weapons/exp04/_epic/1h_crush/exp04_1hc_mirage_star',843),
|
||||
@ -8148,7 +8083,7 @@ INSERT INTO `appearances` VALUES
|
||||
(8074,8028,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_the_truth_of_marr_raid',1008),
|
||||
(8075,8029,'accessories/wieldable_items/weapons/exp04/_epic/1h_sword/exp04_1hs_wrath_of_nature_raid',1008),
|
||||
(8076,8030,'accessories/wieldable_items/weapons/exp04/_epic/bow/exp04_bow_eagles_talon_raid',1008),
|
||||
(8077,8031,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_gorynn\'s_fist_raid',1008),
|
||||
(8077,8031,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_gorynn''s_fist_raid',1008),
|
||||
(8078,8032,'accessories/wieldable_items/weapons/exp04/_epic/fist/exp04_fist_hand_of_serenity_raid',1008),
|
||||
(8079,8033,'accessories/wieldable_items/weapons/exp04/_epic/pike/exp04_pike_dream_scorcher_raid',1008),
|
||||
(8080,8034,'staticobjects/rugs/dpo_char_rug02',1008),
|
||||
@ -9578,11 +9513,11 @@ INSERT INTO `appearances` VALUES
|
||||
(9504,9492,'_exp05/zones/objects/exp05_dun_guk_lower/switch/guk_lower_switch01_base_dpo',1008),
|
||||
(9505,9493,'_exp05/zones/objects/exp05_dun_guk_lower/switch/guk_lower_switch01_shaft_dpo',1008),
|
||||
(9506,9494,'_exp05/zones/objects/exp05_rgn_innothule/boat_platform_innothule',1008),
|
||||
(9507,9495,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor\'sha_atrebe',1008),
|
||||
(9508,9496,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor\'sha_fighter',1008),
|
||||
(9509,9497,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor\'sha_mage',1008),
|
||||
(9510,9498,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor\'sha_priest',1008),
|
||||
(9511,9499,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor\'sha_scout',1008),
|
||||
(9507,9495,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_atrebe',1008),
|
||||
(9508,9496,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_fighter',1008),
|
||||
(9509,9497,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_mage',1008),
|
||||
(9510,9498,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_priest',1008),
|
||||
(9511,9499,'accessories/wearable_items/cloak/exp05/cloak_sq_01_kor''sha_scout',1008),
|
||||
(9512,9500,'_exp05/zones/objects/exp05_dun_nuroga/drogan_crystal',1008),
|
||||
(9513,9501,'accessories/wearable_items/sallet_helmet/galvanized/head',1008),
|
||||
(9514,9502,'accessories/wearable_items/vanguard/uncommon/high/pauldron02_vanguard_ridged_left',1008),
|
||||
@ -36889,17 +36824,3 @@ INSERT INTO `appearances` VALUES
|
||||
(37002,36920,'_exp17/objects/exp17_rgn_savage_weald/saw_grimcave_door_dpo',67804),
|
||||
(37003,36921,'_exp17/objects/vex_thal/shissar_staff_statue_01',67804),
|
||||
(37004,36922,'_exp17/objects/vex_thal/shissar_sword_statue_01',67804);
|
||||
/*!40000 ALTER TABLE `appearances` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
@ -1,79 +1,15 @@
|
||||
-- Table: `opcodes`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
DROP TABLE IF EXISTS opcodes;
|
||||
CREATE TABLE opcodes (
|
||||
id INTEGER PRIMARY KEY,
|
||||
version_range1 INTEGER NOT NULL DEFAULT 0,
|
||||
version_range2 INTEGER NOT NULL DEFAULT 0,
|
||||
name TEXT NOT NULL DEFAULT '',
|
||||
opcode INTEGER NOT NULL DEFAULT 0,
|
||||
table_data_version INTEGER NOT NULL DEFAULT 1,
|
||||
UNIQUE(version_range1, name, version_range2)
|
||||
);
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `opcodes`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `opcodes`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `opcodes` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`version_range1` smallint(5) unsigned NOT NULL DEFAULT 0,
|
||||
`version_range2` smallint(5) unsigned NOT NULL DEFAULT 0,
|
||||
`name` varchar(255) NOT NULL DEFAULT '',
|
||||
`opcode` smallint(5) unsigned NOT NULL DEFAULT 0,
|
||||
`table_data_version` smallint(5) unsigned NOT NULL DEFAULT 1,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `newindex` (`version_range1`,`name`,`version_range2`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=30943 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `opcodes`
|
||||
--
|
||||
|
||||
LOCK TABLES `opcodes` WRITE;
|
||||
/*!40000 ALTER TABLE `opcodes` DISABLE KEYS */;
|
||||
INSERT INTO `opcodes` VALUES
|
||||
INSERT INTO opcodes VALUES
|
||||
(1,547,838,'OP_LoginRequestMsg',0,1),
|
||||
(2,547,838,'OP_LoginByNumRequestMsg',1,1),
|
||||
(3,547,838,'OP_WSLoginRequestMsg',2,1),
|
||||
@ -21936,17 +21872,3 @@ INSERT INTO `opcodes` VALUES
|
||||
(30299,540,546,'OP_EqGuildBankEventActionCmd',492,1),
|
||||
(30300,540,546,'OP_EqGuildBankExamineInfoCmd',493,1),
|
||||
(30301,540,546,'OP_EqHearSpellNoLandCmd',494,1);
|
||||
/*!40000 ALTER TABLE `opcodes` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
@ -1,76 +1,11 @@
|
||||
-- Table: `visual_states`
|
||||
USE `eq2emu`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
DROP TABLE IF EXISTS visual_states;
|
||||
CREATE TABLE visual_states (
|
||||
id INTEGER PRIMARY KEY,
|
||||
visual_state_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
|
||||
name TEXT NOT NULL DEFAULT 'None',
|
||||
min_client_version INTEGER NOT NULL DEFAULT 0
|
||||
);
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2emu
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `visual_states`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `visual_states`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `visual_states` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`visual_state_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`name` varchar(250) NOT NULL DEFAULT 'None',
|
||||
`min_client_version` smallint(5) unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `VisIDX` (`visual_state_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=21671 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:48
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2emu
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `visual_states`
|
||||
--
|
||||
|
||||
LOCK TABLES `visual_states` WRITE;
|
||||
/*!40000 ALTER TABLE `visual_states` DISABLE KEYS */;
|
||||
INSERT INTO `visual_states` VALUES
|
||||
(1,16,'1h_sword_idle',0),
|
||||
(2,50,'2h_sword_enter',0),
|
||||
@ -21742,17 +21677,3 @@ INSERT INTO `visual_states` VALUES
|
||||
(21668,65408,'kill_design_zone_blast_fx',57000),
|
||||
(21669,65462,'kill_vulakk_breathe_fire',57000),
|
||||
(21670,65469,'kill_cast_heal_ball_gather',57000);
|
||||
/*!40000 ALTER TABLE `visual_states` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:48
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
7
database/common/web_users.sql
Normal file
7
database/common/web_users.sql
Normal file
@ -0,0 +1,7 @@
|
||||
DROP TABLE IF EXISTS web_users;
|
||||
CREATE TABLE web_users (
|
||||
id INTEGER PRIMARY KEY,
|
||||
username TEXT NOT NULL DEFAULT '',
|
||||
password TEXT NOT NULL DEFAULT '',
|
||||
status INTEGER NOT NULL DEFAULT 0
|
||||
);
|
@ -1,116 +1,51 @@
|
||||
-- Table: `zones`
|
||||
USE `eq2emu`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
DROP TABLE IF EXISTS zones;
|
||||
CREATE TABLE zones (
|
||||
id INTEGER PRIMARY KEY,
|
||||
expansion_id INTEGER NOT NULL DEFAULT 0,
|
||||
name TEXT NOT NULL DEFAULT '' UNIQUE,
|
||||
file TEXT NOT NULL DEFAULT '',
|
||||
description TEXT NOT NULL DEFAULT 'Describe me in the zones table! :)',
|
||||
safe_x REAL NOT NULL DEFAULT 0,
|
||||
safe_y REAL NOT NULL DEFAULT 0,
|
||||
safe_z REAL NOT NULL DEFAULT 0,
|
||||
safe_heading REAL NOT NULL DEFAULT 0,
|
||||
underworld REAL NOT NULL DEFAULT -1000000,
|
||||
xp_modifier REAL NOT NULL DEFAULT 0,
|
||||
min_recommended INTEGER NOT NULL DEFAULT 0,
|
||||
max_recommended INTEGER NOT NULL DEFAULT 0,
|
||||
zone_type TEXT DEFAULT '',
|
||||
always_loaded INTEGER NOT NULL DEFAULT 0,
|
||||
city_zone INTEGER NOT NULL DEFAULT 0,
|
||||
weather_allowed INTEGER NOT NULL DEFAULT 0,
|
||||
min_status INTEGER NOT NULL DEFAULT 0,
|
||||
min_level INTEGER NOT NULL DEFAULT 0,
|
||||
max_level INTEGER NOT NULL DEFAULT 0,
|
||||
start_zone INTEGER NOT NULL DEFAULT 0,
|
||||
instance_type TEXT NOT NULL DEFAULT 'NONE',
|
||||
default_reenter_time INTEGER NOT NULL DEFAULT 0,
|
||||
default_reset_time INTEGER NOT NULL DEFAULT 0,
|
||||
default_lockout_time INTEGER NOT NULL DEFAULT 0,
|
||||
force_group_to_zone INTEGER NOT NULL DEFAULT 0,
|
||||
lua_script TEXT DEFAULT '',
|
||||
shutdown_timer INTEGER NOT NULL DEFAULT 300,
|
||||
zone_motd TEXT DEFAULT '',
|
||||
ruleset_id INTEGER NOT NULL DEFAULT 0,
|
||||
login_checksum INTEGER NOT NULL DEFAULT 0,
|
||||
sky_file TEXT NOT NULL DEFAULT '',
|
||||
can_bind INTEGER DEFAULT 0,
|
||||
can_gate INTEGER DEFAULT 1,
|
||||
can_evac INTEGER DEFAULT 1,
|
||||
peer_priority INTEGER NOT NULL DEFAULT 0
|
||||
);
|
||||
CREATE INDEX idx_zones_description ON zones(description);
|
||||
CREATE INDEX idx_zones_file ON zones(file);
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2emu
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `zones`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `zones`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `zones` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`expansion_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`name` varchar(64) NOT NULL DEFAULT '',
|
||||
`file` varchar(64) NOT NULL DEFAULT '',
|
||||
`description` varchar(255) NOT NULL DEFAULT 'Describe me in the zones table! :)',
|
||||
`safe_x` float NOT NULL DEFAULT 0,
|
||||
`safe_y` float NOT NULL DEFAULT 0,
|
||||
`safe_z` float NOT NULL DEFAULT 0,
|
||||
`safe_heading` float NOT NULL DEFAULT 0,
|
||||
`underworld` float NOT NULL DEFAULT -1000000,
|
||||
`xp_modifier` float NOT NULL DEFAULT 0,
|
||||
`min_recommended` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`max_recommended` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`zone_type` varchar(64) DEFAULT '',
|
||||
`always_loaded` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`city_zone` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`weather_allowed` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`min_status` int(10) NOT NULL DEFAULT 0,
|
||||
`min_level` int(10) NOT NULL DEFAULT 0,
|
||||
`max_level` int(10) NOT NULL DEFAULT 0,
|
||||
`start_zone` tinyint(3) NOT NULL DEFAULT 0,
|
||||
`instance_type` enum('NONE','GROUP_LOCKOUT_INSTANCE','GROUP_PERSIST_INSTANCE','RAID_LOCKOUT_INSTANCE','RAID_PERSIST_INSTANCE','SOLO_LOCKOUT_INSTANCE','SOLO_PERSIST_INSTANCE','TRADESKILL_INSTANCE','PUBLIC_INSTANCE','PERSONAL_HOUSE_INSTANCE','GUILD_HOUSE_INSTANCE','QUEST_INSTANCE') NOT NULL DEFAULT 'NONE',
|
||||
`default_reenter_time` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`default_reset_time` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`default_lockout_time` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`force_group_to_zone` smallint(5) unsigned NOT NULL DEFAULT 0,
|
||||
`lua_script` varchar(255) DEFAULT '',
|
||||
`shutdown_timer` int(10) unsigned NOT NULL DEFAULT 300 COMMENT 'In seconds',
|
||||
`zone_motd` varchar(250) DEFAULT '',
|
||||
`ruleset_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`login_checksum` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`sky_file` varchar(64) NOT NULL DEFAULT '',
|
||||
`can_bind` int(11) DEFAULT 0,
|
||||
`can_gate` int(11) DEFAULT 1,
|
||||
`can_evac` int(11) DEFAULT 1,
|
||||
`peer_priority` smallint(5) unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `ZoneNameIDX` (`name`),
|
||||
KEY `ZoneDescIDX` (`description`),
|
||||
KEY `ZoneFileIDX` (`file`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=854 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:48
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2emu
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `zones`
|
||||
--
|
||||
|
||||
LOCK TABLES `zones` WRITE;
|
||||
/*!40000 ALTER TABLE `zones` DISABLE KEYS */;
|
||||
INSERT INTO `zones` VALUES
|
||||
(1,30,'GMHall','qey_guildhall_tier3','Game Masters Hall',665.435,-35.8975,1485.44,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,1,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'ZoneScripts/GMHall.lua',300,'',0,1486945888,'',0,1,1,0),
|
||||
(2,0,'Splitpaw1','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Alone in the Dark',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2642218879,'',0,1,1,0),
|
||||
(3,0,'SplitpawDen','adv02_dun_sundered_splitpaw_hub','Sundered Splitpaw: Splitpaw Den ',7.13,-69.56,-311.04,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2078270933,'',0,1,1,0),
|
||||
(4,0,'CrustaceanCave','adv04_crab_cave','Cavern of the Crustaceans',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/CrustaceanCave.lua',300,'',0,1437304064,'',0,1,1,0),
|
||||
(5,0,'XuxlaiosRoost','adv04_dun_bird_cage','Xux\'laio\'s Roost',0,-1.28,-20.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1679741196,'',0,1,1,0),
|
||||
(5,0,'XuxlaiosRoost','adv04_dun_bird_cage','Xux''laio''s Roost',0,-1.28,-20.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1679741196,'',0,1,1,0),
|
||||
(6,0,'Antechamber','adv04_dun_drgn_temple','Antechamber of Fate',-11.35,0.4,-34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3992515775,'',0,1,1,0),
|
||||
(7,0,'ForsakenCity','adv04_dun_endless','The Forsaken City',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,587354683,'',0,1,1,0),
|
||||
(8,0,'the Sepulcher of Zan Fi','adv04_dun_temple','The Sepulcher of Zan Fi',-1,0.7,5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3337851530,'',0,1,1,0),
|
||||
@ -131,7 +66,7 @@ INSERT INTO `zones` VALUES
|
||||
(23,0,'The Burning Cauldron','boat_06p_lavastorm','The Burning Cauldron',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',5400,0,259200,0,'',300,'',0,2280441737,'',0,1,1,0),
|
||||
(24,0,'PrizePrexus','boat_06p_orcishwastes','The Prize of Prexus',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,687197178,'',0,1,1,0),
|
||||
(25,0,'JourneyQeynos','boat_06p_qeynos','Journey to Qeynos',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1629504455,'',0,1,1,0),
|
||||
(26,0,'FarJourneyQeynos','boat_06p_tutorial01','The Far Journey',2.14,1.21,-15.81,180.6,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'Welcome to the EQ2EMU! The Farseas Journey needs some tweaks . Please be sure to test the Queen\'s Colony and other 1-10 content!',0,2933294842,'',0,1,1,0),
|
||||
(26,0,'FarJourneyQeynos','boat_06p_tutorial01','The Far Journey',2.14,1.21,-15.81,180.6,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'Welcome to the EQ2EMU! The Farseas Journey needs some tweaks . Please be sure to test the Queen''s Colony and other 1-10 content!',0,2933294842,'',0,1,1,0),
|
||||
(27,0,'FarJourneyFreeport','boat_06p_tutorial02','The Far Journey',2.14,1.21,-15.81,180,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/FarJourneyFreeport.lua',300,'Welcome to the EQ2EMU! Hail Captain Varlos or the helmsman to access the classic Isle of Refuge.',0,3521329369,'',0,0,1,0),
|
||||
(28,0,'CazicThule1','cazicthule','The Temple of Cazic-Thule',-0.05,7.89,154.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,953361327,'',0,1,1,0),
|
||||
(29,0,'The Sanctum of Fear','cazicthule_epic01_sanctum','The Sanctum of Fear',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1429227948,'',0,1,1,0),
|
||||
@ -144,37 +79,37 @@ INSERT INTO `zones` VALUES
|
||||
(36,0,'DrownedCaverns1','adv02_dun_drowned_caverns','The Drowned Caverns: Arena of Heroes',95.83,22.83,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2606878460,'',0,1,1,0),
|
||||
(37,1,'ModelDemo','commonlands','GM Model Demos',-614.67,-47.53,-239.79,220,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1045650867,'',0,1,1,0),
|
||||
(38,0,'The Tower of the Drafling','drafling_tower','The Tower of the Drafling',-2.81,0,-8.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1661815009,'',0,1,1,0),
|
||||
(39,0,'EnchantedLands','enchanted','Enchanted Lands',-0.67,4.48,88.42,359.06,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/EnchantedLands.lua',300,'If you\'re seeing this, the zone is in progress! Yay!',0,692296008,'',0,1,1,0),
|
||||
(39,0,'EnchantedLands','enchanted','Enchanted Lands',-0.67,4.48,88.42,359.06,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/EnchantedLands.lua',300,'If you''re seeing this, the zone is in progress! Yay!',0,692296008,'',0,1,1,0),
|
||||
(40,0,'TangledWeeds','enchanted_mini01','Cavern of Tangled Weeds',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2125525214,'',0,1,1,0),
|
||||
(41,0,'Everfrost','everfrost','Everfrost ',-40.27,-1.5,-1183.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Everfrost.lua',300,'',0,2971640549,'',0,1,1,0),
|
||||
(42,0,'MiragulsMenagerie','everfrost_epic01_menagerie','Miragul\'s Menagerie',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1758894691,'',0,1,1,0),
|
||||
(42,0,'MiragulsMenagerie','everfrost_epic01_menagerie','Miragul''s Menagerie',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1758894691,'',0,1,1,0),
|
||||
(45,0,'Haven','exile_city','Haven ',-50,-82.8,-145.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3194957246,'',0,1,1,0),
|
||||
(46,10,'Majdul','exp01_cty_majdul','Maj\'Dul ',-283.67,160.6,-147.61,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,247471241,'',1,1,1,0),
|
||||
(47,10,'Majdul1Room1','exp01_cty_majdul_1r01','Maj\'Dul: 1 Room Apartment',0,0,5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1297812899,'',0,1,1,0),
|
||||
(48,10,'Majdul1Room2','exp01_cty_majdul_1r02','Maj\'Dul: 1 Room Apartment',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2829996334,'',0,1,1,0),
|
||||
(49,10,'Majdul2Room1','exp01_cty_majdul_2r01','Maj\'Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3134471404,'',0,1,1,0),
|
||||
(50,10,'Majdul2Room2','exp01_cty_majdul_2r02','Maj\'Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,4034869404,'',0,1,1,0),
|
||||
(51,10,'Majdul3Room1','exp01_cty_majdul_3r01','Maj\'Dul: 3 Room Residence',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3517135728,'',0,1,1,0),
|
||||
(52,10,'Majdul3Room2','exp01_cty_majdul_3r02','Maj\'Dul: 3 Room Residence',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3142330392,'',0,1,1,0),
|
||||
(53,10,'Arena','exp01_cty_majdul_arena01','Maj\'Dul Arena',0,10,70,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1193689160,'',0,1,1,0),
|
||||
(46,10,'Majdul','exp01_cty_majdul','Maj''Dul ',-283.67,160.6,-147.61,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,247471241,'',1,1,1,0),
|
||||
(47,10,'Majdul1Room1','exp01_cty_majdul_1r01','Maj''Dul: 1 Room Apartment',0,0,5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1297812899,'',0,1,1,0),
|
||||
(48,10,'Majdul1Room2','exp01_cty_majdul_1r02','Maj''Dul: 1 Room Apartment',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2829996334,'',0,1,1,0),
|
||||
(49,10,'Majdul2Room1','exp01_cty_majdul_2r01','Maj''Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3134471404,'',0,1,1,0),
|
||||
(50,10,'Majdul2Room2','exp01_cty_majdul_2r02','Maj''Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,4034869404,'',0,1,1,0),
|
||||
(51,10,'Majdul3Room1','exp01_cty_majdul_3r01','Maj''Dul: 3 Room Residence',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3517135728,'',0,1,1,0),
|
||||
(52,10,'Majdul3Room2','exp01_cty_majdul_3r02','Maj''Dul: 3 Room Residence',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3142330392,'',0,1,1,0),
|
||||
(53,10,'Arena','exp01_cty_majdul_arena01','Maj''Dul Arena',0,10,70,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1193689160,'',0,1,1,0),
|
||||
(54,10,'Arena2','exp01_cty_majdul_arena02','The Arena v2',0,-0.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,913624109,'',0,1,1,0),
|
||||
(55,10,'CourtBlades','exp01_cty_majdul_blades','The Court of the Blades',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2914789014,'',0,1,1,0),
|
||||
(56,10,'CourtCoin','exp01_cty_majdul_coin','The Court of the Coin',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4244223063,'',0,1,1,0),
|
||||
(57,10,'LibraryLight','exp01_cty_majdul_library','The Library of Light',0,-0.2,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,520408650,'',0,1,1,0),
|
||||
(58,10,'TowerMoon','exp01_cty_majdul_moon','The Tower of the Moon',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1392070889,'',0,1,1,0),
|
||||
(59,10,'CourtTears','exp01_cty_majdul_tears','The Court of Tears',0,-0.22,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2026106351,'',0,1,1,0),
|
||||
(60,10,'CourtTruth','exp01_cty_majdul_truth','Maj\'Dul: The Court of Truth',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3952194529,'',0,1,1,0),
|
||||
(60,10,'CourtTruth','exp01_cty_majdul_truth','Maj''Dul: The Court of Truth',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3952194529,'',0,1,1,0),
|
||||
(61,10,'CleftsRujark','exp01_dun_clefts_of_rujark','The Clefts of Rujark',147.16,-7.76,-90.58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4246189845,'',0,1,1,0),
|
||||
(62,10,'LivingTombs','exp01_dun_living_tombs','The Living Tombs',-293.72,15.23,291.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1490971066,'',0,1,1,0),
|
||||
(63,0,'PedestalSky','exp01_dun_pedestal_of_sky','Pedestal of Sky',0,-0.5475,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_LOCKOUT_INSTANCE',43200,0,504000,0,'',300,'',0,2258780775,'',0,1,1,0),
|
||||
(64,10,'PoetPalace','exp01_dun_poets_palace','The Poets Palace',-94,147,39,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1460452816,'',0,1,1,0),
|
||||
(65,10,'ShimmeringCitadel','exp01_dun_shimmering_citadel','The Shimmering Citadel',58.94,98.3,-129.04,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3499314672,'',0,1,1,0),
|
||||
(66,10,'UnusualBottle','exp01_dun_shimmering_citadel_epic01_bottle','An Unusual Bottle',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2238196469,'',0,1,1,0),
|
||||
(67,10,'DjinnPrism','exp01_dun_shimmering_citadel_epic02_prism','The Djinn Master\'s Prism',-22,-5,-35,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3131802491,'',0,1,1,0),
|
||||
(67,10,'DjinnPrism','exp01_dun_shimmering_citadel_epic02_prism','The Djinn Master''s Prism',-22,-5,-35,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3131802491,'',0,1,1,0),
|
||||
(68,10,'SilentCity','exp01_dun_silent_city','The Silent City',143,31,160,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3364154278,'',0,1,1,0),
|
||||
(69,10,'The Fountain of Life','exp01_dun_silent_city_epic01_temple','The Fountain of Life',0,-6.71,22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,700073650,'',0,1,1,0),
|
||||
(70,10,'PillarsFlame','exp01_rgn_pillars_of_flame','The Pillars of Flame',1382,-147,-854,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/PillarsFlame.lua',300,'',0,464322516,'',0,1,1,0),
|
||||
(71,10,'Cazel\'s Mesa','exp01_rgn_pillars_of_flame_epic01_cazel','Cazel\'s Mesa',1.34,-0.12,5.17,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1811477067,'',0,1,1,0),
|
||||
(71,10,'Cazel''s Mesa','exp01_rgn_pillars_of_flame_epic01_cazel','Cazel''s Mesa',1.34,-0.12,5.17,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1811477067,'',0,1,1,0),
|
||||
(72,10,'Halls of Discipline','exp01_rgn_pillars_of_flame_epic02_discipline','Halls of Discipline',-11,-5.6,-4.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,113234899,'',0,1,1,0),
|
||||
(73,10,'SinkingSands','exp01_rgn_sinking_sands','The Sinking Sands',-1508.64,-214.09,-395.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/SinkingSands.lua',300,'',0,1641630735,'',0,1,1,0),
|
||||
(74,10,'The Vault of Dust','exp01_rgn_sinking_sands_epic01_lockjaw','The Vault of Dust',-10,8,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2519335673,'',0,1,1,0),
|
||||
@ -186,25 +121,25 @@ INSERT INTO `zones` VALUES
|
||||
(80,20,'HallsSeeing','exp02_dun_lair_of_scale_epic01_seeing','Halls of the Seeing',-628.06,159.68,-234.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2782224465,'',0,1,1,0),
|
||||
(81,20,'LyceumAbhorrence','exp02_dun_lair_of_scale_epic02_hallowed','The Lyceum of Abhorrence',26.73,157.56,-571.54,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,984615617,'',0,1,1,0),
|
||||
(82,20,'PalaceAwakened','exp02_dun_shrines_of_sky','Palace of the Awakened',44,0,-101,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2129470810,'',0,1,1,0),
|
||||
(83,20,'The Vaults of El\'Arad','exp02_dun_shrines_of_sky_epic01_vaults','The Vaults of El\'Arad',-30.7,-0.61,30.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,3297558346,'',0,1,1,0),
|
||||
(83,20,'The Vaults of El''Arad','exp02_dun_shrines_of_sky_epic01_vaults','The Vaults of El''Arad',-30.7,-0.61,30.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,3297558346,'',0,1,1,0),
|
||||
(84,20,'The Nest of the Great Egg','exp02_dun_shrines_of_sky_epic02_nest','The Nest of the Great Egg',38.48,112.78,0.03,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2751514428,'',0,1,1,0),
|
||||
(85,20,'BarrenSky','exp02_rgn_realm_of_dawn','The Barren Sky',506.75,-114.37,10.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4122226678,'',0,1,1,0),
|
||||
(86,20,'exp02_rgn_realm_of_dawn_arena','exp02_rgn_realm_of_dawn_arena','Describe me in the zones table! :)',0,-2.85,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1445881603,'',0,1,1,0),
|
||||
(87,20,'Bonemire','exp02_rgn_realm_of_night','The Bonemire',963.37,-108.17,469.1,0,-1000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2461862690,'',0,1,1,0),
|
||||
(88,20,'TenebrousTangle','exp02_rgn_realm_of_twilight','Tenebrous Tangle',-496.78,-60.1,-853.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3365769829,'',0,1,1,0),
|
||||
(89,30,'CastleMistmoore','exp03_dun_castle_mistmoore','Castle Mistmoore',81,43,-4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,715932856,'',0,1,1,0),
|
||||
(90,30,'MistmooreSanctum','exp03_dun_castle_mistmoore_epic01_coffinchamber','Mistmoore\'s Inner Sanctum',31.44,-4,15.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,54440071,'',0,1,1,0),
|
||||
(90,30,'MistmooreSanctum','exp03_dun_castle_mistmoore_epic01_coffinchamber','Mistmoore''s Inner Sanctum',31.44,-4,15.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,54440071,'',0,1,1,0),
|
||||
(91,30,'Crushbone','exp03_dun_crushbone_keep','Crushbone Keep',7,-16,-78,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3963117417,'',0,1,1,0),
|
||||
(92,30,'DvinnianThrone','exp03_dun_crushbone_keep_epic01_throne','The D\'Vinnian Throne',0.19,-4.31,-26.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,480928156,'',0,1,1,0),
|
||||
(92,30,'DvinnianThrone','exp03_dun_crushbone_keep_epic01_throne','The D''Vinnian Throne',0.19,-4.31,-26.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,480928156,'',0,1,1,0),
|
||||
(93,30,'Acadechism','exp03_dun_crushbone_keep_epic02_boss','The Acadechism ',-0.52,-0.16,-12.01,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1318370063,'',0,1,1,0),
|
||||
(94,30,'The Estate of Unrest','exp03_dun_estate_of_unrest','The Estate of Unrest',7.91,0.3,-88.33,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,126000,0,'',300,'',0,1085768541,'',0,1,1,0),
|
||||
(95,30,'NewTunaria','exp03_dun_felwithe','New Tunaria',-1038,55,-1379,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2465751372,'',0,1,1,0),
|
||||
(96,30,'ThroneNewTunaria','exp03_dun_felwithe_epic01_throne','Throne of New Tunaria',-73.91,67.02,-879.01,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2494575554,'',0,1,1,0),
|
||||
(97,30,'GrendersLair','exp03_dun_hollow_stump','The Grender\'s Lair',0,-0.58,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3140052190,'',0,1,1,0),
|
||||
(97,30,'GrendersLair','exp03_dun_hollow_stump','The Grender''s Lair',0,-0.58,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3140052190,'',0,1,1,0),
|
||||
(98,30,'ChamberTruthbringer','exp03_dun_hollow_stump2','The Chamber of the Truthbringer',0,-0.58,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2495251601,'',0,1,1,0),
|
||||
(99,30,'Kaladim','exp03_dun_kaladim','Kaladim ',5,-1,-27,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2172437289,'',0,1,1,0),
|
||||
(100,30,'Stormguard','exp03_dun_kaladim_stormguard_hall','Stormguard Hall',157,17.5,-65,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1517940891,'',0,1,1,0),
|
||||
(101,30,'Klakanon','exp03_dun_klakanon','Klak\'Anon',-347.32,8.71,-19.23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,738715765,'',0,1,1,0),
|
||||
(101,30,'Klakanon','exp03_dun_klakanon','Klak''Anon',-347.32,8.71,-19.23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,738715765,'',0,1,1,0),
|
||||
(102,30,'ClockworkMenace','exp03_dun_klakanon_epic01_menace','The Clockwork Menace Factory',132.31,22.75,-65.73,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,274925249,'',0,1,1,0),
|
||||
(103,30,'CourtInnovation','exp03_dun_klakanon_epic02_court','Court of Innovation',-15.13,6.83,81.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2766743326,'',0,1,1,0),
|
||||
(104,30,'MistmooreCatacombs','exp03_dun_mistmoore_catacombs','Mistmoore Catacombs',12.99,-159.06,-109.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,263748089,'',0,1,1,0),
|
||||
@ -223,7 +158,7 @@ INSERT INTO `zones` VALUES
|
||||
(117,30,'Steamfont','exp03_rgn_steamfont','Steamfont Mountains ',-492,125,596,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3355489122,'',0,1,1,0),
|
||||
(118,30,'MinesMeldrath','exp03_rgn_steamfont_epic01_mines','The Mines of Meldrath ',12.53,-0.6,-4.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3273265723,'',0,1,1,0),
|
||||
(119,0,'FallenGate','fallengate','Fallen Gate ',-19.57,20,149.02,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/FallenGate.lua',300,'',0,380935007,'',0,1,1,0),
|
||||
(120,0,'VaultFallen2','fallengate_epic01_boss','The Vault of the Fallen: Lair of Trenda\'loz',37,-26,-189,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1848001339,'',0,1,1,0),
|
||||
(120,0,'VaultFallen2','fallengate_epic01_boss','The Vault of the Fallen: Lair of Trenda''loz',37,-26,-189,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1848001339,'',0,1,1,0),
|
||||
(121,0,'Feerrott','feerrott','The Feerrott',110.81,-1.02,-135.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Feerrott.lua',300,'',0,1328033086,'',0,1,1,0),
|
||||
(122,0,'The Trembling Lagoon','feerrott_epic01_temple','The Trembling Lagoon',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,4007615914,'',0,1,1,0),
|
||||
(123,0,'Kugup','feerrott_epic02_froglok','The Lost Village of Kugup',-138.47,13.27,140.24,245,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Kugup.lua',300,'',0,1262464412,'',0,1,1,0),
|
||||
@ -232,7 +167,7 @@ INSERT INTO `zones` VALUES
|
||||
(126,0,'Sprawl','fprt_adv03_sprawl','The Sprawl (Kingdom of Sky)',-139.62,-4.42,97.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Sprawl.lua',300,'',0,505391798,'',0,1,1,0),
|
||||
(127,0,'Ruins','fprt_adv04_ruins','The Ruins (Kingdom of Sky)',-178.54,-1,79.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,780530840,'',0,1,1,0),
|
||||
(128,0,'EastFreeport','fprt_east','East Freeport',-305.04,-56.07,73.57,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3673921062,'',1,1,1,0),
|
||||
(129,0,'JadeTigersDenCellar','fprt_epic01_storeroom01','Jade Tiger\'s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3155501257,'',0,1,1,0),
|
||||
(129,0,'JadeTigersDenCellar','fprt_epic01_storeroom01','Jade Tiger''s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3155501257,'',0,1,1,0),
|
||||
(130,0,'fprt_epic02_a01_dungeon01','fprt_epic02_a01_dungeon01','A Musty Dungeon',0.89,-0.13,0.1,265,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4177944262,'',0,1,1,0),
|
||||
(131,0,'fprt_epic03_a01_dungeon02','fprt_epic03_a01_dungeon02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3101595178,'',0,1,1,0),
|
||||
(132,0,'DuelingChamber','fprt_epic04_a04_academy01','The Dueling Chamber',0,-0.6,1.2,0,-1000000,0,0,0,'Instanced Outdoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',15,'',0,510719646,'',0,1,1,0),
|
||||
@ -240,7 +175,7 @@ INSERT INTO `zones` VALUES
|
||||
(134,0,'BigBend','fprt_hood01','Big Bend',-26.67,-4.64,102.43,0,-1000000,0,0,0,'City',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/BigBend.lua',300,'Big Bend: Some classic quests have been rebuilt here. Freeport is a major work in progress. Play here at your own risk!',0,578827427,'',1,1,1,0),
|
||||
(135,0,'Stonestair','fprt_hood02','Stonestair Byway',-101.2,-4.65,-26.78,0,-1000000,0,0,0,'City',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Stonestair.lua',300,'Stonestair Byway: Some classic quests have been rebuilt here. This zone has many underlying issues. Freeport is a major work in progress. Play at your own risk!',0,202759038,'',1,1,1,0),
|
||||
(136,0,'TempleSt','fprt_hood03','Temple Street',-60.93,2.86,128.21,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TempleSt.lua',300,'Temple Street: All classic quests have been rebuilt here. Freeport is a major work in progress. Please report bugs to Discord!',0,2595880091,'',1,1,1,0),
|
||||
(137,0,'BeggarsCourt','fprt_hood04','Beggar\'s Court',-30,4.17,-87.14,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/BeggarsCourt.lua',300,'Beggar\'s Court: All classic quests have been rebuilt here. Freeport is a major work in progress. Please report bugs to Discord!',0,3536645693,'',1,1,1,0),
|
||||
(137,0,'BeggarsCourt','fprt_hood04','Beggar''s Court',-30,4.17,-87.14,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/BeggarsCourt.lua',300,'Beggar''s Court: All classic quests have been rebuilt here. Freeport is a major work in progress. Please report bugs to Discord!',0,3536645693,'',1,1,1,0),
|
||||
(138,0,'Longshadow','fprt_hood05','Longshadow Alley',-50.84,-4.67,-85.43,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Longshadow.lua',300,'Longshadow Alley: All classic quests have been rebuilt here. Freeport is a major work in progress. Please report bugs to Discord!',0,449901455,'',1,1,1,0),
|
||||
(139,0,'ScaleYard','fprt_hood06','Scale Yard',0.1,-4.5,105,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/ScaleYard.lua',300,'Scale Yard: Some classic quests have been rebuilt here. Freeport is a major work in progress.Play here at your own risk!',0,3728081010,'',1,1,1,0),
|
||||
(140,0,'fprt_hood_epic01','fprt_hood_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1624467568,'',0,1,1,0),
|
||||
@ -257,17 +192,17 @@ INSERT INTO `zones` VALUES
|
||||
(151,0,'Freeport4Room3','fprt_ph_3r03','a four room house, version 3',-9.5,1,8.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,4069184774,'',0,1,1,0),
|
||||
(152,0,'Freeport6Room1','fprt_ph_5r01','a six room house, version 1',-3.62,-0.5,-2.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2279293680,'',0,1,1,0),
|
||||
(153,0,'Freeport6Room2','fprt_ph_5r02','a six room house, version 2',28.75,-0.5,5.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,4249795054,'',0,1,1,0),
|
||||
(154,0,'ThievesWay','fprt_sewer01','The Thieves\' Way (Kingdom of Sky)',-148,1,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/ThievesWay.lua',300,'',0,3869765643,'',0,1,1,0),
|
||||
(154,0,'ThievesWay','fprt_sewer01','The Thieves'' Way (Kingdom of Sky)',-148,1,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/ThievesWay.lua',300,'',0,3869765643,'',0,1,1,0),
|
||||
(155,0,'SerpentSewer','fprt_sewer02','The Serpent Sewer ',-182,0,-185,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/SerpentSewer.lua',300,'',0,2853519654,'',0,1,1,0),
|
||||
(156,0,'Edgewater','fprt_sewer03','Edgewater Drains',29,32,73,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,938776093,'',0,1,1,0),
|
||||
(157,0,'fprt_sewer_epic01','fprt_sewer_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4065867901,'',0,1,1,0),
|
||||
(158,0,'fprt_sewer_epic02','fprt_sewer_epic02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3904734492,'',0,1,1,0),
|
||||
(159,0,'SerpentsLair','fprt_sewer_epic03','The Serpent\'s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2729254407,'',0,1,1,0),
|
||||
(159,0,'SerpentsLair','fprt_sewer_epic03','The Serpent''s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2729254407,'',0,1,1,0),
|
||||
(160,0,'DarkbladeDen','fprt_sewer_epic04','The Darkblade Den of Assassins',-8.53,-0.62,12.68,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',300,300,300,0,'ZoneScripts/DarkbladeDen.lua',1,'',0,2374182736,'',0,1,1,0),
|
||||
(161,0,'fprt_sewer_epic05','fprt_sewer_epic05','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,867121339,'',0,1,1,0),
|
||||
(162,0,'fprt_sewer_epic06','fprt_sewer_epic06','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1116256801,'',0,1,1,0),
|
||||
(163,0,'fprt_sewer_epic07','fprt_sewer_epic07','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1321185,'',0,1,1,0),
|
||||
(164,1,'FreeportCitizenshipTrialChamber','fprt_sewer_epic08','Uncovered Traitors\' Hideout',20.37,0.71,17.57,90,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',5,'',0,4027848774,'',0,1,1,0),
|
||||
(164,1,'FreeportCitizenshipTrialChamber','fprt_sewer_epic08','Uncovered Traitors'' Hideout',20.37,0.71,17.57,90,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',5,'',0,4027848774,'',0,1,1,0),
|
||||
(165,0,'fprt_sewer_epic09','fprt_sewer_epic09','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2664820379,'',0,1,1,0),
|
||||
(166,0,'SouthFreeport','fprt_south','South Freeport',-175,-57,148,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,190556331,'',1,1,1,0),
|
||||
(167,0,'BroodLostTongue','fprt_tradeskill01','The Brood of the Lost Tongue',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4020093839,'',0,1,1,0),
|
||||
@ -276,10 +211,10 @@ INSERT INTO `zones` VALUES
|
||||
(170,0,'PrisonGrimgadget','holdofprexus','The Prison of Admiral Grimgadget ',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1598578194,'',0,1,1,0),
|
||||
(171,0,'Lavastorm','lavastorm','Lavastorm ',84.73,-33.09,138.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Lavastorm.lua',300,'',0,4134789718,'',0,1,1,0),
|
||||
(172,0,'The Sanctum of Fire','lavastorm_epic01_sanctum','The Sanctum of Fire',-332,-80,-675,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,25894733,'',0,1,1,0),
|
||||
(173,0,'Maiden\'s Gulch','lavastorm_epic02_gulch','Maiden\'s Gulch',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,356037497,'',0,1,1,0),
|
||||
(173,0,'Maiden''s Gulch','lavastorm_epic02_gulch','Maiden''s Gulch',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,356037497,'',0,1,1,0),
|
||||
(174,0,'HauntedHouse','live_haunted_mansion','The Haunted House',-2.75,0,9.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3627449501,'',0,1,1,0),
|
||||
(175,0,'BarBrell','live_irontoes','Bar of Brell',352,-20,143,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1695982209,'',0,1,1,0),
|
||||
(176,0,'Crypt of T\'Haen','mod01_dun_crypt_of_thaen','Crypt of T\'Haen',76.88,0.5,43.19,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3148941725,'',0,1,1,0),
|
||||
(176,0,'Crypt of T''Haen','mod01_dun_crypt_of_thaen','Crypt of T''Haen',76.88,0.5,43.19,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3148941725,'',0,1,1,0),
|
||||
(177,0,'TombNight','mod01_dun_tombs_of_night','The Tombs of Night',116.64,-1.26,128.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1645287631,'',0,1,1,0),
|
||||
(178,0,'NektroposCastle','nektropos_castle','Nektropos Castle',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'ZoneScripts/NektroposCastle.lua',300,'',0,1679330818,'',0,1,1,0),
|
||||
(179,0,'Nektulos','nektulos','Nektulos Forest',-344.65,0.66,-1264.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Nektulos.lua',300,'',0,1475203678,'',0,1,1,0),
|
||||
@ -296,16 +231,16 @@ INSERT INTO `zones` VALUES
|
||||
(190,0,'Zek','orcishwastes','Zek, the Orcish Wastes',509.44,-41.31,289.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Zek.lua',300,'',0,3094052578,'',0,1,1,0),
|
||||
(191,0,'SullonMines','orcishwastes_mini01','Sullon Mines',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2610132812,'',0,1,1,0),
|
||||
(192,0,'Permafrost','permafrost','Permafrost',-5,0,-83,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3961969058,'',0,1,1,0),
|
||||
(193,0,'Drayek\'s Chamber','permafrost_epic01_icebound','Drayek\'s Chamber',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2321145713,'',0,1,1,0),
|
||||
(193,0,'Drayek''s Chamber','permafrost_epic01_icebound','Drayek''s Chamber',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2321145713,'',0,1,1,0),
|
||||
(194,0,'CryptVox','permafrost_epic02_crypt','The Crypt of Vox',-2.49,10.63,-404.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1626179814,'',0,1,1,0),
|
||||
(195,1,'Oakmyst','qey_adv01_oakmyst','Oakmyst Forest (Kingdom of Sky)',1093.17,-10.15,-382.08,0,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Oakmyst.lua',300,'Oakmyst: Monster abilities & HP values in progress. Side quests complete. TODO: Complete main questline scripting. TODO: Harvest node control. Post bugs of existing quests on Discord.',0,4215822688,'',0,1,1,0),
|
||||
(196,20,'ForestRuins','qey_adv02_ruins','The Forest Ruins (Kingdom of Sky)',897,-14.5,-575,0,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/ForestRuins.lua',300,'Forest Ruins: Monster abilities & HP values in progress. Side quests complete. TODO: Complete main questline scripting. Post bugs of existing quests on Discord.',0,1855488194,'',0,1,1,0),
|
||||
(197,20,'CavesKoS','qey_adv03_caves','The Caves (Kingdom of Sky)',1.5,3.62,-23.42,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Caves.lua',300,'Caves: Monster HP values in place. TODO: Main questline & Mob abilities. Post bugs of existing quests on Discord.',0,2601398236,'',0,1,1,0),
|
||||
(198,20,'PeatBog','qey_adv04_bog','The Peat Bog (Kingdom of Sky)',561.65,-27.41,417.99,0,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/PeatBog.lua',300,'Peat Bog: Monster abilities in progress. Main questline needs testing. Post bugs of existing quests on Discord.',0,32653985,'',0,1,1,0),
|
||||
(199,0,'DownBelow','qey_catacomb01','The Down Below (Kingdom of Sky)',-195.98,-0.1,-200.16,0,-1000000,1.1,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/DownBelow.lua',300,'DownBelow: Monster abilities in progress. Side quests complete. Post bugs of existing quests on Discord.',0,2145814903,'',0,1,1,0),
|
||||
(200,0,'VerminSnye_KoS','qey_catacomb02','Vermin\'s Snye',131.21,-6.92,-105.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2670803123,'',0,1,1,0),
|
||||
(200,0,'VerminSnye_KoS','qey_catacomb02','Vermin''s Snye',131.21,-6.92,-105.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2670803123,'',0,1,1,0),
|
||||
(201,0,'CryptBetrayal','qey_catacomb03','The Crypt of Betrayal ',120.88,7.02,-49.61,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,964742035,'',0,1,1,0),
|
||||
(202,0,'CrowsTomb','qey_catacomb_epic01','Crow\'s Resting Place',3.41,1.92,8.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2271733143,'',0,1,1,0),
|
||||
(202,0,'CrowsTomb','qey_catacomb_epic01','Crow''s Resting Place',3.41,1.92,8.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2271733143,'',0,1,1,0),
|
||||
(203,0,'ADecrepitCrypt','qey_catacomb_epic02','A Decrepit Crypt',-31,-1,9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_LOCKOUT_INSTANCE',5400,0,259200,0,'',10,'',0,1907479580,'',0,1,1,0),
|
||||
(204,0,'ScarabHive','qey_catacomb_epic03','The Deathly Scarab Hive ',-20,3.37,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1044089428,'',0,1,1,0),
|
||||
(205,0,'qey_catacomb_epic04','qey_catacomb_epic04','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3211469419,'',0,1,1,0),
|
||||
@ -315,13 +250,13 @@ INSERT INTO `zones` VALUES
|
||||
(209,0,'StarcrestBank','qey_epic02_village02_bank','Starcrest: The Qeynos Exchange',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1552498994,'',0,1,1,0),
|
||||
(211,0,'WillowWoodBank','qey_epic04_village05_bank','Willow Wood: The Qeynos Exchange',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2824516912,'',0,1,1,0),
|
||||
(212,0,'qey_epic05_village06_scribe','qey_epic05_village06_scribe','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,730617311,'',0,1,1,0),
|
||||
(213,0,'Cusader_IrontoeInn','qey_epic06_p12_irontoes','Brigand\'s Hideout',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'Crusader class quest',0,1053477178,'',0,1,1,0),
|
||||
(213,0,'Cusader_IrontoeInn','qey_epic06_p12_irontoes','Brigand''s Hideout',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'Crusader class quest',0,1053477178,'',0,1,1,0),
|
||||
(214,1,'TroubledHaunt','qey_epic07_p08_sneeds','The Troubled Haunt',2.37,-0.33,2.8,71,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/TroubledHaunt.lua',300,'',0,2375380469,'',0,1,1,0),
|
||||
(215,1,'WayfarersRest','qey_epic08_p06_voleens','Wayfarer\'s Rest',0,0,0,0,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'ZoneScripts/WayfarersRest.lua',300,'',0,998680089,'',0,1,1,0),
|
||||
(215,1,'WayfarersRest','qey_epic08_p06_voleens','Wayfarer''s Rest',0,0,0,0,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'ZoneScripts/WayfarersRest.lua',300,'',0,998680089,'',0,1,1,0),
|
||||
(216,0,'qey_epic09_l02_steel','qey_epic09_l02_steel','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3864565992,'',0,1,1,0),
|
||||
(217,0,'SummonersTest','qey_epic10_p01_bank','The Summoner\'s Test',-1.78,-0.34,-5.85,185,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',300,'Summoner Class Trial',0,1714285425,'',0,0,1,0),
|
||||
(217,0,'SummonersTest','qey_epic10_p01_bank','The Summoner''s Test',-1.78,-0.34,-5.85,185,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',300,'Summoner Class Trial',0,1714285425,'',0,0,1,0),
|
||||
(218,1,'BurningAbode','qey_epic11_l10_arbor','Burning Abode',6.94,-0.2,3.21,348,-1000000,0,0,0,'',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'ZoneScripts/qey_epic11_l10_arbor.lua',300,'',0,2535452508,'',0,1,1,0),
|
||||
(219,1,'BrawlersDojo','qey_epic12_l08_sanctum','Brawler\'s Dojo',0,0,0,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/BrawlersDojo.lua',300,'',0,683658674,'',0,1,1,0),
|
||||
(219,1,'BrawlersDojo','qey_epic12_l08_sanctum','Brawler''s Dojo',0,0,0,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/BrawlersDojo.lua',300,'',0,683658674,'',0,1,1,0),
|
||||
(220,0,'QeynosMageTower','qey_epic13_l04_towers','Qeynos: Mage Tower',719,48,114,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,374794994,'',0,1,1,0),
|
||||
(221,0,'QeynosHarbor','qey_harbor','Qeynos Harbor',999.14,-25.79,27.04,0,-1000000,0,0,0,'City',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/QeynosHarbor.lua',300,'Qeynos Harbor: Most Quests rebuilt & Housing is in progress. TODO: Betrayal Quests. Report bugs/issues on Discord!',0,1739788496,'',1,1,1,0),
|
||||
(222,0,'NorthQeynos','qey_north','North Qeynos',267.77,-21.55,-19.88,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/NorthQeynos.lua',300,'North Qeynos: Quests rebuilt & Housing is in progress. TODO: Faction Writs. Report bugs/issues on Discord!',0,1841518510,'',1,1,1,0),
|
||||
@ -346,18 +281,18 @@ INSERT INTO `zones` VALUES
|
||||
(241,0,'rivervale_epic02_ph02','rivervale_epic02_ph02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,897144292,'',0,1,1,0),
|
||||
(242,0,'Runnyeye','runnyeye','Runnyeye',-58,0.11,57,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Runnyeye.lua',300,'',0,2485707951,'',0,1,1,0),
|
||||
(243,0,'The Chamber of Rulgax','runnyeye_epic01_eye','The Chamber of Rulgax',65.43,-34.31,192.47,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1805900580,'',0,1,1,0),
|
||||
(244,0,'The Overlord\'s Throne Room','runnyeye_epic02_goblin','The Overlord\'s Throne Room',205,1,-318,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2587316584,'',0,1,1,0),
|
||||
(245,0,'SolEye','solusekseye','Solusek\'s Eye',130.08,28.58,-125.76,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1322389444,'',0,1,1,0),
|
||||
(246,0,'NagafensLair','solusekseye_epic01_nagafen','Nagafen\'s Lair',0.12,-0.39,54.45,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3381789812,'',0,1,1,0),
|
||||
(244,0,'The Overlord''s Throne Room','runnyeye_epic02_goblin','The Overlord''s Throne Room',205,1,-318,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2587316584,'',0,1,1,0),
|
||||
(245,0,'SolEye','solusekseye','Solusek''s Eye',130.08,28.58,-125.76,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1322389444,'',0,1,1,0),
|
||||
(246,0,'NagafensLair','solusekseye_epic01_nagafen','Nagafen''s Lair',0.12,-0.39,54.45,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3381789812,'',0,1,1,0),
|
||||
(247,0,'The Bastion of Flames','solusekseye_epic02_bastion','The Bastion of Flames',-147.93,-414.98,-290.9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,216735829,'',0,1,1,0),
|
||||
(248,0,'The Oratorium of Thyr','solusekseye_epic03_thyr','The Oratorium of Thyr',-204.3,-617.46,-193.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3712382977,'',0,1,1,0),
|
||||
(249,0,'ThunderingSteppes','steppes','The Thundering Steppes',-606.14,-23.11,-402.91,268.76,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/ThunderingSteppes.lua',300,'',0,1442587250,'',0,1,1,0),
|
||||
(250,0,'The Cove of Decay','steppes_epic01_cove','The Cove of Decay',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,199981466,'',0,1,1,0),
|
||||
(251,0,'PirateStash','steppes_mini01','A Pirate\'s Hidden Stash ',827.3,-13.3,1028.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2597747579,'',0,1,1,0),
|
||||
(251,0,'PirateStash','steppes_mini01','A Pirate''s Hidden Stash ',827.3,-13.3,1028.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2597747579,'',0,1,1,0),
|
||||
(252,0,'thunderdome','thunderdome','Thunderdome',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2770022842,'',0,1,1,0),
|
||||
(253,0,'QueensColony','tutorial_island02','Queen\'s Colony',-17.24,-5.4,223,0,-1000000,3.75,0,0,'Outdoor',0,0,0,0,0,0,1,'NONE',0,0,0,0,'ZoneScripts/QueensColony.lua',300,'',0,235639746,'',0,1,1,0),
|
||||
(253,0,'QueensColony','tutorial_island02','Queen''s Colony',-17.24,-5.4,223,0,-1000000,3.75,0,0,'Outdoor',0,0,0,0,0,0,1,'NONE',0,0,0,0,'ZoneScripts/QueensColony.lua',300,'',0,235639746,'',0,1,1,0),
|
||||
(254,0,'SourceEvil','tutorial_island02_epic01','The Source of Evil',-14.5,0,-2.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_LOCKOUT_INSTANCE',0,0,0,0,'',300,'',0,1139089258,'',0,1,1,0),
|
||||
(255,0,'MizansCellar','tutorial_island02_epic02','Mizan\'s Cellar',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,853356513,'',0,1,1,0),
|
||||
(255,0,'MizansCellar','tutorial_island02_epic02','Mizan''s Cellar',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,853356513,'',0,1,1,0),
|
||||
(256,0,'RuinsVarsoon','varsoon','The Ruins of Varsoon',95,17.9,-96.33,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,783825492,'',0,1,1,0),
|
||||
(257,0,'Chamber of Immortality','vrsn_epic01_boss','Chamber of Immortality',203.16,-12.14,138.85,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',5400,0,259200,0,'',300,'',0,3431125307,'',0,1,1,0),
|
||||
(258,0,'WailingCaves','wailingcaves','The Wailing Caves',-103,-33,-138,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3367326908,'',0,1,1,0),
|
||||
@ -369,21 +304,21 @@ INSERT INTO `zones` VALUES
|
||||
(264,40,'FensNathsar','exp04_rgn_fens_of_nathsar','Fens of Nathsar',489.5,12.6,1509.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,189371831,'',0,1,1,0),
|
||||
(265,40,'JarsathWastes','exp04_rgn_jarsath_wastes','Jarsath Wastes',-1057,-83,-560,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1721963361,'',0,1,1,0),
|
||||
(267,40,'Chelsith','exp04_dun_chelsith','Chelsith',-75,30.3,510,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,1080201912,'',0,1,1,0),
|
||||
(269,40,'KarnorsCastle','exp04_dun_karnors_castle','Karnor\'s Castle',267,-58.22,136,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1170290470,'',0,1,1,0),
|
||||
(269,40,'KarnorsCastle','exp04_dun_karnors_castle','Karnor''s Castle',267,-58.22,136,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1170290470,'',0,1,1,0),
|
||||
(270,40,'Sebilis','exp04_dun_sebilis','Sebilis',18,0,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1873729493,'',0,1,1,0),
|
||||
(271,40,'Veeshan\'s Peak','exp04_dun_veeshans_peak','Veeshan\'s Peak',388,-342,1131,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,777600,0,'',300,'',0,13238552,'',0,1,1,0),
|
||||
(271,40,'Veeshan''s Peak','exp04_dun_veeshans_peak','Veeshan''s Peak',388,-342,1131,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,777600,0,'',300,'',0,13238552,'',0,1,1,0),
|
||||
(272,40,'TombThuuga','exp04_dun_charasis_epic01_queens','The Tomb of Thuuga',0,0,-5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2482499672,'',0,1,1,0),
|
||||
(273,40,'Chardok','exp04_dun_chardok','Chardok',27.44,-29.78,-340.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,758372554,'',0,1,1,0),
|
||||
(274,40,'Gorowyn3Room','exp04_rgn_gorowyn_ph_3room','Gorowyn 3 Rooms Apartment',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,207940048,'',0,1,1,0),
|
||||
(275,40,'Gorowyn5Room','exp04_rgn_gorowyn_ph_5room','Gorowyn 5 Rooms Apartment',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3852789577,'',0,1,1,0),
|
||||
(276,40,'The Execution Throne Room','exp04_dun_karnors_castle_epic01_pawbuster','The Execution Throne Room',-12.86,1.95,29.54,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1099086004,'',0,1,1,0),
|
||||
(277,40,'The Protector\'s Realm','exp04_dun_sebilis_epic01_crypt','The Protector\'s Realm',-12,-13,344,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,388677814,'',0,1,1,0),
|
||||
(277,40,'The Protector''s Realm','exp04_dun_sebilis_epic01_crypt','The Protector''s Realm',-12,-13,344,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,388677814,'',0,1,1,0),
|
||||
(278,0,'OutpostOverlord','tutorial_island02','Outpost of the Overlord',-12.43,-4.94,222.26,0,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,2,'NONE',0,0,0,0,'ZoneScripts/OutpostOverlord.lua',300,'',0,2331579180,'',0,1,1,0),
|
||||
(279,0,'Truthbringer','qey_tradeskill01','The Charter of the Truthbringer',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2254477089,'',0,1,1,0),
|
||||
(280,0,'Deductive','qey_tradeskill01','The Deductive Directory',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2963804548,'',0,1,1,0),
|
||||
(281,0,'Ironforge','qey_tradeskill01','The Ironforge Exchange',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3822793044,'',0,1,1,0),
|
||||
(282,0,'Wayfarers','qey_tradeskill01','Wayfarer\'s Stockpilers',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3109275695,'',0,1,1,0),
|
||||
(283,0,'WorkshopGood','qey_tradeskill01','Tradeskiller\'s Workshop',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2442508618,'',0,1,1,0),
|
||||
(282,0,'Wayfarers','qey_tradeskill01','Wayfarer''s Stockpilers',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3109275695,'',0,1,1,0),
|
||||
(283,0,'WorkshopGood','qey_tradeskill01','Tradeskiller''s Workshop',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2442508618,'',0,1,1,0),
|
||||
(284,0,'The Cove of Decay: A Treaty for Treasure','steppes_epic01_cove','The Cove of Decay: A Treaty for Treasure',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2833734499,'',0,1,1,0),
|
||||
(285,0,'CircleVaniki','fprt_tradeskill01','The Circle of Vaniki',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1207827539,'',0,1,1,0),
|
||||
(286,0,'Wanderlust','fprt_tradeskill01','The Ring of Wanderlust',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1815400861,'',0,1,1,0),
|
||||
@ -391,48 +326,48 @@ INSERT INTO `zones` VALUES
|
||||
(288,0,'DarkBargainers','fprt_tradeskill01','The Dark Bargainers',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2653325751,'',0,1,1,0),
|
||||
(289,0,'WarHagglers','fprt_tradeskill01','The War Hagglers',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,87161584,'',0,1,1,0),
|
||||
(290,0,'NepetaCataria','fprt_tradeskill01','Nepeta Cataria',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1918315345,'',0,1,1,0),
|
||||
(291,0,'Coalition','fprt_tradeskill01','The Coalition Crafter\'s Association',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,760423874,'',0,1,1,0),
|
||||
(291,0,'Coalition','fprt_tradeskill01','The Coalition Crafter''s Association',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,760423874,'',0,1,1,0),
|
||||
(292,0,'Luminary','qey_tradeskill01','The Luminary Cache',8.39294,0,-10.6062,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3429099711,'',0,1,1,0),
|
||||
(293,0,'Runnyeye: The Gathering','runnyeye_advanced','Runnyeye: The Gathering',-93.4526,-27.4416,58.496,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3904072694,'',0,1,1,0),
|
||||
(294,50,'Veksar: The Invasion','exp05_dun_veksar','Veksar: The Invasion',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,3342653665,'',0,1,1,0),
|
||||
(295,40,'Charasis: Vault of Eternal Sleep','exp04_dun_charasis_north','Charasis: Vault of Eternal Sleep',0,0,23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,4097729086,'',0,1,1,0),
|
||||
(296,40,'Charasis: Maiden\'s Chamber','exp04_dun_charasis_south','Charasis: Maiden\'s Chamber',0,0,-23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,865256506,'',0,1,1,0),
|
||||
(296,40,'Charasis: Maiden''s Chamber','exp04_dun_charasis_south','Charasis: Maiden''s Chamber',0,0,-23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,865256506,'',0,1,1,0),
|
||||
(297,40,'The Temple of Kor-Sha','exp04_dun_chardok_epic01_throne','The Temple of Kor-Sha',816,-27,206,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,4104758969,'',0,1,1,0),
|
||||
(298,40,'Court of Korucust','exp04_dun_chardok_epic02_prison','Court of Korucust',-650,-66,204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',10800,0,19800,0,'',300,'',0,868476451,'',0,1,1,0),
|
||||
(299,40,'The Chamber of Destiny','exp04_dun_chelsith_epic01_behemoth','The Chamber of Destiny',192,-10,29,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,1536365742,'',0,1,1,0),
|
||||
(300,40,'Venril Sathir\'s Lair','exp04_dun_sebilis_epic02_venril','Venril Sathir\'s Lair',0,-10,144,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,2242643152,'',0,1,1,0),
|
||||
(301,40,'Trakanon\'s Lair','exp04_dun_veeshans_peak_epic01_trakanon','Trakanon\'s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,157215189,'',0,1,1,0),
|
||||
(300,40,'Venril Sathir''s Lair','exp04_dun_sebilis_epic02_venril','Venril Sathir''s Lair',0,-10,144,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,2242643152,'',0,1,1,0),
|
||||
(301,40,'Trakanon''s Lair','exp04_dun_veeshans_peak_epic01_trakanon','Trakanon''s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,157215189,'',0,1,1,0),
|
||||
(302,0,'Shard of Hate','shard_of_hate','Shard of Hate',45,0.2,290,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,2411297627,'',0,1,1,0),
|
||||
(303,40,'The Crypt of Agony','exp04_dun_sebilis_epic01_crypt','The Crypt of Agony',-12,-13,344,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,2468739761,'',0,1,1,0),
|
||||
(305,0,'Ar\'Ticae\'s Lair','everfrost_epic01_menagerie','Ar\'ticae\'s Lair',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1314076501,'',0,1,1,0),
|
||||
(306,0,'MaulicsStronghold','cmmn_epic01_orc','Bloodskull Valley: Maulic\'s Stronghold',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'ZoneScripts/BloodSkullValleyMaulicsStronghold.lua',300,'',0,859935955,'',0,1,1,0),
|
||||
(305,0,'Ar''Ticae''s Lair','everfrost_epic01_menagerie','Ar''ticae''s Lair',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1314076501,'',0,1,1,0),
|
||||
(306,0,'MaulicsStronghold','cmmn_epic01_orc','Bloodskull Valley: Maulic''s Stronghold',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'ZoneScripts/BloodSkullValleyMaulicsStronghold.lua',300,'',0,859935955,'',0,1,1,0),
|
||||
(307,0,'Bloodskull3','cmmn_epic01_orc','Bloodskull Valley: Righting the Scales',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1939902408,'',0,1,1,0),
|
||||
(308,0,'BloodSkull Valley: The Excavation Site','cmmn_epic01_orc','Bloodskull Valley: The Excavation Site',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'ZoneScripts/BloodSkullValleyExcavationSite.lua',300,'',0,3024679344,'',0,1,1,0),
|
||||
(309,0,'Bloodskull5','cmmn_epic01_orc','Bloodskull Valley: The Training Grounds',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Bloodskull5.lua',300,'',0,3502321105,'',0,1,1,0),
|
||||
(310,0,'Trembling Lagoon: Cleansing of the Cove','feerrott_epic01_temple','Trembling Lagoon: Cleansing of the Cove',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2787903198,'',0,1,1,0),
|
||||
(311,0,'The Cove of Decay: Epic Angler','steppes_epic01_cove','The Cove of Decay: Epic Angler',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'ZoneScripts/TheCoveOfDecayEpicAngler.lua',300,'',0,1471074570,'',0,1,1,0),
|
||||
(312,0,'CoveDecay3','steppes_epic01_cove','Cove of Decay: Horror Beneath the Waves',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1282445722,'',0,1,1,0),
|
||||
(313,0,'Cove of Decay: Mjolni\'s Lair','steppes_epic01_cove','Cove of Decay: Mjolni\'s Lair',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,1209600,0,'',300,'',0,470947005,'',0,1,1,0),
|
||||
(314,0,'IsleRefuge2','tutorial_island02','Darathar\'s Flight',-17.24,-5.4,223,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3299576964,'',0,1,1,0),
|
||||
(313,0,'Cove of Decay: Mjolni''s Lair','steppes_epic01_cove','Cove of Decay: Mjolni''s Lair',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,1209600,0,'',300,'',0,470947005,'',0,1,1,0),
|
||||
(314,0,'IsleRefuge2','tutorial_island02','Darathar''s Flight',-17.24,-5.4,223,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3299576964,'',0,1,1,0),
|
||||
(315,0,'Deathfist2','deathfist','Deathfist Citadel: Assault',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1875388458,'',0,1,1,0),
|
||||
(316,0,'Deathfist3','deathfist','Deathfist Citadel: Onslaught',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1654839403,'',0,1,1,0),
|
||||
(317,0,'Deathfist4','deathfist','Deathfist Citadel: The Arena of Zek',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2388724028,'',0,1,1,0),
|
||||
(318,0,'DrayeksChamber2','permafrost_epic01_icebound','Drayek\'s Chamber: Throne of the Kromise King',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1179826618,'',0,1,1,0),
|
||||
(319,0,'Trembling Lagoon: Dythra\'s Lair','feerrott_epic01_temple','Trembling Lagoon: Dythra\'s Lair',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,976300801,'',0,1,1,0),
|
||||
(318,0,'DrayeksChamber2','permafrost_epic01_icebound','Drayek''s Chamber: Throne of the Kromise King',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1179826618,'',0,1,1,0),
|
||||
(319,0,'Trembling Lagoon: Dythra''s Lair','feerrott_epic01_temple','Trembling Lagoon: Dythra''s Lair',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,976300801,'',0,1,1,0),
|
||||
(320,0,'EchoesTime1','cmmn_epic02_mage','Echoes of Time',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,710155441,'',0,1,1,0),
|
||||
(321,0,'The Firemyst Gully: A Gallant Confrontation','antonica_epic02_firemyst','The Firemyst Gully: A Gallant Confrontation',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1214546326,'',0,1,1,0),
|
||||
(322,0,'Firemyst3','antonica_epic02_firemyst','The Firemyst Gully: In Pursuit',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1877036992,'',0,1,1,0),
|
||||
(323,0,'Firemyst4','antonica_epic02_firemyst','The Firemyst Gully: Vanudozalon\'s Lair',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2192926045,'',0,1,1,0),
|
||||
(324,0,'GrimgashsLair','tutorial_island02_epic01','Grimgash\'s Lair',-14.5,0,-2.75,0,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'GROUP_LOCKOUT_INSTANCE',0,0,0,0,'ZoneScripts/GrimgashsLair.lua',10,'',0,2942727750,'',0,0,1,0),
|
||||
(323,0,'Firemyst4','antonica_epic02_firemyst','The Firemyst Gully: Vanudozalon''s Lair',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2192926045,'',0,1,1,0),
|
||||
(324,0,'GrimgashsLair','tutorial_island02_epic01','Grimgash''s Lair',-14.5,0,-2.75,0,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'GROUP_LOCKOUT_INSTANCE',0,0,0,0,'ZoneScripts/GrimgashsLair.lua',10,'',0,2942727750,'',0,0,1,0),
|
||||
(325,0,'IsleRefuge1','tutorial_island02','Isle of Refuge',1.56,-7.97,243.45,92,-1000000,1.05,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/IsleRefuge1.lua',300,'',0,2252985298,'',0,0,1,0),
|
||||
(326,0,'Icespire Summit','everfrost_epic02_icespire','Icespire Summit',-63.16,58.9,-885.42,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2868499059,'',0,1,1,0),
|
||||
(327,0,'DruidRing','antonica_epic01_vale','Imperiled Druid Ring',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4155975111,'',0,1,1,0),
|
||||
(328,0,'ShatteredVale3','antonica_epic01_vale','Invasion of the Vale',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3338713433,'',0,1,1,0),
|
||||
(329,0,'MaidenGulchRescue','lavastorm_epic02_gulch','Maiden\'s Gulch: Rescue of the Sage',-190.18,1.6,-338.64,245,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3161340403,'',0,1,1,0),
|
||||
(329,0,'MaidenGulchRescue','lavastorm_epic02_gulch','Maiden''s Gulch: Rescue of the Sage',-190.18,1.6,-338.64,245,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3161340403,'',0,1,1,0),
|
||||
(330,0,'Nektropos2','nektropos_castle','Nektropos Castle: Craftsman Errands',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1334746619,'',0,1,1,0),
|
||||
(331,0,'Nektropos3','nektropos_castle','Nektropos Castle: The Return',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3051981584,'',0,1,1,0),
|
||||
(332,0,'Nektropos4','nektropos_castle','Nektropos Castle: Tribulation',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3927417108,'',0,1,1,0),
|
||||
(333,0,'SanctumFear3','cazicthule_epic01_sanctum ','The Sanctum of Fear: Niscanith\'s Lair',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4089148686,'',0,1,1,0),
|
||||
(333,0,'SanctumFear3','cazicthule_epic01_sanctum ','The Sanctum of Fear: Niscanith''s Lair',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4089148686,'',0,1,1,0),
|
||||
(334,0,'ShatteredStillness','antonica_epic02_firemyst','Shattered Stillness',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3520240139,'',0,1,1,0),
|
||||
(335,0,'The Shattered Vale: A Bold Confrontation','antonica_epic01_vale','The Shattered Vale: A Bold Confrontation',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3514726670,'',0,1,1,0),
|
||||
(336,0,'The Shattered Vale: Lordly Confrontation','antonica_epic01_vale','The Shattered Vale: Lordly Confrontation',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,231154179,'',0,1,1,0),
|
||||
@ -442,19 +377,19 @@ INSERT INTO `zones` VALUES
|
||||
(340,0,'CaveWonder1','enchanted_mini01','The Caves of Wonder',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1409486089,'',0,1,1,0),
|
||||
(341,0,'CaveWonder2','enchanted_mini01','Heroic: The Caves of Wonder',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3221976462,'',0,1,1,0),
|
||||
(342,0,'SanctumFear2','cazicthule_epic01_sanctum ','Sanctum of Fear: Chamber of the Keeper',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,507325671,'',0,1,1,0),
|
||||
(343,0,'MaidensGulch2','lavastorm_epic02_gulch','Maiden\'s Gulch: Commune of K\'Dal',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1048492947,'',0,1,1,0),
|
||||
(343,0,'MaidensGulch2','lavastorm_epic02_gulch','Maiden''s Gulch: Commune of K''Dal',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1048492947,'',0,1,1,0),
|
||||
(344,0,'The Cove of Decay: A Heroic Confrontation','steppes_epic01_cove','The Cove of Decay: A Heroic Confrontation',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2618666032,'',0,1,1,0),
|
||||
(345,0,'TombValor2','befallen_epic01','Tomb of Valor: Defiled',-4.74,-45.79,-47.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1782317725,'',0,1,1,0),
|
||||
(346,0,'The Eternal Gorge: A Daring Confrontation','cmmn_epic02_mage','The Eternal Gorge: A Daring Confrontation',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2498016461,'',0,1,1,0),
|
||||
(347,0,'EternalGorge3','cmmn_epic02_mage','The Eternal Gorge: Tears of the Daughters',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1153144978,'',0,1,1,0),
|
||||
(348,0,'CircleElders','tutorial_island02_epic01','The Circle of Elders',-14.5,0,-2.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3366202526,'',0,1,1,0),
|
||||
(349,0,'Gobblerock\'s Hideout','fprt_sewer02','Gobblerock\'s Hideout',-126,0,59.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'ZoneScripts/GobblerocksHideout.lua',300,'',0,1583063371,'',0,1,1,0),
|
||||
(350,0,'WorkshopEvil','fprt_tradeskill01','Tradeskiller\'s Workshop',3,1,-3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3046659043,'',0,1,1,0),
|
||||
(351,0,'HeraldsKLorn','fprt_tradeskill01','The Heralds of K\'Lorn',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2136244020,'',0,1,1,0),
|
||||
(349,0,'Gobblerock''s Hideout','fprt_sewer02','Gobblerock''s Hideout',-126,0,59.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'ZoneScripts/GobblerocksHideout.lua',300,'',0,1583063371,'',0,1,1,0),
|
||||
(350,0,'WorkshopEvil','fprt_tradeskill01','Tradeskiller''s Workshop',3,1,-3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3046659043,'',0,1,1,0),
|
||||
(351,0,'HeraldsKLorn','fprt_tradeskill01','The Heralds of K''Lorn',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2136244020,'',0,1,1,0),
|
||||
(352,0,'The Lair of the Necromancer','fallengate_epic01_boss','The Lair of the Necromancer',37,-26,-189,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,196425230,'',0,1,1,0),
|
||||
(353,10,'LibraryLight2','exp01_cty_majdul_library','The Library of Light: Scholar Errands',0,-0.2,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2219248866,'',0,1,1,0),
|
||||
(354,20,'NestGreatEgg2','exp02_dun_shrines_of_sky_epic02_nest','The Nest of the Great Egg: Outfitter Errands',38.48,112.78,0.03,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2124039412,'',0,1,1,0),
|
||||
(355,0,'OratoriumThyr2','solusekseye_epic03_thyr','The Oratorium of Thyr: Allim\'s Fate',-204.3,-617.46,-193.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,402095699,'',0,1,1,0),
|
||||
(355,0,'OratoriumThyr2','solusekseye_epic03_thyr','The Oratorium of Thyr: Allim''s Fate',-204.3,-617.46,-193.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,402095699,'',0,1,1,0),
|
||||
(356,0,'The QSS Bootstrutter','boat_06p_feerrott','The QSS Bootstrutter',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',5400,0,259200,0,'',300,'',0,3743881793,'',0,1,1,0),
|
||||
(357,0,'RumblerCaves','steppes_mini01','The Rumbler Caves',827.3,-13.3,1028.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4050420393,'',0,1,1,0),
|
||||
(358,0,'SeaBiscuit1','boat_06p_enchanted','The Sea Biscuit: Enchanted Journey',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1980603774,'',0,1,1,0),
|
||||
@ -468,11 +403,11 @@ INSERT INTO `zones` VALUES
|
||||
(366,0,'DrownedCaverns3','adv02_dun_drowned_caverns','The Drowned Caverns: Flammable Fur',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2366967768,'',0,1,1,0),
|
||||
(367,0,'DrownedCaverns4','adv02_dun_drowned_caverns','The Drowned Caverns: Hot Water',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,817852260,'',0,1,1,0),
|
||||
(368,0,'DrownedCaverns5','adv02_dun_drowned_caverns','The Drowned Caverns: Outer Grotto',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1358293133,'',0,1,1,0),
|
||||
(369,0,'Sundered Splitpaw: Anvilpaw\'s Grotto','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Anvilpaw\'s Grotto',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2952940347,'',0,1,1,0),
|
||||
(369,0,'Sundered Splitpaw: Anvilpaw''s Grotto','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Anvilpaw''s Grotto',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2952940347,'',0,1,1,0),
|
||||
(370,0,'Splitpaw3','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Captive Audience',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1406658297,'',0,1,1,0),
|
||||
(371,0,'Splitpaw4','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Crawler Nest',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2072242411,'',0,1,1,0),
|
||||
(372,0,'Splitpaw5','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Delving into the Darkness',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1568159668,'',0,1,1,0),
|
||||
(373,0,'Sundered Splitpaw: Gladiator\'s Triumph','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Gladiator\'s Triumph',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,308776385,'',0,1,1,0),
|
||||
(373,0,'Sundered Splitpaw: Gladiator''s Triumph','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Gladiator''s Triumph',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,308776385,'',0,1,1,0),
|
||||
(374,0,'Splitpaw7','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Hideout',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4160317729,'',0,1,1,0),
|
||||
(375,0,'Sundered Splitpaw: Trial of Harclave','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Trial of Harclave',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2940940235,'',0,1,1,0),
|
||||
(376,0,'Splitpaw9','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Upper Tunnels',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1849807013,'',0,1,1,0),
|
||||
@ -490,53 +425,53 @@ INSERT INTO `zones` VALUES
|
||||
(388,0,'BefallenHalls','exp05_dun_befallen_forsaken','Befallen: Halls of the Forsaken',7.25,0.25,0.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2787554569,'',0,1,1,0),
|
||||
(389,50,'The Ruins of Guk: Halls of the Fallen','exp05_dun_guk_upper','The Ruins of Guk: Halls of the Fallen',-33.5,0.2,12.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1343179064,'',0,1,1,0),
|
||||
(390,50,'The Ruins of Guk: The Lower Corridors','exp05_dun_guk_lower','The Ruins of Guk: The Lower Corridors',3.33,-2,-2.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,367609577,'',0,1,1,0),
|
||||
(391,50,'The Ruins of Guk: Ykesha\'s Outer Stronghold','exp05_dun_guk_stronghold','The Ruins of Guk: Ykesha\'s Outer Stronghold',0.5,-0.5,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1823532970,'',0,1,1,0),
|
||||
(392,50,'Ykesha\'s Inner Stronghold','exp05_dun_guk_stronghold_raid','Ykesha\'s Inner Stronghold',44,-10,-384,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',259200,0,604800,0,'',300,'',0,1609995901,'',0,1,1,0),
|
||||
(393,50,'Emperor Atrebe\'s Laboratory: The Fabled City of Kor-sha','exp05_dun_korsha','Emperor Atrebe\'s Laboratory: The Fabled City of Kor-sha',0.25,0.1,30.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4140986635,'',0,1,1,0),
|
||||
(391,50,'The Ruins of Guk: Ykesha''s Outer Stronghold','exp05_dun_guk_stronghold','The Ruins of Guk: Ykesha''s Outer Stronghold',0.5,-0.5,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1823532970,'',0,1,1,0),
|
||||
(392,50,'Ykesha''s Inner Stronghold','exp05_dun_guk_stronghold_raid','Ykesha''s Inner Stronghold',44,-10,-384,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',259200,0,604800,0,'',300,'',0,1609995901,'',0,1,1,0),
|
||||
(393,50,'Emperor Atrebe''s Laboratory: The Fabled City of Kor-sha','exp05_dun_korsha','Emperor Atrebe''s Laboratory: The Fabled City of Kor-sha',0.25,0.1,30.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4140986635,'',0,1,1,0),
|
||||
(394,50,'Veksar: The Sunken Theater','exp05_dun_veksar','Veksar: The Sunken Theater',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3065176712,'',0,1,1,0),
|
||||
(395,50,'MiragulEpic','exp05_dun_miragul_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,9398401,'',0,1,1,0),
|
||||
(396,0,'Anathema','exp05_dun_miragul_lower','Miragul\'s Phylactery: The Anathema',10.25,-0.2,9.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,914478188,'',0,1,1,0),
|
||||
(397,0,'Crucible','exp05_dun_miragul_shard','Miragul\'s Phylactery: The Crucible',-31,0,-56,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,877807456,'',0,1,1,0),
|
||||
(398,0,'ScionOfIce','exp05_dun_miragul_upper','Miragul\'s Phylactery: Scion of Ice',-1.5,0,13.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3608846391,'',0,1,1,0),
|
||||
(396,0,'Anathema','exp05_dun_miragul_lower','Miragul''s Phylactery: The Anathema',10.25,-0.2,9.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,914478188,'',0,1,1,0),
|
||||
(397,0,'Crucible','exp05_dun_miragul_shard','Miragul''s Phylactery: The Crucible',-31,0,-56,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,877807456,'',0,1,1,0),
|
||||
(398,0,'ScionOfIce','exp05_dun_miragul_upper','Miragul''s Phylactery: Scion of Ice',-1.5,0,13.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3608846391,'',0,1,1,0),
|
||||
(399,50,'Evernight Abbey','exp05_dun_mistmoore_abbey','Evernight Abbey',0,-0.25,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,469017869,'',0,1,1,0),
|
||||
(400,50,'Zarrakon\'s Abyssal Chamber','exp05_dun_mistmoore_dragon','Zarrakon\'s Abyssal Chamber',0,-16,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2010690328,'',0,1,1,0),
|
||||
(400,50,'Zarrakon''s Abyssal Chamber','exp05_dun_mistmoore_dragon','Zarrakon''s Abyssal Chamber',0,-16,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2010690328,'',0,1,1,0),
|
||||
(401,0,'MistmyrManor','exp05_dun_mistmoore_manor','Mistmyr Manor',0,-0.3,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4049258268,'',0,1,1,0),
|
||||
(402,50,'Ravenscale Repository','exp05_dun_mistmoore_repository','Ravenscale Repository',0,-0.22,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1421299292,'',0,1,1,0),
|
||||
(403,50,'Ward of Elements','exp05_dun_najena_atheneum','Ward of Elements',-67,-354,106,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',64800,0,604800,0,'',300,'',0,1606010574,'',0,1,1,0),
|
||||
(404,50,'The Deep Forge','exp05_dun_najena_forge','The Deep Forge',-0.25,0.15,24,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,111043148,'',0,1,1,0),
|
||||
(405,0,'NajenasHollowTower','exp05_dun_najena_hollow','Najena\'s Hollow Tower',0.4,-11.6,88.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4230709901,'',0,1,1,0),
|
||||
(405,0,'NajenasHollowTower','exp05_dun_najena_hollow','Najena''s Hollow Tower',0.4,-11.6,88.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4230709901,'',0,1,1,0),
|
||||
(406,50,'Anchor of Bazzul','exp05_dun_void_anchor','Anchor of Bazzul',-515.3,-0.6,657.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,84854578,'',0,1,1,0),
|
||||
(407,0,'Ferzhul','exp05_dun_void_palace','Palace of Ferzhul',-135.08,6.66,-10.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,274203338,'',0,1,1,0),
|
||||
(408,0,'PotAO','exp05_dun_void_palace','Palace of the Ancient One',-135.08,6.66,-10.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2935583788,'',0,1,1,0),
|
||||
(409,0,'Ahkzul','exp05_dun_void_pit','Obelisk of Ahkzul',546.15,6.1,-318.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2367932411,'',0,1,1,0),
|
||||
(410,0,'NuRoga','exp04_dun_droga_nurga','Nu\'Roga',-4.25,0,41.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2653575693,'',0,1,1,0),
|
||||
(410,0,'NuRoga','exp04_dun_droga_nurga','Nu''Roga',-4.25,0,41.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2653575693,'',0,1,1,0),
|
||||
(411,0,'IcyKeep1','permafrost','The Icy Keep (Easy)',-49.07,16,208,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2057982584,'',0,1,1,0),
|
||||
(412,0,'Frostfell','everfrost_frostfell','Frostfell Wonderland Village',65,-3,-1200,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3311558711,'',0,1,1,0),
|
||||
(413,0,'TheFuture','everfrost_frostfell','The Future',-502.92,-6,-355.49,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4130976405,'',0,1,1,0),
|
||||
(414,0,'KritchatsHouse','fprt_ph_1r01','Bobby Kritchat\'s House',-6.37,0.7,-13.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2297313179,'',0,1,1,0),
|
||||
(415,0,'McScrooglesPast','qey_epic03_village03_ph','McScroogle\'s Past',15.57,-0.5,-9.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2876833616,'',0,1,1,0),
|
||||
(416,0,'McScrooglesBoudoir','qey_ph_1r01','Mr. McScroogle\'s Boudoir',-6.21,0,-0.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4197602164,'',0,1,1,0),
|
||||
(414,0,'KritchatsHouse','fprt_ph_1r01','Bobby Kritchat''s House',-6.37,0.7,-13.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2297313179,'',0,1,1,0),
|
||||
(415,0,'McScrooglesPast','qey_epic03_village03_ph','McScroogle''s Past',15.57,-0.5,-9.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2876833616,'',0,1,1,0),
|
||||
(416,0,'McScrooglesBoudoir','qey_ph_1r01','Mr. McScroogle''s Boudoir',-6.21,0,-0.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4197602164,'',0,1,1,0),
|
||||
(417,30,'McScroogleHQ','exp03_dun_klakanon_epic01_menace','McScroogle Corp. HQ',129,24,-66.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1634382156,'',0,1,1,0),
|
||||
(418,0,'IcyKeep2','permafrost','The Icy Keep (Hard)',-49.07,16,208,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,431849093,'',0,1,1,0),
|
||||
(419,50,'AntoniasChambers','qey_guildhall_tier1','Antonia Bayle\'s Chambers',0,0,-5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GUILD_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3301442772,'',0,1,1,0),
|
||||
(419,50,'AntoniasChambers','qey_guildhall_tier1','Antonia Bayle''s Chambers',0,0,-5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GUILD_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3301442772,'',0,1,1,0),
|
||||
(420,0,'The Firemyst Gully: Supply Shortage','antonica_epic02_firemyst','The Firemyst Gully: Supply Shortage',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',64800,0,126000,0,'',300,'',0,3010767940,'',0,1,1,0),
|
||||
(421,30,'Rilgor Plegnog\'s Chambers','exp03_dun_klakanon_epic01_menace','Rilgor Plegnog\'s Chambers',129,24,-66.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',244800,0,604800,0,'',300,'',0,1078781744,'',0,1,1,0),
|
||||
(421,30,'Rilgor Plegnog''s Chambers','exp03_dun_klakanon_epic01_menace','Rilgor Plegnog''s Chambers',129,24,-66.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',244800,0,604800,0,'',300,'',0,1078781744,'',0,1,1,0),
|
||||
(422,30,'The Clockwork Workshop','exp03_dun_klakanon ','The Clockwork Workshop',130,9,52,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,126000,0,'',300,'',0,1627421757,'',0,1,1,0),
|
||||
(423,0,'EndlessCatacombs','adv04_dun_endless','The Endless Catacombs',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2483512159,'',0,1,1,0),
|
||||
(424,50,'OverlordsOffice','fprt_guildhall_tier2','The Overlord\'s Office',0,0,16.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GUILD_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3243271695,'',0,1,1,0),
|
||||
(424,50,'OverlordsOffice','fprt_guildhall_tier2','The Overlord''s Office',0,0,16.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GUILD_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3243271695,'',0,1,1,0),
|
||||
(425,50,'Tomb of the Mad Crusader','exp05_dun_befallen_cavern','Tomb of the Mad Crusader',-2.25,-0.1,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,140494800,'',0,1,1,0),
|
||||
(426,0,'The Cauldron Hollow: The Witches\' Cove','nektulos_epic01_cauldroncove','The Cauldron Hollow: The Witches\' Cove',894.775,10,-481.346,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',244800,0,604800,0,'',300,'',0,590443115,'',0,1,1,0),
|
||||
(426,0,'The Cauldron Hollow: The Witches'' Cove','nektulos_epic01_cauldroncove','The Cauldron Hollow: The Witches'' Cove',894.775,10,-481.346,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',244800,0,604800,0,'',300,'',0,590443115,'',0,1,1,0),
|
||||
(427,0,'Firemyst','antonica_epic02_firemyst','The Firemyst Gully',-1189.55,-13.24,705.52,0,-1000000,0,0,0,'Instanced Outdoor',0,0,0,0,0,0,0,'GROUP_LOCKOUT_INSTANCE',0,0,0,0,'',300,'',0,1001393294,'',0,1,1,0),
|
||||
(428,50,'Enchanted Dryad Grotto','exp05_dun_guk_upper_epic01_cave','Enchanted Dryad Grotto',13.8052,-32.8927,-322.195,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',2102400,0,2160000,0,'',300,'',0,1520991678,'',0,1,1,0),
|
||||
(429,10,'PoetsPalace2','exp01_dun_poets_palace_community','Describe me in the zones table! :)',57,305,-54,95,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3656598577,'',0,1,1,0),
|
||||
(431,40,'CharasisWest','exp04_dun_charasis_west','Emperor\'s Athenaeum',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,241278901,'',0,1,1,0),
|
||||
(432,0,'KurnsTower','exp04_dun_kurns_tower','Kurn\'s Tower',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3159751852,'',0,1,1,0),
|
||||
(431,40,'CharasisWest','exp04_dun_charasis_west','Emperor''s Athenaeum',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,241278901,'',0,1,1,0),
|
||||
(432,0,'KurnsTower','exp04_dun_kurns_tower','Kurn''s Tower',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3159751852,'',0,1,1,0),
|
||||
(433,40,'MoppetShoppe','exp04_dun_sebilis_quarters','The Moppet Shoppe',-17.4,31,479.8,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1525821771,'',0,1,1,0),
|
||||
(434,50,'LowerGuk1','exp05_dun_guk_lower_epic01_cave','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2474119725,'',0,1,1,0),
|
||||
(435,0,'Mystic','live_epic_mystic','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1533911469,'',0,1,1,0),
|
||||
(436,0,'HauntedUnrest','live_haunted_unrest','The Estate of Unrest',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,269999116,'',0,1,1,0),
|
||||
(437,0,'RodcetDiety','live_rodcet_diety','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1148846749,'',0,1,1,0),
|
||||
(438,0,'BuccaneersRest','befallen_epic01','The Buccaneer\'s Rest',3.03794,-45,-44.6673,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4085832737,'',0,1,1,0),
|
||||
(438,0,'BuccaneersRest','befallen_epic01','The Buccaneer''s Rest',3.03794,-45,-44.6673,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4085832737,'',0,1,1,0),
|
||||
(439,0,'TombNight2','mod01_dun_tombs_of_night','The Tombs of Night: A Search For Answers',120.016,-0.5,120.964,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2581166184,'',0,1,1,0),
|
||||
(440,50,'LegendsMuseum','qey_guildhall_tier1','Legends of Norrath Museum',1.13356,1,-0.742676,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4025127940,'',0,1,1,0),
|
||||
(441,10,'Enchanted Zygomyd Grotto','exp01_rgn_sinking_sands_epic01_lockjaw','Enchanted Zygomyd Grotto',213.457,-4.79144,-46.9508,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',212400,0,216000,0,'',300,'',0,2596566845,'',0,1,1,0),
|
||||
@ -547,34 +482,34 @@ INSERT INTO `zones` VALUES
|
||||
(446,0,'RitePassage','fprt_epic05_a02_temple01','Rite of Passage',9.72787,1,1.13225,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3789732280,'',0,1,1,0),
|
||||
(447,0,'The Condemned Catacomb','qey_catacomb01','The Condemned Catacomb',-217.584,0.5,-56.58,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,539868059,'',0,1,1,0),
|
||||
(448,0,'PrivateLounge','qey_ph_1r01','Bar of Brell: Private Lounge',-6.21334,0.0025,-0.20449,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2145600684,'',0,1,1,0),
|
||||
(449,0,'Blumbles','steppes_mini01','Blumble\'s Halfling Hole',820.961,-12,1023.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',300,'',0,2556324114,'',0,1,1,0),
|
||||
(449,0,'Blumbles','steppes_mini01','Blumble''s Halfling Hole',820.961,-12,1023.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',300,'',0,2556324114,'',0,1,1,0),
|
||||
(450,0,'SmallHideout','tutorial_island02_epic02','a small hideout',-4.89851,-8,161.891,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1266491077,'',0,1,1,0),
|
||||
(451,0,'LibraryErudin','exp06_dun_erudin_erudin01','Library of Erudin',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2187208939,'',0,1,1,0),
|
||||
(452,60,'Erudin Research Halls','exp06_dun_erudin_erudin02','Erudin Research Halls',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3855503282,'',0,1,1,0),
|
||||
(453,60,'Royal Palace of Erudin','exp06_dun_erudin_erudin03','Royal Palace of Erudin',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,656532006,'',0,1,1,0),
|
||||
(454,60,'The Vigilant: Final Destruction','exp06_dun_sentinal','The Vigilant: Final Destruction',0,72.5,-179,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3639764601,'',0,1,1,0),
|
||||
(455,60,'TheHole','exp06_dun_thehole','The Hole',19.74,101.43,-66.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4112900241,'',0,1,1,0),
|
||||
(456,60,'Demitrik\'s Bastion','exp06_dun_thehole_wing1','Demitrik\'s Bastion',19.74,101.43,-66.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,30053559,'',0,1,1,0),
|
||||
(456,60,'Demitrik''s Bastion','exp06_dun_thehole_wing1','Demitrik''s Bastion',19.74,101.43,-66.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,30053559,'',0,1,1,0),
|
||||
(457,60,'The Outer Vault','exp06_dun_thehole_wing2','The Outer Vault',-48,102,-37,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2780385483,'',0,1,1,0),
|
||||
(458,60,'SpiritsResonance','exp06_dun_thehole_wing3','Spirit\'s Resonance',336.91,114.34,-254.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,356553526,'',0,1,1,0),
|
||||
(458,60,'SpiritsResonance','exp06_dun_thehole_wing3','Spirit''s Resonance',336.91,114.34,-254.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,356553526,'',0,1,1,0),
|
||||
(459,0,'LairoftheDragonQueen','exp06_dun_toxxulia_mound01','Lair of the Dragon Queen',12.9,148.77,2427.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3161715072,'',0,1,1,0),
|
||||
(460,60,'Conservatory','exp06_dun_vastydeep01','Vasty Deep: The Conservatory',-9.24,-7,-30.71,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,954080035,'',0,1,1,0),
|
||||
(461,60,'AbandonedLabs','exp06_dun_vastydeep02','Vasty Deep: The Abandoned Labs',-0.89,-1.57,-1.28,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2073480066,'',0,1,1,0),
|
||||
(462,60,'VestigialCella','exp06_dun_vastydeep03','Vasty Deep: The Vestigial Cella',-12.9,-10,-3.06,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1092966222,'',0,1,1,0),
|
||||
(463,60,'Perah\'Celsis\' Abominable Laboratory','exp06_dun_vastydeep02','Perah\'Celsis\' Abominable Laboratory',14.47,-34.05,66.94,280,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2839605531,'',0,1,1,0),
|
||||
(463,60,'Perah''Celsis'' Abominable Laboratory','exp06_dun_vastydeep02','Perah''Celsis'' Abominable Laboratory',14.47,-34.05,66.94,280,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2839605531,'',0,1,1,0),
|
||||
(464,60,'StonebruntHighlands','exp06_rgn_odus_north','The Stonebrunt Highlands',-481.65,370.17,1513.09,45,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2369118810,'',0,1,1,0),
|
||||
(465,60,'SunderedFrontier','exp06_rgn_odus_south','The Sundered Frontier',2213.66,-210.17,2469.19,90,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,168443344,'',0,1,1,0),
|
||||
(466,60,'exp06_rgn_odus_south_epic01_panda','exp06_rgn_odus_south_epic01_panda','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1822966042,'',0,1,1,0),
|
||||
(467,0,'BG_Ganak','battleground_ctf','Battlefield of Ganak',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2342906850,'',0,1,1,0),
|
||||
(468,0,'BG_Smugglers','battleground_nodes','Smugglers Den',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2939036782,'',0,1,1,0),
|
||||
(469,0,'BG_Gears','battleground_relic01','Gears of Klak\'Anon',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1385404002,'',0,1,1,0),
|
||||
(469,0,'BG_Gears','battleground_relic01','Gears of Klak''Anon',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1385404002,'',0,1,1,0),
|
||||
(470,61,'FrostfangSea','halas','Frostfang Sea',-229.542,34.6202,-725.879,0,-1000000,0,1,80,'Outdoor',0,1,0,0,0,0,32,'NONE',0,0,0,0,'ZoneScripts/FrostfangSea.lua',300,'',0,2507711489,'',1,1,1,0),
|
||||
(472,0,'cmmn_epic01_orc','cmmn_epic01_orc','KaljanarsLair',-8.26939,-46,733.468,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4069880593,'',0,1,1,0),
|
||||
(473,0,'fprt_ph_5r01','fprt_ph_5r01','the Thexian Meeting',-3.87325,-0.497519,-2.07887,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1293060228,'',0,1,1,0),
|
||||
(474,0,'solusekseye_epic03_thyr','solusekseye_epic03_thyr','The Oratorium of Thyr: Deserted',-205.749,-617,-189.786,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1724471149,'',0,1,1,0),
|
||||
(475,0,'MurkwaterNook','fprt_sewer_epic03','The Murkwater Nook',3.80113,0.5,-17.8084,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2224401447,'',0,1,1,0),
|
||||
(476,0,'ShatteredStillnessEpic','antonica_epic02_firemyst','Shattered Stillness: Epic',-1187.3,-1187.3,-1187.3,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,19001049,'',0,1,1,0),
|
||||
(477,0,'PiratesStashHeroic','steppes_mini01','Heroic: A Pirate\'s Hidden Stash',820.961,-12,1025.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2609903017,'',0,1,1,0),
|
||||
(477,0,'PiratesStashHeroic','steppes_mini01','Heroic: A Pirate''s Hidden Stash',820.961,-12,1025.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2609903017,'',0,1,1,0),
|
||||
(478,0,'RumblerCavesHeroic','steppes_mini01','Heroic: Rumbler Caves',955.493,-22,1192.34,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2259272861,'',0,1,1,0),
|
||||
(479,0,'HollowHedge','live_haunted_cauldroncove','The Hollow Hedge',884.89,7.44304,-476.69,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,697470619,'',0,1,1,0),
|
||||
(480,70,'GreatDivide','exp07_rgn_great_divide','Great Divide',-1422.07,-510.27,-2275.1,35.46,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2941246892,'',0,1,1,0),
|
||||
@ -584,24 +519,24 @@ INSERT INTO `zones` VALUES
|
||||
(484,70,'Iceshard Keep','exp07_dun_kael_iceshard_keep','Iceshard Keep',-563.9,73.3,-25.17,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1810346508,'',0,1,1,0),
|
||||
(485,70,'The Temple of Rallos Zek','exp07_dun_kael_temple_zek','The Temple of Rallos Zek',-618.54,76.9,-1110.49,20,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,1762357401,'',0,1,1,0),
|
||||
(486,70,'Throne of Storms','exp07_dun_kael_throne','Throne of Storms',153.28,20.17,1614.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3130420047,'',0,1,1,0),
|
||||
(487,0,'KraytocsFortress','exp07_dun_kraytocs_fortress','Kraytoc\'s Fortress Of Rime',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3842703654,'',0,1,1,0),
|
||||
(487,0,'KraytocsFortress','exp07_dun_kraytocs_fortress','Kraytoc''s Fortress Of Rime',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3842703654,'',0,1,1,0),
|
||||
(488,70,'Tower of Frozen Shadow: Shadowed Corridors','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Shadowed Corridors',2,-2,18.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2210333543,'',0,1,1,0),
|
||||
(489,70,'Forgotten Pools','exp07_dun_velks_forgotten_pools','Forgotten Pools',0,0,0,0,-2000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2467121774,'',0,1,1,0),
|
||||
(490,70,'TheAscent','exp07_dun_velks_the_ascent','The Ascent',-448,115,-285,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,737340354,'',0,1,1,0),
|
||||
(491,0,'ShatteredVale6','antonica_epic01_vale_gu54','Describe me in the zones table! :)',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1733527721,'',0,1,1,0),
|
||||
(492,50,'GukSpire','exp05_dun_guk_spire','Zraxth\'s Unseen Arcanum',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4258451007,'',0,1,1,0),
|
||||
(492,50,'GukSpire','exp05_dun_guk_spire','Zraxth''s Unseen Arcanum',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4258451007,'',0,1,1,0),
|
||||
(493,0,'PotAOTradeskill','exp05_dun_void_palace_crafter','Palace of the Ancient One (Tradeskill)',-145,2,-3,268,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2629848730,'',0,1,1,0),
|
||||
(494,60,'Underfoot Depths','exp06_dun_thehole_raid','Underfoot Depths',0,32,-63,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,777600,0,'',300,'',0,3937794584,'',0,1,1,0),
|
||||
(495,70,'Sullon\'s Spire','exp07_dun_drunder_sullon_spire','Sullon\'s Spire',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1889953215,'',0,1,1,0),
|
||||
(496,70,'Tallon\'s Stronghold','exp07_dun_drunder_tallon_stronghold','Tallon\'s Stronghold',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2477908764,'',0,1,1,0),
|
||||
(497,70,'Vallon\'s Tower','exp07_dun_drunder_vallon_tower','Vallon\'s Tower',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3159879625,'',0,1,1,0),
|
||||
(495,70,'Sullon''s Spire','exp07_dun_drunder_sullon_spire','Sullon''s Spire',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1889953215,'',0,1,1,0),
|
||||
(496,70,'Tallon''s Stronghold','exp07_dun_drunder_tallon_stronghold','Tallon''s Stronghold',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2477908764,'',0,1,1,0),
|
||||
(497,70,'Vallon''s Tower','exp07_dun_drunder_vallon_tower','Vallon''s Tower',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3159879625,'',0,1,1,0),
|
||||
(498,70,'OuterKael','exp07_dun_kael_drakkel_hub','Outer Kael',-2135,57.36,-1200,220,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2607747591,'',0,1,1,0),
|
||||
(499,70,'Thurgadin','exp_07_thurgadin_velious','Thurgadin, City of the Coldain',985,-308,367,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3581557641,'',0,1,1,0),
|
||||
(501,61,'Halas1Room','halas_ph_1room','Halas One Room Housing',51.16,49.48,138.12,179,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,802201839,'',0,1,1,0),
|
||||
(502,61,'Halas3Room','halas_ph_3room','New Halas Three Room Housing',34.38,49.48,-3.1,270,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2463865530,'',0,1,1,0),
|
||||
(503,61,'Halas5Room','halas_ph_5room','New Halas Five Room Housing',33.78,49.48,-154.57,270,-1000000,0,0,0,'Player Housing',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3741636536,'',0,1,1,0),
|
||||
(504,0,'SummerHome','home_everfrost_menagerie','Everfrost Summer Home',-105,-23,-349,185,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1539707629,'',0,1,1,0),
|
||||
(505,10,'VacationSuite','home_majdul_bottle','Maj\'Dul Vacation Suite',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1540644614,'',0,1,1,0),
|
||||
(505,10,'VacationSuite','home_majdul_bottle','Maj''Dul Vacation Suite',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1540644614,'',0,1,1,0),
|
||||
(506,10,'PersonalLibrary','home_majdul_library','Personal Library',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,3298151362,'',0,1,1,0),
|
||||
(507,0,'OperaHouse','home_neriak_opera','Private Opera House',-665,29,-25,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,834698580,'',0,1,1,0),
|
||||
(508,0,'Dojo','home_qeynos_dojo','Personal Dojo',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3841277655,'',0,1,1,0),
|
||||
@ -627,14 +562,14 @@ INSERT INTO `zones` VALUES
|
||||
(532,0,'Icy Keep: Retribution','permafrost_frostfell','Icy Keep: Retribution',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',432000,0,777600,0,'',300,'',0,2780150587,'',0,1,1,0),
|
||||
(533,0,'Acquisition','nektulos_mini01','Acquisition',2.53,2.46,-3.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,233219426,'',0,1,1,0),
|
||||
(534,0,'QinLo1','adv04_dun_endless','Trial of Qin Lo: Solo',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3975257256,'',0,1,1,0),
|
||||
(535,80,'ChampionsRespite','battleground_lobby','Champion\'s Respite',22.4925,1,-28.5045,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,581603936,'',0,1,1,0),
|
||||
(535,80,'ChampionsRespite','battleground_lobby','Champion''s Respite',22.4925,1,-28.5045,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,581603936,'',0,1,1,0),
|
||||
(536,80,'TenebrousRefuge','home_floating_island','Tenebrous Island Refuge',-41.4936,-1.48073,96.1204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,912708921,'',0,1,1,0),
|
||||
(537,80,'Sleeper\'s Tomb: the Awakening','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: the Awakening',-17.01,-9,24.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1230803961,'',0,1,1,0),
|
||||
(538,80,'Sleeper\'s Tomb: Unearthed [Raid]','exp08_dun_sleepers_tomb_destroyed','Sleeper\'s Tomb: Unearthed [Raid]',-23,-10,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2882959844,'',0,1,1,0),
|
||||
(539,80,'SleepersTomb2','exp08_dun_sleepers_tomb_destroyed','Sleeper\'s Tomb [Contested]',-7,-10,-2.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,207236618,'',0,1,1,0),
|
||||
(540,80,'Sleeper\'s Tomb: The Forgotten Catacombs [Advanced Solo]','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: The Forgotten Catacombs [Advanced Solo]',413.5,-118,-84.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2478476480,'',0,1,1,0),
|
||||
(541,80,'Sleeper\'s Tomb: The Forgotten Catacombs [Heroic]','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: The Forgotten Catacombs [Heroic]',412.5,-118,-97.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,802506635,'',0,1,1,0),
|
||||
(542,80,'Sleeper\'s Tomb: a Temporal Leap [Raid]','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: a Temporal Leap [Raid]',-15.7883,-9.71442,25.6396,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',259200,0,604800,0,'',300,'',0,381322104,'',0,1,1,0),
|
||||
(537,80,'Sleeper''s Tomb: the Awakening','exp08_dun_sleepers_tomb','Sleeper''s Tomb: the Awakening',-17.01,-9,24.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1230803961,'',0,1,1,0),
|
||||
(538,80,'Sleeper''s Tomb: Unearthed [Raid]','exp08_dun_sleepers_tomb_destroyed','Sleeper''s Tomb: Unearthed [Raid]',-23,-10,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,2882959844,'',0,1,1,0),
|
||||
(539,80,'SleepersTomb2','exp08_dun_sleepers_tomb_destroyed','Sleeper''s Tomb [Contested]',-7,-10,-2.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,207236618,'',0,1,1,0),
|
||||
(540,80,'Sleeper''s Tomb: The Forgotten Catacombs [Advanced Solo]','exp08_dun_sleepers_tomb','Sleeper''s Tomb: The Forgotten Catacombs [Advanced Solo]',413.5,-118,-84.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2478476480,'',0,1,1,0),
|
||||
(541,80,'Sleeper''s Tomb: The Forgotten Catacombs [Heroic]','exp08_dun_sleepers_tomb','Sleeper''s Tomb: The Forgotten Catacombs [Heroic]',412.5,-118,-97.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,802506635,'',0,1,1,0),
|
||||
(542,80,'Sleeper''s Tomb: a Temporal Leap [Raid]','exp08_dun_sleepers_tomb','Sleeper''s Tomb: a Temporal Leap [Raid]',-15.7883,-9.71442,25.6396,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',259200,0,604800,0,'',300,'',0,381322104,'',0,1,1,0),
|
||||
(543,70,'Temple of Rallos Zek: Foundations of Stone','exp07_dun_kael_temple_zek','Temple of Rallos Zek: Foundations of Stone',-603.509,78,-1108.79,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1789287425,'',0,1,1,0),
|
||||
(544,70,'Temple of Rallos Zek: Foundations of Stone [Challenge]','exp07_dun_kael_temple_zek','Temple of Rallos Zek: Foundations of Stone [Challenge]',-621.509,78,-1108.79,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,80646324,'',0,1,1,0),
|
||||
(545,70,'Throne of Storms: Hall of Legends','exp07_dun_kael_throne','Throne of Storms: Hall of Legends',-128.696,-11,789.267,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,4105157939,'',0,1,1,0),
|
||||
@ -644,12 +579,12 @@ INSERT INTO `zones` VALUES
|
||||
(549,70,'FortressDrunder','exp07_dun_drunder_fortress','The Fortress of Drunder',-2.1,-0.21,23.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,611439565,'',0,1,1,0),
|
||||
(550,0,'The Deserted Mine','orcishwastes_mini01','The Deserted Mine',382.376,8,-95.08,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3133936487,'',0,1,1,0),
|
||||
(551,70,'Tower of Frozen Shadow: Umbral Halls','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Umbral Halls',-68.33,293.5,-7.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4253130900,'',0,1,1,0),
|
||||
(552,70,'TowerFrozenShadow2','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Haunt of Syl\'Tor',-40.03,635.5,111.46,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,776524994,'',0,1,1,0),
|
||||
(552,70,'TowerFrozenShadow2','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Haunt of Syl''Tor',-40.03,635.5,111.46,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,776524994,'',0,1,1,0),
|
||||
(553,0,'HiddenVillage','feerrott_epic02_froglok','The Hidden Village of Kugup',-140.131,14,142.309,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/HiddenVillage.lua',300,'',0,3407712702,'',0,1,1,0),
|
||||
(554,0,'CourtAlAfaz','exp01_dun_shimmering_citadel','The Court of Al\'Afaz',56.26,97.454,-124.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4256496104,'',0,1,1,0),
|
||||
(554,0,'CourtAlAfaz','exp01_dun_shimmering_citadel','The Court of Al''Afaz',56.26,97.454,-124.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4256496104,'',0,1,1,0),
|
||||
(555,0,'The Gates of Ahket Aken','exp01_dun_living_tombs','The Gates of Ahket Aken',-633.189,5,371.191,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,717528266,'',0,1,1,0),
|
||||
(556,0,'A Meeting of the Minds','feerrott_epic01_temple','A Meeting of the Minds',-905.273,-8,220.462,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'ZoneScripts/MeetingOfTheMinds.lua',300,'',0,1842738791,'',0,1,1,0),
|
||||
(557,0,'LockjawsLair','exp01_rgn_sinking_sands_epic01_lockjaw','Lockjaw\'s Lair',-3.38824,8,15.4198,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3439770280,'',0,1,1,0),
|
||||
(557,0,'LockjawsLair','exp01_rgn_sinking_sands_epic01_lockjaw','Lockjaw''s Lair',-3.38824,8,15.4198,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3439770280,'',0,1,1,0),
|
||||
(558,0,'Meditation','adv04_tower_cave','The Mediation Chamber',-13.8528,0.0025,-2.60848,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3350653370,'',0,1,1,0),
|
||||
(559,80,'Freeport','freeport_combined','The City of Freeport',-232.028,-56.065,172.565,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Freeport.lua',300,'',0,716469914,'',0,1,1,0),
|
||||
(560,0,'Nizara','adv04_dun_endless','Nizara, City of the Nayad',-48.9533,-89,-8.30118,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,729645890,'',0,1,1,0),
|
||||
@ -668,44 +603,44 @@ INSERT INTO `zones` VALUES
|
||||
(573,0,'LinVo1','adv04_dun_endless','Trial of Lin Vo: Solo',5.21633,-44,22.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3776901092,'',0,1,1,0),
|
||||
(574,0,'LinVo2','adv04_dun_endless','Trial of Lin Vo: Heroic',-0.783668,-44,23.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3124172364,'',0,1,1,0),
|
||||
(575,0,'QinLo2','adv04_dun_endless','Trial of Qin Lo: Heroic',50.0781,-89,-7.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3728328101,'',0,1,1,0),
|
||||
(576,0,'Munzoks','exp05_dun_void_anchor','Munzok\'s Material Bastion',-515.313,0,657.814,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,1140436936,'',0,1,1,0),
|
||||
(576,0,'Munzoks','exp05_dun_void_anchor','Munzok''s Material Bastion',-515.313,0,657.814,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',417600,0,604800,0,'',300,'',0,1140436936,'',0,1,1,0),
|
||||
(577,0,'CommuneKDal','lavastorm_epic02_gulch','Commune of K`Dal',-189.774,4,-338.747,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,603402304,'',0,1,1,0),
|
||||
(578,0,'ForgeOfAges','lavastorm_epic01_sanctum','The Infernal Forge of Ages',-313.356,-48,-744.563,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1977557393,'',0,1,1,0),
|
||||
(584,70,'ThurgadinGrandHall','thurgadin_prestige_home','Thurgadin Grand Hall',-347.295,-279.667,-387.081,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1249872435,'',0,1,1,0),
|
||||
(585,70,'Crystalline Breaks','exp07_dun_crystalcavern','Crystalline Breaks',23.9496,-33,92.1147,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',64800,0,126000,0,'',300,'',0,396208633,'',0,1,1,0),
|
||||
(586,70,'Hold of Rime: The Ascent','exp07_dun_velks_the_ascent','Hold of Rime: The Ascent',1.28,-5,-2.78,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,941265492,'',0,1,1,0),
|
||||
(587,70,'Hold of Rime: The Fortress Spire','exp07_dun_kraytocs_fortress','Hold of Rime: The Fortress Spire',-53.72,1,-25.84,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1872281253,'',0,1,1,0),
|
||||
(588,0,'KraytocsFortressHardMode','exp07_dun_kraytocs_fortress','Kraytoc\'s Fortress of Rime [Challenge]',0.292056,0,2.30359,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,122053753,'',0,1,1,0),
|
||||
(588,0,'KraytocsFortressHardMode','exp07_dun_kraytocs_fortress','Kraytoc''s Fortress of Rime [Challenge]',0.292056,0,2.30359,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,122053753,'',0,1,1,0),
|
||||
(589,80,'qeynos_combined01','qeynos_combined01','Qeynos Capitol District',396.938,-20.9182,-175.205,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/QeynosCapitalDistrict.lua',300,'',0,1372323775,'',1,1,1,0),
|
||||
(590,0,'UnkemptVale','antonica_epic01_vale','The Unkempt Vale: A Lordly Confrontation',-2358.17,11,-53.2353,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,938907661,'',0,1,1,0),
|
||||
(591,0,'The Far Pelican','boat_06p_feerrott','The Far Pelican',0.912209,2,-18.9637,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,20942085,'',0,1,1,0),
|
||||
(592,0,'AzhubsShip','boat_06p_lavastorm','Azhub\'s Ship',3.12657,-1.5,-7.73107,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1286725707,'',0,1,1,0),
|
||||
(592,0,'AzhubsShip','boat_06p_lavastorm','Azhub''s Ship',3.12657,-1.5,-7.73107,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1286725707,'',0,1,1,0),
|
||||
(593,0,'The Chamber of the Keeper','cazicthule_epic01_sanctum','The Chamber of the Keeper',0.464886,-9.9975,-179.077,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'ZoneScripts/The Chamber of the Keeper.lua',300,'',0,510571427,'',0,1,1,0),
|
||||
(594,0,'Gnoll Cave','enchanted_mini01','A Gnoll Cave',-340.291,3.79318,-628.419,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1114078370,'',0,1,1,0),
|
||||
(595,0,'The Forbidden Sepulcher','everfrost_epic02_icespire','The Forbidden Sepulcher',-75.0322,60,-893.966,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1334967479,'',0,1,1,0),
|
||||
(596,10,'MajDul3Residence2','exp01_cty_majdul_3r02','A Maj\'Dul Residence',9.43738,0.5,1.00831,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1613383542,'',0,1,1,0),
|
||||
(597,10,'AzharsPenitence','exp01_dun_shimmering_citadel_epic01_bottle','Azhar\'s Penitence',0.61955,1,52.6354,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1796401397,'',0,1,1,0),
|
||||
(596,10,'MajDul3Residence2','exp01_cty_majdul_3r02','A Maj''Dul Residence',9.43738,0.5,1.00831,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1613383542,'',0,1,1,0),
|
||||
(597,10,'AzharsPenitence','exp01_dun_shimmering_citadel_epic01_bottle','Azhar''s Penitence',0.61955,1,52.6354,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1796401397,'',0,1,1,0),
|
||||
(598,10,'PalaceSabaron','exp01_dun_shimmering_citadel_epic02_prism','The Palace of Sabaron',-19.5178,-6.1451,-26.9855,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,39282643,'',0,1,1,0),
|
||||
(599,10,'Ancient\'s Table','exp01_rgn_pillars_of_flame_epic01_cazel','Ancient\'s Table',1.47885,-0.100438,7.03403,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2078528578,'',0,1,1,0),
|
||||
(599,10,'Ancient''s Table','exp01_rgn_pillars_of_flame_epic01_cazel','Ancient''s Table',1.47885,-0.100438,7.03403,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2078528578,'',0,1,1,0),
|
||||
(600,10,'Scornfeather Roost','exp01_rgn_pillars_of_flame_epic01_cazel','Scornfeather Roost',2.83403,1,5.48852,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,4256169197,'',0,1,1,0),
|
||||
(601,10,'The Hidden Cache','exp01_rgn_sinking_sands_epic01_lockjaw','The Hidden Cache',111.747,-10,-109.677,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2054476845,'',0,1,1,0),
|
||||
(602,10,'The Sanctorium','exp01_rgn_sinking_sands_epic01_lockjaw','The Sanctorium',-8.69045,8,7.14274,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1063191088,'',0,1,1,0),
|
||||
(603,20,'LaboratoryLordVyemm','exp02_dun_halls_of_fate','The Laboratory of Lord Vyemm',-124.634,-68,451.577,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,598407856,'',0,1,1,0),
|
||||
(604,20,'AscentAwakened','exp02_dun_shrines_of_sky','Ascent of the Awakened',-66.3987,0.5,1.96815,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,931857537,'',0,1,1,0),
|
||||
(605,30,'HauntedVaults','exp03_dun_kaladim_stormguard_hall','The Haunted Vaults',157.515,18,-61.1178,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,759321130,'',0,1,1,0),
|
||||
(606,40,'EmperorsAthenaeum(Duplicated?)','exp04_dun_charasis_west','Emperor\'s Athenaeum',3.15,0,2.12,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3574873323,'',0,1,1,0),
|
||||
(606,40,'EmperorsAthenaeum(Duplicated?)','exp04_dun_charasis_west','Emperor''s Athenaeum',3.15,0,2.12,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3574873323,'',0,1,1,0),
|
||||
(607,40,'TempleCabilis','exp04_dun_sebilis_quarters','Lost Temple of Cabilis',109.789,-10.4975,219.764,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2450210553,'',0,1,1,0),
|
||||
(608,50,'UnseenArcanum','exp05_dun_guk_spire','Zraxth\'s Unseen Arcanum',6.53,9,-21.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1536294196,'',0,1,1,0),
|
||||
(609,0,'MiragulsPlanarShard','exp05_dun_miragul_shard','Miragul\'s Planar Shard',-19.08,1,-61.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3082106730,'',0,1,1,0),
|
||||
(608,50,'UnseenArcanum','exp05_dun_guk_spire','Zraxth''s Unseen Arcanum',6.53,9,-21.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1536294196,'',0,1,1,0),
|
||||
(609,0,'MiragulsPlanarShard','exp05_dun_miragul_shard','Miragul''s Planar Shard',-19.08,1,-61.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3082106730,'',0,1,1,0),
|
||||
(610,60,'The Vigilant: Incursion','exp06_dun_sentinal','The Vigilant: Incursion',0.86,3,126.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,4148131641,'',0,1,1,0),
|
||||
(611,60,'Vigilant3','exp06_dun_sentinal','The Vigilant: Infiltration',4.27,85,-23.32,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1121019415,'',0,1,1,0),
|
||||
(612,60,'The Vigilant: Rescue','exp06_dun_sentinal','The Vigilant: Rescue',0.06,62,-116.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3900422267,'',0,1,1,0),
|
||||
(613,60,'DarkCave','exp06_rgn_odus_north','A Dark Cave',191.68,239,255.42,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,70815476,'',0,1,1,0),
|
||||
(614,70,'Spire of Rage','exp07_dun_drunder_sullon_spire','Spire of Rage',2.12005,0,-6.13393,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2307600024,'',0,1,1,0),
|
||||
(615,70,'Sullon\'s Spire [Challenge]','exp07_dun_drunder_sullon_spire','Sullon\'s Spire [Challenge]',1.09203,0,-2.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3128598947,'',0,1,1,0),
|
||||
(616,70,'Citadel of V\'uul','exp07_dun_drunder_tallon_stronghold','Citadel of V\'uul',3.09203,0,-1.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3716709206,'',0,1,1,0),
|
||||
(617,70,'Tallon\'s Stronghold [Challenge]','exp07_dun_drunder_tallon_stronghold','Tallon\'s Stronghold [Challenge]',5.09203,0,-7.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,456754750,'',0,1,1,0),
|
||||
(618,70,'Vallon\'s Tower [Challenge]','exp07_dun_drunder_vallon_tower','Vallon\'s Tower [Challenge]',-4.90797,0,-6.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3784641944,'',0,1,1,0),
|
||||
(615,70,'Sullon''s Spire [Challenge]','exp07_dun_drunder_sullon_spire','Sullon''s Spire [Challenge]',1.09203,0,-2.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3128598947,'',0,1,1,0),
|
||||
(616,70,'Citadel of V''uul','exp07_dun_drunder_tallon_stronghold','Citadel of V''uul',3.09203,0,-1.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3716709206,'',0,1,1,0),
|
||||
(617,70,'Tallon''s Stronghold [Challenge]','exp07_dun_drunder_tallon_stronghold','Tallon''s Stronghold [Challenge]',5.09203,0,-7.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,456754750,'',0,1,1,0),
|
||||
(618,70,'Vallon''s Tower [Challenge]','exp07_dun_drunder_vallon_tower','Vallon''s Tower [Challenge]',-4.90797,0,-6.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,3784641944,'',0,1,1,0),
|
||||
(619,70,'Elements of War','exp07_dun_plane_of_war','Elements of War',-61.5,102,-104.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,3104613921,'',0,1,1,0),
|
||||
(620,70,'Elements of War [Challenge]','exp07_dun_plane_of_war','Elements of War [Challenge]',-60.5,102,-101.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',64800,0,259200,0,'',300,'',0,2562014133,'',0,1,1,0),
|
||||
(621,70,'PlaneWar','exp07_dun_plane_of_war','Plane of War',-60.7,56,818.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4064403794,'',0,1,1,0),
|
||||
@ -713,8 +648,8 @@ INSERT INTO `zones` VALUES
|
||||
(623,80,'WitheredLands','exp08_rgn_withered_lands','The Withered Lands',-555.08,-685.734,367.063,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1535573742,'',0,1,1,0),
|
||||
(624,90,'Chelsith: The Ancient Vault','exp09_dun_deepchelsith','Chelsith: The Ancient Vault',-44.18,10.77,6.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2809552448,'',0,1,1,0),
|
||||
(625,90,'Chelsith: The Ancient Vault [Advanced Solo]','exp09_dun_deepchelsith','Chelsith: The Ancient Vault [Advanced Solo]',-44.18,10.77,6.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2085057283,'',0,1,1,0),
|
||||
(626,90,'Harrow\'s End (Raid)','exp09_dun_drinals_castle','Harrow\'s End (Raid)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1655488815,'',0,1,1,0),
|
||||
(627,90,'Harrow\'s End: Baleful Dominion (Heroic)','exp09_dun_drinals_castle','Harrow\'s End: Baleful Dominion (Heroic)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,988708542,'',0,1,1,0),
|
||||
(626,90,'Harrow''s End (Raid)','exp09_dun_drinals_castle','Harrow''s End (Raid)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1655488815,'',0,1,1,0),
|
||||
(627,90,'Harrow''s End: Baleful Dominion (Heroic)','exp09_dun_drinals_castle','Harrow''s End: Baleful Dominion (Heroic)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,988708542,'',0,1,1,0),
|
||||
(628,90,'Dreadcutter','exp09_dun_drinals_ferry','The Dreadcutter',-6.17,24,74.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,302382115,'',0,1,1,0),
|
||||
(629,90,'The Dreadcutter [Advanced Solo]','exp09_dun_drinals_ferry','The Dreadcutter [Advanced Solo]',-6.29,24,74.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1764171761,'',0,1,1,0),
|
||||
(630,90,'AltarAbhorrence24','exp09_dun_temple_of_faceless','Altar of Abhorrence (Raid)',-405.79,2,464.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,324758579,'',0,1,1,0),
|
||||
@ -723,36 +658,36 @@ INSERT INTO `zones` VALUES
|
||||
(633,90,'Throne of Fear (Heroic)','exp09_dun_throne_of_fear','Throne of Fear (Heroic)',-317.01,1,-2.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3593629100,'',0,1,1,0),
|
||||
(634,90,'Throne of Fear: Ascension (Advanced Solo)','exp09_dun_throne_of_fear','Throne of Fear: Ascension (Advanced Solo)',-317.01,1,-2.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,99545403,'',0,1,1,0),
|
||||
(635,90,'ThroneFear2','exp09_dun_throne_of_fear','Throne of Fear: The Fear Gate',210.733,72.34,44.4457,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3648292296,'',0,1,1,0),
|
||||
(636,0,'Wurmbone\'s End','exp09_dun_wurmbones_end','Wurmbone\'s End',-16.89,-128,335.57,0,-2000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3371006638,'',0,1,1,0),
|
||||
(637,0,'Wurmbone\'s End [Advanced Solo]','exp09_dun_wurmbones_end','Wurmbone\'s End [Advanced Solo]',-16.3104,-129.714,334.796,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2047415502,'',0,1,1,0),
|
||||
(636,0,'Wurmbone''s End','exp09_dun_wurmbones_end','Wurmbone''s End',-16.89,-128,335.57,0,-2000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3371006638,'',0,1,1,0),
|
||||
(637,0,'Wurmbone''s End [Advanced Solo]','exp09_dun_wurmbones_end','Wurmbone''s End [Advanced Solo]',-16.3104,-129.714,334.796,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,2047415502,'',0,1,1,0),
|
||||
(638,90,'WurmboneCrag','exp09_dun_wurmbone_gulch','Wurmbone Crag',89.99,14,267.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,4070843496,'',0,1,1,0),
|
||||
(639,90,'WurmboneCrag1','exp09_dun_wurmbone_gulch','Wurmbone Crag [Advanced Solo]',89.99,14,267.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1585901758,'',0,1,1,0),
|
||||
(640,90,'EidolonJungle','exp09_rgn_eidolon_jungle','The Eidolon Jungle',-2159.75,222.393,768.29,0,-1000000,0,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,545027572,'',0,1,1,0),
|
||||
(641,90,'ObolPlains','exp09_rgn_plains_of_obol','Obol Plains',64.8961,13.5217,965.592,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,126142372,'',0,1,1,0),
|
||||
(642,0,'The Vault of the Fallen','fallengate_epic01_boss','The Vault of the Fallen',35.3134,-26.21,-189.683,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'GROUP_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,3181807316,'',0,1,1,0),
|
||||
(643,0,'DenCellar','fprt_epic01_storeroom01','Jade Tiger\'s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2451593186,'',0,1,1,0),
|
||||
(643,0,'DenCellar','fprt_epic01_storeroom01','Jade Tiger''s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2451593186,'',0,1,1,0),
|
||||
(644,0,'BigBend2','fprt_hood01','Big Bend: Sanctum of Spirits',-4.04,3,-69.27,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2366221557,'',1,1,1,0),
|
||||
(645,0,'StonestairByway2','fprt_hood02','Stonestair Byway: The Animus Corridors',9.07333,-4,-101.943,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4205698383,'',1,1,1,0),
|
||||
(646,0,'TempleStreet2','fprt_hood03','Temple Street: Vault of Necromechanica',17.7,3.5,23.14,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1757098077,'',1,1,1,0),
|
||||
(647,0,'BeggarsCourt2','fprt_hood04','SweatStainedCobbles',67.1062,-6.5,112.909,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1229760122,'',1,1,1,0),
|
||||
(648,0,'LongshadowAlley2','fprt_hood05','Longshadow Alley: Daeneth Cloister',13.8144,3.5,74.3103,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2777048224,'',1,1,1,0),
|
||||
(649,0,'ScaleYard2','fprt_hood06','Scale Yard: Traitors\' End',-7.95922,-5,-9.88693,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3411094155,'',1,1,1,0),
|
||||
(649,0,'ScaleYard2','fprt_hood06','Scale Yard: Traitors'' End',-7.95922,-5,-9.88693,0,-1000000,0,0,0,'',0,1,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3411094155,'',1,1,1,0),
|
||||
(650,0,'Court','home_citadel','Court',98.3708,146.589,-58.8835,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3864808754,'',0,1,1,0),
|
||||
(651,0,'FelwitheMansion','home_felwithe_throne','Felwithe Mansion',-76.8586,69.2698,-888.608,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2163020640,'',0,1,1,0),
|
||||
(652,0,'ArcaneAcademy','home_freeport','Arcane Academy',-5.84555,-6.23708,-123.799,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2085328324,'',0,1,1,0),
|
||||
(653,0,'TowerofKnowledge','home_magetower','Tower of Knowledge',-19.8019,-1.08077,-0.287789,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,979361544,'',0,1,1,0),
|
||||
(654,10,'AstronomersTower','home_majdul_moon','Maj\'Dul Astronomer\'s Tower',-0.011612,-0.158504,1.65973,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2077481292,'',0,1,1,0),
|
||||
(654,10,'AstronomersTower','home_majdul_moon','Maj''Dul Astronomer''s Tower',-0.011612,-0.158504,1.65973,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,2077481292,'',0,1,1,0),
|
||||
(655,0,'PersonalPlanetarium','home_poets_pedestal','Personal Planetarium',-48.9755,-0.570557,-0.313724,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2895880348,'',0,1,1,0),
|
||||
(656,0,'StormTowerIsle','home_stormy_isle','Storm Tower Isle',35.6977,44.7829,-101.576,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,457594060,'',0,1,1,0),
|
||||
(657,0,'SecludedSanctum','home_sullon_spire','Secluded Sanctum',117.699,356.786,-54.65,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2665644280,'',0,1,1,0),
|
||||
(658,0,'UncannyEstate','home_unrest','Uncanny Estate',-0.011612,-0.064752,1.65973,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2261834051,'',0,1,1,0),
|
||||
(659,0,'ResearchSanctum','home_vasty_library','Research Sanctum',21.2437,-14.9975,-383.902,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2580496839,'',0,1,1,0),
|
||||
(660,90,'qeynos_combined02','qeynos_combined02','Qeynos Province District',819.286,-23.3299,65.9943,0,-1000000,0,0,0,'Outdoor',0,1,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/qeynos_combined02.lua',300,'Welcome to Qeynos',0,4243691597,'',1,1,1,0),
|
||||
(661,0,'BuccaneersHideout','qey_epic06_p12_irontoes','Buccaneers\' Hideout',1.62288,-0.276476,-2.56662,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/BuccaneersHideout.lua',300,'',0,1813992810,'',0,1,1,0),
|
||||
(661,0,'BuccaneersHideout','qey_epic06_p12_irontoes','Buccaneers'' Hideout',1.62288,-0.276476,-2.56662,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/BuccaneersHideout.lua',300,'',0,1813992810,'',0,1,1,0),
|
||||
(662,0,'SeedTunarbos','qey_ph_3r01','The Seed of Tunarbos',0.066109,-2,7.9765,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,597408693,'',0,1,1,0),
|
||||
(663,0,'FightClub','qey_ph_3r03','Fight Club',1.60767,-1.99737,7.14355,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,902117370,'',0,1,1,0),
|
||||
(664,80,'GrandHall','thurgadin_prestige_home','Grand Hall',-347.295,-279.667,-387.081,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1066222316,'',0,1,1,0),
|
||||
(665,0,'DaratharsFlight','tutorial_island02','The Isle of Refuge: Darathar\'s Flight',-10.2996,-2.91619,167.785,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,712866647,'',0,1,1,0),
|
||||
(665,0,'DaratharsFlight','tutorial_island02','The Isle of Refuge: Darathar''s Flight',-10.2996,-2.91619,167.785,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,712866647,'',0,1,1,0),
|
||||
(666,0,'PermafrostCrypt','permafrost_frostfell','Permafrost Crypt: Decorating Retribution',-35.4254,2.72433,-575.952,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3906013280,'',0,1,1,0),
|
||||
(667,0,'IcyKeep4','permafrost_frostfell','The Icy Keep (Hard)',0.995131,1,3.07628,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3727147705,'',0,1,1,0),
|
||||
(668,110,'antonica_epic03_prelude','antonica_epic03_prelude','Rings of Karana',-2351,9,-60,114,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1658334079,'',0,1,1,0),
|
||||
@ -794,7 +729,7 @@ INSERT INTO `zones` VALUES
|
||||
(704,110,'exp08_rgn_velious_withered_lands','exp08_rgn_velious_withered_lands','Describe me in the zones table! :)',-3699,-779,-218,268,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,913238763,'',0,1,1,0),
|
||||
(705,110,'exp08_rgn_withered_lands_epic01','exp08_rgn_withered_lands_epic01','Describe me in the zones table! :)',-24,-627,-667,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3384724582,'',0,1,1,0),
|
||||
(706,110,'exp08_rgn_withered_lands_epic02','exp08_rgn_withered_lands_epic02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3654988134,'',0,1,1,0),
|
||||
(707,110,'Wurmbone\'s End: Nox Incessit','exp09_dun_wurmbones_end_x2','Wurmbone\'s End: Nox Incessit',-14,-130,315,351,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1841844596,'',0,1,1,0),
|
||||
(707,110,'Wurmbone''s End: Nox Incessit','exp09_dun_wurmbones_end_x2','Wurmbone''s End: Nox Incessit',-14,-130,315,351,-1000000,0,0,0,'',0,0,0,0,0,0,0,'RAID_PERSIST_INSTANCE',244800,0,604800,0,'',300,'',0,1841844596,'',0,1,1,0),
|
||||
(708,110,'exp10_dun_bixie_hive','exp10_dun_bixie_hive','Describe me in the zones table! :)',102,-28,-177,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3279878396,'',0,1,1,0),
|
||||
(709,110,'exp10_dun_highkeep','exp10_dun_highkeep','Describe me in the zones table! :)',5,-36,10,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3869064488,'',0,1,1,0),
|
||||
(710,110,'exp10_dun_highkeep_contested','exp10_dun_highkeep_contested','Describe me in the zones table! :)',5,-36,10,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,840435318,'',0,1,1,0),
|
||||
@ -834,7 +769,7 @@ INSERT INTO `zones` VALUES
|
||||
(744,110,'home_enchanted','home_enchanted','Vale of Halfpint Delight',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3307770916,'',0,1,1,0),
|
||||
(745,110,'home_fearshard','home_fearshard','Fearful Retreat',0,40,-63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3705144549,'',0,1,1,0),
|
||||
(746,110,'home_ferry','home_ferry','Galleon of Dreams',0,20,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3928190995,'',0,1,1,0),
|
||||
(747,110,'home_gnome','home_gnome','Tinkerer\'s Isle',-647,128,844,202,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3333216512,'',0,1,1,0),
|
||||
(747,110,'home_gnome','home_gnome','Tinkerer''s Isle',-647,128,844,202,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3333216512,'',0,1,1,0),
|
||||
(748,110,'home_kael_iceshard','home_kael_iceshard','Thurgadin Grand Hall',2,1,6,178,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1820373561,'',0,1,1,0),
|
||||
(749,110,'home_lavastorm','home_lavastorm','Lavastorm Winter Retreat',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3983744396,'',0,1,1,0),
|
||||
(750,110,'home_majdul_blades','home_majdul_blades','Residence of the Blades',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'PERSONAL_HOUSE_INSTANCE',0,0,0,0,'',300,'',0,1975960357,'',0,1,1,0),
|
||||
@ -857,7 +792,7 @@ INSERT INTO `zones` VALUES
|
||||
(767,110,'snow_dwelling','snow_dwelling','Frostfell Workshop',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1964928994,'',0,1,1,0),
|
||||
(768,110,'solusekeye_epic04_elemental_nagafen','solusekeye_epic04_elemental_nagafen','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3340372210,'',0,1,1,0),
|
||||
(769,110,'avatar_arena','avatar_arena','Arena of the Gods',0,4,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1457316413,'',0,1,1,0),
|
||||
(770,0,'GrozmagsTrial','tutorial_island02_epic01','Grozmag\'s Trial',-12.7713,1,-0.996791,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,126984764,'',0,1,1,0),
|
||||
(770,0,'GrozmagsTrial','tutorial_island02_epic01','Grozmag''s Trial',-12.7713,1,-0.996791,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,126984764,'',0,1,1,0),
|
||||
(771,0,'AnOpenGrave','steppes_mini01','An Open Grave',746.48,-26.93,1070,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2951589884,'',0,1,1,0),
|
||||
(772,0,'AnOpenGraveHeroic','steppes_mini01','Heroic: An Open Grave',746.48,-26.93,1070,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3147956527,'',0,1,1,0),
|
||||
(773,81,'exp11_dun_rum_cellar_02','exp11_dun_rum_cellar_02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,2948619023,'',0,1,1,0),
|
||||
@ -890,7 +825,7 @@ INSERT INTO `zones` VALUES
|
||||
(800,0,'home_estate_of_unrest_empty','home_estate_of_unrest_empty','Estate of Unrest',0,0.54,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,1845306138,'',0,1,1,0),
|
||||
(801,81,'home_pirate','home_pirate','Rum Runners Cove',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,2238491326,'',0,1,1,0),
|
||||
(802,81,'home_relictinker','home_relictinker','Relic Tinker Prestige Home',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,1934903381,'',0,1,1,0),
|
||||
(803,0,'home_sentinal','home_sentinal','Sentinel\'s Respite',-1.37,80.85,-111.62,175.5,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,2048889528,'',0,1,1,0),
|
||||
(803,0,'home_sentinal','home_sentinal','Sentinel''s Respite',-1.37,80.85,-111.62,175.5,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,2048889528,'',0,1,1,0),
|
||||
(804,0,'home_tutorial','home_tutorial','Isle of Refuge Prestige Home',-22.3,-5.82,220.21,337.97,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,943210387,'',0,1,1,0),
|
||||
(805,81,'orcishwastes_siege','orcishwastes_siege','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,1381991000,'',0,1,1,0),
|
||||
(806,81,'orcishwastes_siege_01','orcishwastes_siege_01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',0,'',0,791164179,'',0,1,1,0),
|
||||
@ -904,11 +839,11 @@ INSERT INTO `zones` VALUES
|
||||
(814,0,'Valley of the Rogue Magi','cmmn_epic02_mage','Valley of the Rogue Magi',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',5400,0,259200,0,'',300,'',0,1837594295,'',0,1,1,0),
|
||||
(815,0,'Hold of Prexus','qey_guildhall_tier2','Hold of Prexus',-0.188056,0.005529,-4.87351,178,-1000000,0,0,0,'Indoor',0,0,0,1,0,0,0,'GUILD_HOUSE_INSTANCE',0,0,0,0,'ZoneScripts/HoldOfPrexus.lua',600,'Welcome to the Hold.',0,2911024295,'',0,1,1,0),
|
||||
(816,1,'DoF_design_path_script','design_path_script','Path Scripting (DoF Only)',-2.67,-0.74,0.06,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/MemorialIsland.lua',30,'',0,910324560,'',0,1,1,0),
|
||||
(817,0,'houseofroachie','home_majdul_bottle','Roachie\'s Workshop',49,1.24,10.27,178,-1000000,0,0,0,'Indoor',0,0,0,255,0,0,0,'NONE',0,0,0,0,'',0,'Anything here will get nuked. Have fun breaking stuff!',0,3086350807,'',0,1,1,0),
|
||||
(818,0,'RylecsTest','home_floating_island','Rylec\'s Fun House',-41.4936,-1,96.1204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2861217323,'',0,1,1,0),
|
||||
(817,0,'houseofroachie','home_majdul_bottle','Roachie''s Workshop',49,1.24,10.27,178,-1000000,0,0,0,'Indoor',0,0,0,255,0,0,0,'NONE',0,0,0,0,'',0,'Anything here will get nuked. Have fun breaking stuff!',0,3086350807,'',0,1,1,0),
|
||||
(818,0,'RylecsTest','home_floating_island','Rylec''s Fun House',-41.4936,-1,96.1204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2861217323,'',0,1,1,0),
|
||||
(819,0,'RylecsTest2','qey_guildhall_tier2','Rylecs Fun House 2',-0.188056,0.005529,-4.87351,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'',0,0,0,0,'',300,'',0,4070746645,'',0,1,1,0),
|
||||
(820,0,'The Sepulcher of Jahnda','qey_catacomb_epic02','The Sepulcher of Jahnda',-31,-1,9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2585184836,'',0,1,1,0),
|
||||
(821,0,'Sir Wemblys Tomb','qey_catacomb_epic02','Sir Wembly\'s Tomb',-31,-1,9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',0,'',0,3963196399,'',0,1,1,0),
|
||||
(821,0,'Sir Wemblys Tomb','qey_catacomb_epic02','Sir Wembly''s Tomb',-31,-1,9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',0,'',0,3963196399,'',0,1,1,0),
|
||||
(822,0,'The Chamber of Suffering','fprt_epic01_storeroom01','The Chamber of Suffering',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2507279950,'',0,1,1,0),
|
||||
(823,0,'GMPetCemetary','enchanted','GM Hall of Pets',31.72,-0.1,17.72,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2844471636,'',0,1,1,0),
|
||||
(824,0,'CleansingoftheCove','feerrott_epic01_temple','Cleansing of the Cove',-908.872,-9.5,256.359,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3015617679,'',0,1,1,0),
|
||||
@ -918,40 +853,26 @@ INSERT INTO `zones` VALUES
|
||||
(828,0,'ClassicFarJourney','boat_06p_tutorial02','Classic Far Journey',2.14,1.21,-15.81,180,-1000000,10,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2068437971,'',0,1,1,0),
|
||||
(829,1,'Peatbog_Classic','qey_adv04_bog','The Peat Bog',561.65,-27.41,417.99,0,-1000000,1.1,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Peatbog_Classic.lua',300,'',0,492727144,'',0,1,1,0),
|
||||
(830,1,'Oakmyst_Classic','qey_adv01_oakmyst','Oakmyst Forest',1093.17,-10.15,-382.08,0,-1000000,1.1,0,0,'Outdoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/Oakmyst_Classic.lua',300,'',0,3136177894,'',0,1,1,0),
|
||||
(831,0,'SorcerersTrial','qey_epic10_p01_bank','The Sorcerer\'s Trial',-2.34,-0.34,-6.45,180,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,381282991,'',0,0,1,0),
|
||||
(831,0,'SorcerersTrial','qey_epic10_p01_bank','The Sorcerer''s Trial',-2.34,-0.34,-6.45,180,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,381282991,'',0,0,1,0),
|
||||
(832,1,'MakeshiftArena','qey_epic01_p19_cache','The Makeshift Arena',-26.15,-0.24,-21.77,230,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/MakeshiftArena.lua',300,'',0,3732062082,'',0,1,1,0),
|
||||
(833,1,'FermentedGrape','qey_epic03_village03_ph','The Fermented Grape',15.57,-0.5,-9.18,164,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',3,'',0,4028837414,'',0,1,1,0),
|
||||
(834,1,'DownBelow_Classic','qey_catacomb01','The Down Below',-195.98,-0.1,-200.16,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/DownBelow_Classic.lua',300,'',0,2167795500,'',0,1,1,0),
|
||||
(835,0,'SummonerPets','home_floating_island','Summoner Pets',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3714125027,'',0,1,1,0),
|
||||
(836,1,'TheDisconcertingMeditation','befallen_epic01','The Disconcerting Meditation',-47.02,-45.79,-49.3,272,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'ZoneScripts/TheDisconcertingMeditation.lua',300,'',0,2219147910,'',0,1,1,0),
|
||||
(837,1,'Rogue_IrontoeInn','qey_epic06_p12_irontoes','The Cache',2.29,-0.28,-2.03,131,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'',300,'',0,3860603756,'',0,1,1,0),
|
||||
(838,0,'GaranelRestingPlace','tutorial_island02_epic02','Garanel\'s resting place',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/GaranelRestingPlace.lua',0,'',0,1269386908,'',0,1,1,0),
|
||||
(838,0,'GaranelRestingPlace','tutorial_island02_epic02','Garanel''s resting place',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'SOLO_PERSIST_INSTANCE',0,0,0,0,'ZoneScripts/GaranelRestingPlace.lua',0,'',0,1269386908,'',0,1,1,0),
|
||||
(839,1,'TheGraveyard_Classic','fprt_adv02_graveyard','The Graveyard',-98.43,-15.73,-92.53,0,-1000000,1.1,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TheGraveyard_Classic.lua',300,'',0,443333195,'',0,1,1,0),
|
||||
(840,1,'TheSprawl_Classic','fprt_adv03_sprawl','The Sprawl',-139.62,-4.42,97.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/The Sprawl.lua',300,'',0,1627087142,'',0,1,1,0),
|
||||
(841,1,'SunkenCity_Classic','fprt_adv01_sunken','Sunken City',-61,-0.15,60.35,0,-1000000,1.1,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TheSunkenCity_Classic.lua',300,'',0,3702520072,'',0,1,1,0),
|
||||
(842,1,'TheRuins_Classic','fprt_adv04_ruins','The Ruins',-178.54,-1,79.41,0,-1000000,1.1,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TheRuins_Classic.lua',300,'',0,4176201660,'',0,1,1,0),
|
||||
(843,1,'TheThievesWay_Classic','fprt_sewer01','The Thieves\' Way',-148,1,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TheThievesWay_Classic.lua',300,'',0,2074019275,'',0,1,1,0),
|
||||
(844,1,'QueensPrivateChamber','qey_ph_3r03','The Queen\'s Private Chamber',0,0,0,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1052909120,'',0,1,1,0),
|
||||
(843,1,'TheThievesWay_Classic','fprt_sewer01','The Thieves'' Way',-148,1,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/TheThievesWay_Classic.lua',300,'',0,2074019275,'',0,1,1,0),
|
||||
(844,1,'QueensPrivateChamber','qey_ph_3r03','The Queen''s Private Chamber',0,0,0,0,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1052909120,'',0,1,1,0),
|
||||
(845,1,'FreeportBetrayal','fprt_ph_3r03','The Private Meeting Chambers',3.87,0.33,9.64,44,-1000000,0,0,0,'Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',300,'',0,978744734,'',0,1,1,0),
|
||||
(846,0,'LCP','tutorial_island02_epic02','Llama\'s Crafty Place',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,622973577,'',0,1,1,0),
|
||||
(847,0,'LlamasCraftyPlace','','Llama\'s Crafty Place',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1095022620,'',0,1,1,0),
|
||||
(848,0,'VerminsSnye_Classic','qey_catacomb02','Vermin\'s Snye',131.21,-6.92,-105.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2747084251,'',0,1,1,0),
|
||||
(849,0,'BadlizardsIsland','home_floating_island','Badlizard\'s Island',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,707926026,'',0,1,1,0),
|
||||
(850,0,'MontaasIsland','home_floating_island','Montaa\'s Island',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3255547491,'',0,1,1,0),
|
||||
(846,0,'LCP','tutorial_island02_epic02','Llama''s Crafty Place',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,622973577,'',0,1,1,0),
|
||||
(847,0,'LlamasCraftyPlace','','Llama''s Crafty Place',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1095022620,'',0,1,1,0),
|
||||
(848,0,'VerminsSnye_Classic','qey_catacomb02','Vermin''s Snye',131.21,-6.92,-105.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2747084251,'',0,1,1,0),
|
||||
(849,0,'BadlizardsIsland','home_floating_island','Badlizard''s Island',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,707926026,'',0,1,1,0),
|
||||
(850,0,'MontaasIsland','home_floating_island','Montaa''s Island',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3255547491,'',0,1,1,0),
|
||||
(851,0,'SummoningResearchChamber','fprt_epic05_a02_temple01','an Academy research center',0,0,0,183,-1000000,0,0,0,'Instanced Indoor',0,0,0,0,0,0,0,'QUEST_INSTANCE',0,0,0,0,'',15,'',0,3609921384,'',0,1,1,0),
|
||||
(852,0,'NektulosClassic','nektulos','Nektulos Classic',845,1.2,-22,26,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/NektulosClassic.lua',300,'Because fuck you, that\'s why.',2,3622193584,'',0,1,1,0),
|
||||
(852,0,'NektulosClassic','nektulos','Nektulos Classic',845,1.2,-22,26,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/NektulosClassic.lua',300,'Because fuck you, that''s why.',2,3622193584,'',0,1,1,0),
|
||||
(853,0,'SerpentSewerClassic','fprt_sewer02','The Serpent Sewer Classic',-182,0,-185,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'ZoneScripts/SerpentSewerClassic.lua',300,'',0,2325092859,'',0,1,1,0);
|
||||
/*!40000 ALTER TABLE `zones` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:48
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
File diff suppressed because it is too large
Load Diff
@ -1,11 +0,0 @@
|
||||
DROP TABLE IF EXISTS char_colors;
|
||||
CREATE TABLE char_colors (
|
||||
id INTEGER PRIMARY KEY,
|
||||
char_id INTEGER NOT NULL,
|
||||
signed_value INTEGER NOT NULL DEFAULT 0,
|
||||
type TEXT NOT NULL,
|
||||
red INTEGER NOT NULL DEFAULT 0,
|
||||
green INTEGER NOT NULL DEFAULT 0,
|
||||
blue INTEGER NOT NULL DEFAULT 0,
|
||||
FOREIGN KEY (char_id) REFERENCES characters(id) ON DELETE CASCADE ON UPDATE CASCADE
|
||||
);
|
9
database/login/character_pictures.sql
Normal file
9
database/login/character_pictures.sql
Normal file
@ -0,0 +1,9 @@
|
||||
DROP TABLE IF EXISTS character_pictures;
|
||||
CREATE TABLE character_pictures (
|
||||
id INTEGER PRIMARY KEY,
|
||||
server_id INTEGER NOT NULL,
|
||||
account_id INTEGER NOT NULL,
|
||||
character_id INTEGER NOT NULL,
|
||||
picture TEXT NOT NULL,
|
||||
UNIQUE(character_id, server_id, account_id)
|
||||
);
|
11
database/login/login_char_colors.sql
Normal file
11
database/login/login_char_colors.sql
Normal file
@ -0,0 +1,11 @@
|
||||
DROP TABLE IF EXISTS login_char_colors;
|
||||
CREATE TABLE login_char_colors (
|
||||
id INTEGER PRIMARY KEY,
|
||||
login_characters_id INTEGER NOT NULL,
|
||||
signed_value INTEGER NOT NULL DEFAULT 0,
|
||||
type TEXT NOT NULL,
|
||||
red INTEGER NOT NULL DEFAULT 0,
|
||||
green INTEGER NOT NULL DEFAULT 0,
|
||||
blue INTEGER NOT NULL DEFAULT 0
|
||||
);
|
||||
CREATE INDEX idx_login_char_colors_login_characters_id ON login_char_colors(login_characters_id);
|
@ -1,37 +1,36 @@
|
||||
DROP TABLE IF EXISTS `login_characters`;
|
||||
CREATE TABLE `login_characters` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`account_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`server_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`name` varchar(64) NOT NULL DEFAULT '',
|
||||
`race` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`class` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`gender` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`deity` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`body_size` float NOT NULL DEFAULT 0,
|
||||
`body_age` float NOT NULL DEFAULT 0,
|
||||
`current_zone` varchar(64) NOT NULL DEFAULT 'antonica',
|
||||
`current_zone_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`level` int(10) unsigned NOT NULL DEFAULT 1,
|
||||
`tradeskill_class` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`tradeskill_level` int(10) unsigned NOT NULL DEFAULT 1,
|
||||
`soga_wing_type` mediumint(8) unsigned NOT NULL,
|
||||
`soga_chest_type` mediumint(8) unsigned NOT NULL,
|
||||
`soga_legs_type` mediumint(8) unsigned NOT NULL,
|
||||
`soga_hair_type` mediumint(8) unsigned NOT NULL,
|
||||
`soga_facial_hair_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
|
||||
`legs_type` mediumint(8) unsigned NOT NULL,
|
||||
`chest_type` mediumint(8) unsigned NOT NULL,
|
||||
`wing_type` mediumint(8) unsigned NOT NULL,
|
||||
`hair_type` mediumint(8) unsigned NOT NULL,
|
||||
`facial_hair_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
|
||||
`deleted` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`unix_timestamp` int(10) NOT NULL DEFAULT 0,
|
||||
`created_date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
|
||||
`last_played` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
`char_id` int(11) NOT NULL DEFAULT 0,
|
||||
`soga_model_type` mediumint(8) NOT NULL DEFAULT 0,
|
||||
`model_type` mediumint(8) NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `ServerIDX` (`account_id`,`server_id`,`char_id`)
|
||||
DROP TABLE IF EXISTS login_characters;
|
||||
CREATE TABLE login_characters (
|
||||
id INTEGER PRIMARY KEY,
|
||||
account_id INTEGER NOT NULL DEFAULT 0,
|
||||
server_id INTEGER NOT NULL DEFAULT 0,
|
||||
name TEXT NOT NULL DEFAULT '',
|
||||
race INTEGER NOT NULL DEFAULT 0,
|
||||
class INTEGER NOT NULL DEFAULT 0,
|
||||
gender INTEGER NOT NULL DEFAULT 0,
|
||||
deity INTEGER NOT NULL DEFAULT 0,
|
||||
body_size REAL NOT NULL DEFAULT 0,
|
||||
body_age REAL NOT NULL DEFAULT 0,
|
||||
current_zone TEXT NOT NULL DEFAULT 'antonica',
|
||||
current_zone_id INTEGER NOT NULL DEFAULT 0,
|
||||
level INTEGER NOT NULL DEFAULT 1,
|
||||
tradeskill_class INTEGER NOT NULL DEFAULT 0,
|
||||
tradeskill_level INTEGER NOT NULL DEFAULT 1,
|
||||
soga_wing_type INTEGER NOT NULL,
|
||||
soga_chest_type INTEGER NOT NULL,
|
||||
soga_legs_type INTEGER NOT NULL,
|
||||
soga_hair_type INTEGER NOT NULL,
|
||||
soga_facial_hair_type INTEGER NOT NULL DEFAULT 0,
|
||||
legs_type INTEGER NOT NULL,
|
||||
chest_type INTEGER NOT NULL,
|
||||
wing_type INTEGER NOT NULL,
|
||||
hair_type INTEGER NOT NULL,
|
||||
facial_hair_type INTEGER NOT NULL DEFAULT 0,
|
||||
deleted INTEGER NOT NULL DEFAULT 0,
|
||||
unix_timestamp INTEGER NOT NULL DEFAULT 0,
|
||||
created_date INTEGER NOT NULL DEFAULT (strftime('%s', 'now')),
|
||||
last_played INTEGER NOT NULL DEFAULT 0,
|
||||
char_id INTEGER NOT NULL DEFAULT 0,
|
||||
soga_model_type INTEGER NOT NULL DEFAULT 0,
|
||||
model_type INTEGER NOT NULL DEFAULT 0
|
||||
);
|
||||
CREATE INDEX idx_login_characters_server ON login_characters(account_id, server_id, char_id);
|
||||
|
@ -1,91 +1,13 @@
|
||||
-- Table: `login_config`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
DROP TABLE IF EXISTS login_config;
|
||||
CREATE TABLE login_config (
|
||||
id INTEGER PRIMARY KEY,
|
||||
config_name TEXT NOT NULL DEFAULT '',
|
||||
config_value TEXT NOT NULL DEFAULT ''
|
||||
);
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `login_config`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `login_config`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `login_config` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`config_name` varchar(64) NOT NULL DEFAULT '',
|
||||
`config_value` varchar(64) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=DYNAMIC COMMENT='moving some hard-coded values out of Login source to this ta';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `login_config`
|
||||
--
|
||||
|
||||
LOCK TABLES `login_config` WRITE;
|
||||
/*!40000 ALTER TABLE `login_config` DISABLE KEYS */;
|
||||
INSERT INTO `login_config` VALUES
|
||||
INSERT INTO login_config VALUES
|
||||
(1,'login_heartbeat','1582776503'),
|
||||
(2,'max_server_offline_age','604800'),
|
||||
(3,'max_characters_per_account','30'),
|
||||
(4,'max_level_for_vet_reward','20'),
|
||||
(5,'max_characters_per_account','30');
|
||||
/*!40000 ALTER TABLE `login_config` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
||||
|
@ -1,61 +1,15 @@
|
||||
-- Table: `login_equipment`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `login_equipment`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `login_equipment`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `login_equipment` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`login_characters_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`equip_type` smallint(5) unsigned NOT NULL DEFAULT 0,
|
||||
`red` tinyint(3) unsigned NOT NULL DEFAULT 255,
|
||||
`green` tinyint(3) unsigned NOT NULL DEFAULT 255,
|
||||
`blue` tinyint(3) unsigned NOT NULL DEFAULT 255,
|
||||
`highlight_red` tinyint(3) unsigned NOT NULL DEFAULT 255,
|
||||
`highlight_green` tinyint(3) unsigned NOT NULL DEFAULT 255,
|
||||
`highlight_blue` tinyint(3) unsigned NOT NULL DEFAULT 255,
|
||||
`slot` int(11) NOT NULL DEFAULT 0,
|
||||
`last_updated` timestamp NOT NULL DEFAULT current_timestamp(),
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `CharSlotIDX` (`login_characters_id`,`slot`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=32722 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
-- (data omitted for login_equipment)
|
||||
ALTER TABLE `login_equipment` AUTO_INCREMENT = 1;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
||||
DROP TABLE IF EXISTS login_equipment;
|
||||
CREATE TABLE login_equipment (
|
||||
id INTEGER PRIMARY KEY,
|
||||
login_characters_id INTEGER NOT NULL DEFAULT 0,
|
||||
equip_type INTEGER NOT NULL DEFAULT 0,
|
||||
red INTEGER NOT NULL DEFAULT 255,
|
||||
green INTEGER NOT NULL DEFAULT 255,
|
||||
blue INTEGER NOT NULL DEFAULT 255,
|
||||
highlight_red INTEGER NOT NULL DEFAULT 255,
|
||||
highlight_green INTEGER NOT NULL DEFAULT 255,
|
||||
highlight_blue INTEGER NOT NULL DEFAULT 255,
|
||||
slot INTEGER NOT NULL DEFAULT 0,
|
||||
last_updated INTEGER NOT NULL DEFAULT (strftime('%s', 'now')),
|
||||
UNIQUE(login_characters_id, slot)
|
||||
);
|
||||
|
@ -1,75 +1,10 @@
|
||||
-- Table: `login_versions`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
DROP TABLE IF EXISTS login_versions;
|
||||
CREATE TABLE login_versions (
|
||||
id INTEGER PRIMARY KEY,
|
||||
version TEXT NOT NULL UNIQUE DEFAULT ''
|
||||
);
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `login_versions`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `login_versions`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `login_versions` (
|
||||
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`version` varchar(30) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `NewIndex` (`version`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `login_versions`
|
||||
--
|
||||
|
||||
LOCK TABLES `login_versions` WRITE;
|
||||
/*!40000 ALTER TABLE `login_versions` DISABLE KEYS */;
|
||||
INSERT INTO `login_versions` VALUES
|
||||
INSERT INTO login_versions VALUES
|
||||
(4,'0.7.2-dev'),
|
||||
(1,'0.7'),
|
||||
(2,'0.7.1-dev'),
|
||||
@ -78,17 +13,3 @@ INSERT INTO `login_versions` VALUES
|
||||
(6,'0.7.3-dev'),
|
||||
(7,'0.8.0-taurus2'),
|
||||
(8,'*');
|
||||
/*!40000 ALTER TABLE `login_versions` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
||||
|
@ -1,81 +0,0 @@
|
||||
-- Table: `login_worldservers`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `login_worldservers`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `login_worldservers`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `login_worldservers` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(250) NOT NULL DEFAULT '',
|
||||
`disabled` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`account` varchar(30) NOT NULL DEFAULT '',
|
||||
`chat_shortname` varchar(20) NOT NULL DEFAULT '',
|
||||
`description` text NOT NULL,
|
||||
`server_type` varchar(15) NOT NULL DEFAULT '0',
|
||||
`password` varchar(256) NOT NULL DEFAULT '',
|
||||
`serverop` varchar(64) NOT NULL DEFAULT '',
|
||||
`lastseen` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`admin_id` int(11) unsigned NOT NULL DEFAULT 0,
|
||||
`greenname` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
||||
`showdown` tinyint(4) NOT NULL DEFAULT 0,
|
||||
`chat` varchar(20) NOT NULL DEFAULT '0',
|
||||
`note` tinytext NOT NULL,
|
||||
`ip_address` varchar(50) NOT NULL DEFAULT '0',
|
||||
`reset_needed` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`created_date` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`hide_status` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
||||
`hide_details` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
||||
`hide_admin` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
||||
`hide_serverlist` tinyint(1) NOT NULL DEFAULT 0,
|
||||
`server_url` varchar(250) DEFAULT '',
|
||||
`server_category` enum('Standard','Preferred','Premium','Development') DEFAULT 'Standard',
|
||||
`server_admin` varchar(64) NOT NULL DEFAULT '',
|
||||
`server_sticky` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
||||
`gm_list` text DEFAULT NULL,
|
||||
`reset_zone_descriptions` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
||||
`reset_login_appearances` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
||||
`login_version` varchar(32) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `account` (`account`),
|
||||
UNIQUE KEY `NameIDX` (`name`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
-- (data omitted for login_worldservers)
|
||||
ALTER TABLE `login_worldservers` AUTO_INCREMENT = 1;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
@ -1,90 +0,0 @@
|
||||
-- Table: `login_worldservers_reset`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `login_worldservers_reset`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `login_worldservers_reset`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `login_worldservers_reset` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`world_id` int(11) unsigned NOT NULL,
|
||||
`token` varchar(64) NOT NULL,
|
||||
`new_plain` varchar(64) NOT NULL,
|
||||
`new_hash` varchar(128) NOT NULL,
|
||||
`expires` int(10) NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `token_UNIQUE` (`token`),
|
||||
KEY `idx_world_id` (`world_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `login_worldservers_reset`
|
||||
--
|
||||
|
||||
LOCK TABLES `login_worldservers_reset` WRITE;
|
||||
/*!40000 ALTER TABLE `login_worldservers_reset` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `login_worldservers_reset` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
@ -1,88 +0,0 @@
|
||||
-- Table: `login_worldservers_verify`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `login_worldservers_verify`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `login_worldservers_verify`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `login_worldservers_verify` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`world_id` int(11) unsigned NOT NULL,
|
||||
`token` varchar(64) NOT NULL,
|
||||
`expires` int(10) NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `token_UNIQUE` (`token`),
|
||||
KEY `idx_world_id` (`world_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `login_worldservers_verify`
|
||||
--
|
||||
|
||||
LOCK TABLES `login_worldservers_verify` WRITE;
|
||||
/*!40000 ALTER TABLE `login_worldservers_verify` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `login_worldservers_verify` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
@ -1,58 +0,0 @@
|
||||
-- Table: `login_worldstats`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `login_worldstats`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `login_worldstats`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `login_worldstats` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`world_id` int(11) unsigned NOT NULL DEFAULT 0,
|
||||
`world_status` int(11) NOT NULL DEFAULT -1,
|
||||
`current_players` int(11) unsigned NOT NULL DEFAULT 0,
|
||||
`current_zones` int(11) unsigned NOT NULL DEFAULT 0,
|
||||
`connected_time` timestamp NOT NULL DEFAULT current_timestamp(),
|
||||
`last_update` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
`world_max_level` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `NewIndex` (`world_id`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=46 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
-- (data omitted for login_worldstats)
|
||||
ALTER TABLE `login_worldstats` AUTO_INCREMENT = 1;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
@ -1,55 +0,0 @@
|
||||
-- Table: `ls_character_picture`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `ls_character_picture`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `ls_character_picture`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `ls_character_picture` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`server_id` int(10) unsigned NOT NULL,
|
||||
`account_id` int(10) unsigned NOT NULL,
|
||||
`character_id` int(10) NOT NULL,
|
||||
`picture` text NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `character_id` (`character_id`,`server_id`,`account_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
-- (data omitted for ls_character_picture)
|
||||
ALTER TABLE `ls_character_picture` AUTO_INCREMENT = 1;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
@ -1,57 +0,0 @@
|
||||
-- Table: `ls_world_zones`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `ls_world_zones`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `ls_world_zones`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `ls_world_zones` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`server_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`zone_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`name` varchar(128) NOT NULL DEFAULT '',
|
||||
`description` varchar(128) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `id` (`id`),
|
||||
UNIQUE KEY `IDXServerZone` (`server_id`,`zone_id`),
|
||||
KEY `id_2` (`id`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
-- (data omitted for ls_world_zones)
|
||||
ALTER TABLE `ls_world_zones` AUTO_INCREMENT = 1;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -1,50 +0,0 @@
|
||||
-- Table: `web_routes`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `web_routes`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `web_routes`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `web_routes` (
|
||||
`status` int(10) unsigned NOT NULL DEFAULT 4294967295,
|
||||
`route` varchar(512) NOT NULL DEFAULT ''
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
-- (data omitted for web_routes)
|
||||
ALTER TABLE `web_routes` AUTO_INCREMENT = 1;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
@ -1,53 +0,0 @@
|
||||
-- Table: `web_users`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `web_users`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `web_users`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `web_users` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`username` varchar(50) NOT NULL DEFAULT '',
|
||||
`passwd` varchar(512) NOT NULL DEFAULT '',
|
||||
`status` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
-- (data omitted for web_users)
|
||||
ALTER TABLE `web_users` AUTO_INCREMENT = 1;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
9
database/login/world_zones.sql
Normal file
9
database/login/world_zones.sql
Normal file
@ -0,0 +1,9 @@
|
||||
DROP TABLE IF EXISTS world_zones;
|
||||
CREATE TABLE world_zones (
|
||||
id INTEGER PRIMARY KEY,
|
||||
server_id INTEGER NOT NULL DEFAULT 0,
|
||||
zone_id INTEGER NOT NULL DEFAULT 0,
|
||||
name TEXT NOT NULL DEFAULT '',
|
||||
description TEXT NOT NULL DEFAULT '',
|
||||
UNIQUE(server_id, zone_id)
|
||||
);
|
33
database/login/worldservers.sql
Normal file
33
database/login/worldservers.sql
Normal file
@ -0,0 +1,33 @@
|
||||
DROP TABLE IF EXISTS worldservers;
|
||||
CREATE TABLE worldservers (
|
||||
id INTEGER PRIMARY KEY,
|
||||
name TEXT NOT NULL DEFAULT '' UNIQUE,
|
||||
disabled INTEGER NOT NULL DEFAULT 0,
|
||||
account TEXT NOT NULL DEFAULT '' UNIQUE,
|
||||
chat_shortname TEXT NOT NULL DEFAULT '',
|
||||
description TEXT NOT NULL,
|
||||
server_type TEXT NOT NULL DEFAULT '0',
|
||||
password TEXT NOT NULL DEFAULT '',
|
||||
serverop TEXT NOT NULL DEFAULT '',
|
||||
lastseen INTEGER NOT NULL DEFAULT 0,
|
||||
admin_id INTEGER NOT NULL DEFAULT 0,
|
||||
greenname INTEGER NOT NULL DEFAULT 0,
|
||||
showdown INTEGER NOT NULL DEFAULT 0,
|
||||
chat TEXT NOT NULL DEFAULT '0',
|
||||
note TEXT NOT NULL,
|
||||
ip_address TEXT NOT NULL DEFAULT '0',
|
||||
reset_needed INTEGER NOT NULL DEFAULT 0,
|
||||
created_date INTEGER NOT NULL DEFAULT 0,
|
||||
hide_status INTEGER NOT NULL DEFAULT 0,
|
||||
hide_details INTEGER NOT NULL DEFAULT 0,
|
||||
hide_admin INTEGER NOT NULL DEFAULT 0,
|
||||
hide_serverlist INTEGER NOT NULL DEFAULT 0,
|
||||
server_url TEXT DEFAULT '',
|
||||
server_category TEXT DEFAULT 'Standard',
|
||||
server_admin TEXT NOT NULL DEFAULT '',
|
||||
server_sticky INTEGER NOT NULL DEFAULT 0,
|
||||
gm_list TEXT,
|
||||
reset_zone_descriptions INTEGER NOT NULL DEFAULT 0,
|
||||
reset_login_appearances INTEGER NOT NULL DEFAULT 0,
|
||||
login_version TEXT NOT NULL DEFAULT '0'
|
||||
);
|
10
database/login/worldservers_reset.sql
Normal file
10
database/login/worldservers_reset.sql
Normal file
@ -0,0 +1,10 @@
|
||||
DROP TABLE IF EXISTS worldservers_reset;
|
||||
CREATE TABLE worldservers_reset (
|
||||
id INTEGER PRIMARY KEY,
|
||||
world_id INTEGER NOT NULL,
|
||||
token TEXT NOT NULL UNIQUE,
|
||||
new_plain TEXT NOT NULL,
|
||||
new_hash TEXT NOT NULL,
|
||||
expires INTEGER NOT NULL
|
||||
);
|
||||
CREATE INDEX idx_worldservers_reset_world_id ON worldservers_reset(world_id);
|
8
database/login/worldservers_verify.sql
Normal file
8
database/login/worldservers_verify.sql
Normal file
@ -0,0 +1,8 @@
|
||||
DROP TABLE IF EXISTS worldservers_verify;
|
||||
CREATE TABLE worldservers_verify (
|
||||
id INTEGER PRIMARY KEY,
|
||||
world_id INTEGER NOT NULL,
|
||||
token TEXT NOT NULL UNIQUE,
|
||||
expires INTEGER NOT NULL
|
||||
);
|
||||
CREATE INDEX idx_worldservers_verify_world_id ON worldservers_verify(world_id);
|
11
database/login/worldstats.sql
Normal file
11
database/login/worldstats.sql
Normal file
@ -0,0 +1,11 @@
|
||||
DROP TABLE IF EXISTS worldstats;
|
||||
CREATE TABLE worldstats (
|
||||
id INTEGER PRIMARY KEY,
|
||||
world_id INTEGER NOT NULL UNIQUE DEFAULT 0,
|
||||
world_status INTEGER NOT NULL DEFAULT -1,
|
||||
current_players INTEGER NOT NULL DEFAULT 0,
|
||||
current_zones INTEGER NOT NULL DEFAULT 0,
|
||||
connected_time INTEGER NOT NULL DEFAULT (strftime('%s', 'now')),
|
||||
last_update INTEGER NOT NULL DEFAULT 0,
|
||||
world_max_level INTEGER NOT NULL DEFAULT 0
|
||||
);
|
@ -1,766 +0,0 @@
|
||||
-- Table: `zones`
|
||||
USE `eq2ls`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `zones`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `zones`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `zones` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`expansion_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`name` varchar(64) NOT NULL DEFAULT '',
|
||||
`file` varchar(64) NOT NULL DEFAULT '',
|
||||
`description` varchar(255) NOT NULL DEFAULT 'Describe me in the zones table! :)',
|
||||
`safe_x` float NOT NULL DEFAULT 0,
|
||||
`safe_y` float NOT NULL DEFAULT 0,
|
||||
`safe_z` float NOT NULL DEFAULT 0,
|
||||
`safe_heading` float NOT NULL DEFAULT 0,
|
||||
`underworld` float NOT NULL DEFAULT -1000000,
|
||||
`xp_modifier` float NOT NULL DEFAULT 0,
|
||||
`min_recommended` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`max_recommended` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`zone_type` varchar(64) DEFAULT '',
|
||||
`always_loaded` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`city_zone` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`weather_allowed` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
||||
`min_status` int(10) NOT NULL DEFAULT 0,
|
||||
`min_level` int(10) NOT NULL DEFAULT 0,
|
||||
`max_level` int(10) NOT NULL DEFAULT 0,
|
||||
`start_zone` tinyint(3) NOT NULL DEFAULT 0,
|
||||
`instance_type` enum('NONE','GROUP_LOCKOUT_INSTANCE','GROUP_PERSIST_INSTANCE','RAID_LOCKOUT_INSTANCE','RAID_PERSIST_INSTANCE','SOLO_LOCKOUT_INSTANCE','SOLO_PERSIST_INSTANCE','TRADESKILL_INSTANCE','PUBLIC_INSTANCE','PERSONAL_HOUSE_INSTANCE','GUILD_HOUSE_INSTANCE') NOT NULL DEFAULT 'NONE',
|
||||
`default_reenter_time` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`default_reset_time` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`default_lockout_time` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`force_group_to_zone` smallint(5) unsigned NOT NULL DEFAULT 0,
|
||||
`lua_script` varchar(255) DEFAULT '',
|
||||
`shutdown_timer` int(10) unsigned NOT NULL DEFAULT 300 COMMENT 'In seconds',
|
||||
`zone_motd` varchar(250) DEFAULT '',
|
||||
`ruleset_id` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`login_checksum` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
`sky_file` varchar(64) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `NewIndex` (`name`),
|
||||
KEY `ZoneDescIDX` (`description`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=668 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=DYNAMIC;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2ls
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `zones`
|
||||
--
|
||||
|
||||
LOCK TABLES `zones` WRITE;
|
||||
/*!40000 ALTER TABLE `zones` DISABLE KEYS */;
|
||||
INSERT INTO `zones` VALUES
|
||||
(1,50,'GMHall','qey_guildhall_tier3','GM Hall',665.435,-35.8975,1485.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2968162667,'qey_guildhall_tier3'),
|
||||
(2,0,'Splitpaw1','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Alone in the Dark',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2642218879,'adv02_dun_sundered_splitpaw'),
|
||||
(3,0,'SplitpawDen','adv02_dun_sundered_splitpaw_hub','Sundered Splitpaw: Splitpaw Den ',7.13,-69.56,-311.04,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2078270933,'adv02_dun_sundered_splitpaw_hub'),
|
||||
(4,0,'CrustaceanCave','adv04_crab_cave','Cavern of the Crustaceans',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1437304064,'adv04_crab_cave'),
|
||||
(5,0,'XuxlaiosRoost','adv04_dun_bird_cage','Xux\'laio\'s Roost',0,-1.28,-20.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1679741196,'adv04_dun_bird_cage'),
|
||||
(6,0,'Antechamber','adv04_dun_drgn_temple','Antechamber of Fate',-11.35,0.4,-34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3992515775,'adv04_dun_drgn_temple'),
|
||||
(7,0,'ForsakenCity','adv04_dun_endless','The Forsaken City',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,587354683,'adv04_dun_endless'),
|
||||
(8,0,'SepulcherZanFi','adv04_dun_temple','The Sepulcher of Zan Fi',-1,0.7,5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3635271022,'adv04_dun_temple'),
|
||||
(9,0,'MysticLake','adv04_rgn_mystic_lake','The Mystic Lake ',151.74,-32.94,34.7,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3461788758,'adv04_rgn_mystic_lake'),
|
||||
(10,0,'VillageShin','adv04_rgn_village','The Village of Shin ',-17.6,-2.38,129.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2336498437,'adv04_rgn_village'),
|
||||
(11,0,'TrialBoFen','adv04_tower_cave','Trial of Bo Fen',-13.4,0,-2.11,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4038375427,'adv04_tower_cave'),
|
||||
(12,0,'antonica','antonica','Antonica',436.2,-37.5,819.56,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2242566679,'antonica'),
|
||||
(13,0,'ShatteredVale1','antonica_epic01_vale','The Shattered Vale ',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3880090772,'antonica_epic01_vale'),
|
||||
(14,0,'Firemyst1','antonica_epic02_firemyst','Firemyst Gully: A Foul Wind',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1313197908,'antonica_epic02_firemyst'),
|
||||
(15,0,'Stormhold','befallen','Stormhold',-30,23,43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3163675467,'befallen'),
|
||||
(16,0,'TombValor1','befallen_epic01','The Tomb of Valor',-4.74,-45.79,-47.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,330791385,'befallen_epic01'),
|
||||
(17,0,'Blackburrow','blackburrow','Blackburrow',76.2,-2.28,20.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,418741681,'blackburrow'),
|
||||
(18,0,'MaidMist','boat_06p_enchanted','The Maid for the Mist',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3294470509,'boat_06p_enchanted'),
|
||||
(19,0,'FangedSea','boat_06p_everfrost','The Fanged Sea',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3400822130,'boat_06p_everfrost'),
|
||||
(20,0,'LMSIntruder','boat_06p_feerrott','The LMS Intruder',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2766328670,'boat_06p_feerrott'),
|
||||
(21,0,'JourneyFreeport','boat_06p_freeport','Journey to Freeport',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1691559112,'boat_06p_freeport'),
|
||||
(22,0,'SmarmySprocket','boat_06p_hold_of_prexus','Aboard the Smarmy Sprocket',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3493494422,'boat_06p_hold_of_prexus'),
|
||||
(23,0,'BurningCauldron','boat_06p_lavastorm','The Burning Cauldron',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,85224425,'boat_06p_lavastorm'),
|
||||
(24,0,'PrizePrexus','boat_06p_orcishwastes','The Prize of Prexus',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,687197178,'boat_06p_orcishwastes'),
|
||||
(25,0,'JourneyQeynos','boat_06p_qeynos','Journey to Qeynos',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1629504455,'boat_06p_qeynos'),
|
||||
(26,0,'FarJourneyQeynos','boat_06p_tutorial01','The Far Journey',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2933294842,'boat_06p_tutorial01'),
|
||||
(27,0,'FarJourneyFreeport','boat_06p_tutorial02','The Far Journey',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3521329369,'boat_06p_tutorial02'),
|
||||
(28,0,'CazicThule1','cazicthule','The Temple of Cazic-Thule',-0.05,7.89,154.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,953361327,'cazicthule'),
|
||||
(29,0,'SanctumFear1','cazicthule_epic01_sanctum','The Sanctum of Fear',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2868411969,'cazicthule_epic01_sanctum'),
|
||||
(30,0,'CharCreation','character_create','Character Creation Screen',-127,58.2,-893.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,389319796,'character_create'),
|
||||
(31,0,'Bloodskull2','cmmn_epic01_orc','The Bloodskull Valley: A Noble Confrontation',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,802190119,'cmmn_epic01_orc'),
|
||||
(32,0,'EternalGorge1','cmmn_epic02_mage','The Eternal Gorge ',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3119513962,'cmmn_epic02_mage'),
|
||||
(33,0,'Commonlands','commonlands','The Commonlands',-1052.73,-144.95,-682.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3471412372,'commonlands'),
|
||||
(34,0,'Darklight','darklight_wood','Darklight Wood ',-414.24,-63.14,258.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,8,'NONE',0,0,0,0,NULL,300,NULL,0,1978857252,'darklight_wood'),
|
||||
(35,0,'Deathfist1','deathfist','Deathfist Citadel',-0.03,0.5,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2143427729,'deathfist'),
|
||||
(36,0,'DrownedCaverns1','adv02_dun_drowned_caverns','The Drowned Caverns: Arena of Heroes',95.83,22.83,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2606878460,'adv02_dun_drowned_caverns'),
|
||||
(37,1,'ModelDemo','commonlands','GM Model Demos',-614.67,-47.53,-239.79,220,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1045650867,'commonlands'),
|
||||
(38,0,'DraflingTower','drafling_tower','The Tower of the Drafling',-2.81,0,-8.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3363951083,'drafling_tower'),
|
||||
(39,0,'EnchantedLands','enchanted','Enchanted Lands',242.55,12.21,-978.47,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,692296008,'enchanted'),
|
||||
(40,0,'TangledWeeds','enchanted_mini01','Cavern of Tangled Weeds',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2125525214,'enchanted_mini01'),
|
||||
(41,0,'Everfrost','everfrost','Everfrost ',-40.27,-1.5,-1183.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2971640549,'everfrost'),
|
||||
(42,0,'Miraguls','everfrost_epic01_menagerie','Miragul\'s Menagerie',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2633911975,'everfrost_epic01_menagerie'),
|
||||
(45,0,'Haven','exile_city','Haven ',-50,-82.8,-145.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3194957246,'exile_city'),
|
||||
(46,10,'Majdul','exp01_cty_majdul','Maj\'Dul ',-283.67,160.6,-147.61,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,247471241,'exp01_cty_majdul'),
|
||||
(47,10,'Majdul1Room1','exp01_cty_majdul_1r01','Maj\'Dul: 1 Room Apartment',0,0,5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1297812899,'exp01_cty_majdul_1r01'),
|
||||
(48,10,'Majdul1Room2','exp01_cty_majdul_1r02','Maj\'Dul: 1 Room Apartment',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2829996334,'exp01_cty_majdul_1r02'),
|
||||
(49,10,'Majdul2Room1','exp01_cty_majdul_2r01','Maj\'Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3134471404,'exp01_cty_majdul_2r01'),
|
||||
(50,10,'Majdul2Room2','exp01_cty_majdul_2r02','Maj\'Dul: 2 Rooms Apartment',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4034869404,'exp01_cty_majdul_2r02'),
|
||||
(51,10,'Majdul3Room1','exp01_cty_majdul_3r01','Maj\'Dul: 3 Room Residence',-10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3517135728,'exp01_cty_majdul_3r01'),
|
||||
(52,10,'Majdul3Room2','exp01_cty_majdul_3r02','Maj\'Dul: 3 Room Residence',10,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3142330392,'exp01_cty_majdul_3r02'),
|
||||
(53,10,'Arena','exp01_cty_majdul_arena01','Maj\'Dul Arena',0,10,70,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1193689160,'exp01_cty_majdul_arena01'),
|
||||
(54,10,'Arena2','exp01_cty_majdul_arena02','The Arena v2',0,-0.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,913624109,'exp01_cty_majdul_arena02'),
|
||||
(55,10,'CourtBlades','exp01_cty_majdul_blades','The Court of the Blades',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2914789014,'exp01_cty_majdul_blades'),
|
||||
(56,10,'CourtCoin','exp01_cty_majdul_coin','The Court of the Coin',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4244223063,'exp01_cty_majdul_coin'),
|
||||
(57,10,'LibraryLight','exp01_cty_majdul_library','The Library of Light',0,-0.2,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,520408650,'exp01_cty_majdul_library'),
|
||||
(58,10,'TowerMoon','exp01_cty_majdul_moon','The Tower of the Moon',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1392070889,'exp01_cty_majdul_moon'),
|
||||
(59,10,'CourtTears','exp01_cty_majdul_tears','The Court of Tears',0,-0.22,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2026106351,'exp01_cty_majdul_tears'),
|
||||
(60,10,'CourtTruth','exp01_cty_majdul_truth','Maj\'Dul: The Court of Truth',0,-0.15,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3952194529,'exp01_cty_majdul_truth'),
|
||||
(61,10,'CleftsRujark','exp01_dun_clefts_of_rujark','The Clefts of Rujark',147.16,-7.76,-90.58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4246189845,'exp01_dun_clefts_of_rujark'),
|
||||
(62,10,'LivingTombs','exp01_dun_living_tombs','The Living Tombs',-293.72,15.23,291.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1490971066,'exp01_dun_living_tombs'),
|
||||
(63,10,'PedestalSky','exp01_dun_pedestal_of_sky','Pedestal of Sky',0,-0.55,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2258780775,'exp01_dun_pedestal_of_sky'),
|
||||
(64,10,'PoetPalace','exp01_dun_poets_palace','The Poets Palace',-94,147,39,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1460452816,'exp01_dun_poets_palace'),
|
||||
(65,10,'ShimmeringCitadel','exp01_dun_shimmering_citadel','The Shimmering Citadel',58.94,98.3,-129.04,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3499314672,'exp01_dun_shimmering_citadel'),
|
||||
(66,10,'UnusualBottle','exp01_dun_shimmering_citadel_epic01_bottle','An Unusual Bottle',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2238196469,'exp01_dun_shimmering_citadel_epic01_bottle'),
|
||||
(67,10,'DjinnPrism','exp01_dun_shimmering_citadel_epic02_prism','The Djinn Master\'s Prism',-22,-5,-35,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3131802491,'exp01_dun_shimmering_citadel_epic02_prism'),
|
||||
(68,10,'SilentCity','exp01_dun_silent_city','The Silent City',143,31,160,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3364154278,'exp01_dun_silent_city'),
|
||||
(69,10,'FountainLife','exp01_dun_silent_city_epic01_temple','The Fountain of Life',0,-6.71,22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1250120736,'exp01_dun_silent_city_epic01_temple'),
|
||||
(70,10,'PillarsFlame','exp01_rgn_pillars_of_flame','The Pillars of Flame',1382,-147,-854,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,464322516,'exp01_rgn_pillars_of_flame'),
|
||||
(71,10,'CazelMesa','exp01_rgn_pillars_of_flame_epic01_cazel','Cazel\'s Mesa',1.34,-0.12,5.17,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2346526326,'exp01_rgn_pillars_of_flame_epic01_cazel'),
|
||||
(72,10,'HallsDiscipline','exp01_rgn_pillars_of_flame_epic02_discipline','Halls of Discipline',-11,-5.6,-4.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2657155766,'exp01_rgn_pillars_of_flame_epic02_discipline'),
|
||||
(73,10,'SinkingSands','exp01_rgn_sinking_sands','The Sinking Sands',-1508.64,-214.09,-395.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1641630735,'exp01_rgn_sinking_sands'),
|
||||
(74,10,'LockjawsLair','exp01_rgn_sinking_sands_epic01_lockjaw','The Vault of Dust',-10,8,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1879067363,'exp01_rgn_sinking_sands_epic01_lockjaw'),
|
||||
(75,20,'Deathtoll','exp02_dun_dragon_necropolis','Deathtoll',-189.17,126.19,66.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3628258851,'exp02_dun_dragon_necropolis'),
|
||||
(76,20,'HallsFate','exp02_dun_halls_of_fate','The Halls of Fate',-0.43,39.2,-93.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2785872257,'exp02_dun_halls_of_fate'),
|
||||
(77,20,'Blackscale','exp02_dun_halls_of_fate_epic01_sepulcher','The Blackscale Sepulcher ',-2.91,12.54,0.33,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3865441725,'exp02_dun_halls_of_fate_epic01_sepulcher'),
|
||||
(78,20,'DenDevourer','exp02_dun_halls_of_fate_epic02_devourer','The Den of the Devourer ',1.6,-0.15,0.03,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2030006797,'exp02_dun_halls_of_fate_epic02_devourer'),
|
||||
(79,20,'SanctumScaleborn','exp02_dun_lair_of_scale','Sanctum of the Scaleborn',12,135,-233,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,695028551,'exp02_dun_lair_of_scale'),
|
||||
(80,20,'HallsSeeing','exp02_dun_lair_of_scale_epic01_seeing','Halls of the Seeing',-628.06,159.68,-234.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2782224465,'exp02_dun_lair_of_scale_epic01_seeing'),
|
||||
(81,20,'LyceumAbhorrence','exp02_dun_lair_of_scale_epic02_hallowed','The Lyceum of Abhorrence',26.73,157.56,-571.54,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,984615617,'exp02_dun_lair_of_scale_epic02_hallowed'),
|
||||
(82,20,'PalaceAwakened','exp02_dun_shrines_of_sky','Palace of the Awakened',44,0,-101,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2129470810,'exp02_dun_shrines_of_sky'),
|
||||
(83,20,'VaultElArad','exp02_dun_shrines_of_sky_epic01_vaults','The Vaults of El\'Arad',-30.7,-0.61,30.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1968164420,'exp02_dun_shrines_of_sky_epic01_vaults'),
|
||||
(84,20,'NestGreatEgg','exp02_dun_shrines_of_sky_epic02_nest','The Nest of the Great Egg',38.48,112.78,0.03,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3466289623,'exp02_dun_shrines_of_sky_epic02_nest'),
|
||||
(85,20,'BarrenSky','exp02_rgn_realm_of_dawn','The Barren Sky',506.75,-114.37,10.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4122226678,'exp02_rgn_realm_of_dawn'),
|
||||
(86,20,'exp02_rgn_realm_of_dawn_arena','exp02_rgn_realm_of_dawn_arena','Describe me in the zones table! :)',0,-2.85,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1445881603,'exp02_rgn_realm_of_dawn_arena'),
|
||||
(87,20,'Bonemire','exp02_rgn_realm_of_night','The Bonemire',963.37,-108.17,469.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2461862690,'exp02_rgn_realm_of_night'),
|
||||
(88,20,'TenebrousTangle','exp02_rgn_realm_of_twilight','Tenebrous Tangle',-496.78,-60.1,-853.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3365769829,'exp02_rgn_realm_of_twilight'),
|
||||
(89,30,'CastleMistmoore','exp03_dun_castle_mistmoore','Castle Mistmoore',81,43,-4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,715932856,'exp03_dun_castle_mistmoore'),
|
||||
(90,30,'MistmooreSanctum','exp03_dun_castle_mistmoore_epic01_coffinchamber','Mistmoore\'s Inner Sanctum',31.44,-4,15.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,54440071,'exp03_dun_castle_mistmoore_epic01_coffinchamber'),
|
||||
(91,30,'Crushbone','exp03_dun_crushbone_keep','Crushbone Keep',7,-16,-78,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3963117417,'exp03_dun_crushbone_keep'),
|
||||
(92,30,'DvinnianThrone','exp03_dun_crushbone_keep_epic01_throne','The D\'Vinnian Throne',0.19,-4.31,-26.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,480928156,'exp03_dun_crushbone_keep_epic01_throne'),
|
||||
(93,30,'Acadechism','exp03_dun_crushbone_keep_epic02_boss','The Acadechism ',-0.52,-0.16,-12.01,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1318370063,'exp03_dun_crushbone_keep_epic02_boss'),
|
||||
(94,30,'Estate of Unrest','exp03_dun_estate_of_unrest','The Estate of Unrest',7.91,0.3,-88.33,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3225497653,'exp03_dun_estate_of_unrest'),
|
||||
(95,30,'NewTunaria','exp03_dun_felwithe','New Tunaria',-1038,55,-1379,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2465751372,'exp03_dun_felwithe'),
|
||||
(96,30,'ThroneNewTunaria','exp03_dun_felwithe_epic01_throne','Throne of New Tunaria',57,67,-699,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2494575554,'exp03_dun_felwithe_epic01_throne'),
|
||||
(97,30,'GrendersLair','exp03_dun_hollow_stump','The Grender\'s Lair',0,-0.58,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3140052190,'exp03_dun_hollow_stump'),
|
||||
(98,30,'ChamberTruthbringer','exp03_dun_hollow_stump2','The Chamber of the Truthbringer',0,-0.58,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2495251601,'exp03_dun_hollow_stump2'),
|
||||
(99,30,'Kaladim','exp03_dun_kaladim','Kaladim ',5,-1,-27,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2172437289,'exp03_dun_kaladim'),
|
||||
(100,30,'Stormguard','exp03_dun_kaladim_stormguard_hall','Stormguard Hall',157,17.5,-65,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1517940891,'exp03_dun_kaladim_stormguard_hall'),
|
||||
(101,30,'Klakanon','exp03_dun_klakanon','Klak\'Anon',-347.32,8.71,-19.23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,738715765,'exp03_dun_klakanon'),
|
||||
(102,30,'ClockworkMenace','exp03_dun_klakanon_epic01_menace','The Clockwork Menace Factory',132.31,22.75,-65.73,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,274925249,'exp03_dun_klakanon_epic01_menace'),
|
||||
(103,30,'CourtInnovation','exp03_dun_klakanon_epic02_court','Court of Innovation',-15.13,6.83,81.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2766743326,'exp03_dun_klakanon_epic02_court'),
|
||||
(104,30,'MistmooreCatacombs','exp03_dun_mistmoore_catacombs','Mistmoore Catacombs',12.99,-159.06,-109.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,263748089,'exp03_dun_mistmoore_catacombs'),
|
||||
(105,30,'Freethinkers','exp03_dun_mistmoore_catacombs_epic01_freethinker','Freethinker Hideout',-17.15,6.16,-0.51,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3669200752,'exp03_dun_mistmoore_catacombs_epic01_freethinker'),
|
||||
(106,30,'CryptValdoon','exp03_dun_mistmoore_catacombs_epic02_oldcatacombs','Crypt of Valdoon ',168,0,40,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,28333672,'exp03_dun_mistmoore_catacombs_epic02_oldcatacombs'),
|
||||
(107,30,'ObeliskBlight','exp03_dun_obelisk_epic01_blight','The Obelisk of Blight ',129.85,-14.29,5.85,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3174147112,'exp03_dun_obelisk_epic01_blight'),
|
||||
(108,30,'Butcherblock','exp03_rgn_butcherblock','Butcherblock Mountains ',-1065,90,-389,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,697098529,'exp03_rgn_butcherblock'),
|
||||
(109,30,'EmeraldHalls','exp03_rgn_emerald_halls','The Emerald Halls',-156.06,4.67,-239.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3392298569,'exp03_rgn_emerald_halls'),
|
||||
(110,30,'Kelethin1Room','exp03_rgn_gf_ph_1room','Greater Faydark: 1 Room Apartment',0,-0.2,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1645828791,'exp03_rgn_gf_ph_1room'),
|
||||
(111,30,'Kelethin2Room','exp03_rgn_gf_ph_2room','Greater Faydark: 2 Rooms Apartment',0,-0.1,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2776941267,'exp03_rgn_gf_ph_2room'),
|
||||
(112,30,'Kelethin3Room','exp03_rgn_gf_ph_3room','Greater Faydark: 3 Rooms Residence',0,-0.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,75565844,'exp03_rgn_gf_ph_3room'),
|
||||
(113,30,'Kelethin4Room','exp03_rgn_gf_ph_4room','Greater Faydark: 4 Rooms Residence',0,-0.3,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,669090026,'exp03_rgn_gf_ph_4room'),
|
||||
(114,30,'GreaterFaydark','exp03_rgn_greater_faydark','Greater Faydark',-116.83,-43.94,-785.47,0,-1000000,0,0,0,'',0,0,0,0,0,0,4,'NONE',0,0,0,0,NULL,300,NULL,0,1796453226,'exp03_rgn_greater_faydark'),
|
||||
(115,30,'LesserFaydark','exp03_rgn_lesser_faydark','The Lesser Faydark ',-717,-55.3,112.7,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3327990583,'exp03_rgn_lesser_faydark'),
|
||||
(116,30,'LopingPlains','exp03_rgn_loping_plains','Loping Plains ',-537,-5,-401,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1576609597,'exp03_rgn_loping_plains'),
|
||||
(117,30,'Steamfont','exp03_rgn_steamfont','Steamfont Mountains ',-492,125,596,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3355489122,'exp03_rgn_steamfont'),
|
||||
(118,30,'MinesMeldrath','exp03_rgn_steamfont_epic01_mines','The Mines of Meldrath ',12.53,-0.6,-4.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3273265723,'exp03_rgn_steamfont_epic01_mines'),
|
||||
(119,0,'FallenGate','fallengate','Fallen Gate ',-19.57,20,149.02,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,380935007,'fallengate'),
|
||||
(120,0,'VaultFallen2','fallengate_epic01_boss','The Vault of the Fallen: Lair of Trenda\'loz',37,-26,-189,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1848001339,'fallengate_epic01_boss'),
|
||||
(121,0,'Feerrott','feerrott','The Feerrott',-118.63,7.41,-74.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1328033086,'feerrott'),
|
||||
(122,0,'TremblingLagoon1','feerrott_epic01_temple','The Trembling Lagoon',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2246576723,'feerrott_epic01_temple'),
|
||||
(123,0,'Kugup','feerrott_epic02_froglok','The Lost Village of Kugup',-113.46,15.97,147.36,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1262464412,'feerrott_epic02_froglok'),
|
||||
(124,0,'SunkenCity','fprt_adv01_sunken','Sunken City',-61,-0.15,60.35,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4288698253,'fprt_adv01_sunken'),
|
||||
(125,0,'Graveyard','fprt_adv02_graveyard','The Graveyard',-98.43,-15.73,-92.53,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3531349867,'fprt_adv02_graveyard'),
|
||||
(126,0,'Sprawl','fprt_adv03_sprawl','The Sprawl',-139.62,-4.42,97.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,621563996,'fprt_adv03_sprawl'),
|
||||
(127,0,'Ruins','fprt_adv04_ruins','The Ruins',-178.54,-1,79.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,82557590,'fprt_adv04_ruins'),
|
||||
(128,0,'EastFreeport','fprt_east','East Freeport',-305.04,-56.07,73.57,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3673921062,'fprt_east'),
|
||||
(129,0,'JadeTigersDenCellar','fprt_epic01_storeroom01','Jade Tiger\'s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3155501257,'fprt_epic01_storeroom01'),
|
||||
(130,0,'fprt_epic02_a01_dungeon01','fprt_epic02_a01_dungeon01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3386855379,'fprt_epic02_a01_dungeon01'),
|
||||
(131,0,'fprt_epic03_a01_dungeon02','fprt_epic03_a01_dungeon02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3101595178,'fprt_epic03_a01_dungeon02'),
|
||||
(132,0,'FreeportAcademy','fprt_epic04_a04_academy01','Freeport: Academy of Arcane Sciences',0,-0.66,0.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3767002235,'fprt_epic04_a04_academy01'),
|
||||
(133,0,'FreeportTemple','fprt_epic05_a02_temple01','Freeport: The Temple of Dismal Rage',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1831281545,'fprt_epic05_a02_temple01'),
|
||||
(134,0,'BigBend','fprt_hood01','Big Bend',-26.67,-4.64,102.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,578827427,'fprt_hood01'),
|
||||
(135,0,'Stonestair','fprt_hood02','Stonestair Byway',-101.2,-4.65,-26.78,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,202759038,'fprt_hood02'),
|
||||
(136,0,'TempleSt','fprt_hood03','Temple Street',-60.93,2.86,128.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2595880091,'fprt_hood03'),
|
||||
(137,0,'BeggarsCourt','fprt_hood04','Beggar\'s Court',-30,4.17,-87.14,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3536645693,'fprt_hood04'),
|
||||
(138,0,'Longshadow','fprt_hood05','Longshadow Alley',-50.84,-4.67,-85.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,449901455,'fprt_hood05'),
|
||||
(139,0,'ScaleYard','fprt_hood06','Scale Yard',0.1,-4.5,105,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3728081010,'fprt_hood06'),
|
||||
(140,0,'fprt_hood_epic01','fprt_hood_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1624467568,'fprt_hood_epic01'),
|
||||
(141,0,'ArchiveValeein','fprt_hood_epic02','Archive of Valeein',-1.71924,-1.51351,6.55359,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2439079626,'fprt_hood_epic02'),
|
||||
(142,0,'fprt_hood_epic03','fprt_hood_epic03','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3925693770,'fprt_hood_epic03'),
|
||||
(143,0,'fprt_hood_epic04','fprt_hood_epic04','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,122419003,'fprt_hood_epic04'),
|
||||
(144,0,'NorthFreeport','fprt_north','North Freeport',-88,-9,-117,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1554806586,'fprt_north'),
|
||||
(145,0,'Freeport2Room1','fprt_ph_1r01','a two room apartment, version 1',-6.5,0.75,-13.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1296677832,'fprt_ph_1r01'),
|
||||
(146,0,'Freeport2Room2','fprt_ph_1r02','a two room apartment, version 2',10,0.5,-10,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1633763916,'fprt_ph_1r02'),
|
||||
(147,0,'Freeport3Room1','fprt_ph_2r01','a three room house, version 1',-8.5,1.18,-7.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2107461564,'fprt_ph_2r01'),
|
||||
(148,0,'Freeport3Room2','fprt_ph_2r02','a three room house, version 2',-6.5,1.5,-12.15,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2517432944,'fprt_ph_2r02'),
|
||||
(149,0,'Freeport4Room1','fprt_ph_3r01','a four room house, version 1',8.5,1,8.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3059503183,'fprt_ph_3r01'),
|
||||
(150,0,'Freeport4Room2','fprt_ph_3r02','a four room house, version 2',-7.5,0.4,8.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2332833260,'fprt_ph_3r02'),
|
||||
(151,0,'Freeport4Room3','fprt_ph_3r03','a four room house, version 3',-9.5,1,8.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4069184774,'fprt_ph_3r03'),
|
||||
(152,0,'Freeport6Room1','fprt_ph_5r01','a six room house, version 1',-3.62,-0.5,-2.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2279293680,'fprt_ph_5r01'),
|
||||
(153,0,'Freeport6Room2','fprt_ph_5r02','a six room house, version 2',28.75,-0.5,5.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4249795054,'fprt_ph_5r02'),
|
||||
(154,0,'ThievesWay','fprt_sewer01','The Thieves\' Way',-123,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2245891121,'fprt_sewer01'),
|
||||
(155,0,'SerpentSewer','fprt_sewer02','The Serpent Sewer ',-182,0,-185,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2853519654,'fprt_sewer02'),
|
||||
(156,0,'Edgewater','fprt_sewer03','Edgewater Drains',29,32,73,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,938776093,'fprt_sewer03'),
|
||||
(157,0,'fprt_sewer_epic01','fprt_sewer_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4065867901,'fprt_sewer_epic01'),
|
||||
(158,0,'fprt_sewer_epic02','fprt_sewer_epic02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3904734492,'fprt_sewer_epic02'),
|
||||
(159,0,'SerpentsLair','fprt_sewer_epic03','The Serpent\'s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2729254407,'fprt_sewer_epic03'),
|
||||
(160,0,'DarkbladeDen','fprt_sewer_epic04','The Darkblade Den of Assassins',-8.53,-0.62,12.68,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2374182736,'fprt_sewer_epic04'),
|
||||
(161,0,'fprt_sewer_epic05','fprt_sewer_epic05','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,867121339,'fprt_sewer_epic05'),
|
||||
(162,0,'fprt_sewer_epic06','fprt_sewer_epic06','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1116256801,'fprt_sewer_epic06'),
|
||||
(163,0,'fprt_sewer_epic07','fprt_sewer_epic07','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1321185,'fprt_sewer_epic07'),
|
||||
(164,0,'fprt_sewer_epic08','fprt_sewer_epic08','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,125341182,'fprt_sewer_epic08'),
|
||||
(165,0,'fprt_sewer_epic09','fprt_sewer_epic09','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2664820379,'fprt_sewer_epic09'),
|
||||
(166,0,'SouthFreeport','fprt_south','South Freeport',-175,-57,148,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,190556331,'fprt_south'),
|
||||
(167,0,'BroodLostTongue','fprt_tradeskill01','The Brood of the Lost Tongue',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4020093839,'fprt_tradeskill01'),
|
||||
(168,0,'WestFreeport','fprt_west','West Freeport',90.43,-21.98,42.84,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2219792691,'fprt_west'),
|
||||
(169,0,'FreeportMilitia','fprt_west_militia','Freeport Militia',135,-16,129,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3758488065,'fprt_west_militia'),
|
||||
(170,0,'PrisonGrimgadget','holdofprexus','The Prison of Admiral Grimgadget ',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1598578194,'holdofprexus'),
|
||||
(171,0,'Lavastorm','lavastorm','Lavastorm ',84.73,-33.09,138.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4134789718,'lavastorm'),
|
||||
(172,0,'SanctumFire','lavastorm_epic01_sanctum','The Sanctum of Fire',-332,-80,-675,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2816820645,'lavastorm_epic01_sanctum'),
|
||||
(173,0,'MaidensGulch1','lavastorm_epic02_gulch','Maiden\'s Gulch',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1227024913,'lavastorm_epic02_gulch'),
|
||||
(174,0,'HauntedHouse','live_haunted_mansion','The Haunted House',-2.75,0,9.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3627449501,'live_haunted_mansion'),
|
||||
(175,0,'BarBrell','live_irontoes','Bar of Brell',352,-20,143,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1695982209,'live_irontoes'),
|
||||
(176,0,'CryptTHaen','mod01_dun_crypt_of_thaen','Crypt of T\'Haen',76.88,0.5,43.19,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3291665793,'mod01_dun_crypt_of_thaen'),
|
||||
(177,0,'TombNight','mod01_dun_tombs_of_night','The Tombs of Night',116.64,-1.26,128.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1645287631,'mod01_dun_tombs_of_night'),
|
||||
(178,0,'Nektropos1','nektropos_castle','Nektropos Castle',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,401694680,'nektropos_castle'),
|
||||
(179,0,'Nektulos','nektulos','Nektulos Forest',-344.65,0.66,-1264.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1475203678,'nektulos'),
|
||||
(180,0,'BattleCauldronHollow','nektulos_epic01_cauldroncove','The Battle of Cauldron Hollow',946,10,-621.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2897066563,'nektulos_epic01_cauldroncove'),
|
||||
(181,0,'Unearthing','nektulos_mini01','Unearthing ',2.53,2.46,-3.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3670867982,'nektulos_mini01'),
|
||||
(182,0,'DireHollow1','nektulos_mini02','Dire Hollow: Barrow Ruins',-0.05,-0.64,-0.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3285202266,'nektulos_mini02'),
|
||||
(183,0,'UnderrotCavern','nektulos_mini03','The Underrot Caverns: Moldy Crypt',-0.26,-0.48,0.86,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3454396251,'nektulos_mini03'),
|
||||
(184,0,'Neriak','neriak','Neriak, City of Hate',175.54,29.87,199.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2399093912,'neriak'),
|
||||
(185,0,'Neriak1Room','neriak_ph_1room','a Nerian residence 1',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1866624788,'neriak_ph_1room'),
|
||||
(186,0,'Neriak3Room','neriak_ph_3room','a Nerian residence 3',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1590125928,'neriak_ph_3room'),
|
||||
(187,0,'Neriak5Room','neriak_ph_5room','a Nerian residence 5',0,-0.01,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2417746180,'neriak_ph_5room'),
|
||||
(188,0,'Vestibule','obelisk_epic01_vestibule','The Vestibule',-484,407,380,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2893098560,'obelisk_epic01_vestibule'),
|
||||
(189,0,'ObeliskLostSouls','obelisk_of_lostsouls','The Obelisk of Lost Souls',-13.78,624.84,134.08,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2537411576,'obelisk_of_lostsouls'),
|
||||
(190,0,'Zek','orcishwastes','Zek, the Orcish Wastes',509.44,-41.31,289.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3094052578,'orcishwastes'),
|
||||
(191,0,'SullonMines','orcishwastes_mini01','Sullon Mines',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2610132812,'orcishwastes_mini01'),
|
||||
(192,0,'Permafrost','permafrost','Permafrost',-5,0,-83,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3961969058,'permafrost'),
|
||||
(193,0,'DrayeksChamber1','permafrost_epic01_icebound','Drayek\'s Chamber',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,809955926,'permafrost_epic01_icebound'),
|
||||
(194,0,'CryptVox','permafrost_epic02_crypt','The Crypt of Vox',-2.49,10.63,-404.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1626179814,'permafrost_epic02_crypt'),
|
||||
(195,0,'Oakmyst','qey_adv01_oakmyst','Oakmyst Forest',1093.17,-10.15,-382.08,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1587861986,'qey_adv01_oakmyst'),
|
||||
(196,0,'ForestRuins','qey_adv02_ruins','The Forest Ruins',897,-14.5,-575,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2672310568,'qey_adv02_ruins'),
|
||||
(197,0,'Caves','qey_adv03_caves','The Caves',1.5,3.62,-23.42,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3132916059,'qey_adv03_caves'),
|
||||
(198,0,'PeatBog','qey_adv04_bog','The Peat Bog ',561.65,-27.41,417.99,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,870105190,'qey_adv04_bog'),
|
||||
(199,0,'DownBelow','qey_catacomb01','The Down Below ',-195.98,-0.1,-200.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,184500816,'qey_catacomb01'),
|
||||
(200,0,'VerminSnye','qey_catacomb02','Vermin\'s Snye',131.21,-6.92,-105.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2945046990,'qey_catacomb02'),
|
||||
(201,0,'CryptBetrayal','qey_catacomb03','The Crypt of Betrayal ',120.88,7.02,-49.61,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,964742035,'qey_catacomb03'),
|
||||
(202,0,'CrowsTomb','qey_catacomb_epic01','Crow\'s Resting Place',3.41,1.92,8.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2271733143,'qey_catacomb_epic01'),
|
||||
(203,0,'CryptDecrepit','qey_catacomb_epic02','A Decrepit Crypt',-31,-1,9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1435904733,'qey_catacomb_epic02'),
|
||||
(204,0,'ScarabHive','qey_catacomb_epic03','The Deathly Scarab Hive ',-20,3.37,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1044089428,'qey_catacomb_epic03'),
|
||||
(205,0,'qey_catacomb_epic04','qey_catacomb_epic04','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3211469419,'qey_catacomb_epic04'),
|
||||
(206,0,'qey_catacomb_epic05','qey_catacomb_epic05','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1908807800,'qey_catacomb_epic05'),
|
||||
(207,0,'ElddarGrove','qey_elddar','The Elddar Grove',666.15,-10.14,-392.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,843773804,'qey_elddar'),
|
||||
(208,0,'Cache','qey_epic01_p19_cache','The Cache',-25,0,-20,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1930595139,'qey_epic01_p19_cache'),
|
||||
(209,0,'StarcrestBank','qey_epic02_village02_bank','Starcrest: The Qeynos Exchange',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1552498994,'qey_epic02_village02_bank'),
|
||||
(211,0,'WillowWoodBank','qey_epic04_village05_bank','Willow Wood: The Qeynos Exchange',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2824516912,'qey_epic04_village05_bank'),
|
||||
(212,0,'qey_epic05_village06_scribe','qey_epic05_village06_scribe','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,730617311,'qey_epic05_village06_scribe'),
|
||||
(213,0,'IrontoeInn','qey_epic06_p12_irontoes','Qeynos: Irontoe East Inn',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3530459728,'qey_epic06_p12_irontoes'),
|
||||
(214,0,'SneedsTradingPost','qey_epic07_p08_sneeds','Qeynos: Sneed Galliway\'s Trading Post',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,866837445,'qey_epic07_p08_sneeds'),
|
||||
(215,0,'VoleensBakery','qey_epic08_p06_voleens','Qeynos: Voleen\'s Bakery',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2546749187,'qey_epic08_p06_voleens'),
|
||||
(216,0,'qey_epic09_l02_steel','qey_epic09_l02_steel','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3864565992,'qey_epic09_l02_steel'),
|
||||
(217,0,'qey_epic10_p01_bank','qey_epic10_p01_bank','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,427344810,'qey_epic10_p01_bank'),
|
||||
(218,0,'qey_epic11_l10_arbor','qey_epic11_l10_arbor','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3376886942,'qey_epic11_l10_arbor'),
|
||||
(219,0,'qey_epic12_l08_sanctum','qey_epic12_l08_sanctum','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2078500680,'qey_epic12_l08_sanctum'),
|
||||
(220,0,'QeynosMageTower','qey_epic13_l04_towers','Qeynos: Mage Tower',719,48,114,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,374794994,'qey_epic13_l04_towers'),
|
||||
(221,0,'QeynosHarbor','qey_harbor','Qeynos Harbor',999.14,-25.79,27.04,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1739788496,'qey_harbor'),
|
||||
(222,0,'NorthQeynos','qey_north','North Qeynos',267.77,-21.55,-19.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1841518510,'qey_north'),
|
||||
(223,0,'Qeynos2Room1','qey_ph_1r01','a two room apartment, version 1',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3500249586,'qey_ph_1r01'),
|
||||
(224,0,'Qeynos2Room2','qey_ph_1r02','a two room apartment, version 2',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3956101406,'qey_ph_1r02'),
|
||||
(225,0,'Qeynos3Room1','qey_ph_2r01','a three room house, version 1',0,0,4.95,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1050379564,'qey_ph_2r01'),
|
||||
(226,0,'Qeynos3Room2','qey_ph_2r02','a three room house, version 2',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2058287807,'qey_ph_2r02'),
|
||||
(227,0,'Qeynos4Room1','qey_ph_3r01','a four room house, version 1',0.07,-2,7.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2993828484,'qey_ph_3r01'),
|
||||
(228,0,'Qeynos4Room2','qey_ph_3r02','a four room house, version 2',0.05,-2,8.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,867876040,'qey_ph_3r02'),
|
||||
(229,0,'Qeynos4Room3','qey_ph_3r03','a four room house, version 3',0.05,-2,8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1771836431,'qey_ph_3r03'),
|
||||
(230,0,'Qeynos6Room1','qey_ph_5r01','a six room house, version 1',-2.59,0,9.48,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1374238603,'qey_ph_5r01'),
|
||||
(231,0,'SouthQeynos','qey_south','South Qeynos',477.37,-11.52,137.83,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1504263346,'qey_south'),
|
||||
(232,0,'Commonwealth','qey_tradeskill01','The Elusive Commonwealth',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1504802193,'qey_tradeskill01'),
|
||||
(233,0,'Nettleville','qey_village01','Nettleville',684.31,-35.4,339.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1309271643,'qey_village01'),
|
||||
(234,0,'Starcrest','qey_village02','Starcrest Commune',724.88,-35.2,325.29,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,914866192,'qey_village02'),
|
||||
(235,0,'Graystone','qey_village03','Graystone Yard',950.74,-25.22,-156.65,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,35815252,'qey_village03'),
|
||||
(236,0,'Castleview','qey_village04','Castleview Hamlet',780.79,-35.94,-94.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1042690246,'qey_village04'),
|
||||
(237,0,'WillowWood','qey_village05','The Willow Wood',829.24,-20.36,-780.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1899528945,'qey_village05'),
|
||||
(238,0,'Baubbleshire','qey_village06','The Baubbleshire',966.52,-18.2,-436.97,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1133934497,'qey_village06'),
|
||||
(239,0,'Rivervale','rivervale','Rivervale',79.77,-11.61,33.21,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,805193270,'rivervale'),
|
||||
(240,0,'rivervale_epic01_ph01','rivervale_epic01_ph01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3504623534,'rivervale_epic01_ph01'),
|
||||
(241,0,'rivervale_epic02_ph02','rivervale_epic02_ph02','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,897144292,'rivervale_epic02_ph02'),
|
||||
(242,0,'Runnyeye','runnyeye','Runnyeye',-58,0.11,57,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2485707951,'runnyeye'),
|
||||
(243,0,'ChamberRulgax','runnyeye_epic01_eye','The Chamber of Rulgax',65.43,-34.31,192.47,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2024822938,'runnyeye_epic01_eye'),
|
||||
(244,0,'OverlordsThroneRoom','runnyeye_epic02_goblin','The Overlord\'s Throne Room',205,1,-318,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2562976307,'runnyeye_epic02_goblin'),
|
||||
(245,0,'SolEye','solusekseye','Solusek\'s Eye',130.08,28.58,-125.76,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1322389444,'solusekseye'),
|
||||
(246,0,'NagafensLair','solusekseye_epic01_nagafen','Nagafen\'s Lair',0.12,-0.39,54.45,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3381789812,'solusekseye_epic01_nagafen'),
|
||||
(247,0,'BastionFlames','solusekseye_epic02_bastion','The Bastion of Flames',-147.93,-414.98,-290.9,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,220397575,'solusekseye_epic02_bastion'),
|
||||
(248,0,'OratoriumThyr1','solusekseye_epic03_thyr','The Oratorium of Thyr',-204.3,-617.46,-193.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2646304963,'solusekseye_epic03_thyr'),
|
||||
(249,0,'ThunderingSteppes','steppes','The Thundering Steppes',1000,-1,250,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1442587250,'steppes'),
|
||||
(250,0,'CoveDecay1','steppes_epic01_cove','The Cove of Decay',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1675261020,'steppes_epic01_cove'),
|
||||
(251,0,'PirateStash','steppes_mini01','A Pirate\'s Hidden Stash ',827.3,-13.3,1028.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2597747579,'steppes_mini01'),
|
||||
(252,0,'thunderdome','thunderdome','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3492108284,'thunderdome'),
|
||||
(253,0,'QueensColony','tutorial_island02','Queen\'s Colony',-17.24,-5.4,223,0,-1000000,0,0,0,'',0,0,0,0,0,0,1,'NONE',0,0,0,0,NULL,300,NULL,0,235639746,'tutorial_island02'),
|
||||
(254,0,'SourceEvil','tutorial_island02_epic01','The Source of Evil',-14.5,0,-2.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1139089258,'tutorial_island02_epic01'),
|
||||
(255,0,'MizansCellar','tutorial_island02_epic02','Mizan\'s Cellar',-9,-9,158,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,853356513,'tutorial_island02_epic02'),
|
||||
(256,0,'RuinsVarsoon','varsoon','The Ruins of Varsoon',95,17.9,-96.33,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,783825492,'varsoon'),
|
||||
(257,0,'ChamberImmortality','vrsn_epic01_boss','Chamber of Immortality ',203.16,-12.14,138.85,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1531502647,'vrsn_epic01_boss'),
|
||||
(258,0,'WailingCaves','wailingcaves','The Wailing Caves',-103,-33,-138,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3367326908,'wailingcaves'),
|
||||
(259,0,'ShardFear','shard_of_fear','Shard of Fear',-4.66,11.56,479.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2913550259,'shard_of_fear'),
|
||||
(260,40,'Gorowyn1Room','exp04_rgn_gorowyn_ph_1room','Gorowyn 1 Room Apartment',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3339258185,'exp04_rgn_gorowyn_ph_1room'),
|
||||
(261,40,'KunzarJungle','exp04_rgn_kunzar_jungle','Kunzar Jungle',-450,150,-870,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,135989668,'exp04_rgn_kunzar_jungle'),
|
||||
(262,40,'KylongPlains','exp04_rgn_kylong_plains','Kylong Plains',742,11,203,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3387257629,'exp04_rgn_kylong_plains'),
|
||||
(263,40,'TimorousDeep','exp04_rgn_timorous_deep','Timorous Deep',-257.5,2.7,181.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,16,'NONE',0,0,0,0,NULL,300,NULL,0,3292189791,'exp04_rgn_timorous_deep'),
|
||||
(264,40,'FensNathsar','exp04_rgn_fens_of_nathsar','Fens of Nathsar',489.5,12.6,1509.77,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,189371831,'exp04_rgn_fens_of_nathsar'),
|
||||
(265,40,'JarsathWastes','exp04_rgn_jarsath_wastes','Jarsath Wastes',-1057,-83,-560,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1721963361,'exp04_rgn_jarsath_wastes'),
|
||||
(267,40,'Chelsith','exp04_dun_chelsith','Chelsith',-75,30.3,510,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1080201912,'exp04_dun_chelsith'),
|
||||
(269,40,'KarnorsCastle','exp04_dun_karnors_castle','Karnor\'s Castle',267,-58.22,136,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1170290470,'exp04_dun_karnors_castle'),
|
||||
(270,40,'Sebilis','exp04_dun_sebilis','Sebilis',18,0,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1873729493,'exp04_dun_sebilis'),
|
||||
(271,40,'VeeshansPeak','exp04_dun_veeshans_peak','Veeshan\'s Peak',388,-342,1131,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2773136085,'exp04_dun_veeshans_peak'),
|
||||
(272,40,'TombThuuga','exp04_dun_charasis_epic01_queens','The Tomb of Thuuga',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2482499672,'exp04_dun_charasis_epic01_queens'),
|
||||
(273,40,'Chardok','exp04_dun_chardok','Chardok',27.44,-29.78,-340.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,758372554,'exp04_dun_chardok'),
|
||||
(274,40,'Gorowyn3Room','exp04_rgn_gorowyn_ph_3room','Gorowyn 3 Rooms Apartment',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,207940048,'exp04_rgn_gorowyn_ph_3room'),
|
||||
(275,40,'Gorowyn5Room','exp04_rgn_gorowyn_ph_5room','Gorowyn 5 Rooms Apartment',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3852789577,'exp04_rgn_gorowyn_ph_5room'),
|
||||
(276,40,'Pawbuster','exp04_dun_karnors_castle_epic01_pawbuster','The Execution Throne Room',-12.86,1.95,29.54,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4050761660,'exp04_dun_karnors_castle_epic01_pawbuster'),
|
||||
(277,40,'ProtectorsRealm','exp04_dun_sebilis_epic01_crypt','The Protector\'s Realm',-12,-13,344,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1896505173,'exp04_dun_sebilis_epic01_crypt'),
|
||||
(278,0,'OutpostOverlord','tutorial_island02','Outpost of the Overlord',-12.43,-4.94,222.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,2,'NONE',0,0,0,0,NULL,300,NULL,0,2331579180,'tutorial_island02'),
|
||||
(279,0,'Truthbringer','qey_tradeskill01','The Charter of the Truthbringer',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2254477089,'qey_tradeskill01'),
|
||||
(280,0,'Deductive','qey_tradeskill01','The Deductive Directory',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2963804548,'qey_tradeskill01'),
|
||||
(281,0,'Ironforge','qey_tradeskill01','The Ironforge Exchange',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3822793044,'qey_tradeskill01'),
|
||||
(282,0,'Wayfarers','qey_tradeskill01','Wayfarer\'s Stockpilers',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3109275695,'qey_tradeskill01'),
|
||||
(283,0,'WorkshopGood','qey_tradeskill01','Tradeskiller\'s Workshop',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2442508618,'qey_tradeskill01'),
|
||||
(284,0,'CoveDecay6','steppes_epic01_cove','The Cove of Decay: A Treaty for Treasure',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3368285039,'steppes_epic01_cove'),
|
||||
(285,0,'CircleVaniki','fprt_tradeskill01','The Circle of Vaniki',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1207827539,'fprt_tradeskill01'),
|
||||
(286,0,'Wanderlust','fprt_tradeskill01','The Ring of Wanderlust',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1815400861,'fprt_tradeskill01'),
|
||||
(287,0,'Ransackers','fprt_tradeskill01','The Ransackers Annex',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2343039238,'fprt_tradeskill01'),
|
||||
(288,0,'DarkBargainers','fprt_tradeskill01','The Dark Bargainers',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2653325751,'fprt_tradeskill01'),
|
||||
(289,0,'WarHagglers','fprt_tradeskill01','The War Hagglers',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,87161584,'fprt_tradeskill01'),
|
||||
(290,0,'NepetaCataria','fprt_tradeskill01','Nepeta Cataria',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1918315345,'fprt_tradeskill01'),
|
||||
(291,0,'Coalition','fprt_tradeskill01','The Coalition Crafter\'s Association',2.1,-0.19,-4.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,760423874,'fprt_tradeskill01'),
|
||||
(292,0,'Luminary','qey_tradeskill01','The Luminary Cache',8.39294,0,-10.6062,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3429099711,'qey_tradeskill01'),
|
||||
(293,0,'Runnyeye2','runnyeye_advanced','Runnyeye: The Gathering',-93.4526,-27.4416,58.496,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,655533918,'runnyeye_advanced'),
|
||||
(294,50,'Veksar1','exp05_dun_veksar','Veksar: The Invasion',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1027562245,'exp05_dun_veksar'),
|
||||
(295,40,'VoES','exp04_dun_charasis_north','Charasis: Vault of Eternal Sleep',0,0,23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,760135195,'exp04_dun_charasis_north'),
|
||||
(296,40,'MaidensChamber','exp04_dun_charasis_south','Charasis: Maiden\'s Chamber',0,0,-23,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1193908363,'exp04_dun_charasis_south'),
|
||||
(297,40,'TempleKorsha','exp04_dun_chardok_epic01_throne','The Temple of Kor-Sha',816,-27,206,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2801650478,'exp04_dun_chardok_epic01_throne'),
|
||||
(298,40,'CourtKorucust','exp04_dun_chardok_epic02_prison','Court of Korucust',-650,-66,204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,541835034,'exp04_dun_chardok_epic02_prison'),
|
||||
(299,40,'ChamberDestiny','exp04_dun_chelsith_epic01_behemoth','The Chamber of Destiny',192,-10,29,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2844302977,'exp04_dun_chelsith_epic01_behemoth'),
|
||||
(300,40,'VenrilsLair','exp04_dun_sebilis_epic02_venril','Venril Sathir\'s Lair',0,-10,144,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2553967894,'exp04_dun_sebilis_epic02_venril'),
|
||||
(301,40,'TrakanonsLair','exp04_dun_veeshans_peak_epic01_trakanon','Trakanon\'s Lair',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,913159877,'exp04_dun_veeshans_peak_epic01_trakanon'),
|
||||
(302,0,'ShardHate','shard_of_hate','Shard of Hate',45,0.2,290,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4135995094,'shard_of_hate'),
|
||||
(303,40,'CryptAgony','exp04_dun_sebilis_epic01_crypt','The Crypt of Agony',-12,-13,344,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,266969978,'exp04_dun_sebilis_epic01_crypt'),
|
||||
(305,0,'ArticaesLair','everfrost_epic01_menagerie','Ar\'ticae\'s Lair',-52.73,-23.55,-319.22,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3796545588,'everfrost_epic01_menagerie'),
|
||||
(306,0,'Bloodskull1','cmmn_epic01_orc','Bloodskull Valley: Maulic\'s Stronghold',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1447116011,'cmmn_epic01_orc'),
|
||||
(307,0,'Bloodskull3','cmmn_epic01_orc','Bloodskull Valley: Righting the Scales',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1939902408,'cmmn_epic01_orc'),
|
||||
(308,0,'Bloodskull4','cmmn_epic01_orc','Bloodskull Valley: The Excavation Site',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2140909834,'cmmn_epic01_orc'),
|
||||
(309,0,'Bloodskull5','cmmn_epic01_orc','Bloodskull Valley: The Training Grounds',-9.18,-48.2,732.4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3502321105,'cmmn_epic01_orc'),
|
||||
(310,0,'TremblingLagoon2','feerrott_epic01_temple','Trembling Lagoon: Cleansing of the Cove',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,577145340,'feerrott_epic01_temple'),
|
||||
(311,0,'CoveDecay2','steppes_epic01_cove','The Cove of Decay: Epic Angler',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3356317793,'steppes_epic01_cove'),
|
||||
(312,0,'CoveDecay3','steppes_epic01_cove','Cove of Decay: Horror Beneath the Waves',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1282445722,'steppes_epic01_cove'),
|
||||
(313,0,'CoveDecay5','steppes_epic01_cove','Cove of Decay: Mjolni\'s Lair',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,295656652,'steppes_epic01_cove'),
|
||||
(314,0,'IsleRefuge2','tutorial_island02','Darathar\'s Flight',-17.24,-5.4,223,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3299576964,'tutorial_island02'),
|
||||
(315,0,'Deathfist2','deathfist','Deathfist Citadel: Assault',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1875388458,'deathfist'),
|
||||
(316,0,'Deathfist3','deathfist','Deathfist Citadel: Onslaught',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1654839403,'deathfist'),
|
||||
(317,0,'Deathfist4','deathfist','Deathfist Citadel: The Arena of Zek',0,0,55.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2388724028,'deathfist'),
|
||||
(318,0,'DrayeksChamber2','permafrost_epic01_icebound','Drayek\'s Chamber: Throne of the Kromise King',1.02,59.81,-406.31,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1179826618,'permafrost_epic01_icebound'),
|
||||
(319,0,'TremblingLagoon3','feerrott_epic01_temple','Trembling Lagoon: Dythra\'s Lair',-904.3,-9.78,302.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1536753323,'feerrott_epic01_temple'),
|
||||
(320,0,'EchoesTime1','cmmn_epic02_mage','Echoes of Time',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,710155441,'cmmn_epic02_mage'),
|
||||
(321,0,'Firemyst2','antonica_epic02_firemyst','The Firemyst Gully: A Gallant Confrontation',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3335465554,'antonica_epic02_firemyst'),
|
||||
(322,0,'Firemyst3','antonica_epic02_firemyst','The Firemyst Gully: In Pursuit',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1877036992,'antonica_epic02_firemyst'),
|
||||
(323,0,'Firemyst4','antonica_epic02_firemyst','The Firemyst Gully: Vanudozalon\'s Lair',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2192926045,'antonica_epic02_firemyst'),
|
||||
(324,0,'GrimgashsLair','tutorial_island02_epic01','Grimgash\'s Lair',-14.5,0,-2.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2942727750,'tutorial_island02_epic01'),
|
||||
(325,0,'IsleRefuge1','tutorial_island02','Isle of Refuge',-17.24,-5.4,223,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2252985298,'tutorial_island02'),
|
||||
(326,0,'Icespire','everfrost_epic02_icespire','Icespire Summit',-63.16,58.9,-885.42,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4066447367,'everfrost_epic02_icespire'),
|
||||
(327,0,'DruidRing','antonica_epic01_vale','Imperiled Druid Ring',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4155975111,'antonica_epic01_vale'),
|
||||
(328,0,'ShatteredVale3','antonica_epic01_vale','Invasion of the Vale',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3338713433,'antonica_epic01_vale'),
|
||||
(329,0,'MaidensGulch3','lavastorm_epic02_gulch','Maiden\'s Gulch: Rescue of the Sage',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1526471034,'lavastorm_epic02_gulch'),
|
||||
(330,0,'Nektropos2','nektropos_castle','Nektropos Castle: Craftsman Errands',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1334746619,'nektropos_castle'),
|
||||
(331,0,'Nektropos3','nektropos_castle','Nektropos Castle: The Return',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3051981584,'nektropos_castle'),
|
||||
(332,0,'Nektropos4','nektropos_castle','Nektropos Castle: Tribulation',0,0,58,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3927417108,'nektropos_castle'),
|
||||
(333,0,'SanctumFear3','cazicthule_epic01_sanctum ','The Sanctum of Fear: Niscanith\'s Lair',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4089148686,'cazicthule_epic01_sanctum '),
|
||||
(334,0,'ShatteredStillness','antonica_epic02_firemyst','Shattered Stillness',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3520240139,'antonica_epic02_firemyst'),
|
||||
(335,0,'ShatteredVale2','antonica_epic01_vale','The Shattered Vale: A Bold Confrontation',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1609089866,'antonica_epic01_vale'),
|
||||
(336,0,'ShatteredVale4','antonica_epic01_vale','The Shattered Vale: Lordly Confrontation',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2695716024,'antonica_epic01_vale'),
|
||||
(337,0,'ShatteredVale5','antonica_epic01_vale','The Shattered Vale: Stones of the Avatars',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3330380441,'antonica_epic01_vale'),
|
||||
(338,0,'SpiritsLost','cazicthule','Spirits of the Lost',-0.05,7.89,154.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3324942373,'cazicthule'),
|
||||
(339,0,'CauldronHollow','nektulos_epic01_cauldroncove','The Cauldron Hollow',946,10,-621.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3723528959,'nektulos_epic01_cauldroncove'),
|
||||
(340,0,'CaveWonder1','enchanted_mini01 ','The Caves of Wonder',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3327956550,'enchanted_mini01 '),
|
||||
(341,0,'CaveWonder2','enchanted_mini01','Heroic: The Caves of Wonder',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3221976462,'enchanted_mini01'),
|
||||
(342,0,'SanctumFear2','cazicthule_epic01_sanctum ','Sanctum of Fear: Chamber of the Keeper',-1.02,-10,-178.26,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,507325671,'cazicthule_epic01_sanctum '),
|
||||
(343,0,'MaidensGulch2','lavastorm_epic02_gulch','Maiden\'s Gulch: Commune of K\'Dal',-193.04,-0.92,-344.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1048492947,'lavastorm_epic02_gulch'),
|
||||
(344,0,'CoveDecay4','steppes_epic01_cove','The Cove of Decay: A Heroic Confrontation',-110.5,-12.28,1020.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4248896629,'steppes_epic01_cove'),
|
||||
(345,0,'TombValor2','befallen_epic01','Tomb of Valor: Defiled',-4.74,-45.79,-47.64,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1782317725,'befallen_epic01'),
|
||||
(346,0,'EternalGorge2','cmmn_epic02_mage','The Eternal Gorge: A Daring Confrontation',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1806482132,'cmmn_epic02_mage'),
|
||||
(347,0,'EternalGorge3','cmmn_epic02_mage','The Eternal Gorge: Tears of the Daughters',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1153144978,'cmmn_epic02_mage'),
|
||||
(348,0,'CircleElders','tutorial_island02_epic01','The Circle of Elders',-14.5,0,-2.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3366202526,'tutorial_island02_epic01'),
|
||||
(349,0,'Gobblerock','fprt_sewer02','Gobblerock\'s Hideout',-126,0,59.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1041909749,'fprt_sewer02'),
|
||||
(350,0,'WorkshopEvil','fprt_tradeskill01','Tradeskiller\'s Workshop',3,1,-3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3046659043,'fprt_tradeskill01'),
|
||||
(351,0,'HeraldsKLorn','fprt_tradeskill01','The Heralds of K\'Lorn',8.4,-0.4,-11.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2136244020,'fprt_tradeskill01'),
|
||||
(352,0,'LairNecromancer','fallengate_epic01_boss','The Lair of the Necromancer',37,-26,-189,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2347698360,'fallengate_epic01_boss'),
|
||||
(353,10,'LibraryLight2','exp01_cty_majdul_library','The Library of Light: Scholar Errands',0,-0.2,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2219248866,'exp01_cty_majdul_library'),
|
||||
(354,20,'NestGreatEgg2','exp02_dun_shrines_of_sky_epic02_nest','The Nest of the Great Egg: Outfitter Errands',38.48,112.78,0.03,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2124039412,'exp02_dun_shrines_of_sky_epic02_nest'),
|
||||
(355,0,'OratoriumThyr2','solusekseye_epic03_thyr','The Oratorium of Thyr: Allim\'s Fate',-204.3,-617.46,-193.09,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,402095699,'solusekseye_epic03_thyr'),
|
||||
(356,0,'QSSBootstrutter','boat_06p_feerrott','The QSS Bootstrutter',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3305484660,'boat_06p_feerrott'),
|
||||
(357,0,'RumblerCaves','steppes_mini01','The Rumbler Caves',827.3,-13.3,1028.16,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4050420393,'steppes_mini01'),
|
||||
(358,0,'SeaBiscuit1','boat_06p_enchanted','The Sea Biscuit: Enchanted Journey',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1980603774,'boat_06p_enchanted'),
|
||||
(359,0,'SeaBiscuit2','boat_06p_enchanted','The Sea Biscuit: Heroic Enchanted Journey',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2333013113,'boat_06p_enchanted'),
|
||||
(360,0,'SeaBiscuit3','boat_06p_feerrott','The Sea Biscuit: Heroic Jungle Cruise',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2365341412,'boat_06p_feerrott'),
|
||||
(361,0,'SeaBiscuit4','boat_06p_orcishwastes','The Sea Biscuit: Heroic Orc Excursion',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1690191457,'boat_06p_orcishwastes'),
|
||||
(362,0,'SeaBiscuit5','boat_06p_feerrott','The Sea Biscuit: Jungle Cruise',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3949813243,'boat_06p_feerrott'),
|
||||
(363,0,'SeaBiscuit6','boat_06p_orcishwastes','The Sea Biscuit: Orc Excursion',2.14,1.21,-15.81,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1083287642,'boat_06p_orcishwastes'),
|
||||
(364,0,'Stalwart','qey_tradeskill01','The Stalwart Township',6,-0.48,-10.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1246738728,'qey_tradeskill01'),
|
||||
(365,0,'DrownedCaverns2','adv02_dun_drowned_caverns','The Drowned Caverns: Brutal Acts of War',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2128757352,'adv02_dun_drowned_caverns'),
|
||||
(366,0,'DrownedCaverns3','adv02_dun_drowned_caverns','The Drowned Caverns: Flammable Fur',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2366967768,'adv02_dun_drowned_caverns'),
|
||||
(367,0,'DrownedCaverns4','adv02_dun_drowned_caverns','The Drowned Caverns: Hot Water',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,817852260,'adv02_dun_drowned_caverns'),
|
||||
(368,0,'DrownedCaverns5','adv02_dun_drowned_caverns','The Drowned Caverns: Outer Grotto',96,23,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1358293133,'adv02_dun_drowned_caverns'),
|
||||
(369,0,'Splitpaw2','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Anvilpaw\'s Grotto',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,246626574,'adv02_dun_sundered_splitpaw'),
|
||||
(370,0,'Splitpaw3','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Captive Audience',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1406658297,'adv02_dun_sundered_splitpaw'),
|
||||
(371,0,'Splitpaw4','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Crawler Nest',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2072242411,'adv02_dun_sundered_splitpaw'),
|
||||
(372,0,'Splitpaw5','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Delving into the Darkness',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1568159668,'adv02_dun_sundered_splitpaw'),
|
||||
(373,0,'Splitpaw6','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Gladiator\'s Triumph',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1108437045,'adv02_dun_sundered_splitpaw'),
|
||||
(374,0,'Splitpaw7','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Hideout',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4160317729,'adv02_dun_sundered_splitpaw'),
|
||||
(375,0,'Splitpaw8','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Trial of Harclave',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,640136091,'adv02_dun_sundered_splitpaw'),
|
||||
(376,0,'Splitpaw9','adv02_dun_sundered_splitpaw','Sundered Splitpaw: Upper Tunnels',0,-2.5,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1849807013,'adv02_dun_sundered_splitpaw'),
|
||||
(377,50,'QeynosGuild1','qey_guildhall_tier1','Guild Hall',-0.188056,0.005529,-4.87351,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3530974985,'qey_guildhall_tier1'),
|
||||
(378,50,'QeynosGuild2','qey_guildhall_tier2','Large Qeynos Guild Hall',-0.188056,0.005529,-4.87351,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2736504342,'qey_guildhall_tier2'),
|
||||
(379,50,'AntonicaGuild','qey_guildhall_tier3','Antonica Guild Hall',665.435,-35.8975,1485.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3464306773,'qey_guildhall_tier3'),
|
||||
(380,50,'qey_guildhall_tier4','qey_guildhall_tier4','Qeynos: Tier 4 Guild Hall',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1113185173,'qey_guildhall_tier4'),
|
||||
(381,50,'FreeportGuild1','fprt_guildhall_tier1','Guild Hall',0.059904,0.153986,15.6427,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2493701805,'fprt_guildhall_tier1'),
|
||||
(382,50,'FreeportGuild2','fprt_guildhall_tier2','Large Freeport Guild Hall',0.003907,0.153989,16.3804,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1615399354,'fprt_guildhall_tier2'),
|
||||
(383,50,'CommonlandsGuild','fprt_guildhall_tier3','Commonlands Guild Hall',-1468.19,-136.974,-1307.95,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1257767219,'fprt_guildhall_tier3'),
|
||||
(384,50,'fprt_guildhall_tier4','fprt_guildhall_tier4','Freeport: Tier 4 Guild Hall',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3537265728,'fprt_guildhall_tier4'),
|
||||
(385,50,'MoorsYkesha','exp05_rgn_innothule','Moors of Ykesha',1911,454,1013,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2788275878,'exp05_rgn_innothule'),
|
||||
(386,50,'BefallenAsylum','exp05_dun_befallen_asylum','Befallen: Necrotic Asylum',23.25,0.25,-0.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1633749115,'exp05_dun_befallen_asylum'),
|
||||
(387,50,'BefallenCavern','exp05_dun_befallen_cavern','Befallen: Cavern of the Afflicted',-2.25,-0.1,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,752000273,'exp05_dun_befallen_cavern'),
|
||||
(388,50,'BefallenForsaken','exp05_dun_befallen_forsaken','Befallen: Halls of the Forsaken',7.25,0.25,0.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1084983315,'exp05_dun_befallen_forsaken'),
|
||||
(389,50,'GukUpper','exp05_dun_guk_upper','The Ruins of Guk: Halls of the Fallen',-33.5,0.2,12.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,107619541,'exp05_dun_guk_upper'),
|
||||
(390,50,'GukLower','exp05_dun_guk_lower','The Ruins of Guk: The Lower Corridors',3.33,-2,-2.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,413842749,'exp05_dun_guk_lower'),
|
||||
(391,50,'GukStronghold','exp05_dun_guk_stronghold','The Ruins of Guk: Ykesha\'s Outer Stronghold',0.5,-0.5,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1474385698,'exp05_dun_guk_stronghold'),
|
||||
(392,50,'GukStrongholdRaid','exp05_dun_guk_stronghold_raid','Ykesha\'s Inner Stronghold',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1898012092,'exp05_dun_guk_stronghold_raid'),
|
||||
(393,50,'Korsha','exp05_dun_korsha','Emperor Atrebe\'s Laboratory: The Fabled City of Kor-sha',0.25,0.1,30.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2386622022,'exp05_dun_korsha'),
|
||||
(394,50,'Veksar2','exp05_dun_veksar','Veksar: The Sunken Theater',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,371997069,'exp05_dun_veksar'),
|
||||
(395,50,'MiragulEpic','exp05_dun_miragul_epic01','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,9398401,'exp05_dun_miragul_epic01'),
|
||||
(396,50,'MiragulAnathema','exp05_dun_miragul_lower','Miragul\'s Phylactery: The Anathema',10.25,-0.2,9.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1724480869,'exp05_dun_miragul_lower'),
|
||||
(397,50,'MiragulCrucible','exp05_dun_miragul_shard','Miragul\'s Phylactery: The Crucible',-31,0,-56,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2882183615,'exp05_dun_miragul_shard'),
|
||||
(398,50,'MiragulScion','exp05_dun_miragul_upper','Miragul\'s Phylactery: Scion of Ice',-1.5,0,13.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3233187539,'exp05_dun_miragul_upper'),
|
||||
(399,50,'MistmooreAbbey','exp05_dun_mistmoore_abbey','Evernight Abbey',0,-0.25,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3136916931,'exp05_dun_mistmoore_abbey'),
|
||||
(400,50,'MistmooreDragon','exp05_dun_mistmoore_dragon','Zarrakon\'s Abyssal Chamber',0,-16,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3669361454,'exp05_dun_mistmoore_dragon'),
|
||||
(401,50,'MistmooreManor','exp05_dun_mistmoore_manor','Mistmyr Manor',0,-0.3,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,238657033,'exp05_dun_mistmoore_manor'),
|
||||
(402,50,'MistmooreRepository','exp05_dun_mistmoore_repository','Ravenscale Repository',0,-0.22,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1099149777,'exp05_dun_mistmoore_repository'),
|
||||
(403,50,'WardElements','exp05_dun_najena_atheneum','Ward of Elements',-67,-354,106,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1246840166,'exp05_dun_najena_atheneum'),
|
||||
(404,50,'NajenaForge','exp05_dun_najena_forge','The Deep Forge',-0.25,0.15,24,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1435795796,'exp05_dun_najena_forge'),
|
||||
(405,50,'NajenaHollow','exp05_dun_najena_hollow','Najena\'s Hollow Tower',0.4,-11.6,88.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1985747884,'exp05_dun_najena_hollow'),
|
||||
(406,50,'Bazzul','exp05_dun_void_anchor','Anchor of Bazzul',-515.3,-0.6,657.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,297392421,'exp05_dun_void_anchor'),
|
||||
(407,50,'Ferzhul','exp05_dun_void_palace','Palace of Ferzhul',-135.08,6.66,-10.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,274203338,'exp05_dun_void_palace'),
|
||||
(408,50,'PalaceAncientOne','exp05_dun_void_palace','Palace of the Ancient One',-135.08,6.66,-10.44,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,375924650,'exp05_dun_void_palace'),
|
||||
(409,50,'Ankzul','exp05_dun_void_pit','Obelisk of Ahkzul',546.15,6.1,-318.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,524307527,'exp05_dun_void_pit'),
|
||||
(410,40,'NuRoga','exp04_dun_droga_nurga','Nu\'Roga',-4.25,0,41.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2653575693,'exp04_dun_droga_nurga'),
|
||||
(411,0,'IcyKeep1','permafrost','The Icy Keep (Easy)',-49.07,16,208,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2057982584,'permafrost'),
|
||||
(412,0,'Frostfell','everfrost_frostfell','Frostfell Wonderland Village',65,-3,-1200,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3311558711,'everfrost_frostfell'),
|
||||
(413,0,'TheFuture','everfrost_frostfell','The Future',-502.92,-6,-355.49,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4130976405,'everfrost_frostfell'),
|
||||
(414,0,'KritchatsHouse','fprt_ph_1r01','Bobby Kritchat\'s House',-6.37,0.7,-13.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2297313179,'fprt_ph_1r01'),
|
||||
(415,0,'McScrooglesPast','qey_epic03_village03_ph','McScroogle\'s Past',15.57,-0.5,-9.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2876833616,'qey_epic03_village03_ph'),
|
||||
(416,0,'McScrooglesBoudoir','qey_ph_1r01','Mr. McScroogle\'s Boudoir',-6.21,0,-0.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4197602164,'qey_ph_1r01'),
|
||||
(417,30,'McScroogleHQ','exp03_dun_klakanon_epic01_menace','McScroogle Corp. HQ',129,24,-66.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1634382156,'exp03_dun_klakanon_epic01_menace'),
|
||||
(418,0,'IcyKeep2','permafrost','The Icy Keep (Hard)',-49.07,16,208,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,431849093,'permafrost'),
|
||||
(419,50,'AntoniasChambers','qey_guildhall_tier1','Antonia Bayle\'s Chambers',0,0,-5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3301442772,'qey_guildhall_tier1'),
|
||||
(420,0,'Firemyst5','antonica_epic02_firemyst','The Firemyst Gully: Supply Stocking',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,138580763,'antonica_epic02_firemyst'),
|
||||
(421,30,'RilgorsChambers','exp03_dun_klakanon_epic01_menace','Rilgor Plegnog\'s Chambers',129,24,-66.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1821662383,'exp03_dun_klakanon_epic01_menace'),
|
||||
(422,30,'ClockworkWorkshop','exp03_dun_klakanon ','The Clockwork Workshop',130,9,52,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1180254437,'exp03_dun_klakanon '),
|
||||
(423,0,'EndlessCatacombs','adv04_dun_endless','The Endless Catacombs',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2483512159,'adv04_dun_endless'),
|
||||
(424,50,'OverlordsOffice','fprt_guildhall_tier2','The Overlord\'s Office',0,0,16.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3243271695,'fprt_guildhall_tier2'),
|
||||
(425,50,'TombMadCrusader','exp05_dun_befallen_cavern','Tomb of the Mad Crusader',-2.25,-0.1,4,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,675527825,'exp05_dun_befallen_cavern'),
|
||||
(426,0,'WitchesCove','nektulos_epic01_cauldroncove','The Witches\' Cove',894.775,10,-481.346,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3151346832,'nektulos_epic01_cauldroncove'),
|
||||
(427,0,'Firemyst','antonica_epic02_firemyst','The Firemyst Gully',-1093.72,-25.04,686.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1001393294,'antonica_epic02_firemyst'),
|
||||
(428,50,'DryadGrotto','exp05_dun_guk_upper_epic01_cave','Enchanted Dryad Grotto',13.8052,-32.8927,-322.195,0,-1000000,0,1,80,'0',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4187233331,'exp05_dun_guk_upper_epic01_cave'),
|
||||
(429,10,'PoetsPalace2','exp01_dun_poets_palace_community','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3656598577,'exp01_dun_poets_palace_community'),
|
||||
(431,40,'CharasisWest','exp04_dun_charasis_west','Emperor\'s Athenaeum',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,241278901,'exp04_dun_charasis_west'),
|
||||
(432,40,'KurnsTower','exp04_dun_kurns_tower','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4282593199,'exp04_dun_kurns_tower'),
|
||||
(433,40,'MoppetShoppe','exp04_dun_sebilis_quarters','The Moppet Shoppe',-17.4,31,479.8,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1525821771,'exp04_dun_sebilis_quarters'),
|
||||
(434,50,'LowerGuk1','exp05_dun_guk_lower_epic01_cave','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2474119725,'exp05_dun_guk_lower_epic01_cave'),
|
||||
(435,0,'Mystic','live_epic_mystic','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1533911469,'live_epic_mystic'),
|
||||
(436,0,'HauntedUnrest','live_haunted_unrest','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1547071487,'live_haunted_unrest'),
|
||||
(437,0,'RodcetDiety','live_rodcet_diety','Describe me in the zones table! :)',0,0,0,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1148846749,'live_rodcet_diety'),
|
||||
(438,0,'Buccaneers','befallen_epic01','The Buccaneer\'s Rest',3.03794,-45,-44.6673,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,622152942,'befallen_epic01'),
|
||||
(439,0,'TombNight2','mod01_dun_tombs_of_night','The Tombs of Night: A Search For Answers',120.016,-0.5,120.964,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2581166184,'mod01_dun_tombs_of_night'),
|
||||
(440,50,'LegendsMuseum','qey_guildhall_tier1','Legends of Norrath Museum',1.13356,1,-0.742676,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4025127940,'qey_guildhall_tier1'),
|
||||
(441,10,'ZygomydGrotto','exp01_rgn_sinking_sands_epic01_lockjaw','Enchanted Zygomyd Grotto',213.457,-4.79144,-46.9508,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,422052312,'exp01_rgn_sinking_sands_epic01_lockjaw'),
|
||||
(442,30,'BrownieGrotto','exp03_dun_hollow_stump2','Enchanted Brownie Grotto',-216.12,-38.9957,29.9802,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1114913268,'exp03_dun_hollow_stump2'),
|
||||
(443,30,'FayGrotto','exp03_rgn_emerald_halls_event','Enchanted Fay Grotto',389.893,94.241,-800.458,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3424608148,'exp03_rgn_emerald_halls_event'),
|
||||
(444,50,'NaiadGrotto','exp05_dun_guk_lower_epic01_cave','Enchanted Naiad Grotto',-4.4465,-2.40918,2.62357,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2260864416,'exp05_dun_guk_lower_epic01_cave'),
|
||||
(445,0,'HoldFallen','fprt_epic05_a02_temple01','Hold of the Fallen',10.7279,1,-0.867747,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3192830649,'fprt_epic05_a02_temple01'),
|
||||
(446,0,'RitePassage','fprt_epic05_a02_temple01','Rite of Passage',9.72787,1,1.13225,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3789732280,'fprt_epic05_a02_temple01'),
|
||||
(447,0,'CondemnedCatacomb','qey_catacomb01','The Condemned Catacomb',-217.584,0.5,-56.58,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1996344389,'qey_catacomb01'),
|
||||
(448,0,'PrivateLounge','qey_ph_1r01','Bar of Brell: Private Lounge',-6.21334,0.0025,-0.20449,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2145600684,'qey_ph_1r01'),
|
||||
(449,0,'Blumbles','steppes_mini01','Blumble\'s Halfling Hole',820.961,-12,1023.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2556324114,'steppes_mini01'),
|
||||
(450,0,'SmallHideout','tutorial_island02_epic02','a small hideout',-4.89851,-8,161.891,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1266491077,'tutorial_island02_epic02'),
|
||||
(451,60,'LibraryErudin','exp06_dun_erudin_erudin01','Library of Erudin',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2187208939,'exp06_dun_erudin_erudin01'),
|
||||
(452,60,'ResearchHalls','exp06_dun_erudin_erudin02','Erudin Research Halls',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1883324183,'exp06_dun_erudin_erudin02'),
|
||||
(453,60,'PalaceErudin','exp06_dun_erudin_erudin03','Royal Palace of Erudin',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2369621886,'exp06_dun_erudin_erudin03'),
|
||||
(454,60,'Vigilant1','exp06_dun_sentinal','The Vigilant: Final Destruction',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2212927518,'exp06_dun_sentinal'),
|
||||
(455,60,'TheHole','exp06_dun_thehole','The Hole',19.74,101.43,-66.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4112900241,'exp06_dun_thehole'),
|
||||
(456,60,'DemitriksBastion','exp06_dun_thehole_wing1','Demitrik\'s Bastion',19.74,101.43,-66.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1578585151,'exp06_dun_thehole_wing1'),
|
||||
(457,60,'TheOuterVault','exp06_dun_thehole_wing2','The Outer Vault',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,295985198,'exp06_dun_thehole_wing2'),
|
||||
(458,60,'SpiritsResonance','exp06_dun_thehole_wing3','Spirit\'s Resonance',336.91,114.34,-254.43,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,356553526,'exp06_dun_thehole_wing3'),
|
||||
(459,60,'ToxxuliasMound','exp06_dun_toxxulia_mound01','Lair of the Dragon Queen',12.9,148.77,2427.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3838745552,'exp06_dun_toxxulia_mound01'),
|
||||
(460,60,'Conservatory','exp06_dun_vastydeep01','Vasty Deep: The Conservatory',-9.24,-7,-30.71,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,954080035,'exp06_dun_vastydeep01'),
|
||||
(461,60,'AbandonedLabs','exp06_dun_vastydeep02','Vasty Deep: The Abandoned Labs',-0.89,-1.57,-1.28,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2073480066,'exp06_dun_vastydeep02'),
|
||||
(462,60,'VestigialCella','exp06_dun_vastydeep03','Vasty Deep: The Vestigial Cella',-12.9,-10,-3.06,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1092966222,'exp06_dun_vastydeep03'),
|
||||
(463,60,'AbominableLaboratory','exp06_dun_vastydeep02','Perah\'Celsis\' Abominable Laboratory',14.47,-34.05,66.94,280,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2962342588,'exp06_dun_vastydeep02'),
|
||||
(464,60,'StonebruntHighlands','exp06_rgn_odus_north','The Stonebrunt Highlands',-481.65,370.17,1513.09,45,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2369118810,'exp06_rgn_odus_north'),
|
||||
(465,60,'SunderedFrontier','exp06_rgn_odus_south','The Sundered Frontier',2213.66,-210.17,2469.19,90,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,168443344,'exp06_rgn_odus_south'),
|
||||
(466,60,'exp06_rgn_odus_south_epic01_panda','exp06_rgn_odus_south_epic01_panda','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1822966042,'exp06_rgn_odus_south_epic01_panda'),
|
||||
(467,0,'BG_Ganak','battleground_ctf','Battlefield of Ganak',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2342906850,'battleground_ctf'),
|
||||
(468,0,'BG_Smugglers','battleground_nodes','Smugglers Den',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2939036782,'battleground_nodes'),
|
||||
(469,0,'BG_Gears','battleground_relic01','Gears of Klak\'Anon',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1385404002,'battleground_relic01'),
|
||||
(470,61,'FrostfangSea','halas','FrostFang Sea',-229.542,34.6202,-725.879,0,-1000000,0,1,80,'',0,0,0,0,0,0,32,'NONE',0,0,0,0,NULL,300,NULL,0,3132425949,'halas'),
|
||||
(472,0,'cmmn_epic01_orc','cmmn_epic01_orc','Bloodskull Valley: Kaljanar\'s Lair',-8.26939,-46,733.468,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4207969976,'cmmn_epic01_orc'),
|
||||
(473,0,'fprt_ph_5r01','fprt_ph_5r01','the Thexian Meeting',-3.87325,-0.497519,-2.07887,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1293060228,'fprt_ph_5r01'),
|
||||
(474,0,'solusekseye_epic03_thyr','solusekseye_epic03_thyr','The Oratorium of Thyr: Deserted',-205.749,-617,-189.786,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1724471149,'solusekseye_epic03_thyr'),
|
||||
(475,0,'MurkwaterNook','fprt_sewer_epic03','The Murkwater Nook',3.80113,0.5,-17.8084,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2224401447,'fprt_sewer_epic03'),
|
||||
(476,0,'ShatteredStillnessEpic','antonica_epic02_firemyst','Shattered Stillness: Epic',-1187.3,-1187.3,-1187.3,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,19001049,'antonica_epic02_firemyst'),
|
||||
(477,0,'PiratesStashHeroic','steppes_mini01','Heroic: A Pirate\'s Hidden Stash',820.961,-12,1025.16,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2609903017,'steppes_mini01'),
|
||||
(478,0,'RumblerCavesHeroic','steppes_mini01','Heroic: Rumbler Caves',955.493,-22,1192.34,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2259272861,'steppes_mini01'),
|
||||
(479,0,'HollowHedge','live_haunted_cauldroncove','The Hollow Hedge',884.89,7.44304,-476.69,0,-1000000,0,1,80,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,697470619,'live_haunted_cauldroncove'),
|
||||
(480,70,'GreatDivide','exp07_rgn_great_divide','Great Divide',-1422.07,-510.27,-2275.1,35.46,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2941246892,'exp07_rgn_great_divide'),
|
||||
(481,70,'EasternWastes','exp07_rgn_eastern_wastes','Eastern Wastes',-946.3,-336.29,2365.81,220,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,627308595,'exp07_rgn_eastern_wastes'),
|
||||
(482,70,'CrystalCaverns','exp07_dun_crystalcavern','Crystal Caverns: Collapse',23,-34.32,91.35,260,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4189128104,'exp07_dun_crystalcavern'),
|
||||
(483,70,'KaelDrakkel','exp07_dun_kael_drakkel','Kael Drakkel',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2072927759,'exp07_dun_kael_drakkel'),
|
||||
(484,70,'IceshardKeep','exp07_dun_kael_iceshard_keep','Iceshard Keep',-563.9,73.3,-25.17,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1856150992,'exp07_dun_kael_iceshard_keep'),
|
||||
(485,70,'TempleZek','exp07_dun_kael_temple_zek','The Temple of Rallos Zek',-618.54,76.9,-1110.49,20,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2060249267,'exp07_dun_kael_temple_zek'),
|
||||
(486,70,'ThroneStorms','exp07_dun_kael_throne','Throne of Storms',153.28,20.17,1614.75,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3674709028,'exp07_dun_kael_throne'),
|
||||
(487,70,'KraytocsFortress','exp07_dun_kraytocs_fortress','Kraytoc\'s Fortress Of Rime',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3842703654,'exp07_dun_kraytocs_fortress'),
|
||||
(488,70,'TowerFrozenShadow','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Shadowed Corridors',2,-2,18.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2305975907,'exp07_dun_toweroffrozenshadow'),
|
||||
(489,70,'ForgottenPools','exp07_dun_velks_forgotten_pools','Forgotten Pools',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2351575362,'exp07_dun_velks_forgotten_pools'),
|
||||
(490,70,'TheAscent','exp07_dun_velks_the_ascent','The Ascent',-448,115,-285,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,737340354,'exp07_dun_velks_the_ascent'),
|
||||
(491,0,'ShatteredVale6','antonica_epic01_vale_gu54','Describe me in the zones table! :)',-2526.79,15.67,-50.07,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1733527721,'antonica_epic01_vale_gu54'),
|
||||
(492,50,'GukSpire','exp05_dun_guk_spire','Zraxth\'s Unseen Arcanum',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4258451007,'exp05_dun_guk_spire'),
|
||||
(493,50,'PalaceAncient','exp05_dun_void_palace_crafter','Palace of the Ancient One',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,417408192,'exp05_dun_void_palace_crafter'),
|
||||
(494,60,'UnderfootDepths','exp06_dun_thehole_raid','Underfoot Depths',0,32,-63,180,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3918641367,'exp06_dun_thehole_raid'),
|
||||
(495,70,'SullonsSpire','exp07_dun_drunder_sullon_spire','Sullon\'s Spire',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2509995897,'exp07_dun_drunder_sullon_spire'),
|
||||
(496,70,'TallonsStronghold','exp07_dun_drunder_tallon_stronghold','Tallon\'s Stronghold',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,4211773782,'exp07_dun_drunder_tallon_stronghold'),
|
||||
(497,70,'VallonsTower','exp07_dun_drunder_vallon_tower','Vallon\'s Tower',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,682362450,'exp07_dun_drunder_vallon_tower'),
|
||||
(498,70,'OuterKael','exp07_dun_kael_drakkel_hub','Outer Kael',-2135,57.36,-1200,220,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2607747591,'exp07_dun_kael_drakkel_hub'),
|
||||
(499,70,'Thurgadin','exp_07_thurgadin_velious','Thurgadin, City of the Coldain',985,-308,367,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3581557641,'exp_07_thurgadin_velious'),
|
||||
(501,61,'Halas1Room','halas_ph_1room','Halas One Room Housing',51.16,49.48,138.12,179,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,802201839,'halas_ph_1room'),
|
||||
(502,61,'Halas3Room','halas_ph_3room','New Halas Three Room Housing',34.38,49.48,-3.1,270,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2463865530,'halas_ph_3room'),
|
||||
(503,61,'Halas5Room','halas_ph_5room','New Halas Five Room Housing',33.78,49.48,-154.57,270,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3741636536,'halas_ph_5room'),
|
||||
(504,0,'SummerHome','home_everfrost_menagerie','Everfrost Summer Home',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1539707629,'home_everfrost_menagerie'),
|
||||
(505,10,'VacationSuite','home_majdul_bottle','Maj\'Dul Vacation Suite',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1540644614,'home_majdul_bottle'),
|
||||
(506,10,'PersonalLibrary','home_majdul_library','Personal Library',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3298151362,'home_majdul_library'),
|
||||
(507,0,'OperaHouse','home_neriak_opera','Private Opera House',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,834698580,'home_neriak_opera'),
|
||||
(508,0,'Dojo','home_qeynos_dojo','Personal Dojo',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3841277655,'home_qeynos_dojo'),
|
||||
(509,0,'live_epic_mystic_odus','live_epic_mystic_odus','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,486657895,'live_epic_mystic_odus'),
|
||||
(510,61,'SkybladeSkiff','live_ph_skyblade01','Skyblade Skiff',-0.3,9.86,76.62,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3371790322,'live_ph_skyblade01'),
|
||||
(511,0,'MistmooreCragsEstate','mistmoore_ph_5r01','Mistmoore Crags Estate',6.89,0.3,-11.2,112.46,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1718101213,'mistmoore_ph_5r01'),
|
||||
(512,0,'IcyKeep','permafrost_frostfell','The Icy Keep (Easy)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1450981306,'permafrost_frostfell'),
|
||||
(513,0,'LoveShard','shard_of_love','Shard of Love: A Moment of Valor',33.32,-7.56,105.31,11,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,599278352,'shard_of_love'),
|
||||
(514,0,'veteran_ph_mistmoore','veteran_ph_mistmoore','Describe me in the zones table! :)',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2561929907,'veteran_ph_mistmoore'),
|
||||
(515,50,'HalasGuild1','qey_guildhall_tier1','Halas Guild Hall',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,285232141,'qey_guildhall_tier1'),
|
||||
(516,61,'IllbodingDark','halas_epic01_necro','Cave of Illboding Dark',738.774,41.9821,133.181,0,-1000000,0,12,15,'Instanced Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3635449592,'halas_epic01_necro'),
|
||||
(517,61,'IllbodingDark1','halas_epic01_necro','Cave of Illboding Dark: The Source',738.774,41.9821,133.181,0,-1000000,0,12,15,'Instanced Indoor',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3649530009,'halas_epic01_necro'),
|
||||
(522,60,'VastyDeep','exp06_dun_vastydeep04','The Vasty Deep',14,-34,66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,874710987,'exp06_dun_vastydeep04'),
|
||||
(523,60,'RoehnTheer','exp06_dun_erudin_erudin03','The Palace of Roehn Theer',-4,3,3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2576445076,'exp06_dun_erudin_erudin03'),
|
||||
(524,10,'DelvingDead','exp01_dun_silent_city','Silent City: The Delving Dead',143,31,160,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,710129786,'exp01_dun_silent_city'),
|
||||
(525,0,'TangledWeeds2','enchanted_mini01','Heroic: Cavern of Tangled Weeds',-79.8,-2.63,-1120.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1850595577,'enchanted_mini01'),
|
||||
(526,0,'DarkenedDen','orcishwastes_mini01','The Darkened Den',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1976475018,'orcishwastes_mini01'),
|
||||
(527,0,'DarkenedDen2','orcishwastes_mini01','Heroic: The Darkened Den',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3511599308,'orcishwastes_mini01'),
|
||||
(528,0,'TallonHalls2','orcishwastes_mini01','Heroic: The Tallon Hording Halls',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3177504651,'orcishwastes_mini01'),
|
||||
(529,0,'SullonMines2','orcishwastes_mini01','Heroic: The Sullon Mines',353,-121.77,-57.34,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,2808492783,'orcishwastes_mini01'),
|
||||
(530,0,'TombNight3','mod01_dun_tombs_of_night','The Tombs of Night: Retribution',120.016,-0.5,120.964,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3382395703,'mod01_dun_tombs_of_night'),
|
||||
(531,0,'EchoesTime2','cmmn_epic02_mage','Echoes of Time: Epic',863.77,-18.31,581.92,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,1417748158,'cmmn_epic02_mage'),
|
||||
(532,0,'IcyKeep3','permafrost_frostfell','Icy Keep: Retribution',0,0,0,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3963619840,'permafrost_frostfell'),
|
||||
(533,0,'Acquisition','nektulos_mini01','Acquisition',2.53,2.46,-3.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,233219426,'nektulos_mini01'),
|
||||
(534,0,'QinLo1','adv04_dun_endless','Trial of Qin Lo: Solo',-33.7,-89.42,24.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,NULL,300,NULL,0,3975257256,'adv04_dun_endless'),
|
||||
(535,80,'ChampionsRespite','battleground_lobby','Champion\'s Respite',22.4925,1,-28.5045,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,581603936,'battleground_lobby'),
|
||||
(536,80,'TenebrousRefuge','home_floating_island','Tenebrous Island Refuge',-41.4936,-1.48073,96.1204,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,912708921,'home_floating_island'),
|
||||
(537,80,'SleepersTomb','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: the Awakening',-17.01,-9,24.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1048562755,'exp08_dun_sleepers_tomb'),
|
||||
(538,80,'SleepersTomb1','exp08_dun_sleepers_tomb_destroyed','Sleeper\'s Tomb: Unearthed [Raid]',-23,-10,3.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,257992003,'exp08_dun_sleepers_tomb_destroyed'),
|
||||
(539,80,'SleepersTomb2','exp08_dun_sleepers_tomb_destroyed','Sleeper\'s Tomb [Contested]',-7,-10,-2.5,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,207236618,'exp08_dun_sleepers_tomb_destroyed'),
|
||||
(540,80,'SleepersTomb3','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: The Forgotten Catacombs [Advanced Solo]',413.5,-118,-84.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2674969966,'exp08_dun_sleepers_tomb'),
|
||||
(541,80,'SleepersTomb4','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: The Forgotten Catacombs [Heroic]',412.5,-118,-97.2,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3137546384,'exp08_dun_sleepers_tomb'),
|
||||
(542,80,'SleepersTomb5','exp08_dun_sleepers_tomb','Sleeper\'s Tomb: a Temporal Leap [Raid]',-15.7883,-9.71442,25.6396,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3100543520,'exp08_dun_sleepers_tomb'),
|
||||
(543,70,'TempleZek1','exp07_dun_kael_temple_zek','Temple of Rallos Zek: Foundations of Stone',-603.509,78,-1108.79,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,763380135,'exp07_dun_kael_temple_zek'),
|
||||
(544,70,'TempleZek2','exp07_dun_kael_temple_zek','Temple of Rallos Zek: Foundations of Stone [Challenge]',-621.509,78,-1108.79,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3933678329,'exp07_dun_kael_temple_zek'),
|
||||
(545,70,'ThroneStorms1','exp07_dun_kael_throne','Throne of Storms: Hall of Legends',-128.696,-11,789.267,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1777546843,'exp07_dun_kael_throne'),
|
||||
(546,70,'ThrownStorms2','exp07_dun_kael_throne','Throne of Storms: Hall of Legends [Challenge]',-128.696,-11,789.267,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2257287777,'exp07_dun_kael_throne'),
|
||||
(547,0,'BuriedHideout','qey_catacomb_epic03','A Buried Hideout',-22,3.5,20.8,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1939516724,'qey_catacomb_epic03'),
|
||||
(548,0,'DireHollow2','nektulos_mini02','Dire Hollow: Grim Tidings',0.8,-1,3.3,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,378944620,'nektulos_mini02'),
|
||||
(549,70,'FortressDrunder','exp07_dun_drunder_fortress','The Fortress of Drunder',-2.1,-0.21,23.25,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,611439565,'exp07_dun_drunder_fortress'),
|
||||
(550,0,'desertedmine','orcishwastes_mini01','The Deserted Mine',382.376,8,-95.08,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4206523056,'orcishwastes_mini01'),
|
||||
(551,70,'TowerFrozenShadow1','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Umbral Halls',-68.33,293.5,-7.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3725736583,'exp07_dun_toweroffrozenshadow'),
|
||||
(552,70,'TowerFrozenShadow2','exp07_dun_toweroffrozenshadow','Tower of Frozen Shadow: Haunt of Syl\'Tor',-40.03,635.5,111.46,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,776524994,'exp07_dun_toweroffrozenshadow'),
|
||||
(553,0,'HiddenVillage','feerrott_epic02_froglok','The Hidden Village of Kugup',-140.131,14,142.309,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3407712702,'feerrott_epic02_froglok'),
|
||||
(554,0,'CourtAlAfaz','exp01_dun_shimmering_citadel','The Court of Al\'Afaz',56.26,97.454,-124.98,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4256496104,'exp01_dun_shimmering_citadel'),
|
||||
(555,0,'GatesAhket','exp01_dun_living_tombs','The Gates of Ahket Aken',-633.189,5,371.191,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1715039045,'exp01_dun_living_tombs'),
|
||||
(556,0,'MeetingMinds','feerrott_epic01_temple','A Meeting of the Minds',-905.273,-8,220.462,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3583391343,'feerrott_epic01_temple'),
|
||||
(557,0,'LockjawLair','exp01_rgn_sinking_sands_epic01_lockjaw','Lockjaw\'s Lair',-3.38824,8,15.4198,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3143832939,'exp01_rgn_sinking_sands_epic01_lockjaw'),
|
||||
(558,0,'Meditation','adv04_tower_cave','The Mediation Chamber',-13.8528,0.0025,-2.60848,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3350653370,'adv04_tower_cave'),
|
||||
(559,0,'Freeport','freeport_combined','The City of Freeport',-232.028,-56.065,172.565,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,716469914,'freeport_combined'),
|
||||
(560,0,'Nizara','adv04_dun_endless','Nizara, City of the Nayad',-48.9533,-89,-8.30118,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,729645890,'adv04_dun_endless'),
|
||||
(561,0,'ZanFi','adv04_dun_drgn_temple','Sepulcher of Zan Fi',22.0348,2,35.0558,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2763425328,'adv04_dun_drgn_temple'),
|
||||
(562,0,'Jiang1','adv04_dun_endless','Trial of Jiang Anlan: Solo',50.0781,-89,-7.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2616412967,'adv04_dun_endless'),
|
||||
(563,0,'Jiang2','adv04_dun_endless','Trial of Jiang Anlan: Heroic',51.0781,-89,-8.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2591092899,'adv04_dun_endless'),
|
||||
(564,0,'TempleScale1','exp02_dun_lair_of_scale','The Temple of Scale',11.1522,135.658,-214.027,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,994882643,'exp02_dun_lair_of_scale'),
|
||||
(565,0,'TempleScale2','exp02_dun_lair_of_scale','The Temple of Scale: Pedestal of the Priestess',-12.8215,57.6019,263.487,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4267147135,'exp02_dun_lair_of_scale'),
|
||||
(566,0,'SunKai1','adv04_dun_endless','Trial of Sun Kai: Solo',5.21633,-44,22.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1106002034,'adv04_dun_endless'),
|
||||
(567,0,'SunKai2','adv04_dun_endless','Trial of Sun Kai: Heroic',-0.783668,-44,23.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2446330851,'adv04_dun_endless'),
|
||||
(568,0,'LiZhong2','adv04_dun_endless','Trial of Li Zhong: Heroic',1.21633,-44,23.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3502512801,'adv04_dun_endless'),
|
||||
(569,0,'Sagacious1','adv04_dun_endless','Trial of Sagacious Ting: Solo',5.21633,-44,22.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1462123052,'adv04_dun_endless'),
|
||||
(570,0,'Sagacious2','adv04_dun_endless','Trial of Sagacious Ting: Heroic',-0.783668,-44,23.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1227304061,'adv04_dun_endless'),
|
||||
(571,0,'BoFen1','adv04_dun_endless','Trial of Bo Fen: Solo',50.0781,-89,-7.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1065240210,'adv04_dun_endless'),
|
||||
(572,0,'BoFen2','adv04_dun_endless','Trial of Bo Fen: Heroic',51.0781,-89,-8.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4031776815,'adv04_dun_endless'),
|
||||
(573,0,'LinVo1','adv04_dun_endless','Trial of Lin Vo: Solo',5.21633,-44,22.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3776901092,'adv04_dun_endless'),
|
||||
(574,0,'LinVo2','adv04_dun_endless','Trial of Lin Vo: Heroic',-0.783668,-44,23.6322,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3124172364,'adv04_dun_endless'),
|
||||
(575,0,'QinLo2','adv04_dun_endless','Trial of Qin Lo: Heroic',50.0781,-89,-7.80834,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3728328101,'adv04_dun_endless'),
|
||||
(576,0,'Munzoks','exp05_dun_void_anchor','Munzok\'s Material Bastion',-515.313,0,657.814,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1140436936,'exp05_dun_void_anchor'),
|
||||
(577,0,'CommuneKDal','lavastorm_epic02_gulch','Commune of K`Dal',-189.774,4,-338.747,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,603402304,'lavastorm_epic02_gulch'),
|
||||
(578,0,'ForgeOfAges','lavastorm_epic01_sanctum','The Infernal Forge of Ages',-313.356,-48,-744.563,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1977557393,'lavastorm_epic01_sanctum'),
|
||||
(584,70,'ThurgadinGrandHall','thurgadin_prestige_home','Thurgadin Grand Hall',-347.295,-279.667,-387.081,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1249872435,'thurgadin_prestige_home'),
|
||||
(585,70,'CrystallineBreaks','exp07_dun_crystalcavern','Crystalline Breaks',23.9496,-33,92.1147,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1540772621,'exp07_dun_crystalcavern'),
|
||||
(586,70,'HoldOfRime1','exp07_dun_velks_the_ascent','Hold of Rime: The Ascent',1.28,-5,-2.78,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,685883790,'exp07_dun_velks_the_ascent'),
|
||||
(587,70,'HoldOfRime2','exp07_dun_kraytocs_fortress','Hold of Rime: The Fortress Spire',-53.72,1,-25.84,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2268102256,'exp07_dun_kraytocs_fortress'),
|
||||
(588,70,'KraytocsFortress2','exp07_dun_kraytocs_fortress','Kraytoc\'s Fortress of Rime [Challenge]',0.292056,0,2.30359,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,707353607,'exp07_dun_kraytocs_fortress'),
|
||||
(589,80,'Qeynos','qeynos_combined01','Qeynos Capitol District',396.938,-20.9182,-175.205,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,740104698,'qeynos_combined01'),
|
||||
(590,0,'UnkemptVale','antonica_epic01_vale','The Unkempt Vale: A Lordly Confrontation',-2358.17,11,-53.2353,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,938907661,'antonica_epic01_vale'),
|
||||
(591,0,'FarPelican','boat_06p_feerrott','The Far Pelican',0.912209,2,-18.9637,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1683841340,'boat_06p_feerrott'),
|
||||
(592,0,'AzhubsShip','boat_06p_lavastorm','Azhub\'s Ship',3.12657,-1.5,-7.73107,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1286725707,'boat_06p_lavastorm'),
|
||||
(593,0,'ChamberKeeper','cazicthule_epic01_sanctum','The Chamber of the Keeper',0.464886,-9.9975,-179.077,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,868877514,'cazicthule_epic01_sanctum'),
|
||||
(594,0,'GnollCave','enchanted_mini01','A Gnoll Cave',-340.291,3.79318,-628.419,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3769515479,'enchanted_mini01'),
|
||||
(595,0,'ForbiddenSepulcher','everfrost_epic02_icespire','The Forbidden Sepulcher',-75.0322,60,-893.966,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1896185871,'everfrost_epic02_icespire'),
|
||||
(596,10,'MajDul3Residence2','exp01_cty_majdul_3r02','A Maj\'Dul Residence',9.43738,0.5,1.00831,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1613383542,'exp01_cty_majdul_3r02'),
|
||||
(597,10,'AzharsPenitence','exp01_dun_shimmering_citadel_epic01_bottle','Azhar\'s Penitence',0.61955,1,52.6354,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1796401397,'exp01_dun_shimmering_citadel_epic01_bottle'),
|
||||
(598,10,'PalaceSabaron','exp01_dun_shimmering_citadel_epic02_prism','The Palace of Sabaron',-19.5178,-6.1451,-26.9855,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,39282643,'exp01_dun_shimmering_citadel_epic02_prism'),
|
||||
(599,10,'AncientsTable','exp01_rgn_pillars_of_flame_epic01_cazel','Ancient\'s Table',1.47885,-0.100438,7.03403,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,694743090,'exp01_rgn_pillars_of_flame_epic01_cazel'),
|
||||
(600,10,'ScornfeatherRoost','exp01_rgn_pillars_of_flame_epic01_cazel','Scornfeather Roost',2.83403,1,5.48852,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,98362481,'exp01_rgn_pillars_of_flame_epic01_cazel'),
|
||||
(601,10,'HiddenCache','exp01_rgn_sinking_sands_epic01_lockjaw','The Hidden Cache',111.747,-10,-109.677,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1637906398,'exp01_rgn_sinking_sands_epic01_lockjaw'),
|
||||
(602,10,'Sanctorium','exp01_rgn_sinking_sands_epic01_lockjaw','The Sanctorium',-8.69045,8,7.14274,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2362130991,'exp01_rgn_sinking_sands_epic01_lockjaw'),
|
||||
(603,20,'LaboratoryLordVyemm','exp02_dun_halls_of_fate','The Laboratory of Lord Vyemm',-124.634,-68,451.577,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,598407856,'exp02_dun_halls_of_fate'),
|
||||
(604,20,'AscentAwakened','exp02_dun_shrines_of_sky','Ascent of the Awakened',-66.3987,0.5,1.96815,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,931857537,'exp02_dun_shrines_of_sky'),
|
||||
(605,30,'HauntedVaults','exp03_dun_kaladim_stormguard_hall','The Haunted Vaults',157.515,18,-61.1178,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,759321130,'exp03_dun_kaladim_stormguard_hall'),
|
||||
(606,40,'EmperorsAthenaeum','exp04_dun_charasis_west','Emperor\'s Athenaeum',3.15,0,2.12,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4005035570,'exp04_dun_charasis_west'),
|
||||
(607,40,'TempleCabilis','exp04_dun_sebilis_quarters','Lost Temple of Cabilis',109.789,-10.4975,219.764,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2450210553,'exp04_dun_sebilis_quarters'),
|
||||
(608,50,'UnseenArcanum','exp05_dun_guk_spire','Zraxth\'s Unseen Arcanum',6.53,9,-21.41,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1536294196,'exp05_dun_guk_spire'),
|
||||
(609,50,'PlanarShard','exp05_dun_miragul_shard','Miragul\'s Planar Shard',-19.08,1,-61.93,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3746534304,'exp05_dun_miragul_shard'),
|
||||
(610,60,'Vigilant2','exp06_dun_sentinal','The Vigilant: Incursion',0.86,3,126.88,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1989186960,'exp06_dun_sentinal'),
|
||||
(611,60,'Vigilant3','exp06_dun_sentinal','The Vigilant: Infiltration',4.27,85,-23.32,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1121019415,'exp06_dun_sentinal'),
|
||||
(612,60,'Vigilant4','exp06_dun_sentinal','The Vigilant: Rescue',0.06,62,-116.18,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,120899782,'exp06_dun_sentinal'),
|
||||
(613,60,'DarkCave','exp06_rgn_odus_north','A Dark Cave',191.68,239,255.42,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,70815476,'exp06_rgn_odus_north'),
|
||||
(614,70,'SpireRage','exp07_dun_drunder_sullon_spire','Spire of Rage',2.12005,0,-6.13393,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2851100105,'exp07_dun_drunder_sullon_spire'),
|
||||
(615,70,'SullonsSpire2','exp07_dun_drunder_sullon_spire','Sullon\'s Spire [Challenge]',1.09203,0,-2.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2650249652,'exp07_dun_drunder_sullon_spire'),
|
||||
(616,70,'CitadelVuul','exp07_dun_drunder_tallon_stronghold','Citadel of V\'uul',3.09203,0,-1.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1196441431,'exp07_dun_drunder_tallon_stronghold'),
|
||||
(617,70,'TallonsStronghold2','exp07_dun_drunder_tallon_stronghold','Tallon\'s Stronghold [Challenge]',5.09203,0,-7.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1525292467,'exp07_dun_drunder_tallon_stronghold'),
|
||||
(618,70,'VallonsTower2','exp07_dun_drunder_vallon_tower','Vallon\'s Tower [Challenge]',-4.90797,0,-6.46779,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3334958337,'exp07_dun_drunder_vallon_tower'),
|
||||
(619,70,'ElementsWar','exp07_dun_plane_of_war','Elements of War',-61.5,102,-104.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2667052143,'exp07_dun_plane_of_war'),
|
||||
(620,70,'ElementsWar2','exp07_dun_plane_of_war','Elements of War [Challenge]',-60.5,102,-101.63,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,702515518,'exp07_dun_plane_of_war'),
|
||||
(621,70,'PlaneWar','exp07_dun_plane_of_war','Plane of War',-60.7,56,818.66,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4064403794,'exp07_dun_plane_of_war'),
|
||||
(622,80,'Skyshrine','exp08_dun_skyshrine_courtyard01_scorched','Skyshrine: The City of Dracur',-1.03,0,-24.95,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3070042545,'exp08_dun_skyshrine_courtyard01_scorched'),
|
||||
(623,80,'WitheredLands','exp08_rgn_withered_lands','The Withered Lands',-555.08,-685.734,367.063,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1535573742,'exp08_rgn_withered_lands'),
|
||||
(624,90,'Chelsith2','exp09_dun_deepchelsith','Chelsith: The Ancient Vault',-44.18,10.77,6.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3466679736,'exp09_dun_deepchelsith'),
|
||||
(625,90,'Chelsith1','exp09_dun_deepchelsith','Chelsith: The Ancient Vault [Advanced Solo]',-44.18,10.77,6.55,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2241866888,'exp09_dun_deepchelsith'),
|
||||
(626,90,'HarrowsEnd24','exp09_dun_drinals_castle','Harrow\'s End (Raid)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1203059563,'exp09_dun_drinals_castle'),
|
||||
(627,90,'HarrowsEnd6','exp09_dun_drinals_castle','Harrow\'s End: Baleful Dominion (Heroic)',8.8,-7,147.6,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4194809031,'exp09_dun_drinals_castle'),
|
||||
(628,90,'Dreadcutter','exp09_dun_drinals_ferry','The Dreadcutter',-6.17,24,74.69,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,302382115,'exp09_dun_drinals_ferry'),
|
||||
(629,90,'Dreadcutter1','exp09_dun_drinals_ferry','The Dreadcutter [Advanced Solo]',-6.29,24,74.91,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2542978235,'exp09_dun_drinals_ferry'),
|
||||
(630,90,'AltarAbhorrence24','exp09_dun_temple_of_faceless','Altar of Abhorrence (Raid)',-405.79,2,464.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,324758579,'exp09_dun_temple_of_faceless'),
|
||||
(631,90,'TempleFaceless6','exp09_dun_temple_of_faceless','Temple of the Faceless (Heroic)',-404.79,2,463.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1777943443,'exp09_dun_temple_of_faceless'),
|
||||
(632,90,'TempleFaceless1','exp09_dun_temple_of_faceless','Temple of the Faceless: Imprisonment (Advanced Solo)',-405.79,2,462.82,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2969993788,'exp09_dun_temple_of_faceless'),
|
||||
(633,90,'ThroneFear6','exp09_dun_throne_of_fear','Throne of Fear (Heroic)',-317.01,1,-2.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,981143259,'exp09_dun_throne_of_fear'),
|
||||
(634,90,'ThroneFear1','exp09_dun_throne_of_fear','Throne of Fear: Ascension (Advanced Solo)',-317.01,1,-2.59,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2159319178,'exp09_dun_throne_of_fear'),
|
||||
(635,90,'ThroneFear2','exp09_dun_throne_of_fear','Throne of Fear: The Fear Gate',210.733,72.34,44.4457,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3648292296,'exp09_dun_throne_of_fear'),
|
||||
(636,90,'WurmbonesEnd','exp09_dun_wurmbones_end','Wurmbone\'s End',-16.89,-128,335.57,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2090669585,'exp09_dun_wurmbones_end'),
|
||||
(637,90,'WurmbonesEnd1','exp09_dun_wurmbones_end','Wurmbone\'s End [Advanced Solo]',-16.3104,-129.714,334.796,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,418475608,'exp09_dun_wurmbones_end'),
|
||||
(638,90,'WurmboneCrag','exp09_dun_wurmbone_gulch','Wurmbone Crag',89.99,14,267.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4070843496,'exp09_dun_wurmbone_gulch'),
|
||||
(639,90,'WurmboneCrag1','exp09_dun_wurmbone_gulch','Wurmbone Crag [Advanced Solo]',89.99,14,267.1,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1585901758,'exp09_dun_wurmbone_gulch'),
|
||||
(640,90,'EidolonJungle','exp09_rgn_eidolon_jungle','The Eidolon Jungle',-2159.75,222.393,768.29,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,545027572,'exp09_rgn_eidolon_jungle'),
|
||||
(641,90,'ObolPlains','exp09_rgn_plains_of_obol','Obol Plains',64.8961,13.5217,965.592,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,126142372,'exp09_rgn_plains_of_obol'),
|
||||
(642,0,'VaultFallen','fallengate_epic01_boss','The Vault of the Fallen',35.3134,-26.21,-189.683,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,932928636,'fallengate_epic01_boss'),
|
||||
(643,0,'DenCellar','fprt_epic01_storeroom01','Jade Tiger\'s Den Cellar',0.187354,0.328323,-4.61251,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2451593186,'fprt_epic01_storeroom01'),
|
||||
(644,0,'BigBend2','fprt_hood01','Big Bend: Sanctum of Spirits',-4.04,3,-69.27,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2366221557,'fprt_hood01'),
|
||||
(645,0,'StonestairByway2','fprt_hood02','Stonestair Byway: The Animus Corridors',9.07333,-4,-101.943,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,4205698383,'fprt_hood02'),
|
||||
(646,0,'TempleStreet2','fprt_hood03','Temple Street: Vault of Necromechanica',17.7,3.5,23.14,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1757098077,'fprt_hood03'),
|
||||
(647,0,'BeggarsCourt2','fprt_hood04','Beggar\'s Court: Sweat-Stained Cobbles',67.1062,-6.5,112.909,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2708424193,'fprt_hood04'),
|
||||
(648,0,'LongshadowAlley2','fprt_hood05','Longshadow Alley: Daeneth Cloister',13.8144,3.5,74.3103,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2777048224,'fprt_hood05'),
|
||||
(649,0,'ScaleYard2','fprt_hood06','Scale Yard: Traitors\' End',-7.95922,-5,-9.88693,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3411094155,'fprt_hood06'),
|
||||
(650,0,'Court','home_citadel','Court',98.3708,146.589,-58.8835,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3864808754,'home_citadel'),
|
||||
(651,0,'FelwitheMansion','home_felwithe_throne','Felwithe Mansion',-76.8586,69.2698,-888.608,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2163020640,'home_felwithe_throne'),
|
||||
(652,0,'ArcaneAcademy','home_freeport','Arcane Academy',-5.84555,-6.23708,-123.799,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2085328324,'home_freeport'),
|
||||
(653,0,'TowerofKnowledge','home_magetower','Tower of Knowledge',-19.8019,-1.08077,-0.287789,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,979361544,'home_magetower'),
|
||||
(654,10,'AstronomersTower','home_majdul_moon','Maj\'Dul Astronomer\'s Tower',-0.011612,-0.158504,1.65973,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2077481292,'home_majdul_moon'),
|
||||
(655,0,'PersonalPlanetarium','home_poets_pedestal','Personal Planetarium',-48.9755,-0.570557,-0.313724,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2895880348,'home_poets_pedestal'),
|
||||
(656,0,'StormTowerIsle','home_stormy_isle','Storm Tower Isle',35.6977,44.7829,-101.576,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,457594060,'home_stormy_isle'),
|
||||
(657,0,'SecludedSanctum','home_sullon_spire','Secluded Sanctum',117.699,356.786,-54.65,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2665644280,'home_sullon_spire'),
|
||||
(658,0,'UncannyEstate','home_unrest','Uncanny Estate',-0.011612,-0.064752,1.65973,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2261834051,'home_unrest'),
|
||||
(659,0,'ResearchSanctum','home_vasty_library','Research Sanctum',21.2437,-14.9975,-383.902,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,2580496839,'home_vasty_library'),
|
||||
(660,90,'QeynosProvince','qeynos_combined02','Qeynos Province District',819.286,-23.3299,65.9943,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1888326245,'qeynos_combined02'),
|
||||
(661,0,'BuccaneersHideout','qey_epic06_p12_irontoes','Buccaneers\' Hideout',1.62288,-0.276476,-2.56662,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1813992810,'qey_epic06_p12_irontoes'),
|
||||
(662,0,'SeedTunarbos','qey_ph_3r01','The Seed of Tunarbos',0.066109,-2,7.9765,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,597408693,'qey_ph_3r01'),
|
||||
(663,0,'FightClub','qey_ph_3r03','Fight Club',1.60767,-1.99737,7.14355,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,902117370,'qey_ph_3r03'),
|
||||
(664,80,'GrandHall','thurgadin_prestige_home','Grand Hall',-347.295,-279.667,-387.081,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,1066222316,'thurgadin_prestige_home'),
|
||||
(665,0,'DaratharsFlight','tutorial_island02','The Isle of Refuge: Darathar\'s Flight',-10.2996,-2.91619,167.785,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,712866647,'tutorial_island02'),
|
||||
(666,0,'PermafrostCrypt','permafrost_frostfell','Permafrost Crypt: Decorating Retribution',-35.4254,2.72433,-575.952,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3906013280,'permafrost_frostfell'),
|
||||
(667,0,'IcyKeep4','permafrost_frostfell','The Icy Keep (Hard)',0.995131,1,3.07628,0,-1000000,0,0,0,'',0,0,0,0,0,0,0,'NONE',0,0,0,0,'',300,'',0,3727147705,'permafrost_frostfell');
|
||||
/*!40000 ALTER TABLE `zones` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:01
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
@ -1,83 +0,0 @@
|
||||
-- Table: `web_routes`
|
||||
USE `eq2emu`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2emu
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `web_routes`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `web_routes`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `web_routes` (
|
||||
`status` int(10) unsigned NOT NULL DEFAULT 4294967295,
|
||||
`route` varchar(512) NOT NULL DEFAULT ''
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:48
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2emu
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `web_routes`
|
||||
--
|
||||
|
||||
LOCK TABLES `web_routes` WRITE;
|
||||
/*!40000 ALTER TABLE `web_routes` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `web_routes` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:48
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
@ -1,53 +0,0 @@
|
||||
-- Table: `web_users`
|
||||
USE `eq2emu`;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
/*M!999999\- enable the sandbox mode */
|
||||
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: eq2emu
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.11.11-MariaDB-0+deb12u1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `web_users`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `web_users`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `web_users` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`username` varchar(50) NOT NULL DEFAULT '',
|
||||
`passwd` varchar(512) NOT NULL DEFAULT '',
|
||||
`status` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-07-02 0:00:48
|
||||
|
||||
-- (data omitted for web_users)
|
||||
ALTER TABLE `web_users` AUTO_INCREMENT = 1;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=1;
|
Loading…
x
Reference in New Issue
Block a user