1
0

Finish world SQL migration to SQLite

This commit is contained in:
Sky Johnson 2025-07-03 22:44:58 -05:00
parent 58da1ab4cd
commit 360c5d38bd
177 changed files with 146069 additions and 181428 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,88 +1,9 @@
-- Table: `chest_traps` DROP TABLE IF EXISTS chest_traps;
USE `eq2emu`; CREATE TABLE chest_traps (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
applicable_zone_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ chest_min_difficulty INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) chest_max_difficulty INTEGER NOT NULL DEFAULT 0,
-- spell_id INTEGER NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu spell_tier INTEGER NOT NULL DEFAULT 0
-- ------------------------------------------------------ );
-- 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 `chest_traps`
--
DROP TABLE IF EXISTS `chest_traps`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chest_traps` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`applicable_zone_id` int(10) NOT NULL DEFAULT 0,
`chest_min_difficulty` int(10) unsigned NOT NULL DEFAULT 0,
`chest_max_difficulty` int(10) unsigned NOT NULL DEFAULT 0,
`spell_id` int(10) unsigned NOT NULL DEFAULT 0,
`spell_tier` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB 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:03
/*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 `chest_traps`
--
LOCK TABLES `chest_traps` WRITE;
/*!40000 ALTER TABLE `chest_traps` DISABLE KEYS */;
/*!40000 ALTER TABLE `chest_traps` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,78 +1,14 @@
-- Table: `claim_items` DROP TABLE IF EXISTS claim_items;
USE `eq2emu`; CREATE TABLE claim_items (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0,
max_claim INTEGER NOT NULL DEFAULT 0,
one_per_char INTEGER DEFAULT 0,
veteran_reward_time INTEGER DEFAULT 0,
comment TEXT
);
/*M!999999\- enable the sandbox mode */ INSERT INTO claim_items VALUES
-- 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 `claim_items`
--
DROP TABLE IF EXISTS `claim_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `claim_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(11) NOT NULL DEFAULT 0,
`max_claim` int(11) NOT NULL DEFAULT 0,
`one_per_char` int(10) unsigned DEFAULT 0,
`veteran_reward_time` bigint(20) unsigned DEFAULT 0,
`comment` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 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:03
/*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 `claim_items`
--
LOCK TABLES `claim_items` WRITE;
/*!40000 ALTER TABLE `claim_items` DISABLE KEYS */;
INSERT INTO `claim_items` VALUES
(1,1,10,0,0,NULL), (1,1,10,0,0,NULL),
(2,60606,10,0,0,NULL), (2,60606,10,0,0,NULL),
(3,22461,10,0,0,NULL), (3,22461,10,0,0,NULL),
@ -91,17 +27,3 @@ INSERT INTO `claim_items` VALUES
(16,22522,10,0,15780000,'6 month'), (16,22522,10,0,15780000,'6 month'),
(17,22523,10,0,189216000,'6 year'), (17,22523,10,0,189216000,'6 year'),
(18,22524,10,0,252288000,'8 year'); (18,22524,10,0,252288000,'8 year');
/*!40000 ALTER TABLE `claim_items` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,78 +1,14 @@
-- Table: `collection_details` DROP TABLE IF EXISTS collection_details;
USE `eq2emu`; CREATE TABLE collection_details (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
collection_id INTEGER NOT NULL DEFAULT 0,
item_id INTEGER NOT NULL DEFAULT 0,
item_index INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (collection_id) REFERENCES collections(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_collection_details_collection_id ON collection_details(collection_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO collection_details VALUES
-- 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 `collection_details`
--
DROP TABLE IF EXISTS `collection_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `collection_details` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`collection_id` int(10) unsigned NOT NULL DEFAULT 0,
`item_id` int(11) NOT NULL DEFAULT 0,
`item_index` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `FK_collection_details` (`collection_id`),
CONSTRAINT `FK_collection_details` FOREIGN KEY (`collection_id`) REFERENCES `collections` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3500 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:03
/*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 `collection_details`
--
LOCK TABLES `collection_details` WRITE;
/*!40000 ALTER TABLE `collection_details` DISABLE KEYS */;
INSERT INTO `collection_details` VALUES
(1,71,12898,0), (1,71,12898,0),
(2,71,4929,1), (2,71,4929,1),
(3,71,7690,2), (3,71,7690,2),
@ -3520,17 +3456,3 @@ INSERT INTO `collection_details` VALUES
(3496,182,2135,7), (3496,182,2135,7),
(3497,308,9955,8), (3497,308,9955,8),
(3498,309,10133,5); (3498,309,10133,5);
/*!40000 ALTER TABLE `collection_details` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,79 +1,15 @@
-- Table: `collection_rewards` DROP TABLE IF EXISTS collection_rewards;
USE `eq2emu`; CREATE TABLE collection_rewards (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
collection_id INTEGER NOT NULL DEFAULT 0,
reward_type TEXT NOT NULL DEFAULT 'None',
reward_value INTEGER NOT NULL DEFAULT 0,
reward_quantity INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (collection_id) REFERENCES collections(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_collection_rewards_collection_id ON collection_rewards(collection_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO collection_rewards VALUES
-- 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 `collection_rewards`
--
DROP TABLE IF EXISTS `collection_rewards`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `collection_rewards` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`collection_id` int(10) unsigned NOT NULL DEFAULT 0,
`reward_type` enum('None','Item','Selectable','Coin','XP') NOT NULL DEFAULT 'None',
`reward_value` bigint(20) unsigned NOT NULL DEFAULT 0,
`reward_quantity` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `FK_collection_rewards` (`collection_id`),
CONSTRAINT `FK_collection_rewards` FOREIGN KEY (`collection_id`) REFERENCES `collections` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1423 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:03
/*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 `collection_rewards`
--
LOCK TABLES `collection_rewards` WRITE;
/*!40000 ALTER TABLE `collection_rewards` DISABLE KEYS */;
INSERT INTO `collection_rewards` VALUES
(1,71,'Item',63051,1), (1,71,'Item',63051,1),
(2,71,'Selectable',155001,1), (2,71,'Selectable',155001,1),
(3,71,'Selectable',134035,1), (3,71,'Selectable',134035,1),
@ -1461,17 +1397,3 @@ INSERT INTO `collection_rewards` VALUES
(1420,344,'Item',21466,1), (1420,344,'Item',21466,1),
(1421,344,'XP',550,0), (1421,344,'XP',550,0),
(1422,101,'XP',550,0); (1422,101,'XP',550,0);
/*!40000 ALTER TABLE `collection_rewards` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,133 +1,69 @@
-- Table: `collections` DROP TABLE IF EXISTS collections;
USE `eq2emu`; CREATE TABLE collections (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
collection_name TEXT NOT NULL DEFAULT 'Unknown',
collection_category TEXT NOT NULL DEFAULT 'Unknown',
level INTEGER NOT NULL DEFAULT 0
);
/*M!999999\- enable the sandbox mode */ INSERT INTO collections VALUES
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) (1,'Erudite Glyph Stones','Sentinel''s Fate',95),
-- (2,'Runes of Fate','Sentinel''s Fate',95),
-- Host: localhost Database: eq2emu (3,'Stonebrunt Highlands: Kaborite Crystals','Sentinel''s Fate',95),
-- ------------------------------------------------------ (4,'Sundered Frontier: Kaborite Crystals','Sentinel''s Fate',95),
-- Server version 10.11.11-MariaDB-0+deb12u1 (5,'The Deep and Dark Places: Geodes','Sentinel''s Fate',95),
(6,'The Vigilant: Runed Scrolls','Sentinel''s Fate',92),
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; (7,'Vigilant Crew Badges','Sentinel''s Fate',92),
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; (8,'Vigilant Navigation Maps and Tools','Sentinel''s Fate',92),
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; (9,'Weapons of the Tallonites','Sentinel''s Fate',92),
/*!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 `collections`
--
DROP TABLE IF EXISTS `collections`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `collections` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`collection_name` varchar(512) NOT NULL DEFAULT 'Unknown',
`collection_category` varchar(512) NOT NULL DEFAULT 'Unknown',
`level` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=554 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:03
/*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 `collections`
--
LOCK TABLES `collections` WRITE;
/*!40000 ALTER TABLE `collections` DISABLE KEYS */;
INSERT INTO `collections` VALUES
(1,'Erudite Glyph Stones','Sentinel\'s Fate',95),
(2,'Runes of Fate','Sentinel\'s Fate',95),
(3,'Stonebrunt Highlands: Kaborite Crystals','Sentinel\'s Fate',95),
(4,'Sundered Frontier: Kaborite Crystals','Sentinel\'s Fate',95),
(5,'The Deep and Dark Places: Geodes','Sentinel\'s Fate',95),
(6,'The Vigilant: Runed Scrolls','Sentinel\'s Fate',92),
(7,'Vigilant Crew Badges','Sentinel\'s Fate',92),
(8,'Vigilant Navigation Maps and Tools','Sentinel\'s Fate',92),
(9,'Weapons of the Tallonites','Sentinel\'s Fate',92),
(10,'Armor of the Rime','Destiny of Velious',90), (10,'Armor of the Rime','Destiny of Velious',90),
(11,'Beam Handler Decoder Rings','Sentinel\'s Fate',90), (11,'Beam Handler Decoder Rings','Sentinel''s Fate',90),
(12,'Clockwork Gazer Parts','Sentinel\'s Fate',90), (12,'Clockwork Gazer Parts','Sentinel''s Fate',90),
(13,'Clothing of the Kejek','Sentinel\'s Fate',90), (13,'Clothing of the Kejek','Sentinel''s Fate',90),
(14,'Coldain Relics','Destiny of Velious',90), (14,'Coldain Relics','Destiny of Velious',90),
(15,'Common Erudin Clothing','Sentinel\'s Fate',90), (15,'Common Erudin Clothing','Sentinel''s Fate',90),
(16,'Darkened Grimoires','Sentinel\'s Fate',90), (16,'Darkened Grimoires','Sentinel''s Fate',90),
(17,'Erudin Book Minions','Sentinel\'s Fate',90), (17,'Erudin Book Minions','Sentinel''s Fate',90),
(18,'Fearsome Weapons of the Gruengach','Sentinel\'s Fate',90), (18,'Fearsome Weapons of the Gruengach','Sentinel''s Fate',90),
(19,'Fearstalker Remains','Sentinel\'s Fate',90), (19,'Fearstalker Remains','Sentinel''s Fate',90),
(20,'Flora of Velious','Destiny of Velious',90), (20,'Flora of Velious','Destiny of Velious',90),
(21,'Forgotten Trinkets','Destiny of Velious',90), (21,'Forgotten Trinkets','Destiny of Velious',90),
(22,'Gardens of Erudin','Sentinel\'s Fate',90), (22,'Gardens of Erudin','Sentinel''s Fate',90),
(23,'Glyphed Relics','Sentinel\'s Fate',90), (23,'Glyphed Relics','Sentinel''s Fate',90),
(24,'Iceshard Keep Soldier Symbols','Destiny of Velious',90), (24,'Iceshard Keep Soldier Symbols','Destiny of Velious',90),
(25,'Kael Drakkel Workforce Signets','Destiny of Velious',90), (25,'Kael Drakkel Workforce Signets','Destiny of Velious',90),
(26,'Kromzek Medals Collection','Destiny of Velious',90), (26,'Kromzek Medals Collection','Destiny of Velious',90),
(27,'Kromzek War Relics','Destiny of Velious',90), (27,'Kromzek War Relics','Destiny of Velious',90),
(28,'Kromzek Warrior Badges','Destiny of Velious',90), (28,'Kromzek Warrior Badges','Destiny of Velious',90),
(29,'Library of Erudin Murder Weapons','Sentinel\'s Fate',90), (29,'Library of Erudin Murder Weapons','Sentinel''s Fate',90),
(30,'Mammoth Fur Collection','Destiny of Velious',90), (30,'Mammoth Fur Collection','Destiny of Velious',90),
(31,'Masks of the Tallonites','Sentinel\'s Fate',90), (31,'Masks of the Tallonites','Sentinel''s Fate',90),
(32,'Memories of a Cursed Bride','Destiny of Velious',90), (32,'Memories of a Cursed Bride','Destiny of Velious',90),
(33,'Memories of Velketor','Destiny of Velious',90), (33,'Memories of Velketor','Destiny of Velious',90),
(34,'Ning Yun Beads','Sentinel\'s Fate',90), (34,'Ning Yun Beads','Sentinel''s Fate',90),
(35,'Order of Rime Battle Relics','Destiny of Velious',90), (35,'Order of Rime Battle Relics','Destiny of Velious',90),
(36,'Othmir Curios','Destiny of Velious',90), (36,'Othmir Curios','Destiny of Velious',90),
(37,'Quel\'Ule Research Manuals','Sentinel\'s Fate',90), (37,'Quel''Ule Research Manuals','Sentinel''s Fate',90),
(38,'Relics of the Battle of Thurgadin','Destiny of Velious',90), (38,'Relics of the Battle of Thurgadin','Destiny of Velious',90),
(39,'Rime Badges of Rank','Destiny of Velious',90), (39,'Rime Badges of Rank','Destiny of Velious',90),
(40,'Ry\'Gorr Rage Trophies','Destiny of Velious',90), (40,'Ry''Gorr Rage Trophies','Destiny of Velious',90),
(41,'Shadow-Marked Items','Sentinel\'s Fate',90), (41,'Shadow-Marked Items','Sentinel''s Fate',90),
(42,'Shadowy Gems','Destiny of Velious',90), (42,'Shadowy Gems','Destiny of Velious',90),
(43,'Shards of the Ward-Golems','Destiny of Velious',90), (43,'Shards of the Ward-Golems','Destiny of Velious',90),
(44,'Slobberjaw Relics','Sentinel\'s Fate',90), (44,'Slobberjaw Relics','Sentinel''s Fate',90),
(45,'Storm Giant Beard Collection','Destiny of Velious',90), (45,'Storm Giant Beard Collection','Destiny of Velious',90),
(46,'Tabards of the Deepwater Knights','Sentinel\'s Fate',90), (46,'Tabards of the Deepwater Knights','Sentinel''s Fate',90),
(47,'Tales of Drunder','Destiny of Velious',90), (47,'Tales of Drunder','Destiny of Velious',90),
(48,'Tales of Eastern Wastes','Destiny of Velious',90), (48,'Tales of Eastern Wastes','Destiny of Velious',90),
(49,'Tales of Kael Drakkel','Destiny of Velious',90), (49,'Tales of Kael Drakkel','Destiny of Velious',90),
(50,'Tales of the Great Divide','Destiny of Velious',90), (50,'Tales of the Great Divide','Destiny of Velious',90),
(51,'Tales of the Kromzek','Destiny of Velious',90), (51,'Tales of the Kromzek','Destiny of Velious',90),
(52,'Tales of the Tower','Destiny of Velious',90), (52,'Tales of the Tower','Destiny of Velious',90),
(53,'Tales of Velketor\'s Labrinth','',90), (53,'Tales of Velketor''s Labrinth','',90),
(54,'Tales of Velketor\'s Labyrinth','Destiny of Velious',90), (54,'Tales of Velketor''s Labyrinth','Destiny of Velious',90),
(55,'Temple of Rallos Zek Holy Symbols','Destiny of Velious',90), (55,'Temple of Rallos Zek Holy Symbols','Destiny of Velious',90),
(56,'The Chronicles of Velious','Destiny of Velious',90), (56,'The Chronicles of Velious','Destiny of Velious',90),
(57,'Thrael\'Gorr Idols Collection','Destiny of Velious',90), (57,'Thrael''Gorr Idols Collection','Destiny of Velious',90),
(58,'Throne of Storms Oathstones','Destiny of Velious',90), (58,'Throne of Storms Oathstones','Destiny of Velious',90),
(59,'Thurgadin Mementos','Tradeskill',90), (59,'Thurgadin Mementos','Tradeskill',90),
(60,'Tizmak Trophies','Destiny of Velious',90), (60,'Tizmak Trophies','Destiny of Velious',90),
@ -136,37 +72,37 @@ INSERT INTO `collections` VALUES
(63,'Trinkets of the Ascent','Destiny of Velious',90), (63,'Trinkets of the Ascent','Destiny of Velious',90),
(64,'Trinkets of the Cursed','Destiny of Velious',90), (64,'Trinkets of the Cursed','Destiny of Velious',90),
(65,'Vestiges of Growth','Destiny of Velious',90), (65,'Vestiges of Growth','Destiny of Velious',90),
(66,'a graphometer fragment','Sentinel\'s Fate',85), (66,'a graphometer fragment','Sentinel''s Fate',85),
(67,'Ancient Erudite Crests','Sentinel\'s Fate',85), (67,'Ancient Erudite Crests','Sentinel''s Fate',85),
(68,'Assorted Erudite Gardening Tools','Sentinel\'s Fate',85), (68,'Assorted Erudite Gardening Tools','Sentinel''s Fate',85),
(69,'Battle Relics from Kejaan\'s Rill','Sentinel\'s Fate',85), (69,'Battle Relics from Kejaan''s Rill','Sentinel''s Fate',85),
(70,'Caertaxian Poison Ingredients','Sentinel\'s Fate',85), (70,'Caertaxian Poison Ingredients','Sentinel''s Fate',85),
(71,'Chokidai Collars','Kunark',85), (71,'Chokidai Collars','Kunark',85),
(72,'Crageye Parts','Sentinel\'s Fate',85), (72,'Crageye Parts','Sentinel''s Fate',85),
(73,'Elemental Cores','Sentinel\'s Fate',85), (73,'Elemental Cores','Sentinel''s Fate',85),
(74,'Erudite Surgical Tools','Sentinel\'s Fate',85), (74,'Erudite Surgical Tools','Sentinel''s Fate',85),
(75,'Flora and Fauna of The Vasty Deep','Sentinel\'s Fate',85), (75,'Flora and Fauna of The Vasty Deep','Sentinel''s Fate',85),
(76,'Golem Parts','Sentinel\'s Fate',85), (76,'Golem Parts','Sentinel''s Fate',85),
(77,'Hua Mein Bamboo Items','Sentinel\'s Fate',85), (77,'Hua Mein Bamboo Items','Sentinel''s Fate',85),
(78,'Kerran Toys','Sentinel\'s Fate',85), (78,'Kerran Toys','Sentinel''s Fate',85),
(79,'Kunark Collections','Expert Recognition',85), (79,'Kunark Collections','Expert Recognition',85),
(80,'Lowland Basin Goos and Gobs','Sentinel\'s Fate',85), (80,'Lowland Basin Goos and Gobs','Sentinel''s Fate',85),
(81,'Necrotic Construct Parts','Sentinel\'s Fate',85), (81,'Necrotic Construct Parts','Sentinel''s Fate',85),
(82,'Petrified Badlands Creature Remnants','Sentinel\'s Fate',85), (82,'Petrified Badlands Creature Remnants','Sentinel''s Fate',85),
(83,'Reet Knight Armor','Kunark',85), (83,'Reet Knight Armor','Kunark',85),
(84,'Relics of the Ethernauts','Shadow Odyssey',85), (84,'Relics of the Ethernauts','Shadow Odyssey',85),
(85,'Relics of the Ethernauts','Shadow Odyssey',85), (85,'Relics of the Ethernauts','Shadow Odyssey',85),
(86,'Relics of the Fortress','Sentinel\'s Fate',85), (86,'Relics of the Fortress','Sentinel''s Fate',85),
(87,'Relics of the Goblin Hero','Runnyeye: The Gathering',85), (87,'Relics of the Goblin Hero','Runnyeye: The Gathering',85),
(88,'Relics of the Onaya','Sentinel\'s Fate',85), (88,'Relics of the Onaya','Sentinel''s Fate',85),
(89,'Roekillik Weapons','Sentinel\'s Fate',85), (89,'Roekillik Weapons','Sentinel''s Fate',85),
(90,'Rubble Items from Old Paineel','Sentinel\'s Fate',85), (90,'Rubble Items from Old Paineel','Sentinel''s Fate',85),
(91,'Salts from Highland Salts','Sentinel\'s Fate',85), (91,'Salts from Highland Salts','Sentinel''s Fate',85),
(92,'Sebilisian Symbols','Kunark',85), (92,'Sebilisian Symbols','Kunark',85),
(93,'Standards of the Goblin Tribes','Runnyeye: The Gathering',85), (93,'Standards of the Goblin Tribes','Runnyeye: The Gathering',85),
(94,'Toxxulian Flora','Sentinel\'s Fate',85), (94,'Toxxulian Flora','Sentinel''s Fate',85),
(95,'Underfoot Anchor Components','Sentinel\'s Fate',85), (95,'Underfoot Anchor Components','Sentinel''s Fate',85),
(96,'War Armor of the Ca\'Na','Sentinel\'s Fate',85), (96,'War Armor of the Ca''Na','Sentinel''s Fate',85),
(97,'Danak Legion Medals','Kunark',82), (97,'Danak Legion Medals','Kunark',82),
(98,'Devourer Teeth','Kunark',82), (98,'Devourer Teeth','Kunark',82),
(99,'Dirty Dingy Pages','Runnyeye: The Gathering',82), (99,'Dirty Dingy Pages','Runnyeye: The Gathering',82),
@ -174,25 +110,25 @@ INSERT INTO `collections` VALUES
(101,'Idols of Lord Venril Sathir','Shadow Odyssey',82), (101,'Idols of Lord Venril Sathir','Shadow Odyssey',82),
(102,'Idols of Lord Venril Sathir','Shadow Odyssey Collections',82), (102,'Idols of Lord Venril Sathir','Shadow Odyssey Collections',82),
(103,'Idols of the Tribes of Guk','Shadow Odyssey',82), (103,'Idols of the Tribes of Guk','Shadow Odyssey',82),
(104,'Miragul\'s Dress Robes','Shadow Odyssey',82), (104,'Miragul''s Dress Robes','Shadow Odyssey',82),
(105,'Mistmoore\'s Artifacts','Shadow Odyssey',82), (105,'Mistmoore''s Artifacts','Shadow Odyssey',82),
(106,'Najena\'s Lab Equipment','Shadow Odyssey',82), (106,'Najena''s Lab Equipment','Shadow Odyssey',82),
(107,'Poked Out Peepers','Runnyeye: The Gathering',82), (107,'Poked Out Peepers','Runnyeye: The Gathering',82),
(108,'Possessions of Gynok Moltor','Shadow Odyssey',82), (108,'Possessions of Gynok Moltor','Shadow Odyssey',82),
(109,'Talisman of the Great Anashti Sul','Shadow Odyssey',82), (109,'Talisman of the Great Anashti Sul','Shadow Odyssey',82),
(110,'Abyssal Carpet Fragments','Kurn\'s Tower',80), (110,'Abyssal Carpet Fragments','Kurn''s Tower',80),
(111,'Ancient Bone Chips','Kurn\'s Tower',80), (111,'Ancient Bone Chips','Kurn''s Tower',80),
(112,'Ancient Sathirian Volumes','Emperor\'s Athenaeum',80), (112,'Ancient Sathirian Volumes','Emperor''s Athenaeum',80),
(113,'Anemone Arms','Shadow Odyssey',80), (113,'Anemone Arms','Shadow Odyssey',80),
(114,'Artifacts of the Libant','Shadow Odyssey',80), (114,'Artifacts of the Libant','Shadow Odyssey',80),
(115,'Bar Glasses','Tradeskill',80), (115,'Bar Glasses','Tradeskill',80),
(116,'Blood Runes','Shadow Odyssey',80), (116,'Blood Runes','Shadow Odyssey',80),
(117,'Brokenskull Pirate Peglegs','Shadow Odyssey',80), (117,'Brokenskull Pirate Peglegs','Shadow Odyssey',80),
(118,'Brokenskull Pirate Sashes','Shadow Odyssey',80), (118,'Brokenskull Pirate Sashes','Shadow Odyssey',80),
(119,'Burynai Eyes','Kurn\'s Tower',80), (119,'Burynai Eyes','Kurn''s Tower',80),
(120,'Canvases of Mayong','Shadow Odyssey',80), (120,'Canvases of Mayong','Shadow Odyssey',80),
(121,'Chart Fragments','Tradeskill',80), (121,'Chart Fragments','Tradeskill',80),
(122,'Crushed Skulls','Emperor\'s Athenaeum',80), (122,'Crushed Skulls','Emperor''s Athenaeum',80),
(123,'Darkened Void Weapons','Shadow Odyssey',80), (123,'Darkened Void Weapons','Shadow Odyssey',80),
(124,'Deathfist Forge Scraps','Tradeskill',80), (124,'Deathfist Forge Scraps','Tradeskill',80),
(125,'Dimensional Baubles','Shadow Odyssey',80), (125,'Dimensional Baubles','Shadow Odyssey',80),
@ -227,11 +163,11 @@ INSERT INTO `collections` VALUES
(154,'Paineel Plumbing','Tradeskill',80), (154,'Paineel Plumbing','Tradeskill',80),
(155,'Peacock Club Relics','Tradeskill',80), (155,'Peacock Club Relics','Tradeskill',80),
(156,'Piano Keys','Tradeskill',80), (156,'Piano Keys','Tradeskill',80),
(157,'Relics of Marr\'s Fist Keep','Shadow Odyssey',80), (157,'Relics of Marr''s Fist Keep','Shadow Odyssey',80),
(158,'Samples of Destiny','Trinkets',80), (158,'Samples of Destiny','Trinkets',80),
(159,'Sarnak Coins','Kunark',80), (159,'Sarnak Coins','Kunark',80),
(160,'Scattered Phylactery Shards','Shadow Odyssey',80), (160,'Scattered Phylactery Shards','Shadow Odyssey',80),
(161,'Scorpikis Parts','Emperor\'s Athenaeum',80), (161,'Scorpikis Parts','Emperor''s Athenaeum',80),
(162,'Scorpikis Stingers','Kunark',80), (162,'Scorpikis Stingers','Kunark',80),
(163,'Slime Samples','Tradeskill',80), (163,'Slime Samples','Tradeskill',80),
(164,'Sokokar Scales','Kunark',80), (164,'Sokokar Scales','Kunark',80),
@ -257,8 +193,8 @@ INSERT INTO `collections` VALUES
(184,'Thullosian Tribal Idols','Shadow Odyssey',80), (184,'Thullosian Tribal Idols','Shadow Odyssey',80),
(185,'Tinkered Parts','Live Events',80), (185,'Tinkered Parts','Live Events',80),
(186,'Tree Bark','Live Events',80), (186,'Tree Bark','Live Events',80),
(187,'Trinkets of the Digmasters','Kurn\'s Tower',80), (187,'Trinkets of the Digmasters','Kurn''s Tower',80),
(188,'Tunare\'s Glade Leaves','Tradeskill',80), (188,'Tunare''s Glade Leaves','Tradeskill',80),
(189,'Tuptan Cookware','Shadow Odyssey',80), (189,'Tuptan Cookware','Shadow Odyssey',80),
(190,'Vortex Gates','Shadow Odyssey',80), (190,'Vortex Gates','Shadow Odyssey',80),
(191,'Wooden Salvage','Tradeskill',80), (191,'Wooden Salvage','Tradeskill',80),
@ -301,7 +237,7 @@ INSERT INTO `collections` VALUES
(228,'Aversion','Tome',70), (228,'Aversion','Tome',70),
(229,'Basilisk Spines','Spines',70), (229,'Basilisk Spines','Spines',70),
(230,'Blood Vials','Mistmoore Catacombs',70), (230,'Blood Vials','Mistmoore Catacombs',70),
(231,'Bristlebane\'s Memories','Tradeskill',70), (231,'Bristlebane''s Memories','Tradeskill',70),
(232,'Broken Droag Teeth','Teeth',70), (232,'Broken Droag Teeth','Teeth',70),
(233,'Chipped Droag Teeth','Teeth',70), (233,'Chipped Droag Teeth','Teeth',70),
(234,'Discarded Bones','Mistmoore Catacombs',70), (234,'Discarded Bones','Mistmoore Catacombs',70),
@ -377,9 +313,9 @@ INSERT INTO `collections` VALUES
(304,'Small Pieces of Airship Plating','Plating',60), (304,'Small Pieces of Airship Plating','Plating',60),
(305,'Teachings of Master Wu','Tome',60), (305,'Teachings of Master Wu','Tome',60),
(306,'The Gumshoe Guide','Tome',60), (306,'The Gumshoe Guide','Tome',60),
(307,'Trinni\'s Adventures Aloft','Tome',60), (307,'Trinni''s Adventures Aloft','Tome',60),
(308,'My Time with the Harpies','Tome',59), (308,'My Time with the Harpies','Tome',59),
(309,'Of Maj\'Dul Am I','Tome',57), (309,'Of Maj''Dul Am I','Tome',57),
(310,'Poetry of the Djinn','Tome',57), (310,'Poetry of the Djinn','Tome',57),
(311,'Rules of the Sandscrawler Clan','Tome',57), (311,'Rules of the Sandscrawler Clan','Tome',57),
(312,'The History of Poetry','Tome',56), (312,'The History of Poetry','Tome',56),
@ -387,14 +323,14 @@ INSERT INTO `collections` VALUES
(314,'A Tale of the Arena','Tome',55), (314,'A Tale of the Arena','Tome',55),
(315,'Anaz Mal, Blackfang','Tome',55), (315,'Anaz Mal, Blackfang','Tome',55),
(316,'Antlers','Shard of Love',55), (316,'Antlers','Shard of Love',55),
(317,'Clockwork Parts','Klak\'Anon',55), (317,'Clockwork Parts','Klak''Anon',55),
(318,'Corruption of Elements','Lavastorm',55), (318,'Corruption of Elements','Lavastorm',55),
(319,'Debris','Shard of Love',55), (319,'Debris','Shard of Love',55),
(320,'Dismantled Statue Pieces','Shard of Love',55), (320,'Dismantled Statue Pieces','Shard of Love',55),
(321,'Dragonflies','Shard of Love',55), (321,'Dragonflies','Shard of Love',55),
(322,'Gears','Klak\'Anon',55), (322,'Gears','Klak''Anon',55),
(323,'Lava Creature Parts','Lavastorm',55), (323,'Lava Creature Parts','Lavastorm',55),
(324,'Mechanical Springs','Klak\'Anon',55), (324,'Mechanical Springs','Klak''Anon',55),
(325,'Pomegranates','Shard of Love',55), (325,'Pomegranates','Shard of Love',55),
(326,'Roses','Shard of Love',55), (326,'Roses','Shard of Love',55),
(327,'Satyr Instruments','Shard of Love',55), (327,'Satyr Instruments','Shard of Love',55),
@ -413,7 +349,7 @@ INSERT INTO `collections` VALUES
(340,'An Oasis in the Desert','Tome',53), (340,'An Oasis in the Desert','Tome',53),
(341,'The Tale of the Silent City','Tome',53), (341,'The Tale of the Silent City','Tome',53),
(342,'Legends of the Dragons','Tome',52), (342,'Legends of the Dragons','Tome',52),
(343,'Trinni\'s Adventures Abroad','Tome',52), (343,'Trinni''s Adventures Abroad','Tome',52),
(344,'The Tale of Tirazzah','Tome',51), (344,'The Tale of Tirazzah','Tome',51),
(345,'Akhet of the Day','Akhet',50), (345,'Akhet of the Day','Akhet',50),
(346,'Akhet of the Night','Akhet',50), (346,'Akhet of the Night','Akhet',50),
@ -470,11 +406,11 @@ INSERT INTO `collections` VALUES
(397,'Tarnished Tinkered Items','Tinkered',50), (397,'Tarnished Tinkered Items','Tinkered',50),
(398,'Tattered Mummy Wrappings','Wrappings',50), (398,'Tattered Mummy Wrappings','Wrappings',50),
(399,'The Nights of the Dead','Tome',50), (399,'The Nights of the Dead','Tome',50),
(400,'The Second Wife\'s Tale','Tome',50), (400,'The Second Wife''s Tale','Tome',50),
(401,'Worn Mummy Wrappings','Wrappings',50), (401,'Worn Mummy Wrappings','Wrappings',50),
(402,'Turtle Odds \'n Ends','Everfrost',47), (402,'Turtle Odds ''n Ends','Everfrost',47),
(403,'abjuration shards collection','Shard',45), (403,'abjuration shards collection','Shard',45),
(404,'Ak\'Anon coins collection','Coin',45), (404,'Ak''Anon coins collection','Coin',45),
(405,'alteration shards collection','Shard',45), (405,'alteration shards collection','Shard',45),
(406,'barbarian bone fragment collection','Bone Fragment',45), (406,'barbarian bone fragment collection','Bone Fragment',45),
(407,'Brien - Clan Icereaver','Tome',45), (407,'Brien - Clan Icereaver','Tome',45),
@ -490,7 +426,7 @@ INSERT INTO `collections` VALUES
(417,'froglok bone fragment collection','Bone Fragment',45), (417,'froglok bone fragment collection','Bone Fragment',45),
(418,'gnoll bone fragment collection','Bone Fragment',45), (418,'gnoll bone fragment collection','Bone Fragment',45),
(419,'gnome bone fragment collection','Bone Fragment',45), (419,'gnome bone fragment collection','Bone Fragment',45),
(420,'Good Eatin\'','Tome',45), (420,'Good Eatin''','Tome',45),
(421,'half elf bone fragment collection','Bone Fragment',45), (421,'half elf bone fragment collection','Bone Fragment',45),
(422,'halfling bone fragment collection','Bone Fragment',45), (422,'halfling bone fragment collection','Bone Fragment',45),
(423,'high elf bone fragment collection','Bone Fragment',45), (423,'high elf bone fragment collection','Bone Fragment',45),
@ -531,7 +467,7 @@ INSERT INTO `collections` VALUES
(458,'shiny shards collection','Shard',40), (458,'shiny shards collection','Shard',40),
(459,'The Brady Bunch','Tome',40), (459,'The Brady Bunch','Tome',40),
(460,'The Journal of Meldrath the Malignant','Tome',40), (460,'The Journal of Meldrath the Malignant','Tome',40),
(461,'The Merchant\'s Deal','Tome',40), (461,'The Merchant''s Deal','Tome',40),
(462,'unscathed bone fragments collection','Bone Fragment',40), (462,'unscathed bone fragments collection','Bone Fragment',40),
(463,'The Wall','Tome',38), (463,'The Wall','Tome',38),
(464,'The Storm Shepherds - Darnalithenis of Felwithe','Tome',37), (464,'The Storm Shepherds - Darnalithenis of Felwithe','Tome',37),
@ -550,9 +486,9 @@ INSERT INTO `collections` VALUES
(477,'Fae Bones','Faydwer Bones',35), (477,'Fae Bones','Faydwer Bones',35),
(478,'Fauna of the Enchanted Lands A - K','Tome',35), (478,'Fauna of the Enchanted Lands A - K','Tome',35),
(479,'Fauna of the Enchanted Lands L - Z','Tome',35), (479,'Fauna of the Enchanted Lands L - Z','Tome',35),
(480,'Foreman Garz\'gog Dyeree','Tome',35), (480,'Foreman Garz''gog Dyeree','Tome',35),
(481,'grinnin bone fragment collection','Bone Fragment',35), (481,'grinnin bone fragment collection','Bone Fragment',35),
(482,'Jerb Northstar\'s Journal','Tome',35), (482,'Jerb Northstar''s Journal','Tome',35),
(483,'Kobold Bones','Faydwer Bones',35), (483,'Kobold Bones','Faydwer Bones',35),
(484,'Kobold Paws','Butcherblock Mountains',35), (484,'Kobold Paws','Butcherblock Mountains',35),
(485,'Mining Picks','Kaladim',35), (485,'Mining Picks','Kaladim',35),
@ -585,7 +521,7 @@ INSERT INTO `collections` VALUES
(512,'striped beetle collection','Beetle',25), (512,'striped beetle collection','Beetle',25),
(513,'striped spider collection','Spider',25), (513,'striped spider collection','Spider',25),
(514,'Acorns','Greater Faydark',20), (514,'Acorns','Greater Faydark',20),
(515,'Aniron\'s Journey','Tome',20), (515,'Aniron''s Journey','Tome',20),
(516,'Brews Across Norrath','Brewday',20), (516,'Brews Across Norrath','Brewday',20),
(517,'butterfly collection.','Butterfly',20), (517,'butterfly collection.','Butterfly',20),
(518,'cracked bone fragments collection','Bone Fragment',20), (518,'cracked bone fragments collection','Bone Fragment',20),
@ -624,17 +560,3 @@ INSERT INTO `collections` VALUES
(551,'shell collection','Shell',10), (551,'shell collection','Shell',10),
(552,'spotted moth collection','Moth',10), (552,'spotted moth collection','Moth',10),
(553,'striped moth collection','Moth',10); (553,'striped moth collection','Moth',10);
/*!40000 ALTER TABLE `collections` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,79 +1,15 @@
-- Table: `commands` DROP TABLE IF EXISTS commands;
USE `eq2emu`; CREATE TABLE commands (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
type INTEGER DEFAULT 1,
command TEXT,
subcommand TEXT,
handler INTEGER NOT NULL DEFAULT 0,
required_status INTEGER NOT NULL DEFAULT 0,
UNIQUE(command, subcommand)
);
/*M!999999\- enable the sandbox mode */ INSERT INTO commands VALUES
-- 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 `commands`
--
DROP TABLE IF EXISTS `commands`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `commands` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` tinyint(3) unsigned DEFAULT 1,
`command` varchar(64) DEFAULT NULL,
`subcommand` varchar(64) DEFAULT NULL,
`handler` int(10) unsigned NOT NULL DEFAULT 0,
`required_status` smallint(5) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `CommandIDX` (`command`,`subcommand`)
) ENGINE=InnoDB AUTO_INCREMENT=541 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:03
/*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 `commands`
--
LOCK TABLES `commands` WRITE;
/*!40000 ALTER TABLE `commands` DISABLE KEYS */;
INSERT INTO `commands` VALUES
(1,0,'who','',41,0), (1,0,'who','',41,0),
(2,0,'played','',999,0), (2,0,'played','',999,0),
(3,0,'ignores','',113,0), (3,0,'ignores','',113,0),
@ -603,17 +539,3 @@ INSERT INTO `commands` VALUES
(538,0,'target_pet','',537,0), (538,0,'target_pet','',537,0),
(539,0,'whogroup','',539,0), (539,0,'whogroup','',539,0),
(540,1,'reload','zoneinfo',1010,100); (540,1,'reload','zoneinfo',1010,100);
/*!40000 ALTER TABLE `commands` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,91 +1,12 @@
-- Table: `dbeditor_log` DROP TABLE IF EXISTS dbeditor_log;
USE `eq2emu`; CREATE TABLE dbeditor_log (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
char_id INTEGER NOT NULL,
/*M!999999\- enable the sandbox mode */ char_name TEXT,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) admin_status INTEGER NOT NULL,
-- item_name TEXT,
-- Host: localhost Database: eq2emu table_name TEXT,
-- ------------------------------------------------------ update_query TEXT,
-- Server version 10.11.11-MariaDB-0+deb12u1 update_date INTEGER NOT NULL,
archived INTEGER NOT NULL DEFAULT 0
/*!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 `dbeditor_log`
--
DROP TABLE IF EXISTS `dbeditor_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dbeditor_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`char_id` int(11) unsigned NOT NULL,
`char_name` varchar(64) DEFAULT NULL,
`admin_status` smallint(5) unsigned NOT NULL,
`item_name` varchar(250) DEFAULT NULL,
`table_name` varchar(32) DEFAULT NULL,
`update_query` text DEFAULT NULL,
`update_date` int(11) unsigned NOT NULL,
`archived` tinyint(1) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7315 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:03
/*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 `dbeditor_log`
--
LOCK TABLES `dbeditor_log` WRITE;
/*!40000 ALTER TABLE `dbeditor_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `dbeditor_log` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,98 +1,19 @@
-- Table: `dialog_flavors` DROP TABLE IF EXISTS dialog_flavors;
USE `eq2emu`; CREATE TABLE dialog_flavors (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
voiceover_id INTEGER,
/*M!999999\- enable the sandbox mode */ text_id INTEGER NOT NULL,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) language INTEGER NOT NULL DEFAULT 0,
-- understood INTEGER NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu emote TEXT NOT NULL DEFAULT '',
-- ------------------------------------------------------ emote_text_id INTEGER,
-- Server version 10.11.11-MariaDB-0+deb12u1 unknown4 INTEGER NOT NULL DEFAULT 0,
log_id INTEGER NOT NULL,
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; FOREIGN KEY (text_id) REFERENCES dialog_text(id) ON UPDATE CASCADE,
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; FOREIGN KEY (emote_text_id) REFERENCES dialog_text(id) ON DELETE CASCADE ON UPDATE CASCADE,
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; FOREIGN KEY (voiceover_id) REFERENCES dialog_voiceovers(id) ON UPDATE CASCADE
/*!40101 SET NAMES utf8mb4 */; );
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; CREATE INDEX idx_dialog_flavors_emote ON dialog_flavors(emote);
/*!40103 SET TIME_ZONE='+00:00' */; CREATE INDEX idx_dialog_flavors_text_id ON dialog_flavors(text_id);
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; CREATE INDEX idx_dialog_flavors_voiceover_id ON dialog_flavors(voiceover_id);
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; CREATE INDEX idx_dialog_flavors_emote_text_id ON dialog_flavors(emote_text_id);
/*!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 `dialog_flavors`
--
DROP TABLE IF EXISTS `dialog_flavors`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dialog_flavors` (
`id` int(10) unsigned NOT NULL,
`voiceover_id` int(10) unsigned DEFAULT NULL,
`text_id` int(10) unsigned NOT NULL,
`language` tinyint(3) unsigned NOT NULL DEFAULT 0,
`understood` tinyint(3) unsigned NOT NULL DEFAULT 0,
`emote` text NOT NULL DEFAULT '',
`emote_text_id` int(10) unsigned DEFAULT NULL,
`unknown4` tinyint(3) unsigned NOT NULL DEFAULT 0,
`log_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `IndexEmote` (`emote`(100)),
KEY `FK__flavor_dialog_text` (`text_id`),
KEY `FK_dialog_flavors_dialog_voiceovers` (`voiceover_id`),
KEY `FK_dialog_flavors_dialog_text` (`emote_text_id`),
CONSTRAINT `FK__flavor_dialog_text` FOREIGN KEY (`text_id`) REFERENCES `dialog_text` (`id`) ON UPDATE CASCADE,
CONSTRAINT `FK_dialog_flavors_dialog_text` FOREIGN KEY (`emote_text_id`) REFERENCES `dialog_text` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_dialog_flavors_dialog_voiceovers` FOREIGN KEY (`voiceover_id`) REFERENCES `dialog_voiceovers` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB 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:03
/*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 `dialog_flavors`
--
LOCK TABLES `dialog_flavors` WRITE;
/*!40000 ALTER TABLE `dialog_flavors` DISABLE KEYS */;
/*!40000 ALTER TABLE `dialog_flavors` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,86 +1,7 @@
-- Table: `dialog_npcs` DROP TABLE IF EXISTS dialog_npcs;
USE `eq2emu`; CREATE TABLE dialog_npcs (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
zone TEXT NOT NULL,
/*M!999999\- enable the sandbox mode */ name TEXT NOT NULL,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) UNIQUE(zone, name)
-- );
-- 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 `dialog_npcs`
--
DROP TABLE IF EXISTS `dialog_npcs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dialog_npcs` (
`id` int(10) unsigned NOT NULL,
`zone` text NOT NULL,
`name` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `IndexZone_Name` (`zone`(100),`name`(100))
) ENGINE=InnoDB 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:03
/*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 `dialog_npcs`
--
LOCK TABLES `dialog_npcs` WRITE;
/*!40000 ALTER TABLE `dialog_npcs` DISABLE KEYS */;
/*!40000 ALTER TABLE `dialog_npcs` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,90 +1,11 @@
-- Table: `dialog_play_flavors` DROP TABLE IF EXISTS dialog_play_flavors;
USE `eq2emu`; CREATE TABLE dialog_play_flavors (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
npc_id INTEGER NOT NULL,
/*M!999999\- enable the sandbox mode */ flavor_id INTEGER NOT NULL,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) log_id INTEGER NOT NULL,
-- UNIQUE(npc_id, flavor_id),
-- Host: localhost Database: eq2emu FOREIGN KEY (npc_id) REFERENCES dialog_npcs(id) ON UPDATE CASCADE,
-- ------------------------------------------------------ FOREIGN KEY (flavor_id) REFERENCES dialog_flavors(id) ON UPDATE CASCADE
-- Server version 10.11.11-MariaDB-0+deb12u1 );
CREATE INDEX idx_dialog_play_flavors_flavor_id ON dialog_play_flavors(flavor_id);
/*!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 `dialog_play_flavors`
--
DROP TABLE IF EXISTS `dialog_play_flavors`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dialog_play_flavors` (
`id` int(10) unsigned NOT NULL,
`npc_id` int(10) unsigned NOT NULL,
`flavor_id` int(10) unsigned NOT NULL,
`log_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UniqueNpcFlavor` (`npc_id`,`flavor_id`),
KEY `FK__playflavors_dialog_flavors` (`flavor_id`),
CONSTRAINT `FK__playflavors_dialog_flavors` FOREIGN KEY (`flavor_id`) REFERENCES `dialog_flavors` (`id`) ON UPDATE CASCADE,
CONSTRAINT `FK__playflavors_dialog_npcs` FOREIGN KEY (`npc_id`) REFERENCES `dialog_npcs` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB 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:03
/*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 `dialog_play_flavors`
--
LOCK TABLES `dialog_play_flavors` WRITE;
/*!40000 ALTER TABLE `dialog_play_flavors` DISABLE KEYS */;
/*!40000 ALTER TABLE `dialog_play_flavors` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,94 +1,15 @@
-- Table: `dialog_play_voices` DROP TABLE IF EXISTS dialog_play_voices;
USE `eq2emu`; CREATE TABLE dialog_play_voices (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
npc_id INTEGER NOT NULL,
/*M!999999\- enable the sandbox mode */ voiceover_id INTEGER NOT NULL,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) language INTEGER NOT NULL,
-- garbled_text_id INTEGER,
-- Host: localhost Database: eq2emu log_id INTEGER NOT NULL,
-- ------------------------------------------------------ UNIQUE(npc_id, voiceover_id, garbled_text_id),
-- Server version 10.11.11-MariaDB-0+deb12u1 FOREIGN KEY (npc_id) REFERENCES dialog_npcs(id) ON UPDATE CASCADE,
FOREIGN KEY (voiceover_id) REFERENCES dialog_voiceovers(id) ON UPDATE CASCADE,
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; FOREIGN KEY (garbled_text_id) REFERENCES dialog_text(id) ON UPDATE CASCADE
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; );
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; CREATE INDEX idx_dialog_play_voices_voiceover_id ON dialog_play_voices(voiceover_id);
/*!40101 SET NAMES utf8mb4 */; CREATE INDEX idx_dialog_play_voices_garbled_text_id ON dialog_play_voices(garbled_text_id);
/*!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 `dialog_play_voices`
--
DROP TABLE IF EXISTS `dialog_play_voices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dialog_play_voices` (
`id` int(10) unsigned NOT NULL,
`npc_id` int(10) unsigned NOT NULL,
`voiceover_id` int(10) unsigned NOT NULL,
`language` tinyint(3) unsigned NOT NULL,
`garbled_text_id` int(10) unsigned DEFAULT NULL,
`log_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `Unique_NpcVoGarb` (`npc_id`,`voiceover_id`,`garbled_text_id`) USING BTREE,
KEY `FK__dialog_voiceovers` (`voiceover_id`),
KEY `FK_dialog_play_voices_dialog_text` (`garbled_text_id`),
CONSTRAINT `FK__dialog_npcs` FOREIGN KEY (`npc_id`) REFERENCES `dialog_npcs` (`id`) ON UPDATE CASCADE,
CONSTRAINT `FK__dialog_voiceovers` FOREIGN KEY (`voiceover_id`) REFERENCES `dialog_voiceovers` (`id`) ON UPDATE CASCADE,
CONSTRAINT `FK_dialog_play_voices_dialog_text` FOREIGN KEY (`garbled_text_id`) REFERENCES `dialog_text` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB 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:03
/*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 `dialog_play_voices`
--
LOCK TABLES `dialog_play_voices` WRITE;
/*!40000 ALTER TABLE `dialog_play_voices` DISABLE KEYS */;
/*!40000 ALTER TABLE `dialog_play_voices` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,93 +1,14 @@
-- Table: `dialog_responses` DROP TABLE IF EXISTS dialog_responses;
USE `eq2emu`; CREATE TABLE dialog_responses (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
parent_dialog_id INTEGER NOT NULL,
/*M!999999\- enable the sandbox mode */ index INTEGER NOT NULL,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) text_id INTEGER NOT NULL,
-- next_dialog_id INTEGER,
-- Host: localhost Database: eq2emu FOREIGN KEY (parent_dialog_id) REFERENCES dialogs(id) ON UPDATE CASCADE,
-- ------------------------------------------------------ FOREIGN KEY (next_dialog_id) REFERENCES dialogs(id) ON UPDATE CASCADE,
-- Server version 10.11.11-MariaDB-0+deb12u1 FOREIGN KEY (text_id) REFERENCES dialog_text(id) ON UPDATE CASCADE
);
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; CREATE INDEX idx_dialog_responses_parent_dialog_id ON dialog_responses(parent_dialog_id);
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; CREATE INDEX idx_dialog_responses_text_id ON dialog_responses(text_id);
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; CREATE INDEX idx_dialog_responses_next_dialog_id ON dialog_responses(next_dialog_id);
/*!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 `dialog_responses`
--
DROP TABLE IF EXISTS `dialog_responses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dialog_responses` (
`id` int(10) unsigned NOT NULL,
`parent_dialog_id` int(10) unsigned NOT NULL,
`index` int(10) unsigned NOT NULL,
`text_id` int(10) unsigned NOT NULL,
`next_dialog_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FK__dialogs` (`parent_dialog_id`),
KEY `FK_dialog_responses_dialog_text` (`text_id`),
KEY `FK__dialogs_2` (`next_dialog_id`) USING BTREE,
CONSTRAINT `FK__dialogs` FOREIGN KEY (`parent_dialog_id`) REFERENCES `dialogs` (`id`) ON UPDATE CASCADE,
CONSTRAINT `FK__dialogs_2` FOREIGN KEY (`next_dialog_id`) REFERENCES `dialogs` (`id`) ON UPDATE CASCADE,
CONSTRAINT `FK_dialog_responses_dialog_text` FOREIGN KEY (`text_id`) REFERENCES `dialog_text` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB 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:03
/*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 `dialog_responses`
--
LOCK TABLES `dialog_responses` WRITE;
/*!40000 ALTER TABLE `dialog_responses` DISABLE KEYS */;
/*!40000 ALTER TABLE `dialog_responses` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,85 +1,6 @@
-- Table: `dialog_text` DROP TABLE IF EXISTS dialog_text;
USE `eq2emu`; CREATE TABLE dialog_text (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
text TEXT NOT NULL
/*M!999999\- enable the sandbox mode */ );
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) CREATE INDEX idx_dialog_text_text ON dialog_text(text);
--
-- 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 `dialog_text`
--
DROP TABLE IF EXISTS `dialog_text`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dialog_text` (
`id` int(10) unsigned NOT NULL,
`text` text NOT NULL,
PRIMARY KEY (`id`),
KEY `IndexText` (`text`(100))
) ENGINE=InnoDB 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:03
/*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 `dialog_text`
--
LOCK TABLES `dialog_text` WRITE;
/*!40000 ALTER TABLE `dialog_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `dialog_text` 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:03
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,88 +1,9 @@
-- Table: `dialog_voiceovers` DROP TABLE IF EXISTS dialog_voiceovers;
USE `eq2emu`; CREATE TABLE dialog_voiceovers (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
file TEXT NOT NULL,
/*M!999999\- enable the sandbox mode */ key1 INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) key2 INTEGER NOT NULL DEFAULT 0,
-- bChecked INTEGER NOT NULL DEFAULT 0
-- Host: localhost Database: eq2emu );
-- ------------------------------------------------------ CREATE INDEX idx_dialog_voiceovers_file ON dialog_voiceovers(file);
-- 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 `dialog_voiceovers`
--
DROP TABLE IF EXISTS `dialog_voiceovers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dialog_voiceovers` (
`id` int(10) unsigned NOT NULL,
`file` text NOT NULL,
`key1` int(10) unsigned NOT NULL DEFAULT 0,
`key2` int(10) unsigned NOT NULL DEFAULT 0,
`bChecked` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `IndexFile` (`file`(100))
) ENGINE=InnoDB 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:04
/*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 `dialog_voiceovers`
--
LOCK TABLES `dialog_voiceovers` WRITE;
/*!40000 ALTER TABLE `dialog_voiceovers` DISABLE KEYS */;
/*!40000 ALTER TABLE `dialog_voiceovers` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,99 +1,20 @@
-- Table: `dialogs` DROP TABLE IF EXISTS dialogs;
USE `eq2emu`; CREATE TABLE dialogs (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
npc_id INTEGER NOT NULL,
/*M!999999\- enable the sandbox mode */ voiceover_id INTEGER,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) title_text_id INTEGER,
-- msg_text_id INTEGER,
-- Host: localhost Database: eq2emu closeable INTEGER NOT NULL DEFAULT 1,
-- ------------------------------------------------------ signature INTEGER NOT NULL,
-- Server version 10.11.11-MariaDB-0+deb12u1 language INTEGER NOT NULL,
log_id INTEGER NOT NULL,
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; FOREIGN KEY (npc_id) REFERENCES dialog_npcs(id) ON UPDATE CASCADE,
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; FOREIGN KEY (title_text_id) REFERENCES dialog_text(id) ON UPDATE CASCADE,
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; FOREIGN KEY (msg_text_id) REFERENCES dialog_text(id) ON UPDATE CASCADE,
/*!40101 SET NAMES utf8mb4 */; FOREIGN KEY (voiceover_id) REFERENCES dialog_voiceovers(id) ON UPDATE CASCADE
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; );
/*!40103 SET TIME_ZONE='+00:00' */; CREATE INDEX idx_dialogs_voiceover_id ON dialogs(voiceover_id);
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; CREATE INDEX idx_dialogs_npc_id ON dialogs(npc_id);
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; CREATE INDEX idx_dialogs_title_text_id ON dialogs(title_text_id);
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; CREATE INDEX idx_dialogs_msg_text_id ON dialogs(msg_text_id);
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `dialogs`
--
DROP TABLE IF EXISTS `dialogs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dialogs` (
`id` int(10) unsigned NOT NULL,
`npc_id` int(10) unsigned NOT NULL,
`voiceover_id` int(10) unsigned DEFAULT NULL,
`title_text_id` int(10) unsigned DEFAULT NULL,
`msg_text_id` int(10) unsigned DEFAULT NULL,
`closeable` tinyint(1) unsigned NOT NULL DEFAULT 1,
`signature` tinyint(1) unsigned NOT NULL,
`language` tinyint(3) unsigned NOT NULL,
`log_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `FK_dialogs_dialog_npcs` (`voiceover_id`),
KEY `FK_dialogs_dialog_npcs1` (`npc_id`),
KEY `FK_dialogs_dialog_text` (`title_text_id`),
KEY `FK_dialogs_dialog_text_2` (`msg_text_id`),
CONSTRAINT `FK_dialogs_dialog_npcs1` FOREIGN KEY (`npc_id`) REFERENCES `dialog_npcs` (`id`) ON UPDATE CASCADE,
CONSTRAINT `FK_dialogs_dialog_text` FOREIGN KEY (`title_text_id`) REFERENCES `dialog_text` (`id`) ON UPDATE CASCADE,
CONSTRAINT `FK_dialogs_dialog_text_2` FOREIGN KEY (`msg_text_id`) REFERENCES `dialog_text` (`id`) ON UPDATE CASCADE,
CONSTRAINT `FK_dialogs_dialog_voiceovers` FOREIGN KEY (`voiceover_id`) REFERENCES `dialog_voiceovers` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB 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:04
/*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 `dialogs`
--
LOCK TABLES `dialogs` WRITE;
/*!40000 ALTER TABLE `dialogs` DISABLE KEYS */;
/*!40000 ALTER TABLE `dialogs` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,80 +1,16 @@
-- Table: `emotes` DROP TABLE IF EXISTS emotes;
USE `eq2emu`; CREATE TABLE emotes (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
name TEXT,
visual_state_id INTEGER NOT NULL DEFAULT 0,
message TEXT,
targeted_message TEXT,
self_message TEXT,
min_version_range INTEGER NOT NULL DEFAULT 0,
max_version_range INTEGER NOT NULL DEFAULT 0
);
/*M!999999\- enable the sandbox mode */ INSERT INTO emotes VALUES
-- 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 `emotes`
--
DROP TABLE IF EXISTS `emotes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `emotes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) DEFAULT NULL,
`visual_state_id` int(10) unsigned NOT NULL DEFAULT 0,
`message` varchar(255) DEFAULT NULL,
`targeted_message` varchar(255) DEFAULT NULL,
`self_message` varchar(255) DEFAULT NULL,
`min_version_range` int(10) unsigned NOT NULL DEFAULT 0,
`max_version_range` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31837 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:04
/*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 `emotes`
--
LOCK TABLES `emotes` WRITE;
/*!40000 ALTER TABLE `emotes` DISABLE KEYS */;
INSERT INTO `emotes` VALUES
(200,'agree',62,'agrees.','agrees with %t.','',1,561), (200,'agree',62,'agrees.','agrees with %t.','',1,561),
(204,'attention',78,'snaps to attention!','','',1,561), (204,'attention',78,'snaps to attention!','','',1,561),
(205,'battlecry',80,'shouts a fearsome battlecry.','shouts a fearsome battlecry at %t.','',1,561), (205,'battlecry',80,'shouts a fearsome battlecry.','shouts a fearsome battlecry at %t.','',1,561),
@ -31650,17 +31586,3 @@ INSERT INTO `emotes` VALUES
(31833,'bleed',0,'bleeds quietly.','bleeds all over %t.','',1,561), (31833,'bleed',0,'bleeds quietly.','bleeds all over %t.','',1,561),
(31835,'poke',0,'pokes %g2self.','pokes %t.',NULL,0,0), (31835,'poke',0,'pokes %g2self.','pokes %t.',NULL,0,0),
(31836,'blush',0,'blushes.','blushes at %t.',NULL,0,0); (31836,'blush',0,'blushes.','blushes at %t.',NULL,0,0);
/*!40000 ALTER TABLE `emotes` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,81 +1,17 @@
-- Table: `entity_commands` DROP TABLE IF EXISTS entity_commands;
USE `eq2emu`; CREATE TABLE entity_commands (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
command_list_id INTEGER NOT NULL DEFAULT 1,
command_text TEXT NOT NULL DEFAULT 'Hail',
distance REAL NOT NULL DEFAULT 0,
command TEXT NOT NULL DEFAULT 'hail',
error_text TEXT NOT NULL,
cast_time INTEGER NOT NULL DEFAULT 0,
spell_visual INTEGER NOT NULL DEFAULT 0,
UNIQUE(command_list_id, command_text)
);
/*M!999999\- enable the sandbox mode */ INSERT INTO entity_commands VALUES
-- 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 `entity_commands`
--
DROP TABLE IF EXISTS `entity_commands`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `entity_commands` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`command_list_id` int(10) unsigned NOT NULL DEFAULT 1,
`command_text` varchar(64) NOT NULL DEFAULT 'Hail',
`distance` float unsigned NOT NULL DEFAULT 0,
`command` varchar(64) NOT NULL DEFAULT 'hail',
`error_text` varchar(64) NOT NULL,
`cast_time` smallint(5) unsigned NOT NULL DEFAULT 0,
`spell_visual` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `EntityCmdIDX` (`command_list_id`,`command_text`)
) ENGINE=InnoDB AUTO_INCREMENT=1400 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:04
/*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 `entity_commands`
--
LOCK TABLES `entity_commands` WRITE;
/*!40000 ALTER TABLE `entity_commands` DISABLE KEYS */;
INSERT INTO `entity_commands` VALUES
(1,1,'Mine',5,'mine','',0,0), (1,1,'Mine',5,'mine','',0,0),
(2,2,'Gather',5,'gather','',0,0), (2,2,'Gather',5,'gather','',0,0),
(3,3,'Trap',5,'trap','',0,0), (3,3,'Trap',5,'trap','',0,0),

View File

@ -1,87 +1,7 @@
-- Table: `eq2classes` DROP TABLE IF EXISTS eq2classes;
USE `eq2emu`; CREATE TABLE eq2classes (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
class_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
/*M!999999\- enable the sandbox mode */ class_name TEXT,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) class_alignment TEXT
-- );
-- 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 `eq2classes`
--
DROP TABLE IF EXISTS `eq2classes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `eq2classes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`class_id` int(10) unsigned NOT NULL DEFAULT 0,
`class_name` varchar(64) DEFAULT NULL,
`class_alignment` enum('Good','Evil') DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ClassIDX` (`class_id`)
) ENGINE=InnoDB 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:04
/*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 `eq2classes`
--
LOCK TABLES `eq2classes` WRITE;
/*!40000 ALTER TABLE `eq2classes` DISABLE KEYS */;
/*!40000 ALTER TABLE `eq2classes` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,87 +1,8 @@
-- Table: `eq2expansions` DROP TABLE IF EXISTS eq2expansions;
USE `eq2emu`; CREATE TABLE eq2expansions (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
expansion_tag TEXT,
/*M!999999\- enable the sandbox mode */ expansion TEXT,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) expansion_type TEXT,
-- release_date TEXT
-- 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 `eq2expansions`
--
DROP TABLE IF EXISTS `eq2expansions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `eq2expansions` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`expansion_tag` varchar(16) DEFAULT NULL,
`expansion` varchar(64) DEFAULT NULL,
`expansion_type` enum('Expansion','Adventure Pack','Game Update') DEFAULT NULL,
`release_date` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=82 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:04
/*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 `eq2expansions`
--
LOCK TABLES `eq2expansions` WRITE;
/*!40000 ALTER TABLE `eq2expansions` DISABLE KEYS */;
/*!40000 ALTER TABLE `eq2expansions` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,86 +1,7 @@
-- Table: `eq2gm` DROP TABLE IF EXISTS eq2gm;
USE `eq2emu`; CREATE TABLE eq2gm (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
gm_title TEXT,
/*M!999999\- enable the sandbox mode */ gm_description TEXT,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) gm_status INTEGER NOT NULL DEFAULT 0
-- );
-- 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 `eq2gm`
--
DROP TABLE IF EXISTS `eq2gm`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `eq2gm` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`gm_title` varchar(64) DEFAULT NULL,
`gm_description` varchar(255) DEFAULT NULL,
`gm_status` int(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB 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:04
/*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 `eq2gm`
--
LOCK TABLES `eq2gm` WRITE;
/*!40000 ALTER TABLE `eq2gm` DISABLE KEYS */;
/*!40000 ALTER TABLE `eq2gm` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,88 +1,9 @@
-- Table: `eq2models` DROP TABLE IF EXISTS eq2models;
USE `eq2emu`; CREATE TABLE eq2models (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
category TEXT,
/*M!999999\- enable the sandbox mode */ subcategory TEXT,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) model_type INTEGER NOT NULL,
-- model_name TEXT
-- Host: localhost Database: eq2emu );
-- ------------------------------------------------------ CREATE INDEX idx_eq2models_model_type ON eq2models(model_type);
-- 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 `eq2models`
--
DROP TABLE IF EXISTS `eq2models`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `eq2models` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category` varchar(64) DEFAULT NULL,
`subcategory` varchar(64) DEFAULT NULL,
`model_type` int(10) unsigned NOT NULL,
`model_name` varchar(250) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `NewIndex1` (`model_type`)
) ENGINE=InnoDB AUTO_INCREMENT=8952 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:04
/*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 `eq2models`
--
LOCK TABLES `eq2models` WRITE;
/*!40000 ALTER TABLE `eq2models` DISABLE KEYS */;
/*!40000 ALTER TABLE `eq2models` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,87 +1,8 @@
-- Table: `eq2races` DROP TABLE IF EXISTS eq2races;
USE `eq2emu`; CREATE TABLE eq2races (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
race INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ race_type INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) name TEXT,
-- is_player_race INTEGER NOT NULL DEFAULT 0
-- 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 `eq2races`
--
DROP TABLE IF EXISTS `eq2races`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `eq2races` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`race` int(10) unsigned NOT NULL DEFAULT 0,
`race_type` int(10) unsigned NOT NULL DEFAULT 0,
`name` varchar(64) DEFAULT NULL,
`is_player_race` tinyint(3) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB 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:04
/*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 `eq2races`
--
LOCK TABLES `eq2races` WRITE;
/*!40000 ALTER TABLE `eq2races` DISABLE KEYS */;
/*!40000 ALTER TABLE `eq2races` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,74 +1,10 @@
-- Table: `exp_per_level` DROP TABLE IF EXISTS exp_per_level;
USE `eq2emu`; CREATE TABLE exp_per_level (
SET FOREIGN_KEY_CHECKS=0; level INTEGER PRIMARY KEY,
exp_needed INTEGER
);
/*M!999999\- enable the sandbox mode */ INSERT INTO exp_per_level VALUES
-- 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 `exp_per_level`
--
DROP TABLE IF EXISTS `exp_per_level`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exp_per_level` (
`level` int(10) unsigned NOT NULL,
`exp_needed` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`level`)
) 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:04
/*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 `exp_per_level`
--
LOCK TABLES `exp_per_level` WRITE;
/*!40000 ALTER TABLE `exp_per_level` DISABLE KEYS */;
INSERT INTO `exp_per_level` VALUES
(2,600), (2,600),
(3,800), (3,800),
(4,1000), (4,1000),
@ -163,17 +99,3 @@ INSERT INTO `exp_per_level` VALUES
(93,1044895), (93,1044895),
(94,1149385), (94,1149385),
(95,1264323); (95,1264323);
/*!40000 ALTER TABLE `exp_per_level` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,78 +1,14 @@
-- Table: `faction_alliances` DROP TABLE IF EXISTS faction_alliances;
USE `eq2emu`; CREATE TABLE faction_alliances (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
faction_id INTEGER NOT NULL DEFAULT 0,
friend_faction INTEGER NOT NULL DEFAULT 0,
hostile_faction INTEGER NOT NULL DEFAULT 0,
UNIQUE(faction_id, friend_faction, hostile_faction),
FOREIGN KEY (faction_id) REFERENCES factions(id) ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO faction_alliances VALUES
-- 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 `faction_alliances`
--
DROP TABLE IF EXISTS `faction_alliances`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `faction_alliances` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`faction_id` int(10) unsigned NOT NULL DEFAULT 0,
`friend_faction` int(10) unsigned NOT NULL DEFAULT 0,
`hostile_faction` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `FactionIDX` (`faction_id`,`friend_faction`,`hostile_faction`),
CONSTRAINT `FK_faction_alliances` FOREIGN KEY (`faction_id`) REFERENCES `factions` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=89 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:04
/*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 `faction_alliances`
--
LOCK TABLES `faction_alliances` WRITE;
/*!40000 ALTER TABLE `faction_alliances` DISABLE KEYS */;
INSERT INTO `faction_alliances` VALUES
(61,11,0,1), (61,11,0,1),
(1,11,0,12), (1,11,0,12),
(39,11,0,102), (39,11,0,102),
@ -145,17 +81,3 @@ INSERT INTO `faction_alliances` VALUES
(82,366,0,11), (82,366,0,11),
(83,366,0,12), (83,366,0,12),
(74,367,0,12); (74,367,0,12);
/*!40000 ALTER TABLE `faction_alliances` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,79 +1,15 @@
-- Table: `factions` DROP TABLE IF EXISTS factions;
USE `eq2emu`; CREATE TABLE factions (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
name TEXT NOT NULL DEFAULT '',
type TEXT NOT NULL DEFAULT '',
description TEXT NOT NULL,
default_level INTEGER NOT NULL DEFAULT 0,
negative_change INTEGER NOT NULL DEFAULT 100,
positive_change INTEGER NOT NULL DEFAULT 75
);
/*M!999999\- enable the sandbox mode */ INSERT INTO factions VALUES
-- 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 `factions`
--
DROP TABLE IF EXISTS `factions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `factions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL DEFAULT '',
`type` varchar(32) NOT NULL DEFAULT '',
`description` text NOT NULL,
`default_level` mediumint(9) NOT NULL DEFAULT 0,
`negative_change` smallint(5) unsigned NOT NULL DEFAULT 100,
`positive_change` smallint(5) unsigned NOT NULL DEFAULT 75,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=368 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:04
/*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 `factions`
--
LOCK TABLES `factions` WRITE;
/*!40000 ALTER TABLE `factions` DISABLE KEYS */;
INSERT INTO `factions` VALUES
(1,'Scowls (KOS)','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75), (1,'Scowls (KOS)','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75),
(2,'Threatening','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75), (2,'Threatening','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75),
(3,'Dubious','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75), (3,'Dubious','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75),
@ -83,7 +19,7 @@ INSERT INTO `factions` VALUES
(7,'Kindly','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75), (7,'Kindly','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75),
(8,'Warmly','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75), (8,'Warmly','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75),
(9,'Ally','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75), (9,'Ally','Generic','This is a generic faction level for the emu. Assigning an npc to that faction level allows them to show up with whatever con you wish without creating a new faction for each one.',0,100,75),
(10,'The GM\'s of EQ2Emulator','Misc','Faction that makes GMs everyone\'s friend!',0,100,75), (10,'The GM''s of EQ2Emulator','Misc','Faction that makes GMs everyone''s friend!',0,100,75),
(11,'The City of Qeynos','City Factions','The City of Qeynos',0,0,0), (11,'The City of Qeynos','City Factions','The City of Qeynos',0,0,0),
(12,'The City of Freeport','City Factions','The City of Freeport',0,0,0), (12,'The City of Freeport','City Factions','The City of Freeport',0,0,0),
(13,'The City of Neriak','City Factions','The City of Neriak',0,100,75), (13,'The City of Neriak','City Factions','The City of Neriak',0,100,75),
@ -110,11 +46,11 @@ INSERT INTO `factions` VALUES
(45,'Evil Guard','Generic','This is a generic faction for Evil guards.',0,100,75), (45,'Evil Guard','Generic','This is a generic faction for Evil guards.',0,100,75),
(101,'The Coalition of Tradesfolke','Shattered Lands','The Coalition of Tradesfolke is the ruling trade organization of Freeport. They oversee all trade operations of Freeport and do away with any competition with extreme prejudice.',0,100,75), (101,'The Coalition of Tradesfolke','Shattered Lands','The Coalition of Tradesfolke is the ruling trade organization of Freeport. They oversee all trade operations of Freeport and do away with any competition with extreme prejudice.',0,100,75),
(102,'The Freeport Militia','Shattered Lands','The Freeport Militia is the defensive force of Freeport. This merciless fighting force defends the walls of Freeport as well as the borderlands of the great city.',0,100,75), (102,'The Freeport Militia','Shattered Lands','The Freeport Militia is the defensive force of Freeport. This merciless fighting force defends the walls of Freeport as well as the borderlands of the great city.',0,100,75),
(103,'The Seafury Buccaneers','Shattered Lands','This was once a lawless pirate organization that terrorized the Shattered Lands. These pirates now fly the flag of Freeport and act as the Overlord\'s savage armada. ',0,100,75), (103,'The Seafury Buccaneers','Shattered Lands','This was once a lawless pirate organization that terrorized the Shattered Lands. These pirates now fly the flag of Freeport and act as the Overlord''s savage armada. ',0,100,75),
(104,'The Academy of Arcane Science','Shattered Lands','The Academy of Arcane Science is one of the oldest and most esteemed schools of knowledge on Norrath. They make their home in Freeport where they are free to delve into arts that are forbidden in most societies.',0,100,75), (104,'The Academy of Arcane Science','Shattered Lands','The Academy of Arcane Science is one of the oldest and most esteemed schools of knowledge on Norrath. They make their home in Freeport where they are free to delve into arts that are forbidden in most societies.',0,100,75),
(105,'The Dismal Rage','Shattered Lands','The Dismal Rage is the religious foundation of Freeport. This organization pays homage to the darker powers of Norrath, the principles of Fear, Hate, and War.',0,100,75), (105,'The Dismal Rage','Shattered Lands','The Dismal Rage is the religious foundation of Freeport. This organization pays homage to the darker powers of Norrath, the principles of Fear, Hate, and War.',0,100,75),
(106,'The Kromise','Shattered Lands','Thundering across the frigid tundra of Everfrost is the Kromise, giants formed of frost and ice. These titanic brutes have long claimed the chilly northlands and will not tolerate the presence of outlanders. ',-40000,100,75), (106,'The Kromise','Shattered Lands','Thundering across the frigid tundra of Everfrost is the Kromise, giants formed of frost and ice. These titanic brutes have long claimed the chilly northlands and will not tolerate the presence of outlanders. ',-40000,100,75),
(107,'The Order of the Blade','Shattered Lands','These fierce maidens of the cold blade are rumored to be the children of the Ice Goddess, E\'ci. They believe that only through intense combat and challenge can true honor be obtained.',-40000,100,75), (107,'The Order of the Blade','Shattered Lands','These fierce maidens of the cold blade are rumored to be the children of the Ice Goddess, E''ci. They believe that only through intense combat and challenge can true honor be obtained.',-40000,100,75),
(108,'The Guardians of Thyr','Shattered Lands','Deep within the fiery abyss of the volcanic lands dwell the Guardians of Thyr, cruel fire giants. From an underworld they call Thyr they act as the frontline defense of their master, the red dragon, Lord Nagafen.',-40000,100,75), (108,'The Guardians of Thyr','Shattered Lands','Deep within the fiery abyss of the volcanic lands dwell the Guardians of Thyr, cruel fire giants. From an underworld they call Thyr they act as the frontline defense of their master, the red dragon, Lord Nagafen.',-40000,100,75),
(109,'The Court of the Master Djinn','Desert of Ro','',0,100,75), (109,'The Court of the Master Djinn','Desert of Ro','',0,100,75),
(110,'The Steppes Settlers','Shattered Lands','The residents of the Thundering Steppes once lived solitary lives, but the ravages of war and the wrath of nature have brought the settlers together to form this well-organized, yet loose-knit, society. ',-10000,100,75), (110,'The Steppes Settlers','Shattered Lands','The residents of the Thundering Steppes once lived solitary lives, but the ravages of war and the wrath of nature have brought the settlers together to form this well-organized, yet loose-knit, society. ',-10000,100,75),
@ -128,11 +64,11 @@ INSERT INTO `factions` VALUES
(118,'The Greenhoods','Shattered Lands','The Greenbloods are an elite band of resistance fighters located on the Orcish Wastes. Before the Shattering, this force was a highly mobile regiment of the Qeynos Guard. They have since broken off to form their own organization while still aiding Qeynos however possible.',-10000,100,75), (118,'The Greenhoods','Shattered Lands','The Greenbloods are an elite band of resistance fighters located on the Orcish Wastes. Before the Shattering, this force was a highly mobile regiment of the Qeynos Guard. They have since broken off to form their own organization while still aiding Qeynos however possible.',-10000,100,75),
(119,'The Deathfist Orcs','Shattered Lands','The Deathfist Empire is one of the greatest threats to the civilized societies of the Shattered Lands. This orc empire maintains a vast war machine that has claimed Zek, a former resource-rich forest island, as their new base of operations.',-40000,100,75), (119,'The Deathfist Orcs','Shattered Lands','The Deathfist Empire is one of the greatest threats to the civilized societies of the Shattered Lands. This orc empire maintains a vast war machine that has claimed Zek, a former resource-rich forest island, as their new base of operations.',-40000,100,75),
(120,'The Bloodskull Orcs','Shattered Lands','The Bloodskull Orcs are a relatively new clan of orcs that has begun to operate near the city of Freeport. Unlike the larger orc empires, the Bloodskulls do not seem to have a fortified capital nor do they seem to be interested in conquest.',-40000,100,50), (120,'The Bloodskull Orcs','Shattered Lands','The Bloodskull Orcs are a relatively new clan of orcs that has begun to operate near the city of Freeport. Unlike the larger orc empires, the Bloodskulls do not seem to have a fortified capital nor do they seem to be interested in conquest.',-40000,100,50),
(121,'The Ree Orcs','Shattered Lands','The Ree Raiders are a small clandestine band of orcs that operate somewhere on the continent of D\'Lere. They are plunderers that will seize goods to use as trade with any organization that will do business with them.',-40000,100,75), (121,'The Ree Orcs','Shattered Lands','The Ree Raiders are a small clandestine band of orcs that operate somewhere on the continent of D''Lere. They are plunderers that will seize goods to use as trade with any organization that will do business with them.',-40000,100,75),
(122,'The Sabertooth Gnolls','Shattered Lands','The Sabertooth Clan is the largest known clan of gnolls inhabiting the Shattered Lands. These gnolls are comprised of many smaller packs that have banded together to bring about the end of the great cities of men, whom they have viewed as an eternal foe.',-40000,100,75), (122,'The Sabertooth Gnolls','Shattered Lands','The Sabertooth Clan is the largest known clan of gnolls inhabiting the Shattered Lands. These gnolls are comprised of many smaller packs that have banded together to bring about the end of the great cities of men, whom they have viewed as an eternal foe.',-40000,100,75),
(123,'The Evol Ew Lizardmen','Shattered Lands','The Alliz Evol Ew are a savage tribe of lizardmen that inhabit the jungles of the Feerrott. They worship the influence of Fear which directs them to defend the island and its monuments from any invader. They are cousins to the cannibalistic Alliz Tae Ew.',-45000,100,75), (123,'The Evol Ew Lizardmen','Shattered Lands','The Alliz Evol Ew are a savage tribe of lizardmen that inhabit the jungles of the Feerrott. They worship the influence of Fear which directs them to defend the island and its monuments from any invader. They are cousins to the cannibalistic Alliz Tae Ew.',-45000,100,75),
(124,'The Tae Ew Lizardmen','Shattered Lands','The Alliz Tae Ew are a cannibalistic race of lizardmen that live within the jungle of the Feerrott. These lizards are members of a cult of Fear called Thulians. They are cousins to the Alliz Evol Ew, whom they often feed upon as their dark lords instruct them to.',-45000,100,75), (124,'The Tae Ew Lizardmen','Shattered Lands','The Alliz Tae Ew are a cannibalistic race of lizardmen that live within the jungle of the Feerrott. These lizards are members of a cult of Fear called Thulians. They are cousins to the Alliz Evol Ew, whom they often feed upon as their dark lords instruct them to.',-45000,100,75),
(125,'The Thexians','Shattered Lands','The Thexians are dark elves that promote the return of traditional ways of the Teir\'Dal, something that has vanished since their refuge within the walls of Freeport, a city of men. The Thexians operate in secrecy and seek only the alliance of Teir\'Dal.',-45000,100,25), (125,'The Thexians','Shattered Lands','The Thexians are dark elves that promote the return of traditional ways of the Teir''Dal, something that has vanished since their refuge within the walls of Freeport, a city of men. The Thexians operate in secrecy and seek only the alliance of Teir''Dal.',-45000,100,25),
(126,'The Asilian Fairies','Shattered Lands','These faeries are a once demure community of fairies that now fight to survive in Nektulos Forest since being driven from the cataclysms of the Underfoot. They now find themselves in a war for resources with a fellow fairy community of Sullian Fairies. ',0,100,75), (126,'The Asilian Fairies','Shattered Lands','These faeries are a once demure community of fairies that now fight to survive in Nektulos Forest since being driven from the cataclysms of the Underfoot. They now find themselves in a war for resources with a fellow fairy community of Sullian Fairies. ',0,100,75),
(127,'The Sullian Fairies','Shattered Lands','The Sullians are a community of fairies that have been driven from their subterranean homelands and now fight for survival within Nektulos Forest. They now find themselves in a war for resources with a fellow fairy community of Asilian Fairies.',0,100,75), (127,'The Sullian Fairies','Shattered Lands','The Sullians are a community of fairies that have been driven from their subterranean homelands and now fight for survival within Nektulos Forest. They now find themselves in a war for resources with a fellow fairy community of Asilian Fairies.',0,100,75),
(128,'The Aravu Naga','Desert of Ro','The Aravu Naga are a small group of exiles from the Shimmering Citadel. After being banished by the Djinn, they now only seek to right that single wrong.',0,100,75), (128,'The Aravu Naga','Desert of Ro','The Aravu Naga are a small group of exiles from the Shimmering Citadel. After being banished by the Djinn, they now only seek to right that single wrong.',0,100,75),
@ -140,7 +76,7 @@ INSERT INTO `factions` VALUES
(130,'The Court of the Blades','Desert of Ro','The Court of the Blades is ruled by the Caliph of the Blades, Dukarem. Their primary responsibility is the protection of the city from the hostile creatures of the desert, chief of which are the orcs of Rujark.',-35000,100,75), (130,'The Court of the Blades','Desert of Ro','The Court of the Blades is ruled by the Caliph of the Blades, Dukarem. Their primary responsibility is the protection of the city from the hostile creatures of the desert, chief of which are the orcs of Rujark.',-35000,100,75),
(131,'The Court of Truth','Desert of Ro','The Court of Truth is led by the Caliph of Truth, Ishara. Their primary responsibility is to gather and maintain the knowledge of the Dervish people. They also are heavily involved in the law making associated with the Arena Games.',-35000,100,75), (131,'The Court of Truth','Desert of Ro','The Court of Truth is led by the Caliph of Truth, Ishara. Their primary responsibility is to gather and maintain the knowledge of the Dervish people. They also are heavily involved in the law making associated with the Arena Games.',-35000,100,75),
(132,'The Court of the Coin','Desert of Ro','The Court of the Coin is led by the Caliph of the Coin, Neriph. They control the flow of money in the city, including merchant transactions, banking, and wagering. The Golden Scepter is the center of the Dervin economy.',-35000,100,75), (132,'The Court of the Coin','Desert of Ro','The Court of the Coin is led by the Caliph of the Coin, Neriph. They control the flow of money in the city, including merchant transactions, banking, and wagering. The Golden Scepter is the center of the Dervin economy.',-35000,100,75),
(133,'Maj\'Dul Citizens','Desert of Ro','The citizens of Maj\'Dul can very easily trace their ancestry back to the Dervish cutthroats that roamed the Desert of Ro centuries ago.',0,100,75), (133,'Maj''Dul Citizens','Desert of Ro','The citizens of Maj''Dul can very easily trace their ancestry back to the Dervish cutthroats that roamed the Desert of Ro centuries ago.',0,100,75),
(134,'The Rujarkian Orcs','Desert of Ro','The Rujarkian Empire is one of the largest and mightiest orc empires on Norrath. They have sway over all other orc empires great and small. The Rujarkians maintain a vast fortress homeland built into what is left of the great Rujarkian Hills.',-45000,100,50), (134,'The Rujarkian Orcs','Desert of Ro','The Rujarkian Empire is one of the largest and mightiest orc empires on Norrath. They have sway over all other orc empires great and small. The Rujarkians maintain a vast fortress homeland built into what is left of the great Rujarkian Hills.',-45000,100,50),
(135,'The Ironforge Exchange','Shattered Lands','Overseeing all trade operation of Qeynos is the Ironforge Exchange. This is an ancient trade organization ruled by one of the most affluent trade families of the Kingdom of Qeynos. ',0,100,75), (135,'The Ironforge Exchange','Shattered Lands','Overseeing all trade operation of Qeynos is the Ironforge Exchange. This is an ancient trade organization ruled by one of the most affluent trade families of the Kingdom of Qeynos. ',0,100,75),
(136,'The Concordium','Shattered Lands','The Concordium consider themselves the keepers of the arcane arts. They wield their magic in defense of Qeynos and continue their research in arcane arts that may be used to better all Norrathians.',0,100,75), (136,'The Concordium','Shattered Lands','The Concordium consider themselves the keepers of the arcane arts. They wield their magic in defense of Qeynos and continue their research in arcane arts that may be used to better all Norrathians.',0,100,75),
@ -150,9 +86,9 @@ INSERT INTO `factions` VALUES
(141,'The Anaz Mal Gnolls ','Desert of Ro','The Anaz Mal is a relatively obscure and hostile gnoll clan that dwells in the Desert of Ro. These gnolls have adapted to the hot environments of the desert. They have an unusual affinity towards all things undead.',0,100,75), (141,'The Anaz Mal Gnolls ','Desert of Ro','The Anaz Mal is a relatively obscure and hostile gnoll clan that dwells in the Desert of Ro. These gnolls have adapted to the hot environments of the desert. They have an unusual affinity towards all things undead.',0,100,75),
(142,'The Arcanists of Tunaria ','Misc','',0,100,75), (142,'The Arcanists of Tunaria ','Misc','',0,100,75),
(143,'The Ashen Disciples ','Desert of Ro','The Ashen Disciples are the result of a philosophical split within the Ashen Order. Abandoning the virtues of tranquility and wisdom in favor of strength and discipline, these monks deny the existence of the old gods and seek to gain greater temporal power through strength of arms.',0,100,75), (143,'The Ashen Disciples ','Desert of Ro','The Ashen Disciples are the result of a philosophical split within the Ashen Order. Abandoning the virtues of tranquility and wisdom in favor of strength and discipline, these monks deny the existence of the old gods and seek to gain greater temporal power through strength of arms.',0,100,75),
(144,'The Ashen Order ','Desert of Ro','The Ashen Order is one the oldest monk clans on Norrath, credited with establishing many of the founding principles of the monk. They removed themselves from society decades ago to seek a more humble life within their desert fortress of T\'Narev.',0,100,75), (144,'The Ashen Order ','Desert of Ro','The Ashen Order is one the oldest monk clans on Norrath, credited with establishing many of the founding principles of the monk. They removed themselves from society decades ago to seek a more humble life within their desert fortress of T''Narev.',0,100,75),
(145,'The Awakened ','Kingdom of Sky','Located within the floating islands of the Overrealm known as Dragon Isles, this alliance of powerful dragonkind threatens to take over all of Norrath.',0,100,75), (145,'The Awakened ','Kingdom of Sky','Located within the floating islands of the Overrealm known as Dragon Isles, this alliance of powerful dragonkind threatens to take over all of Norrath.',0,100,75),
(146,'Bathezid\'s Watch ','Kunark','Named for a former Overking of Chardok, Bathezid\'s Watch has managed to stand against the Sathirian Empire against all odds.',0,100,75), (146,'Bathezid''s Watch ','Kunark','Named for a former Overking of Chardok, Bathezid''s Watch has managed to stand against the Sathirian Empire against all odds.',0,100,75),
(147,'Bazzt Bzzt Bixie Brood ','Shattered Lands','Descended from the great bixie queen, Bazzt Bzzt of the Plane of Sky, this bixie brood has recently found themselves in the Overrealm of Norrath.',0,100,75), (147,'Bazzt Bzzt Bixie Brood ','Shattered Lands','Descended from the great bixie queen, Bazzt Bzzt of the Plane of Sky, this bixie brood has recently found themselves in the Overrealm of Norrath.',0,100,75),
(148,'The Bellywhumpers ','Kunark','A small tribe of burynai who have been pushed out of their home in the Field of Bone by their rivals, the Bonediggers.',0,100,75), (148,'The Bellywhumpers ','Kunark','A small tribe of burynai who have been pushed out of their home in the Field of Bone by their rivals, the Bonediggers.',0,100,75),
(149,'Bertoxxulous ','Deity','The favor of Bertoxxulous, the Plaguebringer.',0,100,75), (149,'Bertoxxulous ','Deity','The favor of Bertoxxulous, the Plaguebringer.',0,100,75),
@ -162,7 +98,7 @@ INSERT INTO `factions` VALUES
(153,'Bristlebane ','Deity','The favor of Bristlebane, the King of Thieves.',0,100,75), (153,'Bristlebane ','Deity','The favor of Bristlebane, the King of Thieves.',0,100,75),
(154,'Cazic-Thule ','Deity','The favor of Cazic-Thule, the god of Fear.',0,100,75), (154,'Cazic-Thule ','Deity','The favor of Cazic-Thule, the god of Fear.',0,100,75),
(155,'The Celestial Watch ','Shattered Lands','Acting as a beacon of benevolence, the Celestial Watch is the religious backbone of the Kingdom of Qeynos. This order praises the gods of Love, Valor, and Honor.',0,100,75), (155,'The Celestial Watch ','Shattered Lands','Acting as a beacon of benevolence, the Celestial Watch is the religious backbone of the Kingdom of Qeynos. This order praises the gods of Love, Valor, and Honor.',0,100,75),
(156,'The Char\'Gin ','Desert of Ro','The Char\'Gin is a tribe of desert nomads that roams the desert lands of Ro. They are one of the affluent tribes of the desert and much of their wealth has come from their gift of mining. ',0,100,75), (156,'The Char''Gin ','Desert of Ro','The Char''Gin is a tribe of desert nomads that roams the desert lands of Ro. They are one of the affluent tribes of the desert and much of their wealth has come from their gift of mining. ',0,100,75),
(157,'The Circle of the Unseen ','Misc','',0,100,75), (157,'The Circle of the Unseen ','Misc','',0,100,75),
(159,'The City of Jinisk ','Kunark','',0,100,75), (159,'The City of Jinisk ','Kunark','',0,100,75),
(160,'Clan Brokenskull ','Moors of Ykesha','In a constant battle with the other factions of the Moors of Ykesha, Clan Brokenskull aims to take the island once and for all.',0,100,75), (160,'Clan Brokenskull ','Moors of Ykesha','In a constant battle with the other factions of the Moors of Ykesha, Clan Brokenskull aims to take the island once and for all.',0,100,75),
@ -172,13 +108,13 @@ INSERT INTO `factions` VALUES
(164,'Clan Smokehorn ','Faydwer','An honorable but deadly clan of minotaur that reside in the Steamfont Mountains. Victims of past slave raids, they are extremely cautious of strangers, however, their trust can be earned.',0,100,75), (164,'Clan Smokehorn ','Faydwer','An honorable but deadly clan of minotaur that reside in the Steamfont Mountains. Victims of past slave raids, they are extremely cautious of strangers, however, their trust can be earned.',0,100,75),
(165,'Clan Stormshield ','Kunark','The Stormshield brothers are avid hunters and warriors. Training with them could prove beneficial down the line!',0,100,75), (165,'Clan Stormshield ','Kunark','The Stormshield brothers are avid hunters and warriors. Training with them could prove beneficial down the line!',0,100,75),
(166,'Clan Ykesha ','Misc','',0,100,75), (166,'Clan Ykesha ','Misc','',0,100,75),
(167,'The Court of Al\'Afaz ','Desert of Ro','The denizens of the Court of Al\'Afaz are as mysterious as they are powerful.',0,100,75), (167,'The Court of Al''Afaz ','Desert of Ro','The denizens of the Court of Al''Afaz are as mysterious as they are powerful.',0,100,75),
(168,'The D\'Vinnian Court ','Faydwer','Emperor D\'Vinn rules over the orcs of Clan Crushbone and leads the remnants of the Thexian army that once threatened to conquer all of Faydwer.',0,100,75), (168,'The D''Vinnian Court ','Faydwer','Emperor D''Vinn rules over the orcs of Clan Crushbone and leads the remnants of the Thexian army that once threatened to conquer all of Faydwer.',0,100,75),
(169,'Dalnir\'s Wheel Taskmasters ','Kunark','',0,100,75), (169,'Dalnir''s Wheel Taskmasters ','Kunark','',0,100,75),
(170,'The Dark Bargainers ','Shattered Lands','The Dark Bargainers are the trade society of the Dark Elves. They are a very religious society and offer a portion of their profits to the temple of Innoruuk.',0,100,75), (170,'The Dark Bargainers ','Shattered Lands','The Dark Bargainers are the trade society of the Dark Elves. They are a very religious society and offer a portion of their profits to the temple of Innoruuk.',0,100,75),
(171,'Disciples of Wu ','Faydwer','Said to be the first and greatest of all human monks, Wu the Enlightened first came to the Lesser Faydark centuries ago and established a small camp. He spent years studying the ways of Nature, enjoying the solitude of the region. He became known as a true friend of the Fay folk, honoring their ways and keeping the roads clear of the orcs who posed a threat in those years.',0,100,75), (171,'Disciples of Wu ','Faydwer','Said to be the first and greatest of all human monks, Wu the Enlightened first came to the Lesser Faydark centuries ago and established a small camp. He spent years studying the ways of Nature, enjoying the solitude of the region. He became known as a true friend of the Fay folk, honoring their ways and keeping the roads clear of the orcs who posed a threat in those years.',0,100,75),
(172,'The Dreadnaught ','Misc','',0,100,75), (172,'The Dreadnaught ','Misc','',0,100,75),
(173,'Drednever Expedition ','Kingdom of Sky','Before the Shattering, the Observers of Ak\'Anon tasked the famous explorers Dabner Drednever and Ognit Eznertob with forming an expedition to explore new and uncharted lands.',0,100,75), (173,'Drednever Expedition ','Kingdom of Sky','Before the Shattering, the Observers of Ak''Anon tasked the famous explorers Dabner Drednever and Ognit Eznertob with forming an expedition to explore new and uncharted lands.',0,100,75),
(174,'Exiles of Droga ','Kunark','A small tribe of goblins expelled from their home for the continued use of magic.',0,100,75), (174,'Exiles of Droga ','Kunark','A small tribe of goblins expelled from their home for the continued use of magic.',0,100,75),
(175,'Fae of Kelethin ','Faydwer','A semi-formal alliance of the residents of Kelethin, whether Fae or not.',0,100,75), (175,'Fae of Kelethin ','Faydwer','A semi-formal alliance of the residents of Kelethin, whether Fae or not.',0,100,75),
(176,'Far Seas Supply Division ','Misc','',0,100,75), (176,'Far Seas Supply Division ','Misc','',0,100,75),
@ -187,20 +123,20 @@ INSERT INTO `factions` VALUES
(179,'The Fugutr Tribe ','Faydwer','The devout Satyr followers of Tunare found within the Lesser Faydark. This tribe of creatures originally from the Plane of Growth are found still protecting the various shrines and relics of Tunare.',0,100,75), (179,'The Fugutr Tribe ','Faydwer','The devout Satyr followers of Tunare found within the Lesser Faydark. This tribe of creatures originally from the Plane of Growth are found still protecting the various shrines and relics of Tunare.',0,100,75),
(180,'Gazers of the Overrealm ','Kingdom of Sky','The origin of these magical entities is a mystery. The answer may lie among the ruins of the Rending.',0,100,75), (180,'Gazers of the Overrealm ','Kingdom of Sky','The origin of these magical entities is a mystery. The answer may lie among the ruins of the Rending.',0,100,75),
(181,'Gloompall Fairies ','Kingdom of Sky','These sinister fairies have made a home in the Tenebrous Tangle. Their alliance with the Gazers may not be as solid as it appears.',0,100,75), (181,'Gloompall Fairies ','Kingdom of Sky','These sinister fairies have made a home in the Tenebrous Tangle. Their alliance with the Gazers may not be as solid as it appears.',0,100,75),
(182,'Goblins of Fire Peak ','Shattered Lands','This tribe of fire goblins have made their home in the burning caverns of Solusek\'s Eye.',0,100,75), (182,'Goblins of Fire Peak ','Shattered Lands','This tribe of fire goblins have made their home in the burning caverns of Solusek''s Eye.',0,100,75),
(183,'The Green Hoods ','Shattered Lands','The Green Hoods are an elite band of resistance fighters located on the Orcish Wastes. Before the Shattering, this force was a highly mobile regiment of the Qeynos Guard. They have since broken off to form their own organization while still aiding Qeynos whenever possible.',0,100,75), (183,'The Green Hoods ','Shattered Lands','The Green Hoods are an elite band of resistance fighters located on the Orcish Wastes. Before the Shattering, this force was a highly mobile regiment of the Qeynos Guard. They have since broken off to form their own organization while still aiding Qeynos whenever possible.',0,100,75),
(184,'Guktan Guard ','Moors of Ykesha','Though ousted from Guk, the Frogloks still consider it their homeland. Until it is reclaimed, they base themselves in the tree city of Tupta.',0,100,75), (184,'Guktan Guard ','Moors of Ykesha','Though ousted from Guk, the Frogloks still consider it their homeland. Until it is reclaimed, they base themselves in the tree city of Tupta.',0,100,75),
(185,'The Gwalnax Brigade ','Misc','',0,100,75), (185,'The Gwalnax Brigade ','Misc','',0,100,75),
(186,'Hidden Plunderers\' Camp ','Kunark','',0,100,75), (186,'Hidden Plunderers'' Camp ','Kunark','',0,100,75),
(187,'House of Falling Stars ','Faydwer','Fae clerics believe in ultimately in Tunare but also the power of the Stars. The alignment of constellations can help to divine how things will change.',0,100,75), (187,'House of Falling Stars ','Faydwer','Fae clerics believe in ultimately in Tunare but also the power of the Stars. The alignment of constellations can help to divine how things will change.',0,100,75),
(188,'Innoruuk ','Misc','',0,100,75), (188,'Innoruuk ','Misc','',0,100,75),
(189,'The Irontoe Brigade ','Faydwer','Tumpy\'s pals.',0,100,75), (189,'The Irontoe Brigade ','Faydwer','Tumpy''s pals.',0,100,75),
(190,'Karana ','Misc','',0,100,75), (190,'Karana ','Misc','',0,100,75),
(191,'Kunzar Jungle Villagers ','Kunark','',0,100,75), (191,'Kunzar Jungle Villagers ','Kunark','',0,100,75),
(192,'The League of Freethinkers ','Faydwer','The League of Freethinkers is a mysterious and loose-knit organization of hunters. Membership into this secret society is rare and only by invitation. They can be encountered throughout Norrath. What they hunt is unknown.',0,100,75), (192,'The League of Freethinkers ','Faydwer','The League of Freethinkers is a mysterious and loose-knit organization of hunters. Membership into this secret society is rare and only by invitation. They can be encountered throughout Norrath. What they hunt is unknown.',0,100,75),
(193,'Legion of Danak ','Kunark','The mighty Legion of Danak is under direct order of Dominus Ganak. They completely control the Danak Shipyard and its harbor. They are at constant war with the Ring of Scale.',0,100,75), (193,'Legion of Danak ','Kunark','The mighty Legion of Danak is under direct order of Dominus Ganak. They completely control the Danak Shipyard and its harbor. They are at constant war with the Ring of Scale.',0,100,75),
(194,'The Lost Children of Marr ','Kingdom of Sky','Taken by the young dragon Venekor to the Overrealm as prizes and servants, these frogloks have begun to slip from his grasp.',0,100,75), (194,'The Lost Children of Marr ','Kingdom of Sky','Taken by the young dragon Venekor to the Overrealm as prizes and servants, these frogloks have begun to slip from his grasp.',0,100,75),
(195,'The Lucanic Knights ','Shattered Lands','The Lucanic Knights are an order of elite knights who live to serve the Overlord of Freeport. These knights are rarely seen beyond the walls of the Twilight Citadel, Lucan\'s seat of power.',0,100,75), (195,'The Lucanic Knights ','Shattered Lands','The Lucanic Knights are an order of elite knights who live to serve the Overlord of Freeport. These knights are rarely seen beyond the walls of the Twilight Citadel, Lucan''s seat of power.',0,100,75),
(196,'The Lyrech ','Faydwer','The Lyrech are a splinter group of werewolves that refuse to serve Mistmoore and instead seek to control their own destiny.',0,100,75), (196,'The Lyrech ','Faydwer','The Lyrech are a splinter group of werewolves that refuse to serve Mistmoore and instead seek to control their own destiny.',0,100,75),
(197,'The Marked ','Shattered Lands','A secretive and silent group, the membership of the Marked seems to be entirely ratonga. While it is unknown what goals this group pursues, they will without a doubt bring trouble to the other races of Norrath.',0,100,50), (197,'The Marked ','Shattered Lands','A secretive and silent group, the membership of the Marked seems to be entirely ratonga. While it is unknown what goals this group pursues, they will without a doubt bring trouble to the other races of Norrath.',0,100,50),
(198,'Mistmoore ','Faydwer','The minions, agents and associates of Mayong Mistmoore, Dark Lord of the Loping Plains.',0,100,75), (198,'Mistmoore ','Faydwer','The minions, agents and associates of Mayong Mistmoore, Dark Lord of the Loping Plains.',0,100,75),
@ -208,12 +144,12 @@ INSERT INTO `factions` VALUES
(200,'Mountain Throms of Mok Island','Kunark','Reclusive and untrustworthy, the Mountain Throms of Mok Island are largely avoided by others.',0,100,75), (200,'Mountain Throms of Mok Island','Kunark','Reclusive and untrustworthy, the Mountain Throms of Mok Island are largely avoided by others.',0,100,75),
(201,'Muckflick Goblins ','Misc','',0,100,75), (201,'Muckflick Goblins ','Misc','',0,100,75),
(202,'The Myntr Tribe ','Faydwer','A tribe of Satyrs that live in the mountains above New Tunaria.',0,100,75), (202,'The Myntr Tribe ','Faydwer','A tribe of Satyrs that live in the mountains above New Tunaria.',0,100,75),
(203,'Myre\'Dal ','Faydwer','The Myre\'Dal outcasts that have come to realize what they are and are actively working to stop the process from happening to any others.',0,100,75), (203,'Myre''Dal ','Faydwer','The Myre''Dal outcasts that have come to realize what they are and are actively working to stop the process from happening to any others.',0,100,75),
(204,'The Mystic Guardians ','Island of Mara','The druidic creatures of the Mystic Guardians are devoted to protecting their surroundings from any sort of corruption that threatens the island of Mara.',0,100,75), (204,'The Mystic Guardians ','Island of Mara','The druidic creatures of the Mystic Guardians are devoted to protecting their surroundings from any sort of corruption that threatens the island of Mara.',0,100,75),
(205,'New Tunarian Citizens ','Faydwer','Citizens of New Tunaria.',0,100,75), (205,'New Tunarian Citizens ','Faydwer','Citizens of New Tunaria.',0,100,75),
(206,'The Nizari ','Island of Mara','',0,100,75), (206,'The Nizari ','Island of Mara','',0,100,75),
(207,'Nybright Family ','Faydwer','The Nybright sisters who established this camp in the Age of Turmoil have raised a new generation of thieves. From this base of operations, they make excursions into the Greater Faydark to steal supplies from Kelethin and from the camps of rival bandit clans. Since the rise of the Fay influence in this region discourages outsiders from entering the forest, the Nybrights have little fear of reprisal from outside forces.',0,100,75), (207,'Nybright Family ','Faydwer','The Nybright sisters who established this camp in the Age of Turmoil have raised a new generation of thieves. From this base of operations, they make excursions into the Greater Faydark to steal supplies from Kelethin and from the camps of rival bandit clans. Since the rise of the Fay influence in this region discourages outsiders from entering the forest, the Nybrights have little fear of reprisal from outside forces.',0,100,75),
(208,'Order of Arcane ','Faydwer','Science and magic combine in the Order\'s chambers, allowing its members to focus their energies on ancient studies to improve Growth and vitality.',0,100,75), (208,'Order of Arcane ','Faydwer','Science and magic combine in the Order''s chambers, allowing its members to focus their energies on ancient studies to improve Growth and vitality.',0,100,75),
(209,'The Order of Marr ','Shattered Lands','Not much is known of this ancient order that sprang from the early followers of the gods of Love and Valor, Mithaniel and Erollisi Marr.',0,100,75), (209,'The Order of Marr ','Shattered Lands','Not much is known of this ancient order that sprang from the early followers of the gods of Love and Valor, Mithaniel and Erollisi Marr.',0,100,75),
(210,'The Ortallians ','Desert of Ro','The Ortallians are a desert dwelling caste of fanatical followers of the Solusek Ro, a deity of flames. This small caste sprang ages ago from a crusade started by a valorous orc named Ortallius.',0,100,75), (210,'The Ortallians ','Desert of Ro','The Ortallians are a desert dwelling caste of fanatical followers of the Solusek Ro, a deity of flames. This small caste sprang ages ago from a crusade started by a valorous orc named Ortallius.',0,100,75),
(211,'Outer Sebilis Residents ','Kunark','',0,100,75), (211,'Outer Sebilis Residents ','Kunark','',0,100,75),
@ -222,17 +158,17 @@ INSERT INTO `factions` VALUES
(214,'The Qeynos Guard ','Shattered Lands','The Qeynos Guard is the valorous defensive force of the Kingdom of Qeynos. They defend the city and residents of not only Qeynos, but also any ally of Qeynos on the continent of Karana. ',0,100,75), (214,'The Qeynos Guard ','Shattered Lands','The Qeynos Guard is the valorous defensive force of the Kingdom of Qeynos. They defend the city and residents of not only Qeynos, but also any ally of Qeynos on the continent of Karana. ',0,100,75),
(215,'Quellious ','Deity','The favor of Quellious, the goddess of Tranquility.',0,100,75), (215,'Quellious ','Deity','The favor of Quellious, the goddess of Tranquility.',0,100,75),
(216,'Rallos Zek ','Misc','',0,100,75), (216,'Rallos Zek ','Misc','',0,100,75),
(217,'Residents of Teren\'s Grasp ','Kunark','The remnants of the Overthere and Firiona Vie that have banded together after the shattering by the will of Teren, their highelf Paladin leader.',0,100,75), (217,'Residents of Teren''s Grasp ','Kunark','The remnants of the Overthere and Firiona Vie that have banded together after the shattering by the will of Teren, their highelf Paladin leader.',0,100,75),
(218,'Riliss ','Kunark','The city of Riliss, home to General Rile and bastion of the Sathirian Empire within the Fens of Nathsar.',0,100,75), (218,'Riliss ','Kunark','The city of Riliss, home to General Rile and bastion of the Sathirian Empire within the Fens of Nathsar.',0,100,75),
(219,'Ring of Ratillik ','Misc','',0,100,75), (219,'Ring of Ratillik ','Misc','',0,100,75),
(220,'The Ring of Scale ','Misc','',0,100,75), (220,'The Ring of Scale ','Misc','',0,100,75),
(221,'Rodcet Nife ','Misc','',0,100,75), (221,'Rodcet Nife ','Misc','',0,100,75),
(222,'The Royal Antonican Guard ','Shattered Lands','The Royal Antonican Guard is the elite order that protects the ruler of Qeynos, Queen Antonia Bayle. These knights are rarely seen beyond the walls of Qeynos Castle. ',0,100,75), (222,'The Royal Antonican Guard ','Shattered Lands','The Royal Antonican Guard is the elite order that protects the ruler of Qeynos, Queen Antonia Bayle. These knights are rarely seen beyond the walls of Qeynos Castle. ',0,100,75),
(223,'Ry\'zilk\'s Renegades ','Kunark','',0,100,75), (223,'Ry''zilk''s Renegades ','Kunark','',0,100,75),
(224,'Sanctum of Scale ','Misc','',0,100,75), (224,'Sanctum of Scale ','Misc','',0,100,75),
(225,'The Sandscrawlers ','Desert of Ro','The Sandscrawlers are a clan of goblins located in the Pillars of Flame. They are terrible diplomats and tend to eat anything that they happen to kill.',0,100,75), (225,'The Sandscrawlers ','Desert of Ro','The Sandscrawlers are a clan of goblins located in the Pillars of Flame. They are terrible diplomats and tend to eat anything that they happen to kill.',0,100,75),
(226,'Sathirian ','Kunark','The residents and followers of Venril Sathir that reside within the newly rebuilt city of Sebilis.',0,100,75), (226,'Sathirian ','Kunark','The residents and followers of Venril Sathir that reside within the newly rebuilt city of Sebilis.',0,100,75),
(227,'The Sel\'Nok Brigade ','Kunark','This is a Division of the DiZok Legion that has hidden away in the Jarsath Wastes, looking for information. What information they search for is unknown at this point.',0,100,75), (227,'The Sel''Nok Brigade ','Kunark','This is a Division of the DiZok Legion that has hidden away in the Jarsath Wastes, looking for information. What information they search for is unknown at this point.',0,100,75),
(228,'Solusek Ro ','Misc','',0,100,75), (228,'Solusek Ro ','Misc','',0,100,75),
(229,'Sootfoot Goblins ','Misc','',0,100,75), (229,'Sootfoot Goblins ','Misc','',0,100,75),
(230,'Splitpaw Gnolls ','Misc','',0,100,75), (230,'Splitpaw Gnolls ','Misc','',0,100,75),
@ -243,11 +179,11 @@ INSERT INTO `factions` VALUES
(235,'Synod Reet ','Kunark','The remnants of the frogloks once enslaved by Trakanon have once again come under tyrannical rule by Venril Sathir. These frogloks have turned to Bertoxxulous for power with the hopes that disease will poison their masters and allow them freedom once more.',0,100,75), (235,'Synod Reet ','Kunark','The remnants of the frogloks once enslaved by Trakanon have once again come under tyrannical rule by Venril Sathir. These frogloks have turned to Bertoxxulous for power with the hopes that disease will poison their masters and allow them freedom once more.',0,100,75),
(236,'Tabernacle of Pain ','Kunark','',0,100,75), (236,'Tabernacle of Pain ','Kunark','',0,100,75),
(237,'The Temple of Scale ','Kingdom of Sky','The Temple of Scale is made up of the zealous religious followers of the Awakened. The leader of the Temple is Harla Dar, high priestess of this mysterious dragon clan dwelling in the clouds.',0,100,75), (237,'The Temple of Scale ','Kingdom of Sky','The Temple of Scale is made up of the zealous religious followers of the Awakened. The leader of the Temple is Harla Dar, high priestess of this mysterious dragon clan dwelling in the clouds.',0,100,75),
(238,'The Thalz\'Iz\'Zaz Lizardmen ','Misc','',0,100,75), (238,'The Thalz''Iz''Zaz Lizardmen ','Misc','',0,100,75),
(239,'Thulian Knights ','Shattered Lands','Crusaders of Fear, the amygdalans continue their directive to spread terror among all things.',0,100,75), (239,'Thulian Knights ','Shattered Lands','Crusaders of Fear, the amygdalans continue their directive to spread terror among all things.',0,100,75),
(240,'The Tribunal ','Misc','',0,100,75), (240,'The Tribunal ','Misc','',0,100,75),
(241,'Tunare ','Deity','The favor of Tunare, the goddess of Growth.',0,100,75), (241,'Tunare ','Deity','The favor of Tunare, the goddess of Growth.',0,100,75),
(242,'Tunare\'s Pages ','Faydwer','Nimble of mind and hand, the Fae\'s crafters bond together to work in harmony with one another and with nature.',0,100,75), (242,'Tunare''s Pages ','Faydwer','Nimble of mind and hand, the Fae''s crafters bond together to work in harmony with one another and with nature.',0,100,75),
(243,'The Tunarian Alliance ','Shattered Lands','Taking their name from the goddess of nature, the Tunarian Alliance act as the elite scouts of Qeynos and defenders of the laws of nature. They are comprised of rangers and druids from throughout the Shattered Lands. ',0,100,75), (243,'The Tunarian Alliance ','Shattered Lands','Taking their name from the goddess of nature, the Tunarian Alliance act as the elite scouts of Qeynos and defenders of the laws of nature. They are comprised of rangers and druids from throughout the Shattered Lands. ',0,100,75),
(244,'Underpaw Gnolls ','Misc','',0,100,75), (244,'Underpaw Gnolls ','Misc','',0,100,75),
(245,'The Watchers of Timorous ','Misc','',0,100,75), (245,'The Watchers of Timorous ','Misc','',0,100,75),
@ -255,10 +191,10 @@ INSERT INTO `factions` VALUES
(247,'The Windgazer ','Kingdom of Sky','The Windgazers are a small clan of Hooluks that live in seclusion within the isles of the Barren Sky. They hide themselves to avoid being constantly hunted by more aggressive and powerful aviak clans such as the Blacktalon and Strifewing.',0,100,75), (247,'The Windgazer ','Kingdom of Sky','The Windgazers are a small clan of Hooluks that live in seclusion within the isles of the Barren Sky. They hide themselves to avoid being constantly hunted by more aggressive and powerful aviak clans such as the Blacktalon and Strifewing.',0,100,75),
(248,'The Windsisters ','Desert of Ro','The Windsisters are a group of harpies dwelling in the Pillars of Flame. Be careful, as harpies are known to kill you just so they can eat your heart.',0,100,75), (248,'The Windsisters ','Desert of Ro','The Windsisters are a group of harpies dwelling in the Pillars of Flame. Be careful, as harpies are known to kill you just so they can eat your heart.',0,100,75),
(249,'Frogloks of Krupp','Kunark','The frogloks of Krupp have been enslaved by the Sathirian Empire, and are now traded as workers throughout Kunark.',0,100,75), (249,'Frogloks of Krupp','Kunark','The frogloks of Krupp have been enslaved by the Sathirian Empire, and are now traded as workers throughout Kunark.',0,100,75),
(250,'The Dreadnaughts','Shattered Lands','The Dreadnaughts are a brutal mob of bruisers who have dominated all other gangs within Freeport. Founded upon the principles of strength and intimidation, the Dreadnaughts act as the Overlord\'s enforcers to control the streets and alleyways of the city.',0,100,75), (250,'The Dreadnaughts','Shattered Lands','The Dreadnaughts are a brutal mob of bruisers who have dominated all other gangs within Freeport. Founded upon the principles of strength and intimidation, the Dreadnaughts act as the Overlord''s enforcers to control the streets and alleyways of the city.',0,100,75),
(251,'The Minions of Fear','Shattered Lands','The Minions of Fear are creatures that are brought forth from the Gate of Fear.',-10000,100,75), (251,'The Minions of Fear','Shattered Lands','The Minions of Fear are creatures that are brought forth from the Gate of Fear.',-10000,100,75),
(252,'Doomwing Legion','Kingdom of Sky','Located in the desolate wasteland of the Bonemire, the Doomwing Legion is led by the powerful dragon Lord Vyemm.',0,100,75), (252,'Doomwing Legion','Kingdom of Sky','Located in the desolate wasteland of the Bonemire, the Doomwing Legion is led by the powerful dragon Lord Vyemm.',0,100,75),
(253,'The Spirits of Marr','Shattered Lands','The Spirits of Marr were once a noble order known as the Knights of Truth. Slain by Sir Lucan D\'Lere and the Freeport Militia, their spirits have been bound eternally to the Freeport Graveyard.',0,100,75), (253,'The Spirits of Marr','Shattered Lands','The Spirits of Marr were once a noble order known as the Knights of Truth. Slain by Sir Lucan D''Lere and the Freeport Militia, their spirits have been bound eternally to the Freeport Graveyard.',0,100,75),
(254,'Arcanists of Tunaria','Faydwer','A sect of powerful mages and sorcerers that operate within New Tunaria.',0,100,75), (254,'Arcanists of Tunaria','Faydwer','A sect of powerful mages and sorcerers that operate within New Tunaria.',0,100,75),
(255,'Nuknok Clan','Shattered Lands','The Nuknok Clan of boarfiends in the Moors of Ykesha have an alliance with Clan Brokenskull.',0,100,75), (255,'Nuknok Clan','Shattered Lands','The Nuknok Clan of boarfiends in the Moors of Ykesha have an alliance with Clan Brokenskull.',0,100,75),
(256,'Anashti Sul','Misc','',0,100,75), (256,'Anashti Sul','Misc','',0,100,75),
@ -295,32 +231,18 @@ INSERT INTO `factions` VALUES
(341,'Othmir of Velious','Destiny of Velious','Othmir of Velious',0,100,75), (341,'Othmir of Velious','Destiny of Velious','Othmir of Velious',0,100,75),
(343,'The City of Thurgadin','Destiny of Velious','The City of Thurgadin',0,100,75), (343,'The City of Thurgadin','Destiny of Velious','The City of Thurgadin',0,100,75),
(345,'Snowfang Gnolls','Destiny of Velious','A typically peaceful tribe. The Snowfang gnolls have carved out their existence fishing in the frigid waters of the Icy Fingers. Their tranquil lifestyle has recently been shattered, however, by increasing attacks from undead pouring from the nearby Tower of Frozen Shadow.',0,100,75), (345,'Snowfang Gnolls','Destiny of Velious','A typically peaceful tribe. The Snowfang gnolls have carved out their existence fishing in the frigid waters of the Icy Fingers. Their tranquil lifestyle has recently been shattered, however, by increasing attacks from undead pouring from the nearby Tower of Frozen Shadow.',0,100,75),
(353,'Clan Thrael\'Gorr','Destiny of Velious','Enslaved for several generations, these former Ry\'Gorr orcs have all but forgotten the freedom and respect their Kromzek owners once gave them.',0,100,75), (353,'Clan Thrael''Gorr','Destiny of Velious','Enslaved for several generations, these former Ry''Gorr orcs have all but forgotten the freedom and respect their Kromzek owners once gave them.',0,100,75),
(354,'Ry\'Gorr Orcs','Misc','Makes orcs attack the guards on Pilgrims\' Landing',-50000,100,75), (354,'Ry''Gorr Orcs','Misc','Makes orcs attack the guards on Pilgrims'' Landing',-50000,100,75),
(355,'Ravens of the North','Shattered Lands','The association of artisans dedicated to establishing New Halas beside the shrine of Erollisi Marr. Each new building erected in New Halas and each new item crafted to build the city is a mark of pride to the Ravens of the North.',0,100,75), (355,'Ravens of the North','Shattered Lands','The association of artisans dedicated to establishing New Halas beside the shrine of Erollisi Marr. Each new building erected in New Halas and each new item crafted to build the city is a mark of pride to the Ravens of the North.',0,100,75),
(356,'Forest Ruins Academy','Generic','Spirits from the ruined academy off of old Qeynos. Still in pursuit of magic discoveries in the afterlife.',0,0,0), (356,'Forest Ruins Academy','Generic','Spirits from the ruined academy off of old Qeynos. Still in pursuit of magic discoveries in the afterlife.',0,0,0),
(357,'Guardians of the Forest Ruins','Generic','Forgotten elemental guardians within the old mage tower of Qeynos. They still protect the crumbled remains of whatever attempts to enter.',-50000,0,0), (357,'Guardians of the Forest Ruins','Generic','Forgotten elemental guardians within the old mage tower of Qeynos. They still protect the crumbled remains of whatever attempts to enter.',-50000,0,0),
(358,'Blackfurl Pirates','Generic','Blackfurl pirates landed on the shores near Qeynos\' old mage tower. They attempt to usurp control of the ruins during daylight hours.',-45000,0,0), (358,'Blackfurl Pirates','Generic','Blackfurl pirates landed on the shores near Qeynos'' old mage tower. They attempt to usurp control of the ruins during daylight hours.',-45000,0,0),
(359,'Hostile Animals','Generic','Hostile Animals to Passive Animals AND players',-50000,0,0), (359,'Hostile Animals','Generic','Hostile Animals to Passive Animals AND players',-50000,0,0),
(360,'Passive Animals','Generic','Passive Animals who are attacked by Hostile Animals',0,0,0), (360,'Passive Animals','Generic','Passive Animals who are attacked by Hostile Animals',0,0,0),
(361,'Threatening Animals','Generic','Hostile to Hostile Animals and Passive Animals, but indifferent to Players',0,0,0), (361,'Threatening Animals','Generic','Hostile to Hostile Animals and Passive Animals, but indifferent to Players',0,0,0),
(362,'The Giantslayers','Shattered Lands','The Giantslayers are a gang of brutish and strong-willed races who frequently claim territory in The Sprawl outside of the walls of Freeport. Their desire to claim more territory is at odds with the several other fledgling gangs in the area, but word has it The Overlord is watching them closely for uses of his own.',-25000,25000,75), (362,'The Giantslayers','Shattered Lands','The Giantslayers are a gang of brutish and strong-willed races who frequently claim territory in The Sprawl outside of the walls of Freeport. Their desire to claim more territory is at odds with the several other fledgling gangs in the area, but word has it The Overlord is watching them closely for uses of his own.',-25000,25000,75),
(363,'The Guttersnipes','Shattered Lands','The Guttersnipes are a fringe gang of human cutthroats who splintered off from Dervishes in the Commonlands. While mostly found in The Sprawl, they are often seen are troublemakers and at odds with the Freeport Militia. Rival gangs frequently challenge their ranks to make a name for themselves in Freeport. ',-25000,25000,75), (363,'The Guttersnipes','Shattered Lands','The Guttersnipes are a fringe gang of human cutthroats who splintered off from Dervishes in the Commonlands. While mostly found in The Sprawl, they are often seen are troublemakers and at odds with the Freeport Militia. Rival gangs frequently challenge their ranks to make a name for themselves in Freeport. ',-25000,25000,75),
(364,'The Black Magi','Shattered Lands','The Black Magi are a collective of Ratonga who rejected Freeport\'s Academy of Arcane Sciences for \r\nstudies in the dark arts. Lead by Shivo the Great, they have claimed old agricultural ruins of The Sprawl as their own with quick access to the cities sewers. Rival gangs in the area often try to upend Shivo and his followers, but their rudimentary grasp of magic has staved off many attacks.',-25000,25000,75), (364,'The Black Magi','Shattered Lands','The Black Magi are a collective of Ratonga who rejected Freeport''s Academy of Arcane Sciences for \r\nstudies in the dark arts. Lead by Shivo the Great, they have claimed old agricultural ruins of The Sprawl as their own with quick access to the cities sewers. Rival gangs in the area often try to upend Shivo and his followers, but their rudimentary grasp of magic has staved off many attacks.',-25000,25000,75),
(365,'The Bog Faerie Court','Shattered Lands','The Bog Faeries have long lived on the outskirts of Qeynos amongst the Peat Bog. While usually left to their own devices, their meddlesome pranks are often seen as a nuisance to citizens of the city. Rumor has it that their leader, Queen Ezeldra, condones this mischief as increasing numbers of adventurers trapse on their bog gardens and creatures.',39900,100,25), (365,'The Bog Faerie Court','Shattered Lands','The Bog Faeries have long lived on the outskirts of Qeynos amongst the Peat Bog. While usually left to their own devices, their meddlesome pranks are often seen as a nuisance to citizens of the city. Rumor has it that their leader, Queen Ezeldra, condones this mischief as increasing numbers of adventurers trapse on their bog gardens and creatures.',39900,100,25),
(366,'The Lonetusk Orcs','Shattered Lands','',-40000,20000,75), (366,'The Lonetusk Orcs','Shattered Lands','',-40000,20000,75),
(367,'The Brokentusk Orcs','Shattered Lands','',-40000,20000,75); (367,'The Brokentusk Orcs','Shattered Lands','',-40000,20000,75);
/*!40000 ALTER TABLE `factions` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,88 +1,9 @@
-- Table: `failed_jobs` DROP TABLE IF EXISTS failed_jobs;
USE `eq2emu`; CREATE TABLE failed_jobs (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
connection TEXT NOT NULL,
/*M!999999\- enable the sandbox mode */ queue TEXT NOT NULL,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) payload TEXT NOT NULL,
-- exception TEXT NOT NULL,
-- Host: localhost Database: eq2emu failed_at TEXT NOT NULL
-- ------------------------------------------------------ );
-- 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 `failed_jobs`
--
DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_jobs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`connection` text NOT NULL,
`queue` text NOT NULL,
`payload` longtext NOT NULL,
`exception` longtext NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE=InnoDB 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:04
/*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 `failed_jobs`
--
LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` 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:04
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,78 +1,14 @@
-- Table: `flight_paths` DROP TABLE IF EXISTS flight_paths;
USE `eq2emu`; CREATE TABLE flight_paths (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
zone_id INTEGER NOT NULL,
name TEXT NOT NULL,
speed REAL NOT NULL DEFAULT 0,
flying INTEGER NOT NULL DEFAULT 1,
early_dismount INTEGER NOT NULL DEFAULT 1
);
/*M!999999\- enable the sandbox mode */ INSERT INTO flight_paths VALUES
-- 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 `flight_paths`
--
DROP TABLE IF EXISTS `flight_paths`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `flight_paths` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`zone_id` int(10) unsigned NOT NULL,
`name` char(255) NOT NULL,
`speed` float NOT NULL DEFAULT 0,
`flying` tinyint(3) unsigned NOT NULL DEFAULT 1,
`early_dismount` tinyint(3) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1056 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:04
/*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 `flight_paths`
--
LOCK TABLES `flight_paths` WRITE;
/*!40000 ALTER TABLE `flight_paths` DISABLE KEYS */;
INSERT INTO `flight_paths` VALUES
(1,249,'Ant -> Thundermist',1,1,1), (1,249,'Ant -> Thundermist',1,1,1),
(2,249,'Thundermist -> Ant',1,1,1), (2,249,'Thundermist -> Ant',1,1,1),
(3,249,'Ant -> SE\r\n',1,1,1), (3,249,'Ant -> SE\r\n',1,1,1),
@ -931,17 +867,3 @@ INSERT INTO `flight_paths` VALUES
(1053,73,'SS Reparse 28',1,1,1), (1053,73,'SS Reparse 28',1,1,1),
(1054,73,'SS Reparse 29',1,1,0), (1054,73,'SS Reparse 29',1,1,0),
(1055,73,'SS Reparse 30',1,1,0); (1055,73,'SS Reparse 30',1,1,0);
/*!40000 ALTER TABLE `flight_paths` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,77 +1,13 @@
-- Table: `flight_paths_locations` DROP TABLE IF EXISTS flight_paths_locations;
USE `eq2emu`; CREATE TABLE flight_paths_locations (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
flight_path INTEGER NOT NULL DEFAULT 0,
x REAL NOT NULL DEFAULT 0,
y REAL NOT NULL DEFAULT 0,
z REAL NOT NULL DEFAULT 0
);
/*M!999999\- enable the sandbox mode */ INSERT INTO flight_paths_locations VALUES
-- 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 `flight_paths_locations`
--
DROP TABLE IF EXISTS `flight_paths_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `flight_paths_locations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`flight_path` int(10) unsigned NOT NULL DEFAULT 0,
`x` float NOT NULL DEFAULT 0,
`y` float NOT NULL DEFAULT 0,
`z` float NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=71238 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:05
/*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 `flight_paths_locations`
--
LOCK TABLES `flight_paths_locations` WRITE;
/*!40000 ALTER TABLE `flight_paths_locations` DISABLE KEYS */;
INSERT INTO `flight_paths_locations` VALUES
(1,1,171.697,2.59738,-867.047), (1,1,171.697,2.59738,-867.047),
(2,1,168.714,7.17404,-839.934), (2,1,168.714,7.17404,-839.934),
(3,1,159.587,8.03228,-820.317), (3,1,159.587,8.03228,-820.317),
@ -71310,17 +71246,3 @@ INSERT INTO `flight_paths_locations` VALUES
(71235,1055,-1458.72,-215.83,-393.34), (71235,1055,-1458.72,-215.83,-393.34),
(71236,1055,-1441.79,-222.43,-391.22), (71236,1055,-1441.79,-222.43,-391.22),
(71237,1055,-1436.85,-226.47,-380.33); (71237,1055,-1436.85,-226.47,-380.33);
/*!40000 ALTER TABLE `flight_paths_locations` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,80 +1,16 @@
-- Table: `groundspawn_items` DROP TABLE IF EXISTS groundspawn_items;
USE `eq2emu`; CREATE TABLE groundspawn_items (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
groundspawn_id INTEGER NOT NULL DEFAULT 1,
item_id INTEGER NOT NULL DEFAULT 0,
plus_rare_id INTEGER NOT NULL DEFAULT 0,
is_rare INTEGER NOT NULL DEFAULT 0,
grid_id INTEGER NOT NULL DEFAULT 0,
percent REAL NOT NULL DEFAULT 0
);
CREATE INDEX idx_groundspawn_items_item_id ON groundspawn_items(item_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO groundspawn_items VALUES
-- 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 `groundspawn_items`
--
DROP TABLE IF EXISTS `groundspawn_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `groundspawn_items` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`groundspawn_id` int(10) unsigned NOT NULL DEFAULT 1,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`plus_rare_id` int(10) unsigned NOT NULL DEFAULT 0,
`is_rare` tinyint(3) unsigned NOT NULL DEFAULT 0,
`grid_id` int(10) unsigned NOT NULL DEFAULT 0,
`percent` float unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `FK_item_groundspawns` (`item_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3372 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:05
/*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 `groundspawn_items`
--
LOCK TABLES `groundspawn_items` WRITE;
/*!40000 ALTER TABLE `groundspawn_items` DISABLE KEYS */;
INSERT INTO `groundspawn_items` VALUES
(1,1,3280,0,0,0,0), (1,1,3280,0,0,0,0),
(2,2,11280,15359,0,0,0), (2,2,11280,15359,0,0,0),
(3,2,14739,0,0,0,0), (3,2,14739,0,0,0,0),
@ -3396,17 +3332,3 @@ INSERT INTO `groundspawn_items` VALUES
(3369,238,11260,0,0,0,0), (3369,238,11260,0,0,0,0),
(3370,238,11259,0,0,0,0), (3370,238,11259,0,0,0,0),
(3371,238,11244,0,0,0,0); (3371,238,11244,0,0,0,0);
/*!40000 ALTER TABLE `groundspawn_items` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,86 +1,22 @@
-- Table: `groundspawns` DROP TABLE IF EXISTS groundspawns;
USE `eq2emu`; CREATE TABLE groundspawns (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
groundspawn_id INTEGER NOT NULL DEFAULT 0,
min_skill_level INTEGER NOT NULL DEFAULT 1,
min_adventure_level INTEGER NOT NULL DEFAULT 0,
bonus_table INTEGER NOT NULL DEFAULT 0,
harvest1 REAL NOT NULL DEFAULT 70,
harvest3 REAL NOT NULL DEFAULT 20,
harvest5 REAL NOT NULL DEFAULT 8,
harvest_imbue REAL NOT NULL DEFAULT 1,
harvest_rare REAL NOT NULL DEFAULT 0.7,
harvest10 REAL NOT NULL DEFAULT 0.3,
harvest_coin INTEGER NOT NULL DEFAULT 0,
enabled INTEGER NOT NULL DEFAULT 1,
tablename TEXT
);
/*M!999999\- enable the sandbox mode */ INSERT INTO groundspawns VALUES
-- 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 `groundspawns`
--
DROP TABLE IF EXISTS `groundspawns`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `groundspawns` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`groundspawn_id` int(10) unsigned NOT NULL DEFAULT 0,
`min_skill_level` smallint(5) unsigned NOT NULL DEFAULT 1,
`min_adventure_level` smallint(5) unsigned NOT NULL DEFAULT 0,
`bonus_table` tinyint(1) unsigned NOT NULL DEFAULT 0,
`harvest1` float NOT NULL DEFAULT 70,
`harvest3` float NOT NULL DEFAULT 20,
`harvest5` float NOT NULL DEFAULT 8,
`harvest_imbue` float NOT NULL DEFAULT 1,
`harvest_rare` float NOT NULL DEFAULT 0.7,
`harvest10` float NOT NULL DEFAULT 0.3,
`harvest_coin` int(10) unsigned NOT NULL DEFAULT 0,
`enabled` tinyint(1) unsigned NOT NULL DEFAULT 1,
`tablename` varchar(64) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=239 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:05
/*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 `groundspawns`
--
LOCK TABLES `groundspawns` WRITE;
/*!40000 ALTER TABLE `groundspawns` DISABLE KEYS */;
INSERT INTO `groundspawns` VALUES
(1,1,0,0,0,100,0,0,0,0,0,0,1,'SunkenCityShinys'), (1,1,0,0,0,100,0,0,0,0,0,0,1,'SunkenCityShinys'),
(2,2,0,0,167,99,0,0,0,1,0,0,1,'DenT1'), (2,2,0,0,167,99,0,0,0,1,0,0,1,'DenT1'),
(3,3,0,0,0,99,0,0,0,1,0,0,1,'StoneT1'), (3,3,0,0,0,99,0,0,0,1,0,0,1,'StoneT1'),
@ -319,17 +255,3 @@ INSERT INTO `groundspawns` VALUES
(236,236,45,0,0,99,0,0,0,1,0,0,1,'DenT2-Classic-Antonica'), (236,236,45,0,0,99,0,0,0,1,0,0,1,'DenT2-Classic-Antonica'),
(237,237,45,0,0,99,0,0,0,1,0,0,1,'DenT2-Classic-Commonlands'), (237,237,45,0,0,99,0,0,0,1,0,0,1,'DenT2-Classic-Commonlands'),
(238,238,45,0,0,99,0,0,0,1,0,0,1,'BushT2-Classic-Commonlands'); (238,238,45,0,0,99,0,0,0,1,0,0,1,'BushT2-Classic-Commonlands');
/*!40000 ALTER TABLE `groundspawns` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,57 +1,11 @@
-- Table: `guild_colors` DROP TABLE IF EXISTS guild_colors;
USE `eq2emu`; CREATE TABLE guild_colors (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
guild_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ color_type TEXT,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) red REAL NOT NULL DEFAULT 0,
-- green REAL NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu blue REAL NOT NULL DEFAULT 0,
-- ------------------------------------------------------ UNIQUE(guild_id, color_type),
-- Server version 10.11.11-MariaDB-0+deb12u1 FOREIGN KEY (guild_id) REFERENCES guilds(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*!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 `guild_colors`
--
DROP TABLE IF EXISTS `guild_colors`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `guild_colors` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`guild_id` int(10) unsigned NOT NULL DEFAULT 0,
`color_type` enum('Emblem','Edge','Pattern') DEFAULT NULL,
`red` float NOT NULL DEFAULT 0,
`green` float NOT NULL DEFAULT 0,
`blue` float NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `GuildColorIDX` (`guild_id`,`color_type`),
CONSTRAINT `FK_guild_colors` FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB 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:05
-- (data omitted for guild_colors)
ALTER TABLE `guild_colors` AUTO_INCREMENT = 1;
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,78 +1,14 @@
-- Table: `guild_event_defaults` DROP TABLE IF EXISTS guild_event_defaults;
USE `eq2emu`; CREATE TABLE guild_event_defaults (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
event_id INTEGER NOT NULL,
event_name TEXT NOT NULL DEFAULT '',
retain INTEGER NOT NULL DEFAULT 1,
broadcast INTEGER NOT NULL DEFAULT 1,
UNIQUE(event_id, event_name)
);
/*M!999999\- enable the sandbox mode */ INSERT INTO guild_event_defaults VALUES
-- 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 `guild_event_defaults`
--
DROP TABLE IF EXISTS `guild_event_defaults`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `guild_event_defaults` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`event_id` tinyint(3) unsigned NOT NULL,
`event_name` varchar(100) NOT NULL DEFAULT '',
`retain` tinyint(1) unsigned NOT NULL DEFAULT 1,
`broadcast` tinyint(1) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `EventNameIDX` (`event_id`,`event_name`)
) ENGINE=InnoDB AUTO_INCREMENT=91 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:05
/*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 `guild_event_defaults`
--
LOCK TABLES `guild_event_defaults` WRITE;
/*!40000 ALTER TABLE `guild_event_defaults` DISABLE KEYS */;
INSERT INTO `guild_event_defaults` VALUES
(1,0,'GUILD_EVENT_GUILD_LEVEL_UP',1,1), (1,0,'GUILD_EVENT_GUILD_LEVEL_UP',1,1),
(2,1,'GUILD_EVENT_GUILD_LEVEL_DOWN',1,1), (2,1,'GUILD_EVENT_GUILD_LEVEL_DOWN',1,1),
(3,2,'GUILD_EVENT_DISCOVERS_ITEM',1,1), (3,2,'GUILD_EVENT_DISCOVERS_ITEM',1,1),
@ -163,17 +99,3 @@ INSERT INTO `guild_event_defaults` VALUES
(88,90,'GUILD_EVENT_GAINS_AA_181_190',1,1), (88,90,'GUILD_EVENT_GAINS_AA_181_190',1,1),
(89,91,'GUILD_EVENT_GAINS_AA_191_200',1,1), (89,91,'GUILD_EVENT_GAINS_AA_191_200',1,1),
(90,92,'GUILD_EVENT_EARNS_ACHIEVEMENT',1,1); (90,92,'GUILD_EVENT_EARNS_ACHIEVEMENT',1,1);
/*!40000 ALTER TABLE `guild_event_defaults` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,56 +1,10 @@
-- Table: `guild_event_filters` DROP TABLE IF EXISTS guild_event_filters;
USE `eq2emu`; CREATE TABLE guild_event_filters (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
guild_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ event_id INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) retain INTEGER NOT NULL DEFAULT 1,
-- broadcast INTEGER NOT NULL DEFAULT 1,
-- Host: localhost Database: eq2emu UNIQUE(guild_id, event_id),
-- ------------------------------------------------------ FOREIGN KEY (guild_id) REFERENCES guilds(id) ON DELETE CASCADE ON UPDATE CASCADE
-- 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 `guild_event_filters`
--
DROP TABLE IF EXISTS `guild_event_filters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `guild_event_filters` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`guild_id` int(10) unsigned NOT NULL DEFAULT 0,
`event_id` int(10) unsigned NOT NULL DEFAULT 0,
`retain` tinyint(1) unsigned NOT NULL DEFAULT 1,
`broadcast` tinyint(1) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `FilterEventIDX` (`guild_id`,`event_id`),
CONSTRAINT `FK_guild_event_filters` FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1489 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:05
-- (data omitted for guild_event_filters)
ALTER TABLE `guild_event_filters` AUTO_INCREMENT = 1;
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,61 +1,15 @@
-- Table: `guild_events` DROP TABLE IF EXISTS guild_events;
USE `eq2emu`; CREATE TABLE guild_events (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
guild_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ event_id INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) event_date INTEGER NOT NULL DEFAULT 0,
-- event_type INTEGER NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu description TEXT NOT NULL,
-- ------------------------------------------------------ display INTEGER NOT NULL DEFAULT 0,
-- Server version 10.11.11-MariaDB-0+deb12u1 locked INTEGER NOT NULL DEFAULT 0,
archived INTEGER NOT NULL DEFAULT 0,
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; UNIQUE(guild_id, event_id),
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; FOREIGN KEY (guild_id) REFERENCES guilds(id) ON DELETE CASCADE ON UPDATE CASCADE
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; );
/*!40101 SET NAMES utf8mb4 */; CREATE INDEX idx_guild_events_event_date ON guild_events(event_date);
/*!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 `guild_events`
--
DROP TABLE IF EXISTS `guild_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `guild_events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`guild_id` int(10) unsigned NOT NULL DEFAULT 0,
`event_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`event_date` int(10) unsigned NOT NULL DEFAULT 0,
`event_type` smallint(5) unsigned NOT NULL DEFAULT 0,
`description` text NOT NULL,
`display` tinyint(1) unsigned NOT NULL DEFAULT 0,
`locked` tinyint(1) unsigned NOT NULL DEFAULT 0,
`archived` tinyint(1) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `GuildIDX` (`guild_id`,`event_id`),
KEY `EventDateIDX` (`event_date`),
CONSTRAINT `FK_guild_events` FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2814 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:05
-- (data omitted for guild_events)
ALTER TABLE `guild_events` AUTO_INCREMENT = 1;
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,66 +1,20 @@
-- Table: `guild_members` DROP TABLE IF EXISTS guild_members;
USE `eq2emu`; CREATE TABLE guild_members (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
guild_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ char_id INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) recruiter_id INTEGER NOT NULL DEFAULT 0,
-- guild_status INTEGER NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu points REAL NOT NULL DEFAULT 0,
-- ------------------------------------------------------ rank_id INTEGER NOT NULL DEFAULT 7,
-- Server version 10.11.11-MariaDB-0+deb12u1 member_flags INTEGER NOT NULL DEFAULT 0,
join_date INTEGER NOT NULL DEFAULT 0,
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; note TEXT,
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; officer_note TEXT,
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; recruiting_message TEXT,
/*!40101 SET NAMES utf8mb4 */; recruiter_picture_data BLOB,
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; UNIQUE(guild_id, char_id),
/*!40103 SET TIME_ZONE='+00:00' */; FOREIGN KEY (guild_id) REFERENCES guilds(id) ON DELETE CASCADE ON UPDATE CASCADE,
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; FOREIGN KEY (char_id) REFERENCES characters(id) ON DELETE CASCADE ON UPDATE CASCADE
/*!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' */; CREATE INDEX idx_guild_members_char_id ON guild_members(char_id);
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `guild_members`
--
DROP TABLE IF EXISTS `guild_members`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `guild_members` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`guild_id` int(10) unsigned NOT NULL DEFAULT 0,
`char_id` int(10) unsigned NOT NULL DEFAULT 0,
`recruiter_id` int(10) unsigned NOT NULL DEFAULT 0,
`guild_status` int(10) unsigned NOT NULL DEFAULT 0,
`points` float NOT NULL DEFAULT 0,
`rank_id` tinyint(3) unsigned NOT NULL DEFAULT 7,
`member_flags` tinyint(3) unsigned NOT NULL DEFAULT 0,
`join_date` int(10) unsigned NOT NULL DEFAULT 0,
`note` varchar(250) DEFAULT NULL,
`officer_note` varchar(250) DEFAULT NULL,
`recruiting_message` varchar(512) DEFAULT NULL,
`recruiter_picture_data` blob DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `GuildCharIDX` (`guild_id`,`char_id`),
KEY `FK_guild_members2` (`char_id`),
CONSTRAINT `FK_guild_members1` FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_guild_members2` FOREIGN KEY (`char_id`) REFERENCES `characters` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=67762 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:05
-- (data omitted for guild_members)
ALTER TABLE `guild_members` AUTO_INCREMENT = 1;
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,93 +1,14 @@
-- Table: `guild_points_history` DROP TABLE IF EXISTS guild_points_history;
USE `eq2emu`; CREATE TABLE guild_points_history (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
guild_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ char_id INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) points_date INTEGER NOT NULL DEFAULT 0,
-- modified_by TEXT NOT NULL DEFAULT '',
-- Host: localhost Database: eq2emu comment TEXT,
-- ------------------------------------------------------ points REAL NOT NULL DEFAULT 0,
-- Server version 10.11.11-MariaDB-0+deb12u1 FOREIGN KEY (guild_id) REFERENCES guilds(id) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (char_id) REFERENCES characters(id) ON DELETE CASCADE ON UPDATE CASCADE
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; );
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; CREATE INDEX idx_guild_points_history_guild_char ON guild_points_history(guild_id, char_id);
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; CREATE INDEX idx_guild_points_history_char_id ON guild_points_history(char_id);
/*!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 `guild_points_history`
--
DROP TABLE IF EXISTS `guild_points_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `guild_points_history` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`guild_id` int(10) unsigned NOT NULL DEFAULT 0,
`char_id` int(10) unsigned NOT NULL DEFAULT 0,
`points_date` int(10) unsigned NOT NULL DEFAULT 0,
`modified_by` varchar(64) NOT NULL DEFAULT '',
`comment` text DEFAULT NULL,
`points` float NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `GuildCharIDX` (`guild_id`,`char_id`),
KEY `FK_char_points_history` (`char_id`),
CONSTRAINT `FK_char_points_history` FOREIGN KEY (`char_id`) REFERENCES `characters` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_guild_points_history` FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB 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:05
/*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 `guild_points_history`
--
LOCK TABLES `guild_points_history` WRITE;
/*!40000 ALTER TABLE `guild_points_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `guild_points_history` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,57 +1,11 @@
-- Table: `guild_ranks` DROP TABLE IF EXISTS guild_ranks;
USE `eq2emu`; CREATE TABLE guild_ranks (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
guild_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ rank_id INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) rank_name TEXT NOT NULL,
-- permission1 INTEGER NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu permission2 INTEGER NOT NULL DEFAULT 0,
-- ------------------------------------------------------ UNIQUE(guild_id, rank_id),
-- Server version 10.11.11-MariaDB-0+deb12u1 FOREIGN KEY (guild_id) REFERENCES guilds(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*!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 `guild_ranks`
--
DROP TABLE IF EXISTS `guild_ranks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `guild_ranks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`guild_id` int(10) unsigned NOT NULL DEFAULT 0,
`rank_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
`rank_name` varchar(64) NOT NULL,
`permission1` int(10) unsigned NOT NULL DEFAULT 0,
`permission2` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `GuildRankIDX` (`guild_id`,`rank_id`),
CONSTRAINT `FK_guild_ranks` FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=153 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:05
-- (data omitted for guild_ranks)
ALTER TABLE `guild_ranks` AUTO_INCREMENT = 1;
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,78 +1,13 @@
-- Table: `guild_ranks_defaults` DROP TABLE IF EXISTS guild_ranks_defaults;
USE `eq2emu`; CREATE TABLE guild_ranks_defaults (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
rank_id INTEGER NOT NULL DEFAULT 0,
rank_name TEXT NOT NULL UNIQUE,
permission1 INTEGER NOT NULL DEFAULT 0,
permission2 INTEGER NOT NULL DEFAULT 0
);
/*M!999999\- enable the sandbox mode */ INSERT INTO guild_ranks_defaults VALUES
-- 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 `guild_ranks_defaults`
--
DROP TABLE IF EXISTS `guild_ranks_defaults`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `guild_ranks_defaults` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`rank_id` int(10) unsigned NOT NULL DEFAULT 0,
`rank_name` varchar(250) NOT NULL,
`permission1` int(10) unsigned NOT NULL DEFAULT 0,
`permission2` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `RankNameIDX` (`rank_name`)
) ENGINE=InnoDB 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:05
/*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 `guild_ranks_defaults`
--
LOCK TABLES `guild_ranks_defaults` WRITE;
/*!40000 ALTER TABLE `guild_ranks_defaults` DISABLE KEYS */;
INSERT INTO `guild_ranks_defaults` VALUES
(1,0,'Leader',4294967295,4294967295), (1,0,'Leader',4294967295,4294967295),
(2,1,'Senior Officer',4294967295,4294967295), (2,1,'Senior Officer',4294967295,4294967295),
(3,2,'Officer',6320242,0), (3,2,'Officer',6320242,0),
@ -81,17 +16,3 @@ INSERT INTO `guild_ranks_defaults` VALUES
(6,5,'Junior Member',24576,0), (6,5,'Junior Member',24576,0),
(7,6,'Initiate',24576,0), (7,6,'Initiate',24576,0),
(8,7,'Recruit',24576,0); (8,7,'Recruit',24576,0);
/*!40000 ALTER TABLE `guild_ranks_defaults` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,62 +1,15 @@
-- Table: `guild_recruiting` DROP TABLE IF EXISTS guild_recruiting;
USE `eq2emu`; CREATE TABLE guild_recruiting (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
guild_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
/*M!999999\- enable the sandbox mode */ short_desc TEXT NOT NULL DEFAULT '',
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) full_desc TEXT,
-- min_level INTEGER NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu play_style INTEGER NOT NULL DEFAULT 0,
-- ------------------------------------------------------ looking_for INTEGER NOT NULL DEFAULT 0,
-- Server version 10.11.11-MariaDB-0+deb12u1 descriptive_tag1 INTEGER NOT NULL DEFAULT 0,
descriptive_tag2 INTEGER NOT NULL DEFAULT 0,
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; descriptive_tag3 INTEGER NOT NULL DEFAULT 0,
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; descriptive_tag4 INTEGER NOT NULL DEFAULT 0,
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; FOREIGN KEY (guild_id) REFERENCES guilds(id) ON DELETE CASCADE ON UPDATE CASCADE
/*!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 `guild_recruiting`
--
DROP TABLE IF EXISTS `guild_recruiting`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `guild_recruiting` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`guild_id` int(10) unsigned NOT NULL DEFAULT 0,
`short_desc` varchar(250) NOT NULL DEFAULT '',
`full_desc` text DEFAULT NULL,
`min_level` tinyint(3) unsigned NOT NULL DEFAULT 0,
`play_style` tinyint(3) unsigned NOT NULL DEFAULT 0,
`looking_for` tinyint(3) unsigned NOT NULL DEFAULT 0,
`descriptive_tag1` tinyint(3) unsigned NOT NULL DEFAULT 0,
`descriptive_tag2` tinyint(3) unsigned NOT NULL DEFAULT 0,
`descriptive_tag3` tinyint(3) unsigned NOT NULL DEFAULT 0,
`descriptive_tag4` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `GuildIDX` (`guild_id`),
CONSTRAINT `FK_guild_recruiting` FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=21 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:05
-- (data omitted for guild_recruiting)
ALTER TABLE `guild_recruiting` AUTO_INCREMENT = 1;
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,57 +1,10 @@
-- Table: `guilds` DROP TABLE IF EXISTS guilds;
USE `eq2emu`; CREATE TABLE guilds (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
name TEXT NOT NULL DEFAULT '' UNIQUE,
/*M!999999\- enable the sandbox mode */ motd TEXT,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) level INTEGER NOT NULL DEFAULT 1,
-- xp INTEGER NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu xp_needed INTEGER NOT NULL DEFAULT 0,
-- ------------------------------------------------------ formed_on INTEGER NOT NULL DEFAULT 0
-- 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 `guilds`
--
DROP TABLE IF EXISTS `guilds`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `guilds` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL DEFAULT '',
`motd` text DEFAULT NULL,
`level` tinyint(3) unsigned NOT NULL DEFAULT 1,
`xp` bigint(20) unsigned NOT NULL DEFAULT 0,
`xp_needed` bigint(20) unsigned NOT NULL DEFAULT 0,
`formed_on` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `GuildNameIDX` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=20 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:05
-- (data omitted for guilds)
ALTER TABLE `guilds` AUTO_INCREMENT = 1;
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,89 +1,25 @@
-- Table: `heroic_ops` DROP TABLE IF EXISTS heroic_ops;
USE `eq2emu`; CREATE TABLE heroic_ops (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
ho_type TEXT NOT NULL DEFAULT 'Starter',
name TEXT,
starter_link_id INTEGER NOT NULL DEFAULT 0,
starter_class INTEGER NOT NULL DEFAULT 0,
enhancer_class INTEGER NOT NULL DEFAULT 0,
starter_icon INTEGER NOT NULL DEFAULT 65535,
chain_order INTEGER NOT NULL DEFAULT 0,
shift_icon INTEGER NOT NULL DEFAULT 41,
spell_id INTEGER NOT NULL DEFAULT 0,
chance REAL NOT NULL DEFAULT 0,
ability1 INTEGER NOT NULL DEFAULT 65535,
ability2 INTEGER NOT NULL DEFAULT 65535,
ability3 INTEGER NOT NULL DEFAULT 65535,
ability4 INTEGER NOT NULL DEFAULT 65535,
ability5 INTEGER NOT NULL DEFAULT 65535,
ability6 INTEGER NOT NULL DEFAULT 65535
);
/*M!999999\- enable the sandbox mode */ INSERT INTO heroic_ops VALUES
-- 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 `heroic_ops`
--
DROP TABLE IF EXISTS `heroic_ops`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `heroic_ops` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ho_type` enum('Starter','Wheel') NOT NULL DEFAULT 'Starter',
`name` varchar(64) DEFAULT NULL,
`starter_link_id` int(10) unsigned NOT NULL DEFAULT 0,
`starter_class` tinyint(3) unsigned NOT NULL DEFAULT 0,
`enhancer_class` bigint(30) NOT NULL DEFAULT 0,
`starter_icon` smallint(5) unsigned NOT NULL DEFAULT 65535,
`chain_order` tinyint(3) unsigned NOT NULL DEFAULT 0,
`shift_icon` smallint(5) unsigned NOT NULL DEFAULT 41,
`spell_id` int(10) unsigned NOT NULL DEFAULT 0,
`chance` float unsigned NOT NULL DEFAULT 0,
`ability1` smallint(5) unsigned NOT NULL DEFAULT 65535,
`ability2` smallint(5) unsigned NOT NULL DEFAULT 65535,
`ability3` smallint(5) unsigned NOT NULL DEFAULT 65535,
`ability4` smallint(5) unsigned NOT NULL DEFAULT 65535,
`ability5` smallint(5) unsigned NOT NULL DEFAULT 65535,
`ability6` smallint(5) unsigned NOT NULL DEFAULT 65535,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=611 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:05
/*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 `heroic_ops`
--
LOCK TABLES `heroic_ops` WRITE;
/*!40000 ALTER TABLE `heroic_ops` DISABLE KEYS */;
INSERT INTO `heroic_ops` VALUES
(1,'Starter',NULL,0,21,0,26,0,0,0,0,25,65535,65535,65535,65535,65535), (1,'Starter',NULL,0,21,0,26,0,0,0,0,25,65535,65535,65535,65535,65535),
(2,'Starter',NULL,0,21,2147483648,26,0,0,0,0,41,65535,65535,65535,65535,65535), (2,'Starter',NULL,0,21,2147483648,26,0,0,0,0,41,65535,65535,65535,65535,65535),
(3,'Starter',NULL,0,21,2048,26,0,0,0,0,14,65535,65535,65535,65535,65535), (3,'Starter',NULL,0,21,2048,26,0,0,0,0,14,65535,65535,65535,65535,65535),
@ -155,17 +91,3 @@ INSERT INTO `heroic_ops` VALUES
(514,'Wheel',NULL,7,0,2099200,0,1,41,5191,30,15,5,28,65535,65535,65535), (514,'Wheel',NULL,7,0,2099200,0,1,41,5191,30,15,5,28,65535,65535,65535),
(515,'Wheel',NULL,7,0,2099200,0,0,41,5234,10,0,28,14,65535,65535,65535), (515,'Wheel',NULL,7,0,2099200,0,0,41,5234,10,0,28,14,65535,65535,65535),
(516,'Wheel',NULL,7,0,2099200,0,1,41,5183,70,28,3,14,65535,65535,65535); (516,'Wheel',NULL,7,0,2099200,0,1,41,5183,70,28,3,14,65535,65535,65535);
/*!40000 ALTER TABLE `heroic_ops` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,90 +1,11 @@
-- Table: `ho_starter_chains` DROP TABLE IF EXISTS ho_starter_chains;
USE `eq2emu`; CREATE TABLE ho_starter_chains (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
starter_class INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ first_ability INTEGER NOT NULL DEFAULT 65535,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) second_ability INTEGER NOT NULL DEFAULT 65535,
-- third_ability INTEGER NOT NULL DEFAULT 65535,
-- Host: localhost Database: eq2emu fourth_ability INTEGER NOT NULL DEFAULT 65535,
-- ------------------------------------------------------ fifth_ability INTEGER NOT NULL DEFAULT 65535,
-- Server version 10.11.11-MariaDB-0+deb12u1 sixth_ability INTEGER NOT NULL DEFAULT 65535
);
/*!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 `ho_starter_chains`
--
DROP TABLE IF EXISTS `ho_starter_chains`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ho_starter_chains` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`starter_class` tinyint(3) unsigned NOT NULL DEFAULT 0,
`first_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
`second_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
`third_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
`fourth_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
`fifth_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
`sixth_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
PRIMARY KEY (`id`)
) ENGINE=InnoDB 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:05
/*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 `ho_starter_chains`
--
LOCK TABLES `ho_starter_chains` WRITE;
/*!40000 ALTER TABLE `ho_starter_chains` DISABLE KEYS */;
/*!40000 ALTER TABLE `ho_starter_chains` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,96 +1,17 @@
-- Table: `ho_wheel` DROP TABLE IF EXISTS ho_wheel;
USE `eq2emu`; CREATE TABLE ho_wheel (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
starter_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ order INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) spell_id INTEGER NOT NULL DEFAULT 0,
-- first_ability INTEGER NOT NULL DEFAULT 65535,
-- Host: localhost Database: eq2emu second_ability INTEGER NOT NULL DEFAULT 65535,
-- ------------------------------------------------------ third_ability INTEGER NOT NULL DEFAULT 65535,
-- Server version 10.11.11-MariaDB-0+deb12u1 fourth_ability INTEGER NOT NULL DEFAULT 65535,
fifth_ability INTEGER NOT NULL DEFAULT 65535,
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; sixth_ability INTEGER NOT NULL DEFAULT 65535,
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; FOREIGN KEY (starter_id) REFERENCES ho_starter_chains(id) ON DELETE CASCADE ON UPDATE CASCADE,
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; FOREIGN KEY (spell_id) REFERENCES spells(id)
/*!40101 SET NAMES utf8mb4 */; );
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; CREATE INDEX idx_ho_wheel_starter_id ON ho_wheel(starter_id);
/*!40103 SET TIME_ZONE='+00:00' */; CREATE INDEX idx_ho_wheel_spell_id ON ho_wheel(spell_id);
/*!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 `ho_wheel`
--
DROP TABLE IF EXISTS `ho_wheel`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ho_wheel` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`starter_id` int(10) unsigned NOT NULL DEFAULT 0,
`order` tinyint(3) unsigned NOT NULL DEFAULT 0,
`spell_id` int(10) unsigned NOT NULL DEFAULT 0,
`first_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
`second_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
`third_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
`fourth_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
`fifth_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
`sixth_ability` smallint(5) unsigned NOT NULL DEFAULT 65535,
PRIMARY KEY (`id`),
KEY `FK_Starter` (`starter_id`),
KEY `FK_Spell` (`spell_id`),
CONSTRAINT `FK_Spell` FOREIGN KEY (`spell_id`) REFERENCES `spells` (`id`),
CONSTRAINT `FK_Starter` FOREIGN KEY (`starter_id`) REFERENCES `ho_starter_chains` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB 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:05
/*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 `ho_wheel`
--
LOCK TABLES `ho_wheel` WRITE;
/*!40000 ALTER TABLE `ho_wheel` DISABLE KEYS */;
/*!40000 ALTER TABLE `ho_wheel` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,87 +1,23 @@
-- Table: `houses` DROP TABLE IF EXISTS houses;
USE `eq2emu`; CREATE TABLE houses (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
name TEXT NOT NULL DEFAULT '0',
cost_coins INTEGER NOT NULL DEFAULT 0,
cost_status INTEGER NOT NULL DEFAULT 0,
upkeep_coins INTEGER NOT NULL DEFAULT 0,
upkeep_status INTEGER NOT NULL DEFAULT 0,
vault_slots INTEGER NOT NULL DEFAULT 0,
alignment INTEGER NOT NULL DEFAULT 0,
guild_level INTEGER NOT NULL DEFAULT 0,
zone_id INTEGER NOT NULL DEFAULT 0,
exit_zone_id INTEGER NOT NULL DEFAULT 0,
exit_x REAL NOT NULL DEFAULT 0,
exit_y REAL NOT NULL DEFAULT 0,
exit_z REAL NOT NULL DEFAULT 0,
exit_heading REAL NOT NULL DEFAULT 0
);
/*M!999999\- enable the sandbox mode */ INSERT INTO houses VALUES
-- 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 `houses`
--
DROP TABLE IF EXISTS `houses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `houses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` char(64) NOT NULL DEFAULT '0',
`cost_coins` bigint(20) unsigned NOT NULL DEFAULT 0,
`cost_status` int(10) unsigned NOT NULL DEFAULT 0,
`upkeep_coins` bigint(20) unsigned NOT NULL DEFAULT 0,
`upkeep_status` int(10) unsigned NOT NULL DEFAULT 0,
`vault_slots` tinyint(3) unsigned NOT NULL DEFAULT 0,
`alignment` tinyint(3) unsigned NOT NULL DEFAULT 0,
`guild_level` tinyint(3) unsigned NOT NULL DEFAULT 0,
`zone_id` int(10) unsigned NOT NULL DEFAULT 0,
`exit_zone_id` int(10) NOT NULL DEFAULT 0,
`exit_x` float NOT NULL DEFAULT 0,
`exit_y` float NOT NULL DEFAULT 0,
`exit_z` float NOT NULL DEFAULT 0,
`exit_heading` float NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=217 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:05
/*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 `houses`
--
LOCK TABLES `houses` WRITE;
/*!40000 ALTER TABLE `houses` DISABLE KEYS */;
INSERT INTO `houses` VALUES
(1,'Valor Homesteads',0,0,500,0,6,1,0,501,470,-291.36,175.78,-95.34,171.58), (1,'Valor Homesteads',0,0,500,0,6,1,0,501,470,-291.36,175.78,-95.34,171.58),
(2,'New Halas Magical Manor',0,0,0,0,6,1,0,503,470,-365.85,173.29,-77.23,228.77), (2,'New Halas Magical Manor',0,0,0,0,6,1,0,503,470,-365.85,173.29,-77.23,228.77),
(3,'Manors of Erollisi',1070000,0,70000,0,6,1,0,503,470,-384.39,171.78,-103.18,331.18), (3,'Manors of Erollisi',1070000,0,70000,0,6,1,0,503,470,-384.39,171.78,-103.18,331.18),
@ -107,8 +43,8 @@ INSERT INTO `houses` VALUES
(23,'8 Freedom Road',579600,86000,23184,9000,6,2,20,150,559,-177.08,-28.97,252.22,241.44), (23,'8 Freedom Road',579600,86000,23184,9000,6,2,20,150,559,-177.08,-28.97,252.22,241.44),
(24,'6 Freedom Road',579600,86000,23184,9000,6,2,20,150,559,-171.63,-28.97,241.38,235.72), (24,'6 Freedom Road',579600,86000,23184,9000,6,2,20,150,559,-171.63,-28.97,241.38,235.72),
(25,'4 Freedom Road',1161720,120000,46468,24000,6,2,20,151,559,-173.54,-28.97,230.13,317.48), (25,'4 Freedom Road',1161720,120000,46468,24000,6,2,20,151,559,-173.54,-28.97,230.13,317.48),
(26,'Seafarer\'s Roost Royal Suite',289800,64000,11592,6500,6,2,10,146,559,-229.14,-48.96,6.78,92.89), (26,'Seafarer''s Roost Royal Suite',289800,64000,11592,6500,6,2,10,146,559,-229.14,-48.96,6.78,92.89),
(27,'Jade Tiger\'s Den Social Suite 4',146160,22000,5846,3000,6,2,10,643,559,-76.04,-21.43,-66.42,347.65), (27,'Jade Tiger''s Den Social Suite 4',146160,22000,5846,3000,6,2,10,643,559,-76.04,-21.43,-66.42,347.65),
(28,'5 Compassion Road',3872400,250000,154896,50000,6,2,30,152,559,-183.25,-57.96,-190.02,65.3), (28,'5 Compassion Road',3872400,250000,154896,50000,6,2,30,152,559,-183.25,-57.96,-190.02,65.3),
(29,'7 Compassion Road',3872400,250000,154896,50000,6,2,30,152,559,-218.91,-57.78,-149.41,73), (29,'7 Compassion Road',3872400,250000,154896,50000,6,2,30,152,559,-218.91,-57.78,-149.41,73),
(30,'3 Compassion Road',3872400,250000,154896,50000,6,2,30,152,559,-156.55,-57.61,-234.52,73.08), (30,'3 Compassion Road',3872400,250000,154896,50000,6,2,30,152,559,-156.55,-57.61,-234.52,73.08),
@ -122,11 +58,11 @@ INSERT INTO `houses` VALUES
(38,'Freeport Large Guild Hall',100000000,0,1000000,100000,6,0,50,382,559,-16.47,-18.8,-261.23,95.75), (38,'Freeport Large Guild Hall',100000000,0,1000000,100000,6,0,50,382,559,-16.47,-18.8,-261.23,95.75),
(39,'2 Freedom Road',3872400,250000,154896,50000,6,2,30,152,559,-137.23,-34.3,148.97,182.17), (39,'2 Freedom Road',3872400,250000,154896,50000,6,2,30,152,559,-137.23,-34.3,148.97,182.17),
(40,'1 Freedom Road',3872400,250000,154896,50000,6,2,30,152,559,-127.56,-34.01,173.13,95.85), (40,'1 Freedom Road',3872400,250000,154896,50000,6,2,30,152,559,-127.56,-34.01,173.13,95.85),
(41,'a simple Maj\'Dul apartment',146160,22000,5846,3000,6,0,0,596,46,-130.86,138.03,117.76,98.94), (41,'a simple Maj''Dul apartment',146160,22000,5846,3000,6,0,0,596,46,-130.86,138.03,117.76,98.94),
(42,'a Maj\'Dul merchant apartment',579600,86000,23184,9000,6,0,0,596,46,-180.06,148.08,64.81,92.83), (42,'a Maj''Dul merchant apartment',579600,86000,23184,9000,6,0,0,596,46,-180.06,148.08,64.81,92.83),
(43,'a large Maj\'Dul residence',1936200,0,77478,0,6,0,0,51,46,-232.74,137.83,69.97,76.2), (43,'a large Maj''Dul residence',1936200,0,77478,0,6,0,0,51,46,-232.74,137.83,69.97,76.2),
(44,'Affluent Maj\'Dul residence',1161720,120000,46464,24000,6,0,0,51,46,133.54,143.59,122.32,91.62), (44,'Affluent Maj''Dul residence',1161720,120000,46464,24000,6,0,0,51,46,133.54,143.59,122.32,91.62),
(45,'Maj\'Dul Merchant Apartment',966000,0,38640,0,6,0,0,596,46,133.54,143.59,122.32,91.62), (45,'Maj''Dul Merchant Apartment',966000,0,38640,0,6,0,0,596,46,133.54,143.59,122.32,91.62),
(46,'8 Indigo Road',0,0,500,0,6,2,0,185,184,101.42,23.98,157.37,356.5), (46,'8 Indigo Road',0,0,500,0,6,2,0,185,184,101.42,23.98,157.37,356.5),
(47,'2 Walk of the Dead',1000000,200000,30000,50000,6,2,30,187,184,-512.99,28.41,-64.15,114.61), (47,'2 Walk of the Dead',1000000,200000,30000,50000,6,2,30,187,184,-512.99,28.41,-64.15,114.61),
(48,'3 Walk of the Dead',1700000,0,70000,0,6,2,0,187,184,-671.6,28.41,-80.17,210.17), (48,'3 Walk of the Dead',1700000,0,70000,0,6,2,0,187,184,-671.6,28.41,-80.17,210.17),
@ -174,14 +110,14 @@ INSERT INTO `houses` VALUES
(90,'17 Tranquil Way',1936200,0,77448,0,6,1,0,229,589,628,-17.93,258.47,208.19), (90,'17 Tranquil Way',1936200,0,77448,0,6,1,0,229,589,628,-17.93,258.47,208.19),
(91,'8 Erollisi Lane',3872400,250000,154896,50000,6,1,30,230,589,587,-9.27,151.19,10.08), (91,'8 Erollisi Lane',3872400,250000,154896,50000,6,1,30,230,589,587,-9.27,151.19,10.08),
(92,'5 Erollisi Lane',3872400,250000,154896,50000,6,1,30,230,589,610.22,-10.71,138.46,185.82), (92,'5 Erollisi Lane',3872400,250000,154896,50000,6,1,30,230,589,610.22,-10.71,138.46,185.82),
(93,'Lion\'s Mane Vestige Room - Graystone Yard',0,0,500,0,6,1,0,223,589,514.79,-3.5,125.81,226.57), (93,'Lion''s Mane Vestige Room - Graystone Yard',0,0,500,0,6,1,0,223,589,514.79,-3.5,125.81,226.57),
(94,'Lion\'s Mane Suite Room',243600,0,9744,0,6,1,0,225,589,523.34,-3.5,127.05,221.74), (94,'Lion''s Mane Suite Room',243600,0,9744,0,6,1,0,225,589,523.34,-3.5,127.05,221.74),
(95,'Lion\'s Mane Vestige Room - Starcrest Commune',0,0,500,0,6,1,0,223,589,532.64,-3.5,128.31,207.89), (95,'Lion''s Mane Vestige Room - Starcrest Commune',0,0,500,0,6,1,0,223,589,532.64,-3.5,128.31,207.89),
(96,'Lion\'s Mane Vestige Room - Nettleville',0,0,500,0,6,1,0,223,589,538.93,-3.5,127.94,111.14), (96,'Lion''s Mane Vestige Room - Nettleville',0,0,500,0,6,1,0,223,589,538.93,-3.5,127.94,111.14),
(97,'Lion\'s Mane Suite Room Status',146160,22000,5846,3000,6,1,10,226,589,557.38,-3.5,128.21,256.25), (97,'Lion''s Mane Suite Room Status',146160,22000,5846,3000,6,1,10,226,589,557.38,-3.5,128.21,256.25),
(98,'Lion\'s Mane Vestige Room - Castleview Hamlet',0,0,500,0,6,1,0,223,589,562.06,-3.5,127.8,221.55), (98,'Lion''s Mane Vestige Room - Castleview Hamlet',0,0,500,0,6,1,0,223,589,562.06,-3.5,127.8,221.55),
(99,'Lion\'s Mane Vestige Room - The Willow Wood',0,0,500,0,6,1,0,223,589,580.16,-3.49,126.34,233.13), (99,'Lion''s Mane Vestige Room - The Willow Wood',0,0,500,0,6,1,0,223,589,580.16,-3.49,126.34,233.13),
(100,'Lion\'s Mane Vestige Room - The Baubbleshire',0,0,500,0,6,1,0,223,589,582.45,-3.48,126.95,198.13), (100,'Lion''s Mane Vestige Room - The Baubbleshire',0,0,500,0,6,1,0,223,589,582.45,-3.48,126.95,198.13),
(101,'Qeynos Guild Hall, Tier 2',100000000,100000,1000000,0,6,1,50,378,589,482.62,-11.27,112.93,166.62), (101,'Qeynos Guild Hall, Tier 2',100000000,100000,1000000,0,6,1,50,378,589,482.62,-11.27,112.93,166.62),
(102,'Irontoes East Large Inn Room',253600,0,9744,0,6,1,0,225,589,345.31,-14.49,151.66,256.55), (102,'Irontoes East Large Inn Room',253600,0,9744,0,6,1,0,225,589,345.31,-14.49,151.66,256.55),
(103,'Irontoes East Large Inn Room',146160,22000,5846,3000,6,1,10,226,589,351.06,-14.49,148.94,0), (103,'Irontoes East Large Inn Room',146160,22000,5846,3000,6,1,10,226,589,351.06,-14.49,148.94,0),
@ -194,13 +130,13 @@ INSERT INTO `houses` VALUES
(110,'Irontoes East Large Inn Room',146160,22000,5846,3000,6,1,10,226,589,355.69,-14.49,145.21,334.33), (110,'Irontoes East Large Inn Room',146160,22000,5846,3000,6,1,10,226,589,355.69,-14.49,145.21,334.33),
(111,'Irontoes East Large Inn Room',146160,22000,5846,3000,6,1,10,226,589,358.78,-14.49,141.17,121.25), (111,'Irontoes East Large Inn Room',146160,22000,5846,3000,6,1,10,226,589,358.78,-14.49,141.17,121.25),
(112,'Irontoes East Large Inn Room',243600,0,9744,0,6,1,0,225,589,358.58,-14.49,139.77,147.55), (112,'Irontoes East Large Inn Room',243600,0,9744,0,6,1,0,225,589,358.58,-14.49,139.77,147.55),
(113,'Lion\'s Mane Suite Room',146160,22000,5846,3000,6,1,10,226,589,570.64,-3.5,126.67,260.25), (113,'Lion''s Mane Suite Room',146160,22000,5846,3000,6,1,10,226,589,570.64,-3.5,126.67,260.25),
(114,'Lion\'s Mane Suite Room',146160,22000,5846,3000,6,1,10,226,589,583.94,-3.48,133.63,117.27), (114,'Lion''s Mane Suite Room',146160,22000,5846,3000,6,1,10,226,589,583.94,-3.48,133.63,117.27),
(115,'Lion\'s Mane Suite Room',146160,22000,5846,3000,6,1,10,226,589,563.3,-3.5,137.86,78.14), (115,'Lion''s Mane Suite Room',146160,22000,5846,3000,6,1,10,226,589,563.3,-3.5,137.86,78.14),
(116,'Lion\'s Mane Suite Room',243600,0,9744,0,6,1,0,225,589,523.06,-3.5,127.07,80.44), (116,'Lion''s Mane Suite Room',243600,0,9744,0,6,1,0,225,589,523.06,-3.5,127.07,80.44),
(117,'Lion\'s Mane Suite Room',243600,0,9744,0,6,1,0,225,589,510.95,-3.48,126.84,156.79), (117,'Lion''s Mane Suite Room',243600,0,9744,0,6,1,0,225,589,510.95,-3.48,126.84,156.79),
(118,'Lion\'s Mane Suite Room',243600,0,9744,0,6,1,0,225,589,512.81,-3.5,135.34,262.16), (118,'Lion''s Mane Suite Room',243600,0,9744,0,6,1,0,225,589,512.81,-3.5,135.34,262.16),
(119,'Lion\'s Mane Suite Room',243600,0,9744,0,6,1,0,225,589,530.8,-3.5,137.6,247.61), (119,'Lion''s Mane Suite Room',243600,0,9744,0,6,1,0,225,589,530.8,-3.5,137.6,247.61),
(120,'Gorowyn Guild Hall',25000000,0,250000,50000,6,2,30,381,263,2829.86,122.45,1234.39,78.57), (120,'Gorowyn Guild Hall',25000000,0,250000,50000,6,2,30,381,263,2829.86,122.45,1234.39,78.57),
(121,'Irontoes East Large Inn Room',243600,0,9744,0,6,0,0,225,222,343.43,-14.49,149.84,239.41), (121,'Irontoes East Large Inn Room',243600,0,9744,0,6,0,0,225,222,343.43,-14.49,149.84,239.41),
(122,'Irontoes East Large Inn Room',146160,22000,5846,3000,6,0,10,226,222,350.81,-14.49,149.57,318.34), (122,'Irontoes East Large Inn Room',146160,22000,5846,3000,6,0,10,226,222,350.81,-14.49,149.57,318.34),
@ -209,14 +145,14 @@ INSERT INTO `houses` VALUES
(125,'Irontoes East Large Inn Room',243600,0,9744,0,6,0,0,225,222,354.48,-14.49,143.88,317.96), (125,'Irontoes East Large Inn Room',243600,0,9744,0,6,0,0,225,222,354.48,-14.49,143.88,317.96),
(126,'Irontoes East Large Inn Room',243600,0,9744,0,6,0,0,225,222,357.95,-14.49,140.63,316.11), (126,'Irontoes East Large Inn Room',243600,0,9744,0,6,0,0,225,222,357.95,-14.49,140.63,316.11),
(127,'Irontoes East Large Inn Room',146160,22000,5846,3000,6,0,10,226,222,359.56,-14.49,140.93,310.7), (127,'Irontoes East Large Inn Room',146160,22000,5846,3000,6,0,10,226,222,359.56,-14.49,140.93,310.7),
(128,'Lion\'s Mane Suite Room',146160,22000,5846,3000,6,0,10,226,231,556.48,-3.5,127.89,106.94), (128,'Lion''s Mane Suite Room',146160,22000,5846,3000,6,0,10,226,231,556.48,-3.5,127.89,106.94),
(129,'Lion\'s Mane Suite Room',146160,22000,5846,3000,6,0,10,226,231,569.46,-3.5,126.4,139.05), (129,'Lion''s Mane Suite Room',146160,22000,5846,3000,6,0,10,226,231,569.46,-3.5,126.4,139.05),
(130,'Lion\'s Mane Suite Room',146160,22000,5846,3000,6,0,10,226,231,584.88,-3.46,132.72,74.16), (130,'Lion''s Mane Suite Room',146160,22000,5846,3000,6,0,10,226,231,584.88,-3.46,132.72,74.16),
(131,'Lion\'s Mane Suite Room',146160,22000,5846,3000,6,0,10,226,231,563.14,-3.5,137.76,285.8), (131,'Lion''s Mane Suite Room',146160,22000,5846,3000,6,0,10,226,231,563.14,-3.5,137.76,285.8),
(132,'Lion\'s Mane Suite Room',243600,0,9744,0,6,0,0,225,231,523.49,-3.5,126.12,212.69), (132,'Lion''s Mane Suite Room',243600,0,9744,0,6,0,0,225,231,523.49,-3.5,126.12,212.69),
(133,'Lion\'s Mane Suite Room',243600,0,9744,0,6,0,0,225,231,510.71,-3.48,127.29,187.35), (133,'Lion''s Mane Suite Room',243600,0,9744,0,6,0,0,225,231,510.71,-3.48,127.29,187.35),
(134,'Lion\'s Mane Suite Room',243600,0,9744,0,6,0,0,225,231,512.36,-3.49,135.48,271.53), (134,'Lion''s Mane Suite Room',243600,0,9744,0,6,0,0,225,231,512.36,-3.49,135.48,271.53),
(135,'Lion\'s Mane Suite Room',243600,0,9744,0,6,0,0,225,231,531.52,-3.5,137.91,272.41), (135,'Lion''s Mane Suite Room',243600,0,9744,0,6,0,0,225,231,531.52,-3.5,137.91,272.41),
(136,'5 Erollisi Lane',3872400,250000,154896,50000,6,1,30,230,231,610.22,-10.71,138.46,185.82), (136,'5 Erollisi Lane',3872400,250000,154896,50000,6,1,30,230,231,610.22,-10.71,138.46,185.82),
(137,'8 Erollisi Lane',3872400,250000,154896,50000,6,1,30,230,231,587,-9.27,151.19,10.08), (137,'8 Erollisi Lane',3872400,250000,154896,50000,6,1,30,230,231,587,-9.27,151.19,10.08),
(138,'5 Karana Court',3872400,250000,154896,50000,6,1,30,230,231,607.46,-14.75,198.54,203.2), (138,'5 Karana Court',3872400,250000,154896,50000,6,1,30,230,231,607.46,-14.75,198.54,203.2),
@ -242,18 +178,18 @@ INSERT INTO `houses` VALUES
(158,'17 Tranquil Way',1936200,0,77448,0,6,1,0,229,231,628,-17.93,258.47,208.19), (158,'17 Tranquil Way',1936200,0,77448,0,6,1,0,229,231,628,-17.93,258.47,208.19),
(159,'15 Tranquil Way',966000,0,38640,0,6,1,0,228,231,608.09,-17.19,263.71,246.87), (159,'15 Tranquil Way',966000,0,38640,0,6,1,0,228,231,608.09,-17.19,263.71,246.87),
(160,'13 Tranquil Way',966000,0,38640,0,6,1,0,227,231,594.43,-17.24,265.47,202.18), (160,'13 Tranquil Way',966000,0,38640,0,6,1,0,227,231,594.43,-17.24,265.47,202.18),
(161,'Fish\'s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,660,803.69,-17.27,59.13,145.8), (161,'Fish''s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,660,803.69,-17.27,59.13,145.8),
(162,'Fish\'s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,221,803.69,-17.27,59.13,145.8), (162,'Fish''s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,221,803.69,-17.27,59.13,145.8),
(163,'Fish\'s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,221,806.74,-17.27,51.95,153.8), (163,'Fish''s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,221,806.74,-17.27,51.95,153.8),
(164,'Fish\'s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,221,801.19,-11.27,63.78,353), (164,'Fish''s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,221,801.19,-11.27,63.78,353),
(165,'Fish\'s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,221,802.72,-11.27,51.59,322), (165,'Fish''s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,221,802.72,-11.27,51.59,322),
(166,'Fish\'s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,221,799.44,-11.27,57.5,328.79), (166,'Fish''s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,221,799.44,-11.27,57.5,328.79),
(167,'Fish\'s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,221,796.8,-11.27,62.1,314.2), (167,'Fish''s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,221,796.8,-11.27,62.1,314.2),
(168,'Fish\'s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,660,806.74,-17.27,51.95,153.8), (168,'Fish''s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,660,806.74,-17.27,51.95,153.8),
(169,'Fish\'s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,660,801.19,-11.27,63.78,353), (169,'Fish''s Alehouse Luxury Apartment',483000,0,19320,0,6,0,0,225,660,801.19,-11.27,63.78,353),
(170,'Fish\'s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,660,802.72,-11.27,51.59,322), (170,'Fish''s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,660,802.72,-11.27,51.59,322),
(171,'Fish\'s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,660,799.44,-11.27,57.5,328.79), (171,'Fish''s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,660,799.44,-11.27,57.5,328.79),
(172,'Fish\'s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,660,796.8,-11.27,62.1,314.2), (172,'Fish''s Alehouse Luxury Apartment',289800,64000,11592,6500,6,0,10,226,660,796.8,-11.27,62.1,314.2),
(173,'1 Integrity Road',3872400,250000,154896,50000,6,2,30,152,144,-96.82,-39.19,-227,341.07), (173,'1 Integrity Road',3872400,250000,154896,50000,6,2,30,152,144,-96.82,-39.19,-227,341.07),
(174,'5 Integrity Road',966000,0,38640,0,6,2,0,149,144,-148.99,-41.22,-145.83,326.08), (174,'5 Integrity Road',966000,0,38640,0,6,2,0,149,144,-148.99,-41.22,-145.83,326.08),
(175,'7 Integrity Road',1936200,0,77448,0,6,2,0,151,144,-141.5,-35.98,-158.22,266.52), (175,'7 Integrity Road',1936200,0,77448,0,6,2,0,151,144,-141.5,-35.98,-158.22,266.52),
@ -284,30 +220,16 @@ INSERT INTO `houses` VALUES
(200,'6 Freedom Road',579600,86000,23184,9000,6,2,20,150,166,-171.63,-28.97,241.38,235.72), (200,'6 Freedom Road',579600,86000,23184,9000,6,2,20,150,166,-171.63,-28.97,241.38,235.72),
(201,'8 Freedom Road',579600,86000,23184,9000,6,2,20,150,166,-177.08,-28.97,252.22,241.44), (201,'8 Freedom Road',579600,86000,23184,9000,6,2,20,150,166,-177.08,-28.97,252.22,241.44),
(202,'10 Freedom Road',579600,86000,23184,9000,6,2,20,150,166,-178.13,-28.97,263.21,344.39), (202,'10 Freedom Road',579600,86000,23184,9000,6,2,20,150,166,-178.13,-28.97,263.21,344.39),
(203,'Seafarer\'s Roost Royal Suite',289800,64000,11592,6500,6,2,10,146,128,-229.14,-48.96,6.78,92.89), (203,'Seafarer''s Roost Royal Suite',289800,64000,11592,6500,6,2,10,146,128,-229.14,-48.96,6.78,92.89),
(204,'Jade Tiger\'s Den Comfort Suite 1',243600,0,9744,0,6,2,0,147,559,-83.81,-21.43,-84.69,262.49), (204,'Jade Tiger''s Den Comfort Suite 1',243600,0,9744,0,6,2,0,147,559,-83.81,-21.43,-84.69,262.49),
(205,'Jade Tiger\'s Den Comfort Suite 2',243600,0,9744,0,6,2,0,147,559,-77.85,-21.43,-83.19,278.93), (205,'Jade Tiger''s Den Comfort Suite 2',243600,0,9744,0,6,2,0,147,559,-77.85,-21.43,-83.19,278.93),
(206,'Jade Tiger\'s Den Comfort Suite 3',243600,0,9744,0,6,2,0,147,559,-72.75,-21.43,-80.96,261.67), (206,'Jade Tiger''s Den Comfort Suite 3',243600,0,9744,0,6,2,0,147,559,-72.75,-21.43,-80.96,261.67),
(207,'Jade Tiger\'s Den Basic Room',0,0,500,0,6,2,0,145,559,263.52,9.06,127.9,265.19), (207,'Jade Tiger''s Den Basic Room',0,0,500,0,6,2,0,145,559,263.52,9.06,127.9,265.19),
(208,'Jade Tiger\'s Den Social Suite 1',146160,22000,5846,3000,6,2,10,643,559,-92.82,-21.43,-69.52,265.26), (208,'Jade Tiger''s Den Social Suite 1',146160,22000,5846,3000,6,2,10,643,559,-92.82,-21.43,-69.52,265.26),
(209,'Jade Tiger\'s Den Social Suite 2',146160,22000,5846,3000,6,2,10,643,559,-88.16,-21.43,-69.3,252.28), (209,'Jade Tiger''s Den Social Suite 2',146160,22000,5846,3000,6,2,10,643,559,-88.16,-21.43,-69.3,252.28),
(210,'Jade Tiger\'s Den Social Suite 3',146160,22000,5846,3000,6,2,10,643,559,-80.88,-21.43,-67.19,256.28), (210,'Jade Tiger''s Den Social Suite 3',146160,22000,5846,3000,6,2,10,643,559,-80.88,-21.43,-67.19,256.28),
(211,'Jade Tiger\'s Den Comfort Suite 6',243600,0,9744,0,6,2,0,147,559,-77.69,-11,-79.97,98.11), (211,'Jade Tiger''s Den Comfort Suite 6',243600,0,9744,0,6,2,0,147,559,-77.69,-11,-79.97,98.11),
(212,'Safe Haven Inn',0,0,500,0,6,0,0,145,135,6.43,0,-47.21,173.36), (212,'Safe Haven Inn',0,0,500,0,6,0,0,145,135,6.43,0,-47.21,173.36),
(213,'Chamber of Horizontal Stasis',0,0,500,0,6,0,0,145,136,11.09,3,89.83,28.72), (213,'Chamber of Horizontal Stasis',0,0,500,0,6,0,0,145,136,11.09,3,89.83,28.72),
(214,'The Heated Stone Inn',0,0,500,0,6,0,0,145,139,25.34,-4.38,33.27,76.15), (214,'The Heated Stone Inn',0,0,500,0,6,0,0,145,139,25.34,-4.38,33.27,76.15),
(215,'The Flophouse Inn',0,0,500,0,6,0,0,145,137,13.11,-0.03,76.66,356.18); (215,'The Flophouse Inn',0,0,500,0,6,0,0,145,137,13.11,-0.03,76.66,356.18);
/*!40000 ALTER TABLE `houses` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,79 +1,15 @@
-- Table: `instance_spawns_removed` DROP TABLE IF EXISTS instance_spawns_removed;
USE `eq2emu`; CREATE TABLE instance_spawns_removed (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
instance_id INTEGER NOT NULL DEFAULT 0,
spawn_type INTEGER NOT NULL DEFAULT 0,
spawn_location_entry_id INTEGER NOT NULL DEFAULT 0,
respawn_time INTEGER NOT NULL DEFAULT 0
);
CREATE INDEX idx_instance_spawns_removed_instance_id ON instance_spawns_removed(instance_id);
CREATE INDEX idx_instance_spawns_removed_spawn_location_entry_id ON instance_spawns_removed(spawn_location_entry_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO instance_spawns_removed VALUES
-- 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 `instance_spawns_removed`
--
DROP TABLE IF EXISTS `instance_spawns_removed`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `instance_spawns_removed` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`instance_id` int(10) unsigned NOT NULL DEFAULT 0,
`spawn_type` smallint(5) unsigned NOT NULL DEFAULT 0,
`spawn_location_entry_id` int(10) unsigned NOT NULL DEFAULT 0,
`respawn_time` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `InstanceIDX` (`instance_id`),
KEY `SpawnIDX` (`spawn_location_entry_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10470 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:05
/*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 `instance_spawns_removed`
--
LOCK TABLES `instance_spawns_removed` WRITE;
/*!40000 ALTER TABLE `instance_spawns_removed` DISABLE KEYS */;
INSERT INTO `instance_spawns_removed` VALUES
(7076,5501,0,1586106,3600), (7076,5501,0,1586106,3600),
(7077,5501,0,1586106,3600), (7077,5501,0,1586106,3600),
(7078,5501,0,1586105,3600), (7078,5501,0,1586105,3600),
@ -3402,17 +3338,3 @@ INSERT INTO `instance_spawns_removed` VALUES
(10467,8420,0,133774266,0), (10467,8420,0,133774266,0),
(10468,8420,0,133774265,0), (10468,8420,0,133774265,0),
(10469,8420,0,133774263,0); (10469,8420,0,133774263,0);
/*!40000 ALTER TABLE `instance_spawns_removed` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,80 +1,16 @@
-- Table: `instances` DROP TABLE IF EXISTS instances;
USE `eq2emu`; CREATE TABLE instances (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
zone_id INTEGER NOT NULL DEFAULT 0,
player_minlevel INTEGER NOT NULL DEFAULT 0,
player_maxlevel INTEGER NOT NULL DEFAULT 0,
player_avglevel INTEGER NOT NULL DEFAULT 0,
player_firstlevel INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (zone_id) REFERENCES zones(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_instances_zone_id ON instances(zone_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO instances VALUES
-- 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 `instances`
--
DROP TABLE IF EXISTS `instances`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `instances` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`zone_id` int(10) unsigned NOT NULL DEFAULT 0,
`player_minlevel` int(10) unsigned NOT NULL DEFAULT 0,
`player_maxlevel` int(10) unsigned NOT NULL DEFAULT 0,
`player_avglevel` int(10) unsigned NOT NULL DEFAULT 0,
`player_firstlevel` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `ZoneIDX` (`zone_id`),
CONSTRAINT `FK_instances` FOREIGN KEY (`zone_id`) REFERENCES `zones` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8421 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:05
/*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 `instances`
--
LOCK TABLES `instances` WRITE;
/*!40000 ALTER TABLE `instances` DISABLE KEYS */;
INSERT INTO `instances` VALUES
(5498,27,0,0,0,0), (5498,27,0,0,0,0),
(5500,27,0,0,0,0), (5500,27,0,0,0,0),
(5502,27,0,0,0,0), (5502,27,0,0,0,0),
@ -1639,17 +1575,3 @@ INSERT INTO `instances` VALUES
(8418,223,0,0,0,0), (8418,223,0,0,0,0),
(8419,825,0,0,0,0), (8419,825,0,0,0,0),
(8420,825,0,0,0,0); (8420,825,0,0,0,0);
/*!40000 ALTER TABLE `instances` 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:05
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,94 +1,30 @@
-- Table: `item_appearances` DROP TABLE IF EXISTS item_appearances;
USE `eq2emu`; CREATE TABLE item_appearances (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0,
equip_type INTEGER NOT NULL DEFAULT 0,
red INTEGER NOT NULL DEFAULT 0,
green INTEGER NOT NULL DEFAULT 0,
blue INTEGER NOT NULL DEFAULT 0,
highlight_red INTEGER NOT NULL DEFAULT 0,
highlight_green INTEGER NOT NULL DEFAULT 0,
highlight_blue INTEGER NOT NULL DEFAULT 0,
appearance_type INTEGER NOT NULL DEFAULT 0,
slot INTEGER NOT NULL DEFAULT 0,
house_placement_type INTEGER NOT NULL DEFAULT 0,
vis_state INTEGER NOT NULL DEFAULT 4294967295,
vis_state2 INTEGER NOT NULL DEFAULT 4294967295,
mount_type INTEGER NOT NULL DEFAULT 4294967295,
heraldry BLOB NOT NULL DEFAULT X'30000000000000',
reforging_decoration INTEGER NOT NULL DEFAULT 0,
bWeaponUnk INTEGER NOT NULL DEFAULT 0,
b2hWeapon INTEGER NOT NULL DEFAULT 0,
bUnknown INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_item_appearances_item_id ON item_appearances(item_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_appearances VALUES
-- 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 `item_appearances`
--
DROP TABLE IF EXISTS `item_appearances`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_appearances` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`equip_type` int(10) unsigned NOT NULL DEFAULT 0,
`red` tinyint(3) unsigned NOT NULL DEFAULT 0,
`green` tinyint(3) unsigned NOT NULL DEFAULT 0,
`blue` tinyint(3) unsigned NOT NULL DEFAULT 0,
`highlight_red` tinyint(3) unsigned NOT NULL DEFAULT 0,
`highlight_green` tinyint(3) unsigned NOT NULL DEFAULT 0,
`highlight_blue` tinyint(3) unsigned NOT NULL DEFAULT 0,
`appearance_type` smallint(5) unsigned NOT NULL DEFAULT 0,
`slot` smallint(5) unsigned NOT NULL DEFAULT 0,
`house_placement_type` int(10) unsigned NOT NULL DEFAULT 0,
`vis_state` int(10) unsigned NOT NULL DEFAULT 4294967295,
`vis_state2` int(10) unsigned NOT NULL DEFAULT 4294967295,
`mount_type` int(10) unsigned NOT NULL DEFAULT 4294967295,
`heraldry` binary(7) NOT NULL DEFAULT '0\0\0\0\0\0\0',
`reforging_decoration` int(10) unsigned NOT NULL DEFAULT 0,
`bWeaponUnk` tinyint(1) unsigned NOT NULL DEFAULT 0,
`b2hWeapon` tinyint(1) unsigned NOT NULL DEFAULT 0,
`bUnknown` tinyint(1) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `FK_new_appearances_items` (`item_id`),
CONSTRAINT `FK_new_appearances_items` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=147498 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:05
/*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 `item_appearances`
--
LOCK TABLES `item_appearances` WRITE;
/*!40000 ALTER TABLE `item_appearances` DISABLE KEYS */;
INSERT INTO `item_appearances` VALUES
(1,133105,6765,100,102,75,211,213,171,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0), (1,133105,6765,100,102,75,211,213,171,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0),
(2,40002,15853,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0), (2,40002,15853,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0),
(3,40003,15853,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0), (3,40003,15853,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0),
@ -14578,7 +14514,7 @@ INSERT INTO `item_appearances` VALUES
(21824,153049,573,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (21824,153049,573,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(21825,133069,6641,100,102,75,211,213,171,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (21825,133069,6641,100,102,75,211,213,171,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(21826,175088,5854,156,110,121,156,110,121,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (21826,175088,5854,156,110,121,156,110,121,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(21827,159957,6683,119,119,119,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\0\0\'\0\0',0,0,0,1), (21827,159957,6683,119,119,119,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\0\0''\0\0',0,0,0,1),
(21828,160399,5831,255,0,12,82,82,82,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (21828,160399,5831,255,0,12,82,82,82,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(21829,141315,5711,63,63,63,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (21829,141315,5711,63,63,63,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(21830,176199,450,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (21830,176199,450,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -17653,7 +17589,7 @@ INSERT INTO `item_appearances` VALUES
(24899,152679,6469,216,219,158,36,51,140,0,19,0,4294967295,4294967295,4294967295,'\0\0;;',0,0,0,1), (24899,152679,6469,216,219,158,36,51,140,0,19,0,4294967295,4294967295,4294967295,'\0\0;;',0,0,0,1),
(24900,174410,5705,152,7,0,255,255,255,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (24900,174410,5705,152,7,0,255,255,255,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(24901,141999,422,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (24901,141999,422,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(24902,152635,6970,29,29,29,152,7,0,0,19,0,4294967295,4294967295,4294967295,'\'\0\0\0',0,0,0,1), (24902,152635,6970,29,29,29,152,7,0,0,19,0,4294967295,4294967295,4294967295,'''\0\0\0',0,0,0,1),
(24903,191960,546,40,0,0,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (24903,191960,546,40,0,0,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(24904,184612,6048,66,43,86,66,43,86,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (24904,184612,6048,66,43,86,66,43,86,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(24905,133598,10494,255,255,255,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (24905,133598,10494,255,255,255,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -17871,7 +17807,7 @@ INSERT INTO `item_appearances` VALUES
(25117,180764,704,255,255,255,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (25117,180764,704,255,255,255,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(25118,155359,6126,10,10,63,128,128,10,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (25118,155359,6126,10,10,63,128,128,10,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(25119,155849,10542,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (25119,155849,10542,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(25120,165660,6477,111,39,56,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\'\0\0\0\0',0,0,0,1), (25120,165660,6477,111,39,56,234,234,234,0,19,0,4294967295,4294967295,4294967295,'''\0\0\0\0',0,0,0,1),
(25121,130046,16186,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (25121,130046,16186,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(25122,153436,2475,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (25122,153436,2475,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(25123,180965,1058,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (25123,180965,1058,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -22768,7 +22704,7 @@ INSERT INTO `item_appearances` VALUES
(30013,141505,819,255,255,255,255,255,255,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (30013,141505,819,255,255,255,255,255,255,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(30014,166067,482,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (30014,166067,482,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(30015,147718,6127,100,102,75,211,213,171,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (30015,147718,6127,100,102,75,211,213,171,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(30016,137738,6469,185,153,57,111,39,56,0,19,0,4294967295,4294967295,4294967295,'4\'',0,0,0,1), (30016,137738,6469,185,153,57,111,39,56,0,19,0,4294967295,4294967295,4294967295,'4''',0,0,0,1),
(30017,143817,6002,19,19,19,19,19,19,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (30017,143817,6002,19,19,19,19,19,19,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(30018,154181,10877,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (30018,154181,10877,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(30019,131647,6750,139,103,45,122,49,45,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (30019,131647,6750,139,103,45,122,49,45,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -22909,7 +22845,7 @@ INSERT INTO `item_appearances` VALUES
(30154,159456,824,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (30154,159456,824,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(30155,146811,5822,22,63,103,255,255,255,0,4,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (30155,146811,5822,22,63,103,255,255,255,0,4,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(30156,165537,12756,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (30156,165537,12756,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(30157,186978,6476,29,29,29,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\'8\0\0',0,0,0,1), (30157,186978,6476,29,29,29,234,234,234,0,19,0,4294967295,4294967295,4294967295,'''8\0\0',0,0,0,1),
(30158,132912,6634,100,102,75,211,213,171,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (30158,132912,6634,100,102,75,211,213,171,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(30159,160882,936,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (30159,160882,936,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(30160,153796,9787,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (30160,153796,9787,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -26145,7 +26081,7 @@ INSERT INTO `item_appearances` VALUES
(33390,145641,6780,49,33,12,49,16,14,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (33390,145641,6780,49,33,12,49,16,14,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(33391,130323,933,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (33391,130323,933,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(33392,142934,361,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (33392,142934,361,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(33393,139388,10508,29,29,29,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\'\0\0',0,0,0,1), (33393,139388,10508,29,29,29,234,234,234,0,19,0,4294967295,4294967295,4294967295,'''\0\0',0,0,0,1),
(33394,175076,7493,142,142,142,62,62,62,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (33394,175076,7493,142,142,142,62,62,62,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(33395,163749,482,59,59,59,22,63,103,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (33395,163749,482,59,59,59,22,63,103,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(33396,182373,7529,128,64,0,11,11,11,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (33396,182373,7529,128,64,0,11,11,11,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -26516,7 +26452,7 @@ INSERT INTO `item_appearances` VALUES
(33761,163531,432,255,255,255,0,40,83,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (33761,163531,432,255,255,255,0,40,83,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(33762,146164,1057,255,255,255,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (33762,146164,1057,255,255,255,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(33763,158019,6051,128,0,0,64,0,0,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (33763,158019,6051,128,0,0,64,0,0,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(33764,165269,6476,29,29,29,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\0\0\'\0\0',0,0,0,1), (33764,165269,6476,29,29,29,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\0\0''\0\0',0,0,0,1),
(33765,174402,767,255,128,64,99,191,231,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (33765,174402,767,255,128,64,99,191,231,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(33766,148268,6648,100,102,75,211,213,171,0,4,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (33766,148268,6648,100,102,75,211,213,171,0,4,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(33767,135611,5798,140,147,181,84,54,54,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (33767,135611,5798,140,147,181,84,54,54,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -28861,7 +28797,7 @@ INSERT INTO `item_appearances` VALUES
(36106,137233,470,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (36106,137233,470,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(36107,178928,5796,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (36107,178928,5796,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(36108,142225,1008,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (36108,142225,1008,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(36109,139353,6469,53,53,53,29,29,29,0,19,0,4294967295,4294967295,4294967295,'2\' ',0,0,0,1), (36109,139353,6469,53,53,53,29,29,29,0,19,0,4294967295,4294967295,4294967295,'2'' ',0,0,0,1),
(36110,153023,2473,255,255,255,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (36110,153023,2473,255,255,255,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(36111,191055,430,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (36111,191055,430,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(36112,141549,864,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (36112,141549,864,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -31128,7 +31064,7 @@ INSERT INTO `item_appearances` VALUES
(38372,184757,1074,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38372,184757,1074,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38373,132129,6140,139,103,45,122,49,45,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38373,132129,6140,139,103,45,122,49,45,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38374,170595,1290,30,0,0,0,0,0,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38374,170595,1290,30,0,0,0,0,0,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38375,166409,6469,111,39,56,110,86,137,0,19,0,4294967295,4294967295,4294967295,'\'# !',0,0,0,1), (38375,166409,6469,111,39,56,110,86,137,0,19,0,4294967295,4294967295,4294967295,'''# !',0,0,0,1),
(38376,187170,999,255,255,255,255,255,255,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38376,187170,999,255,255,255,255,255,255,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38377,165225,7584,52,52,52,5,5,5,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38377,165225,7584,52,52,52,5,5,5,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38378,165659,483,255,255,255,255,255,255,0,4,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (38378,165659,483,255,255,255,255,255,255,0,4,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
@ -31181,7 +31117,7 @@ INSERT INTO `item_appearances` VALUES
(38425,139595,481,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (38425,139595,481,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(38426,178870,6473,15,15,15,128,128,128,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38426,178870,6473,15,15,15,128,128,128,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38427,150494,6087,240,242,199,81,75,67,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38427,150494,6087,240,242,199,81,75,67,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38428,175634,6469,111,39,56,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\'\0\0\r\0\0',0,0,0,1), (38428,175634,6469,111,39,56,234,234,234,0,19,0,4294967295,4294967295,4294967295,'''\0\0\r\0\0',0,0,0,1),
(38429,178171,0,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (38429,178171,0,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(38430,139476,6469,34,90,141,29,29,29,0,19,0,4294967295,4294967295,4294967295,'  ; ',0,0,0,1), (38430,139476,6469,34,90,141,29,29,29,0,19,0,4294967295,4294967295,4294967295,'  ; ',0,0,0,1),
(38431,167434,6561,49,33,15,100,102,75,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38431,167434,6561,49,33,15,100,102,75,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -31588,7 +31524,7 @@ INSERT INTO `item_appearances` VALUES
(38832,186159,6126,155,205,255,249,211,134,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (38832,186159,6126,155,205,255,249,211,134,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(38833,144571,6163,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38833,144571,6163,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38834,136835,5840,255,255,255,165,135,244,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38834,136835,5840,255,255,255,165,135,244,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38835,173427,6469,29,29,29,152,7,0,0,19,0,4294967295,4294967295,4294967295,' \0\0\'',0,0,0,1), (38835,173427,6469,29,29,29,152,7,0,0,19,0,4294967295,4294967295,4294967295,' \0\0''',0,0,0,1),
(38836,167089,6809,49,33,15,100,102,75,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38836,167089,6809,49,33,15,100,102,75,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38837,154587,521,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38837,154587,521,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(38838,181478,7470,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (38838,181478,7470,255,255,255,255,255,255,0,6,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -42946,7 +42882,7 @@ INSERT INTO `item_appearances` VALUES
(50189,139746,5794,3,3,91,3,3,91,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (50189,139746,5794,3,3,91,3,3,91,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(50190,160044,422,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (50190,160044,422,255,255,255,255,255,255,0,8,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(50191,153423,967,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (50191,153423,967,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(50192,185632,6469,29,29,29,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\0\0\'\0\0',0,0,0,1), (50192,185632,6469,29,29,29,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\0\0''\0\0',0,0,0,1),
(50193,181628,14978,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (50193,181628,14978,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(50194,188470,1071,255,255,255,255,255,255,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (50194,188470,1071,255,255,255,255,255,255,0,3,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(50195,181618,14504,255,255,255,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (50195,181618,14504,255,255,255,255,255,255,0,5,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -51791,7 +51727,7 @@ INSERT INTO `item_appearances` VALUES
(59033,176989,5715,124,165,179,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (59033,176989,5715,124,165,179,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(59034,78495,4005,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (59034,78495,4005,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(59035,66451,4194,255,255,255,255,255,255,3,0,2,0,0,4294967295,'\0\0\0\0\0\0\0',4294967295,0,0,0), (59035,66451,4194,255,255,255,255,255,255,3,0,2,0,0,4294967295,'\0\0\0\0\0\0\0',4294967295,0,0,0),
(59036,164699,6970,66,43,86,234,234,234,0,19,0,4294967295,4294967295,4294967295,'#\'22\0\0',0,0,0,1), (59036,164699,6970,66,43,86,234,234,234,0,19,0,4294967295,4294967295,4294967295,'#''22\0\0',0,0,0,1),
(59037,88430,4925,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,1), (59037,88430,4925,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,1),
(59038,86969,2321,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (59038,86969,2321,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(59039,74704,3781,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (59039,74704,3781,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
@ -57298,7 +57234,7 @@ INSERT INTO `item_appearances` VALUES
(64540,171018,18705,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (64540,171018,18705,255,255,255,255,255,255,0,7,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(64541,89192,3809,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (64541,89192,3809,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(64542,77464,2320,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (64542,77464,2320,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(64543,158410,6469,147,98,68,170,142,117,0,19,0,4294967295,4294967295,4294967295,'5\0\0\'-',0,0,0,1), (64543,158410,6469,147,98,68,170,142,117,0,19,0,4294967295,4294967295,4294967295,'5\0\0''-',0,0,0,1),
(64544,82589,2249,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,1,0,0), (64544,82589,2249,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,1,0,0),
(64545,84614,3658,237,237,223,237,237,223,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (64545,84614,3658,237,237,223,237,237,223,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(64546,76939,5936,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,0), (64546,76939,5936,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,0),
@ -59592,7 +59528,7 @@ INSERT INTO `item_appearances` VALUES
(66833,73447,2426,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,1), (66833,73447,2426,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,1),
(66834,148873,5822,130,179,225,130,179,225,0,4,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (66834,148873,5822,130,179,225,130,179,225,0,4,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(66835,72164,3670,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,0), (66835,72164,3670,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,0),
(66836,137734,6469,111,39,56,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\'\0\0\0\0',0,0,0,1), (66836,137734,6469,111,39,56,234,234,234,0,19,0,4294967295,4294967295,4294967295,'''\0\0\0\0',0,0,0,1),
(66837,81304,4490,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (66837,81304,4490,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(66838,135730,417,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (66838,135730,417,255,255,255,255,255,255,0,2,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(66839,76910,2404,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,0), (66839,76910,2404,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,0),
@ -75645,7 +75581,7 @@ INSERT INTO `item_appearances` VALUES
(82885,81601,2298,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,0), (82885,81601,2298,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,1,0),
(82886,87932,2259,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,1,0,0), (82886,87932,2259,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,1,0,0),
(82887,77261,2320,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (82887,77261,2320,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(82888,163895,6477,82,82,82,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\0\0\'\0\0',0,0,0,1), (82888,163895,6477,82,82,82,234,234,234,0,19,0,4294967295,4294967295,4294967295,'\0\0''\0\0',0,0,0,1),
(82889,83098,2928,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1), (82889,83098,2928,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,1),
(82890,86392,2517,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0), (82890,86392,2517,255,255,255,255,255,255,0,0,0,4294967295,4294967295,4294967295,'\0\0\0\0\0\0\0',0,0,0,0),
(82891,63153,206,255,255,255,255,255,255,3,0,0,0,0,4294967295,'\0\0\0\0\0\0\0',4294967295,0,0,0), (82891,63153,206,255,255,255,255,255,255,3,0,0,0,0,4294967295,'\0\0\0\0\0\0\0',4294967295,0,0,0),
@ -84886,17 +84822,3 @@ INSERT INTO `item_appearances` VALUES
(147495,1130035,480,100,100,255,0,0,0,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0), (147495,1130035,480,100,100,255,0,0,0,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0),
(147496,1130036,2474,100,100,250,0,0,0,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0), (147496,1130036,2474,100,100,250,0,0,0,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0),
(147497,1070026,3245,112,132,144,112,132,144,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0); (147497,1070026,3245,112,132,144,112,132,144,0,0,0,4294967295,4294967295,4294967295,'0\0\0\0\0\0\0',0,0,0,0);
/*!40000 ALTER TABLE `item_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:06
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,74 +1,11 @@
-- Table: `item_classifications` DROP TABLE IF EXISTS item_classifications;
USE `eq2emu`; CREATE TABLE item_classifications (
SET FOREIGN_KEY_CHECKS=0; id INTEGER,
item_id INTEGER,
classification TEXT
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_classifications VALUES
-- 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 `item_classifications`
--
DROP TABLE IF EXISTS `item_classifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_classifications` (
`id` int(10) DEFAULT NULL,
`item_id` int(10) DEFAULT NULL,
`classification` varchar(150) DEFAULT NULL
) ENGINE=InnoDB 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:06
/*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 `item_classifications`
--
LOCK TABLES `item_classifications` WRITE;
/*!40000 ALTER TABLE `item_classifications` DISABLE KEYS */;
INSERT INTO `item_classifications` VALUES
(1,60000,'100x_multiplier'), (1,60000,'100x_multiplier'),
(2,60001,'100x_multiplier'), (2,60001,'100x_multiplier'),
(3,60002,'100x_multiplier'), (3,60002,'100x_multiplier'),
@ -19470,7 +19407,7 @@ INSERT INTO `item_classifications` VALUES
(19399,35252,'deer steak'), (19399,35252,'deer steak'),
(19400,35252,'materials'), (19400,35252,'materials'),
(19401,35252,'prepared food'), (19401,35252,'prepared food'),
(19402,35253,'denmother\'s_trail_mix'), (19402,35253,'denmother''s_trail_mix'),
(19403,35253,'materials'), (19403,35253,'materials'),
(19404,35253,'prepared food'), (19404,35253,'prepared food'),
(19405,4337,'dough'), (19405,4337,'dough'),
@ -24211,7 +24148,7 @@ INSERT INTO `item_classifications` VALUES
(24140,35548,'finished'), (24140,35548,'finished'),
(24141,35549,'condition'), (24141,35549,'condition'),
(24142,35549,'finished'), (24142,35549,'finished'),
(24143,35550,'creamed_maj\'dul_coffee'), (24143,35550,'creamed_maj''dul_coffee'),
(24144,35550,'materials'), (24144,35550,'materials'),
(24145,35550,'prepared food'), (24145,35550,'prepared food'),
(24146,35550,'condition'), (24146,35550,'condition'),
@ -28591,7 +28528,7 @@ INSERT INTO `item_classifications` VALUES
(28520,35779,'finished'), (28520,35779,'finished'),
(28521,35782,'condition'), (28521,35782,'condition'),
(28522,35782,'finished'), (28522,35782,'finished'),
(28523,35783,'creamed_maj\'dul_coffee'), (28523,35783,'creamed_maj''dul_coffee'),
(28524,35783,'materials'), (28524,35783,'materials'),
(28525,35783,'prepared food'), (28525,35783,'prepared food'),
(28526,35783,'condition'), (28526,35783,'condition'),
@ -34703,7 +34640,7 @@ INSERT INTO `item_classifications` VALUES
(34632,35947,'deer steak'), (34632,35947,'deer steak'),
(34633,35947,'materials'), (34633,35947,'materials'),
(34634,35947,'prepared food'), (34634,35947,'prepared food'),
(34635,35948,'denmother\'s_trail_mix'), (34635,35948,'denmother''s_trail_mix'),
(34636,35948,'materials'), (34636,35948,'materials'),
(34637,35948,'prepared food'), (34637,35948,'prepared food'),
(34638,6378,'dough'), (34638,6378,'dough'),
@ -35100,7 +35037,7 @@ INSERT INTO `item_classifications` VALUES
(35029,106298,'spellscroll'), (35029,106298,'spellscroll'),
(35030,6384,'condition'), (35030,6384,'condition'),
(35031,6384,'finished'), (35031,6384,'finished'),
(35032,36088,'denmother\'s_trail_mix'), (35032,36088,'denmother''s_trail_mix'),
(35033,36088,'materials'), (35033,36088,'materials'),
(35034,36088,'prepared food'), (35034,36088,'prepared food'),
(35035,6385,'dynamic_purchase_value'), (35035,6385,'dynamic_purchase_value'),
@ -68879,7 +68816,7 @@ INSERT INTO `item_classifications` VALUES
(68807,36717,'finished'), (68807,36717,'finished'),
(68808,36718,'condition'), (68808,36718,'condition'),
(68809,36718,'finished'), (68809,36718,'finished'),
(68810,36719,'creamed_maj\'dul_coffee'), (68810,36719,'creamed_maj''dul_coffee'),
(68811,36719,'materials'), (68811,36719,'materials'),
(68812,36719,'prepared food'), (68812,36719,'prepared food'),
(68813,36719,'condition'), (68813,36719,'condition'),
@ -73613,7 +73550,7 @@ INSERT INTO `item_classifications` VALUES
(73541,37020,'deer steak'), (73541,37020,'deer steak'),
(73542,37020,'materials'), (73542,37020,'materials'),
(73543,37020,'prepared food'), (73543,37020,'prepared food'),
(73544,37021,'denmother\'s_trail_mix'), (73544,37021,'denmother''s_trail_mix'),
(73545,37021,'materials'), (73545,37021,'materials'),
(73546,37021,'prepared food'), (73546,37021,'prepared food'),
(73547,11951,'dough'), (73547,11951,'dough'),
@ -87671,17 +87608,3 @@ INSERT INTO `item_classifications` VALUES
(87598,122706,'spellscroll'), (87598,122706,'spellscroll'),
(87599,122707,'spellscroll'), (87599,122707,'spellscroll'),
(87600,122708,'spellscroll'); (87600,122708,'spellscroll');
/*!40000 ALTER TABLE `item_classifications` 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:06
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,94 +1,16 @@
-- Table: `item_details_achievement_profile` DROP TABLE IF EXISTS item_details_achievement_profile;
USE `eq2emu`; CREATE TABLE item_details_achievement_profile (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL,
status_reduction INTEGER NOT NULL DEFAULT 0,
coin_reduction REAL NOT NULL DEFAULT 0,
house_type INTEGER NOT NULL DEFAULT 0,
unk_string TEXT,
unk1 INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_item_details_achievement_profile_item_id ON item_details_achievement_profile(item_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_achievement_profile VALUES
-- 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 `item_details_achievement_profile`
--
DROP TABLE IF EXISTS `item_details_achievement_profile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_achievement_profile` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL,
`status_reduction` int(10) unsigned NOT NULL DEFAULT 0,
`coin_reduction` float NOT NULL DEFAULT 0,
`house_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`unk_string` text DEFAULT NULL,
`unk1` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `FK_item_details_achievement_profile_items` (`item_id`),
CONSTRAINT `FK_item_details_achievement_profile_items` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 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:06
/*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 `item_details_achievement_profile`
--
LOCK TABLES `item_details_achievement_profile` WRITE;
/*!40000 ALTER TABLE `item_details_achievement_profile` DISABLE KEYS */;
INSERT INTO `item_details_achievement_profile` VALUES
(1,20101,500,0,1,'',0), (1,20101,500,0,1,'',0),
(2,20100,0,0,0,'',0); (2,20100,0,0,0,'',0);
/*!40000 ALTER TABLE `item_details_achievement_profile` 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:06
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,83 +1,19 @@
-- Table: `item_details_adornments` DROP TABLE IF EXISTS item_details_adornments;
USE `eq2emu`; CREATE TABLE item_details_adornments (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0,
duration REAL NOT NULL DEFAULT 0,
item_types INTEGER NOT NULL DEFAULT 0,
slot_type INTEGER NOT NULL DEFAULT 0,
description TEXT,
description2 TEXT,
unk1 INTEGER NOT NULL DEFAULT 0,
unk2 INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_item_details_adornments_item_id ON item_details_adornments(item_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_adornments VALUES
-- 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 `item_details_adornments`
--
DROP TABLE IF EXISTS `item_details_adornments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_adornments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`duration` float unsigned NOT NULL DEFAULT 0,
`item_types` bigint(20) unsigned NOT NULL DEFAULT 0,
`slot_type` smallint(5) unsigned NOT NULL DEFAULT 0,
`description` text DEFAULT NULL,
`description2` text DEFAULT NULL,
`unk1` int(10) unsigned NOT NULL DEFAULT 0,
`unk2` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `item_id` (`item_id`),
CONSTRAINT `FK_ida_itemid` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4987 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:06
/*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 `item_details_adornments`
--
LOCK TABLES `item_details_adornments` WRITE;
/*!40000 ALTER TABLE `item_details_adornments` DISABLE KEYS */;
INSERT INTO `item_details_adornments` VALUES
(1,25756,0,508,1,'This adornment can be used to augment a head, chest, gloves, boots, shoulders, bracers or leg slot item.','',0,0), (1,25756,0,508,1,'This adornment can be used to augment a head, chest, gloves, boots, shoulders, bracers or leg slot item.','',0,0),
(2,10025756,0,508,1,'This adornment can be used to augment a head, chest, gloves, boots, shoulders, bracers or leg slot item.','',0,0), (2,10025756,0,508,1,'This adornment can be used to augment a head, chest, gloves, boots, shoulders, bracers or leg slot item.','',0,0),
(3,25597,0,460,1,'This adornment can be used to augment a head, chest, gloves, boots or leg slot item.','',0,0), (3,25597,0,460,1,'This adornment can be used to augment a head, chest, gloves, boots or leg slot item.','',0,0),
@ -358,8 +294,8 @@ INSERT INTO `item_details_adornments` VALUES
(278,10026070,0,3997696,1,'This adornment can be used to augment a Cloak, Belt, Ranged, or Charm slot item.','',0,0), (278,10026070,0,3997696,1,'This adornment can be used to augment a Cloak, Belt, Ranged, or Charm slot item.','',0,0),
(279,26425,0,4,0,'This item can be used to adorn a Head slot item.','',0,0), (279,26425,0,4,0,'This item can be used to adorn a Head slot item.','',0,0),
(280,10026425,0,4,0,'This item can be used to adorn a Head slot item.','',0,0), (280,10026425,0,4,0,'This item can be used to adorn a Head slot item.','',0,0),
(281,25342,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel\'s Fate equipment.','',0,0), (281,25342,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel''s Fate equipment.','',0,0),
(282,10025342,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel\'s Fate equipment.','',0,0), (282,10025342,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel''s Fate equipment.','',0,0),
(283,26307,0,8192,0,'This item can be used to adorn a Neck slot item.','',0,0), (283,26307,0,8192,0,'This item can be used to adorn a Neck slot item.','',0,0),
(284,10026307,0,8192,0,'This item can be used to adorn a Neck slot item.','',0,0), (284,10026307,0,8192,0,'This item can be used to adorn a Neck slot item.','',0,0),
(285,26860,0,57672,0,'This adornment can be used to augment a chest, hands, feet, neck, or wrist slot item.','',0,0), (285,26860,0,57672,0,'This adornment can be used to augment a chest, hands, feet, neck, or wrist slot item.','',0,0),
@ -1518,8 +1454,8 @@ INSERT INTO `item_details_adornments` VALUES
(1438,10025877,0,460,1,'This adornment can be used to augment a head, chest, gloves, boots or leg slot item.','',0,0), (1438,10025877,0,460,1,'This adornment can be used to augment a head, chest, gloves, boots or leg slot item.','',0,0),
(1439,26727,0,3211267,1,'This adornment can be used to augment a primary, secondary, ranged, or charm slot item.','',0,0), (1439,26727,0,3211267,1,'This adornment can be used to augment a primary, secondary, ranged, or charm slot item.','',0,0),
(1440,10026727,0,3211267,1,'This adornment can be used to augment a primary, secondary, ranged, or charm slot item.','',0,0), (1440,10026727,0,3211267,1,'This adornment can be used to augment a primary, secondary, ranged, or charm slot item.','',0,0),
(1441,25624,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel\'s Fate equipment.','',0,0), (1441,25624,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel''s Fate equipment.','',0,0),
(1442,10025624,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel\'s Fate equipment.','',0,0), (1442,10025624,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel''s Fate equipment.','',0,0),
(1443,25663,0,460,2,'This adornment can be used to augment a head, chest, gloves, boots or leg slot item.','',0,0), (1443,25663,0,460,2,'This adornment can be used to augment a head, chest, gloves, boots or leg slot item.','',0,0),
(1444,10025663,0,460,2,'This adornment can be used to augment a head, chest, gloves, boots or leg slot item.','',0,0), (1444,10025663,0,460,2,'This adornment can be used to augment a head, chest, gloves, boots or leg slot item.','',0,0),
(1445,26739,0,3211267,1,'This adornment can be used to augment a primary, secondary, ranged, or charm slot item.','',0,0), (1445,26739,0,3211267,1,'This adornment can be used to augment a primary, secondary, ranged, or charm slot item.','',0,0),
@ -4424,8 +4360,8 @@ INSERT INTO `item_details_adornments` VALUES
(4344,10026750,0,16,3,'This adornment can be used to augment a shoulders slot item.','',0,0), (4344,10026750,0,16,3,'This adornment can be used to augment a shoulders slot item.','',0,0),
(4345,25165,0,16,0,'This item can be used to adorn a Shoulder slot item.','',0,0), (4345,25165,0,16,0,'This item can be used to adorn a Shoulder slot item.','',0,0),
(4346,10025165,0,16,0,'This item can be used to adorn a Shoulder slot item.','',0,0), (4346,10025165,0,16,0,'This item can be used to adorn a Shoulder slot item.','',0,0),
(4347,25472,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel\'s Fate equipment.','',0,0), (4347,25472,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel''s Fate equipment.','',0,0),
(4348,10025472,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel\'s Fate equipment.','',0,0), (4348,10025472,0,4,1,'This adornment can be used to augment a head slot item. This adornment can only adorn Sentinel''s Fate equipment.','',0,0),
(4349,26570,0,48,1,'This adornment can be used to augment a forearm or shoulder slot item.','',0,0), (4349,26570,0,48,1,'This adornment can be used to augment a forearm or shoulder slot item.','',0,0),
(4350,10026570,0,48,1,'This adornment can be used to augment a forearm or shoulder slot item.','',0,0), (4350,10026570,0,48,1,'This adornment can be used to augment a forearm or shoulder slot item.','',0,0),
(4351,27160,0,49152,0,'This item can be used to adorn a Wrist slot item.','',0,0), (4351,27160,0,49152,0,'This item can be used to adorn a Wrist slot item.','',0,0),
@ -5064,17 +5000,3 @@ INSERT INTO `item_details_adornments` VALUES
(4984,10027431,0,3,0,'','',0,28), (4984,10027431,0,3,0,'','',0,28),
(4985,26327,0,3,0,'','',0,28), (4985,26327,0,3,0,'','',0,28),
(4986,10026327,0,3,0,'','',0,28); (4986,10026327,0,3,0,'','',0,28);
/*!40000 ALTER TABLE `item_details_adornments` 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:06
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,81 +1,16 @@
-- Table: `item_details_armor` DROP TABLE IF EXISTS item_details_armor;
USE `eq2emu`; CREATE TABLE item_details_armor (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
mitigation_low INTEGER NOT NULL DEFAULT 0,
mitigation_high INTEGER NOT NULL DEFAULT 0,
absorb INTEGER NOT NULL DEFAULT 0,
unknown INTEGER NOT NULL DEFAULT 0,
item_score INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_armor VALUES
-- 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 `item_details_armor`
--
DROP TABLE IF EXISTS `item_details_armor`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_armor` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`mitigation_low` int(10) unsigned NOT NULL DEFAULT 0,
`mitigation_high` int(10) unsigned NOT NULL DEFAULT 0,
`absorb` smallint(6) NOT NULL DEFAULT 0,
`unknown` int(11) NOT NULL DEFAULT 0,
`item_score` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `NewIndex` (`item_id`),
CONSTRAINT `FK_item_details_armor` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=124429 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:06
/*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 `item_details_armor`
--
LOCK TABLES `item_details_armor` WRITE;
/*!40000 ALTER TABLE `item_details_armor` DISABLE KEYS */;
INSERT INTO `item_details_armor` VALUES
(1,157000,3,3,0,0,0), (1,157000,3,3,0,0,0),
(2,10157000,3,3,0,0,0), (2,10157000,3,3,0,0,0),
(3,172141,492,492,26,0,53), (3,172141,492,492,26,0,53),
@ -124507,17 +124442,3 @@ INSERT INTO `item_details_armor` VALUES
(124426,1130035,12,12,0,0,0), (124426,1130035,12,12,0,0,0),
(124427,1130036,16,16,0,0,0), (124427,1130036,16,16,0,0,0),
(124428,1130037,17,17,0,0,0); (124428,1130037,17,17,0,0,0);
/*!40000 ALTER TABLE `item_details_armor` 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:06
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,93 +1,14 @@
-- Table: `item_details_armorset` DROP TABLE IF EXISTS item_details_armorset;
USE `eq2emu`; CREATE TABLE item_details_armorset (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ soe_id INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) armorset_item_id INTEGER NOT NULL DEFAULT 0,
-- item_crc INTEGER NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu item_name TEXT NOT NULL DEFAULT 'N/A',
-- ------------------------------------------------------ item_icon INTEGER NOT NULL DEFAULT 0,
-- Server version 10.11.11-MariaDB-0+deb12u1 unknown_piece INTEGER NOT NULL DEFAULT 0,
language_type INTEGER NOT NULL DEFAULT 1,
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; UNIQUE(item_id, soe_id),
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
/*!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 `item_details_armorset`
--
DROP TABLE IF EXISTS `item_details_armorset`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_armorset` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`soe_id` int(11) NOT NULL DEFAULT 0,
`armorset_item_id` int(10) NOT NULL DEFAULT 0,
`item_crc` int(10) NOT NULL DEFAULT 0,
`item_name` varchar(255) NOT NULL DEFAULT 'N/A',
`item_icon` smallint(5) unsigned NOT NULL DEFAULT 0,
`unknown_piece` int(10) unsigned NOT NULL DEFAULT 0,
`language_type` tinyint(3) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `ArmorSetIDX` (`item_id`,`soe_id`),
CONSTRAINT `FK_item_details_armorset` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB 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:07
/*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 `item_details_armorset`
--
LOCK TABLES `item_details_armorset` WRITE;
/*!40000 ALTER TABLE `item_details_armorset` DISABLE KEYS */;
/*!40000 ALTER TABLE `item_details_armorset` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,82 +1,17 @@
-- Table: `item_details_bag` DROP TABLE IF EXISTS item_details_bag;
USE `eq2emu`; CREATE TABLE item_details_bag (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
num_slots INTEGER NOT NULL DEFAULT 0,
weight_reduction INTEGER NOT NULL DEFAULT 0,
unknown12 INTEGER NOT NULL DEFAULT 0,
backpack INTEGER NOT NULL DEFAULT 0,
unknown81 INTEGER NOT NULL DEFAULT 0,
unknown69 INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_bag VALUES
-- 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 `item_details_bag`
--
DROP TABLE IF EXISTS `item_details_bag`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_bag` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`num_slots` tinyint(3) unsigned NOT NULL DEFAULT 0,
`weight_reduction` tinyint(3) unsigned NOT NULL DEFAULT 0,
`unknown12` tinyint(3) unsigned NOT NULL DEFAULT 0,
`backpack` tinyint(1) unsigned NOT NULL DEFAULT 0,
`unknown81` tinyint(3) unsigned NOT NULL DEFAULT 0,
`unknown69` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `ItemIndex` (`item_id`),
CONSTRAINT `FK_item_details_bag` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=352 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:07
/*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 `item_details_bag`
--
LOCK TABLES `item_details_bag` WRITE;
/*!40000 ALTER TABLE `item_details_bag` DISABLE KEYS */;
INSERT INTO `item_details_bag` VALUES
(1,20917,14,0,0,0,0,0), (1,20917,14,0,0,0,0,0),
(2,20723,8,0,0,0,0,0), (2,20723,8,0,0,0,0,0),
(3,20752,12,0,0,0,0,0), (3,20752,12,0,0,0,0,0),
@ -428,17 +363,3 @@ INSERT INTO `item_details_bag` VALUES
(349,20756,48,0,0,0,0,0), (349,20756,48,0,0,0,0,0),
(350,1,100,0,0,0,0,0), (350,1,100,0,0,0,0,0),
(351,1020600,16,10,0,0,0,0); (351,1020600,16,10,0,0,0,0);
/*!40000 ALTER TABLE `item_details_bag` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,87 +1,22 @@
-- Table: `item_details_bauble` DROP TABLE IF EXISTS item_details_bauble;
USE `eq2emu`; CREATE TABLE item_details_bauble (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
cast INTEGER NOT NULL DEFAULT 100,
recovery INTEGER NOT NULL DEFAULT 0,
duration INTEGER NOT NULL DEFAULT 0,
recast REAL NOT NULL DEFAULT 1,
display_slot_optional INTEGER NOT NULL DEFAULT 0,
display_cast_time INTEGER NOT NULL DEFAULT 0,
display_bauble_type INTEGER NOT NULL DEFAULT 0,
effect_radius REAL NOT NULL DEFAULT 0,
max_aoe_targets INTEGER NOT NULL DEFAULT 0,
display_until_cancelled INTEGER NOT NULL DEFAULT 0,
item_score INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_bauble VALUES
-- 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 `item_details_bauble`
--
DROP TABLE IF EXISTS `item_details_bauble`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_bauble` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`cast` smallint(6) NOT NULL DEFAULT 100,
`recovery` smallint(6) NOT NULL DEFAULT 0,
`duration` int(10) unsigned NOT NULL DEFAULT 0,
`recast` float NOT NULL DEFAULT 1,
`display_slot_optional` tinyint(1) unsigned NOT NULL DEFAULT 0,
`display_cast_time` tinyint(1) unsigned NOT NULL DEFAULT 0,
`display_bauble_type` tinyint(1) unsigned NOT NULL DEFAULT 0,
`effect_radius` float NOT NULL DEFAULT 0,
`max_aoe_targets` int(11) NOT NULL DEFAULT 0,
`display_until_cancelled` tinyint(3) unsigned NOT NULL DEFAULT 0,
`item_score` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `ItemBaubleIDX` (`item_id`),
CONSTRAINT `FK_item_details_bauble` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8415 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:07
/*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 `item_details_bauble`
--
LOCK TABLES `item_details_bauble` WRITE;
/*!40000 ALTER TABLE `item_details_bauble` DISABLE KEYS */;
INSERT INTO `item_details_bauble` VALUES
(1,48734,99,50,0,75.9669,1,1,0,0,0,0,0), (1,48734,99,50,0,75.9669,1,1,0,0,0,0,0),
(2,10048734,99,50,0,75.9669,1,1,0,0,0,0,0), (2,10048734,99,50,0,75.9669,1,1,0,0,0,0,0),
(3,46683,396,50,432000,1.38122,1,1,0,0,0,0,0), (3,46683,396,50,432000,1.38122,1,1,0,0,0,0,0),
@ -8496,17 +8431,3 @@ INSERT INTO `item_details_bauble` VALUES
(8412,10047427,0,0,120,180,0,1,0,0,0,0,0), (8412,10047427,0,0,120,180,0,1,0,0,0,0,0),
(8413,1045000,50,0,0,60,0,0,0,0,0,0,0), (8413,1045000,50,0,0,60,0,0,0,0,0,0,0),
(8414,1045001,300,0,18000,10,1,1,0,0,0,0,0); (8414,1045001,300,0,18000,10,1,1,0,0,0,0,0);
/*!40000 ALTER TABLE `item_details_bauble` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,79 +1,15 @@
-- Table: `item_details_book` DROP TABLE IF EXISTS item_details_book;
USE `eq2emu`; CREATE TABLE item_details_book (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0,
language INTEGER NOT NULL DEFAULT 0,
author TEXT NOT NULL DEFAULT '',
title TEXT NOT NULL DEFAULT '',
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_item_details_book_item_id ON item_details_book(item_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_book VALUES
-- 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 `item_details_book`
--
DROP TABLE IF EXISTS `item_details_book`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_book` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`language` tinyint(3) unsigned NOT NULL DEFAULT 0,
`author` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `ItemBookIDX` (`item_id`),
CONSTRAINT `FK_item_details_book` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=540 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:07
/*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 `item_details_book`
--
LOCK TABLES `item_details_book` WRITE;
/*!40000 ALTER TABLE `item_details_book` DISABLE KEYS */;
INSERT INTO `item_details_book` VALUES
(1,21392,0,'',''), (1,21392,0,'',''),
(2,21433,0,'',''), (2,21433,0,'',''),
(3,21065,0,'',''), (3,21065,0,'',''),
@ -613,17 +549,3 @@ INSERT INTO `item_details_book` VALUES
(537,21384,0,'',''), (537,21384,0,'',''),
(538,1021000,0,'',''), (538,1021000,0,'',''),
(539,1021001,0,'',''); (539,1021001,0,'','');
/*!40000 ALTER TABLE `item_details_book` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,89 +1,10 @@
-- Table: `item_details_book_pages` DROP TABLE IF EXISTS item_details_book_pages;
USE `eq2emu`; CREATE TABLE item_details_book_pages (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ page INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) page_text TEXT NOT NULL,
-- page_text_valign INTEGER NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu page_text_halign INTEGER NOT NULL DEFAULT 0
-- ------------------------------------------------------ );
-- Server version 10.11.11-MariaDB-0+deb12u1 CREATE INDEX idx_item_details_book_pages_item_id ON item_details_book_pages(item_id);
/*!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 `item_details_book_pages`
--
DROP TABLE IF EXISTS `item_details_book_pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_book_pages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`page` tinyint(3) unsigned NOT NULL DEFAULT 0,
`page_text` text NOT NULL,
`page_text_valign` tinyint(3) NOT NULL DEFAULT 0,
`page_text_halign` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `ItemBookIDX` (`item_id`)
) ENGINE=InnoDB 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:07
/*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 `item_details_book_pages`
--
LOCK TABLES `item_details_book_pages` WRITE;
/*!40000 ALTER TABLE `item_details_book_pages` DISABLE KEYS */;
/*!40000 ALTER TABLE `item_details_book_pages` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,77 +1,12 @@
-- Table: `item_details_decorations` DROP TABLE IF EXISTS item_details_decorations;
USE `eq2emu`; CREATE TABLE item_details_decorations (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
decoration_name TEXT NOT NULL,
FOREIGN KEY (item_id) REFERENCES items(id) ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_decorations VALUES
-- 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 `item_details_decorations`
--
DROP TABLE IF EXISTS `item_details_decorations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_decorations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`decoration_name` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `DecorationIDX` (`item_id`),
CONSTRAINT `FK_item_details_decorations` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=49 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:07
/*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 `item_details_decorations`
--
LOCK TABLES `item_details_decorations` WRITE;
/*!40000 ALTER TABLE `item_details_decorations` DISABLE KEYS */;
INSERT INTO `item_details_decorations` VALUES
(1,20240,'reforge_fire_tier03'), (1,20240,'reforge_fire_tier03'),
(2,20246,'reforge_runic_tier03'), (2,20246,'reforge_runic_tier03'),
(3,20203,'reforge_ice_tier04'), (3,20203,'reforge_ice_tier04'),
@ -120,17 +55,3 @@ INSERT INTO `item_details_decorations` VALUES
(46,20229,'reforge_electricity_tier01'), (46,20229,'reforge_electricity_tier01'),
(47,20202,'reforge_fire_tier04'), (47,20202,'reforge_fire_tier04'),
(48,20243,'reforge_nature_tier03'); (48,20243,'reforge_nature_tier03');
/*!40000 ALTER TABLE `item_details_decorations` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,80 +1,15 @@
-- Table: `item_details_food` DROP TABLE IF EXISTS item_details_food;
USE `eq2emu`; CREATE TABLE item_details_food (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
type INTEGER NOT NULL DEFAULT 0,
level INTEGER NOT NULL DEFAULT 0,
duration REAL NOT NULL DEFAULT 0,
satiation INTEGER NOT NULL DEFAULT 2,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_food VALUES
-- 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 `item_details_food`
--
DROP TABLE IF EXISTS `item_details_food`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_food` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`level` smallint(6) NOT NULL DEFAULT 0,
`duration` float NOT NULL DEFAULT 0,
`satiation` tinyint(3) unsigned NOT NULL DEFAULT 2,
PRIMARY KEY (`id`),
UNIQUE KEY `ItemIndex` (`item_id`),
CONSTRAINT `FK_item_details_food` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2636 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:07
/*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 `item_details_food`
--
LOCK TABLES `item_details_food` WRITE;
/*!40000 ALTER TABLE `item_details_food` DISABLE KEYS */;
INSERT INTO `item_details_food` VALUES
(1,35958,1,20,3600,3), (1,35958,1,20,3600,3),
(2,35539,0,20,3000,3), (2,35539,0,20,3000,3),
(3,36605,1,90,8100,3), (3,36605,1,90,8100,3),
@ -2710,17 +2645,3 @@ INSERT INTO `item_details_food` VALUES
(2633,1035005,1,50,1800,1), (2633,1035005,1,50,1800,1),
(2634,1035006,0,10,1800,4), (2634,1035006,0,10,1800,4),
(2635,1035007,1,50,1800,1); (2635,1035007,1,50,1800,1);
/*!40000 ALTER TABLE `item_details_food` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,82 +1,17 @@
-- Table: `item_details_house` DROP TABLE IF EXISTS item_details_house;
USE `eq2emu`; CREATE TABLE item_details_house (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
rent_reduction INTEGER NOT NULL DEFAULT 0,
status_rent_reduction INTEGER NOT NULL DEFAULT 0,
coin_rent_reduction REAL NOT NULL DEFAULT 0,
house_only INTEGER NOT NULL DEFAULT 0,
house_location INTEGER NOT NULL DEFAULT 0,
unk1 INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_house VALUES
-- 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 `item_details_house`
--
DROP TABLE IF EXISTS `item_details_house`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_house` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`rent_reduction` int(10) unsigned NOT NULL DEFAULT 0,
`status_rent_reduction` int(10) unsigned NOT NULL DEFAULT 0,
`coin_rent_reduction` float NOT NULL DEFAULT 0,
`house_only` tinyint(3) unsigned NOT NULL DEFAULT 0,
`house_location` tinyint(3) unsigned NOT NULL DEFAULT 0,
`unk1` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `NewIndex` (`item_id`),
CONSTRAINT `FK_item_details_house` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7219 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:07
/*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 `item_details_house`
--
LOCK TABLES `item_details_house` WRITE;
/*!40000 ALTER TABLE `item_details_house` DISABLE KEYS */;
INSERT INTO `item_details_house` VALUES
(1,61311,0,400,0,0,2,0), (1,61311,0,400,0,0,2,0),
(2,64588,0,0,0,0,0,0), (2,64588,0,0,0,0,0,0),
(3,63050,0,500,0,0,2,0), (3,63050,0,500,0,0,2,0),
@ -7295,17 +7230,3 @@ INSERT INTO `item_details_house` VALUES
(7216,1060000,0,50,0,0,1,0), (7216,1060000,0,50,0,0,1,0),
(7217,1060001,0,20,0,0,1,0), (7217,1060001,0,20,0,0,1,0),
(7218,1060002,0,0,0,0,0,0); (7218,1060002,0,0,0,0,0,0);
/*!40000 ALTER TABLE `item_details_house` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,82 +1,17 @@
-- Table: `item_details_house_container` DROP TABLE IF EXISTS item_details_house_container;
USE `eq2emu`; CREATE TABLE item_details_house_container (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
num_slots INTEGER NOT NULL DEFAULT 0,
allowed_types INTEGER NOT NULL DEFAULT 0,
unknown12 INTEGER NOT NULL DEFAULT 0,
unknown13 INTEGER NOT NULL DEFAULT 0,
broker_commission INTEGER NOT NULL DEFAULT 0,
fence_commission INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_house_container VALUES
-- 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 `item_details_house_container`
--
DROP TABLE IF EXISTS `item_details_house_container`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_house_container` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`num_slots` smallint(5) unsigned NOT NULL DEFAULT 0,
`allowed_types` bigint(20) unsigned NOT NULL DEFAULT 0,
`unknown12` int(10) unsigned NOT NULL DEFAULT 0,
`unknown13` tinyint(3) unsigned NOT NULL DEFAULT 0,
`broker_commission` smallint(5) unsigned NOT NULL DEFAULT 0,
`fence_commission` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `HouseContainerIDX` (`item_id`),
CONSTRAINT `FK_item_details_house_container` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=66 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:07
/*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 `item_details_house_container`
--
LOCK TABLES `item_details_house_container` WRITE;
/*!40000 ALTER TABLE `item_details_house_container` DISABLE KEYS */;
INSERT INTO `item_details_house_container` VALUES
(1,20340,72,135168,4294967295,0,100,100), (1,20340,72,135168,4294967295,0,100,100),
(2,20319,96,33556480,4294967295,0,100,100), (2,20319,96,33556480,4294967295,0,100,100),
(3,20356,56,33556480,4294967295,0,100,100), (3,20356,56,33556480,4294967295,0,100,100),
@ -142,17 +77,3 @@ INSERT INTO `item_details_house_container` VALUES
(63,20305,64,16875520,4294967295,0,100,100), (63,20305,64,16875520,4294967295,0,100,100),
(64,20331,48,135168,4294967295,0,100,100), (64,20331,48,135168,4294967295,0,100,100),
(65,20318,96,7864352,4294967295,0,100,100); (65,20318,96,7864352,4294967295,0,100,100);
/*!40000 ALTER TABLE `item_details_house_container` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,81 +1,17 @@
-- Table: `item_details_itemset` DROP TABLE IF EXISTS item_details_itemset;
USE `eq2emu`; CREATE TABLE item_details_itemset (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
itemset_item_id INTEGER NOT NULL DEFAULT 0,
item_id INTEGER NOT NULL DEFAULT 0,
item_icon INTEGER NOT NULL DEFAULT 0,
item_stack_size INTEGER NOT NULL DEFAULT 0,
item_list_color INTEGER NOT NULL DEFAULT 0,
language_type INTEGER NOT NULL DEFAULT 0,
UNIQUE(itemset_item_id, item_id, language_type),
FOREIGN KEY (itemset_item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_itemset VALUES
-- 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 `item_details_itemset`
--
DROP TABLE IF EXISTS `item_details_itemset`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_itemset` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`itemset_item_id` int(10) unsigned NOT NULL DEFAULT 0,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`item_icon` smallint(5) unsigned NOT NULL DEFAULT 0,
`item_stack_size` smallint(5) unsigned NOT NULL DEFAULT 0,
`item_list_color` int(10) NOT NULL DEFAULT 0,
`language_type` tinyint(3) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `ItemsetIDX` (`itemset_item_id`,`item_id`,`language_type`),
CONSTRAINT `FK_item_details_itemset` FOREIGN KEY (`itemset_item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2737 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:07
/*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 `item_details_itemset`
--
LOCK TABLES `item_details_itemset` WRITE;
/*!40000 ALTER TABLE `item_details_itemset` DISABLE KEYS */;
INSERT INTO `item_details_itemset` VALUES
(1,22000,0,926,0,3,0), (1,22000,0,926,0,3,0),
(2,22000,48296,27,0,3,0), (2,22000,48296,27,0,3,0),
(3,22000,11501,3933,0,3,0), (3,22000,11501,3933,0,3,0),
@ -2277,17 +2213,3 @@ INSERT INTO `item_details_itemset` VALUES
(2734,22529,63813,567,0,3,0), (2734,22529,63813,567,0,3,0),
(2735,22498,187024,3246,0,6,0), (2735,22498,187024,3246,0,6,0),
(2736,22498,187025,3244,0,6,0); (2736,22498,187025,3244,0,6,0);
/*!40000 ALTER TABLE `item_details_itemset` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,78 +1,14 @@
-- Table: `item_details_marketplace` DROP TABLE IF EXISTS item_details_marketplace;
USE `eq2emu`; CREATE TABLE item_details_marketplace (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
marketplace_item_id INTEGER NOT NULL DEFAULT 0,
item_id INTEGER NOT NULL DEFAULT 0,
item_icon INTEGER NOT NULL DEFAULT 0,
UNIQUE(marketplace_item_id, item_id),
FOREIGN KEY (marketplace_item_id) REFERENCES items(id) ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_marketplace VALUES
-- 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 `item_details_marketplace`
--
DROP TABLE IF EXISTS `item_details_marketplace`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_marketplace` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`marketplace_item_id` int(10) unsigned NOT NULL DEFAULT 0,
`item_id` int(10) NOT NULL DEFAULT 0,
`item_icon` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `MarketplaceIDX` (`marketplace_item_id`,`item_id`),
CONSTRAINT `FK_item_details_marketplace` FOREIGN KEY (`marketplace_item_id`) REFERENCES `items` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=32 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:07
/*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 `item_details_marketplace`
--
LOCK TABLES `item_details_marketplace` WRITE;
/*!40000 ALTER TABLE `item_details_marketplace` DISABLE KEYS */;
INSERT INTO `item_details_marketplace` VALUES
(1,20000,730880832,4046), (1,20000,730880832,4046),
(2,20000,-1668431471,3943), (2,20000,-1668431471,3943),
(3,20000,1166897608,3853), (3,20000,1166897608,3853),
@ -104,17 +40,3 @@ INSERT INTO `item_details_marketplace` VALUES
(29,20000,55459849,3172), (29,20000,55459849,3172),
(30,20000,-1953425035,2247), (30,20000,-1953425035,2247),
(31,20000,-2018989466,3862); (31,20000,-2018989466,3862);
/*!40000 ALTER TABLE `item_details_marketplace` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,93 +1,14 @@
-- Table: `item_details_pattern` DROP TABLE IF EXISTS item_details_pattern;
USE `eq2emu`; CREATE TABLE item_details_pattern (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0,
pattern_item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
item_icon INTEGER NOT NULL DEFAULT 0,
item_name TEXT DEFAULT '',
FOREIGN KEY (item_id) REFERENCES items(id) ON UPDATE CASCADE
);
CREATE INDEX idx_item_details_pattern_item_id ON item_details_pattern(item_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_pattern VALUES
-- 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 `item_details_pattern`
--
DROP TABLE IF EXISTS `item_details_pattern`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_pattern` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`pattern_item_id` int(10) unsigned NOT NULL DEFAULT 0,
`item_icon` smallint(5) unsigned NOT NULL DEFAULT 0,
`item_name` varchar(250) DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `PatternIDX` (`pattern_item_id`),
KEY `FK_item_details_pattern` (`item_id`),
CONSTRAINT `FK_item_details_pattern` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 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:07
/*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 `item_details_pattern`
--
LOCK TABLES `item_details_pattern` WRITE;
/*!40000 ALTER TABLE `item_details_pattern` DISABLE KEYS */;
INSERT INTO `item_details_pattern` VALUES
(1,23000,0,2226,'A Bloody Drakota Eye'), (1,23000,0,2226,'A Bloody Drakota Eye'),
(2,23001,401512330,83,'A Bloody Prime Drakota Eye'); (2,23001,401512330,83,'A Bloody Prime Drakota Eye');
/*!40000 ALTER TABLE `item_details_pattern` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,88 +1,23 @@
-- Table: `item_details_range` DROP TABLE IF EXISTS item_details_range;
USE `eq2emu`; CREATE TABLE item_details_range (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
dmg_low INTEGER NOT NULL DEFAULT 0,
dmg_high INTEGER NOT NULL DEFAULT 0,
dmg_mastery_low INTEGER NOT NULL DEFAULT 0,
dmg_mastery_high INTEGER NOT NULL DEFAULT 0,
dmg_base_low INTEGER NOT NULL DEFAULT 0,
dmg_base_high INTEGER NOT NULL DEFAULT 0,
delay INTEGER NOT NULL DEFAULT 0,
range_low INTEGER NOT NULL DEFAULT 0,
range_high INTEGER NOT NULL DEFAULT 0,
damage_rating REAL NOT NULL DEFAULT 0,
damage_type INTEGER NOT NULL DEFAULT 0,
item_score INTEGER,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_range VALUES
-- 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 `item_details_range`
--
DROP TABLE IF EXISTS `item_details_range`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_range` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`dmg_low` smallint(5) NOT NULL DEFAULT 0,
`dmg_high` smallint(5) NOT NULL DEFAULT 0,
`dmg_mastery_low` smallint(5) NOT NULL DEFAULT 0,
`dmg_mastery_high` smallint(5) NOT NULL DEFAULT 0,
`dmg_base_low` smallint(5) NOT NULL DEFAULT 0,
`dmg_base_high` smallint(5) NOT NULL DEFAULT 0,
`delay` tinyint(3) unsigned NOT NULL DEFAULT 0,
`range_low` smallint(5) unsigned NOT NULL DEFAULT 0,
`range_high` smallint(5) unsigned NOT NULL DEFAULT 0,
`damage_rating` float unsigned NOT NULL DEFAULT 0,
`damage_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`item_score` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `NewIndex` (`item_id`),
CONSTRAINT `FK_item_details_range` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7100 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:07
/*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 `item_details_range`
--
LOCK TABLES `item_details_range` WRITE;
/*!40000 ALTER TABLE `item_details_range` DISABLE KEYS */;
INSERT INTO `item_details_range` VALUES
(1,40001,1012,5562,1012,5562,121,663,90,2,35,87.1278,2,66), (1,40001,1012,5562,1012,5562,121,663,90,2,35,87.1278,2,66),
(2,10040001,506,2781,506,2781,60,332,90,2,35,43.5639,2,66), (2,10040001,506,2781,506,2781,60,332,90,2,35,43.5639,2,66),
(3,41579,519,1537,519,1537,62,183,28,2,25,87.5841,2,0), (3,41579,519,1537,519,1537,62,183,28,2,25,87.5841,2,0),
@ -7182,17 +7117,3 @@ INSERT INTO `item_details_range` VALUES
(7097,1040000,14,69,22,110,22,110,45,2,27,29,0,NULL), (7097,1040000,14,69,22,110,22,110,45,2,27,29,0,NULL),
(7098,1040001,14,28,23,45,23,45,28,2,25,24.2,0,NULL), (7098,1040001,14,28,23,45,23,45,28,2,25,24.2,0,NULL),
(7099,1040002,22,109,22,109,10,48,45,2,25,12.8,0,NULL); (7099,1040002,22,109,22,109,10,48,45,2,25,12.8,0,NULL);
/*!40000 ALTER TABLE `item_details_range` 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:07
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,76 +1,12 @@
-- Table: `item_details_recipe` DROP TABLE IF EXISTS item_details_recipe;
USE `eq2emu`; CREATE TABLE item_details_recipe (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0,
recipe_id INTEGER NOT NULL DEFAULT 0,
max_uses INTEGER NOT NULL DEFAULT 0
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_recipe VALUES
-- 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 `item_details_recipe`
--
DROP TABLE IF EXISTS `item_details_recipe`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_recipe` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`recipe_id` int(10) unsigned NOT NULL DEFAULT 0,
`max_uses` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2652 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:07
/*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 `item_details_recipe`
--
LOCK TABLES `item_details_recipe` WRITE;
/*!40000 ALTER TABLE `item_details_recipe` DISABLE KEYS */;
INSERT INTO `item_details_recipe` VALUES
(1,30732,30732,0), (1,30732,30732,0),
(2,31300,31300,0), (2,31300,31300,0),
(3,32065,32065,0), (3,32065,32065,0),
@ -2722,17 +2658,3 @@ INSERT INTO `item_details_recipe` VALUES
(2649,1030026,1030026,0), (2649,1030026,1030026,0),
(2650,1030039,0,0), (2650,1030039,0,0),
(2651,1030040,0,0); (2651,1030040,0,0);
/*!40000 ALTER TABLE `item_details_recipe` 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:08
SET FOREIGN_KEY_CHECKS=1;

File diff suppressed because it is too large Load Diff

View File

@ -1,78 +1,14 @@
-- Table: `item_details_reward_crate` DROP TABLE IF EXISTS item_details_reward_crate;
USE `eq2emu`; CREATE TABLE item_details_reward_crate (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL,
unk1 INTEGER NOT NULL DEFAULT 0,
unk2 INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_item_details_reward_crate_item_id ON item_details_reward_crate(item_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_reward_crate VALUES
-- 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 `item_details_reward_crate`
--
DROP TABLE IF EXISTS `item_details_reward_crate`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_reward_crate` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL,
`unk1` tinyint(3) unsigned NOT NULL DEFAULT 0,
`unk2` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `FK_item_details_reward_crate_items` (`item_id`),
CONSTRAINT `FK_item_details_reward_crate_items` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=549 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:08
/*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 `item_details_reward_crate`
--
LOCK TABLES `item_details_reward_crate` WRITE;
/*!40000 ALTER TABLE `item_details_reward_crate` DISABLE KEYS */;
INSERT INTO `item_details_reward_crate` VALUES
(1,22377,0,0), (1,22377,0,0),
(2,22329,0,0), (2,22329,0,0),
(3,22132,0,0), (3,22132,0,0),
@ -621,17 +557,3 @@ INSERT INTO `item_details_reward_crate` VALUES
(546,22389,0,0), (546,22389,0,0),
(547,22524,0,0), (547,22524,0,0),
(548,22317,1,0); (548,22317,1,0);
/*!40000 ALTER TABLE `item_details_reward_crate` 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:08
SET FOREIGN_KEY_CHECKS=1;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,79 +1,14 @@
-- Table: `item_details_shield` DROP TABLE IF EXISTS item_details_shield;
USE `eq2emu`; CREATE TABLE item_details_shield (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
mitigation_low INTEGER NOT NULL DEFAULT 0,
mitigation_high INTEGER NOT NULL DEFAULT 0,
item_score INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_shield VALUES
-- 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 `item_details_shield`
--
DROP TABLE IF EXISTS `item_details_shield`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_shield` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`mitigation_low` smallint(5) unsigned NOT NULL DEFAULT 0,
`mitigation_high` smallint(5) unsigned NOT NULL DEFAULT 0,
`item_score` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `NewIndex` (`item_id`),
CONSTRAINT `FK_item_details_shield` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11323 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:08
/*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 `item_details_shield`
--
LOCK TABLES `item_details_shield` WRITE;
/*!40000 ALTER TABLE `item_details_shield` DISABLE KEYS */;
INSERT INTO `item_details_shield` VALUES
(1,51411,1838,1838,0), (1,51411,1838,1838,0),
(2,10051411,1838,1838,0), (2,10051411,1838,1838,0),
(3,53407,336,336,0), (3,53407,336,336,0),
@ -11396,17 +11331,3 @@ INSERT INTO `item_details_shield` VALUES
(11320,10054315,0,0,0), (11320,10054315,0,0,0),
(11321,50949,504,504,0), (11321,50949,504,504,0),
(11322,10050949,504,504,0); (11322,10050949,504,504,0);
/*!40000 ALTER TABLE `item_details_shield` 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:08
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,79 +1,15 @@
-- Table: `item_details_skill` DROP TABLE IF EXISTS item_details_skill;
USE `eq2emu`; CREATE TABLE item_details_skill (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0,
spell_id INTEGER,
spell_tier INTEGER NOT NULL DEFAULT 1,
soe_spell_crc INTEGER NOT NULL,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_item_details_skill_item_id ON item_details_skill(item_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_skill VALUES
-- 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 `item_details_skill`
--
DROP TABLE IF EXISTS `item_details_skill`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_skill` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`spell_id` int(10) unsigned DEFAULT NULL,
`spell_tier` tinyint(3) unsigned NOT NULL DEFAULT 1,
`soe_spell_crc` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `FK_item_details_skill` (`item_id`),
CONSTRAINT `FK_item_details_skill` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=49764 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:08
/*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 `item_details_skill`
--
LOCK TABLES `item_details_skill` WRITE;
/*!40000 ALTER TABLE `item_details_skill` DISABLE KEYS */;
INSERT INTO `item_details_skill` VALUES
(1,107238,300053,9,2578724234), (1,107238,300053,9,2578724234),
(2,10107238,300053,9,2578724234), (2,10107238,300053,9,2578724234),
(3,106154,100135,2,2554521598), (3,106154,100135,2,2554521598),
@ -49838,17 +49774,3 @@ INSERT INTO `item_details_skill` VALUES
(49761,1100070,NULL,1,0), (49761,1100070,NULL,1,0),
(49762,1100071,NULL,1,0), (49762,1100071,NULL,1,0),
(49763,1100072,NULL,1,0); (49763,1100072,NULL,1,0);
/*!40000 ALTER TABLE `item_details_skill` 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:08
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,109 +1,29 @@
-- Table: `item_details_skills` DROP TABLE IF EXISTS item_details_skills;
USE `eq2emu`; CREATE TABLE item_details_skills (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
/*M!999999\- enable the sandbox mode */ unknown12 INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) unknown13 INTEGER NOT NULL DEFAULT 0,
-- unknown14 INTEGER NOT NULL DEFAULT 0,
-- Host: localhost Database: eq2emu unknown15 INTEGER NOT NULL DEFAULT 0,
-- ------------------------------------------------------ unknown16 INTEGER NOT NULL DEFAULT 0,
-- Server version 10.11.11-MariaDB-0+deb12u1 unknown17 INTEGER NOT NULL DEFAULT 0,
duration INTEGER NOT NULL DEFAULT 0,
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; unknown18 INTEGER NOT NULL DEFAULT 0,
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; unknown19 INTEGER NOT NULL DEFAULT 0,
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; unknown20 INTEGER NOT NULL DEFAULT 0,
/*!40101 SET NAMES utf8mb4 */; unknown21 INTEGER NOT NULL DEFAULT 0,
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; unknown22 INTEGER NOT NULL DEFAULT 0,
/*!40103 SET TIME_ZONE='+00:00' */; unknown23 INTEGER NOT NULL DEFAULT 0,
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; unknown24 INTEGER NOT NULL DEFAULT 0,
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; power_req INTEGER NOT NULL DEFAULT 0,
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; power_upkeep_req INTEGER NOT NULL DEFAULT 0,
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; hp_req INTEGER NOT NULL DEFAULT 0,
hp_upkeep_req INTEGER NOT NULL DEFAULT 0,
-- cast INTEGER NOT NULL DEFAULT 0,
-- Table structure for table `item_details_skills` recovery INTEGER NOT NULL DEFAULT 0,
-- recast REAL NOT NULL DEFAULT 0,
unknown25 REAL NOT NULL DEFAULT 0,
DROP TABLE IF EXISTS `item_details_skills`; unknown26 INTEGER NOT NULL DEFAULT 0,
/*!40101 SET @saved_cs_client = @@character_set_client */; FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
/*!40101 SET character_set_client = utf8mb4 */; );
CREATE TABLE `item_details_skills` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`unknown12` int(10) unsigned NOT NULL DEFAULT 0,
`unknown13` smallint(5) unsigned NOT NULL DEFAULT 0,
`unknown14` smallint(5) unsigned NOT NULL DEFAULT 0,
`unknown15` smallint(5) unsigned NOT NULL DEFAULT 0,
`unknown16` smallint(5) unsigned NOT NULL DEFAULT 0,
`unknown17` smallint(5) unsigned NOT NULL DEFAULT 0,
`duration` smallint(5) unsigned NOT NULL DEFAULT 0,
`unknown18` int(10) unsigned NOT NULL DEFAULT 0,
`unknown19` int(10) unsigned NOT NULL DEFAULT 0,
`unknown20` int(10) unsigned NOT NULL DEFAULT 0,
`unknown21` int(10) unsigned NOT NULL DEFAULT 0,
`unknown22` tinyint(3) unsigned NOT NULL DEFAULT 0,
`unknown23` smallint(5) unsigned NOT NULL DEFAULT 0,
`unknown24` smallint(5) unsigned NOT NULL DEFAULT 0,
`power_req` smallint(5) unsigned NOT NULL DEFAULT 0,
`power_upkeep_req` smallint(5) unsigned NOT NULL DEFAULT 0,
`hp_req` smallint(5) unsigned NOT NULL DEFAULT 0,
`hp_upkeep_req` smallint(5) unsigned NOT NULL DEFAULT 0,
`cast` smallint(5) unsigned NOT NULL DEFAULT 0,
`recovery` smallint(5) unsigned NOT NULL DEFAULT 0,
`recast` float unsigned NOT NULL DEFAULT 0,
`unknown25` float unsigned NOT NULL DEFAULT 0,
`unknown26` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `ItemSkillsIDX` (`item_id`),
CONSTRAINT `FK_item_details_skills` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB 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:08
/*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 `item_details_skills`
--
LOCK TABLES `item_details_skills` WRITE;
/*!40000 ALTER TABLE `item_details_skills` DISABLE KEYS */;
/*!40000 ALTER TABLE `item_details_skills` 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:08
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,80 +1,15 @@
-- Table: `item_details_thrown` DROP TABLE IF EXISTS item_details_thrown;
USE `eq2emu`; CREATE TABLE item_details_thrown (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
range_bonus INTEGER NOT NULL DEFAULT 0,
damage_bonus INTEGER NOT NULL DEFAULT 0,
hit_bonus REAL NOT NULL DEFAULT 0,
damage_type INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_thrown VALUES
-- 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 `item_details_thrown`
--
DROP TABLE IF EXISTS `item_details_thrown`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_thrown` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`range_bonus` int(11) NOT NULL DEFAULT 0,
`damage_bonus` int(11) NOT NULL DEFAULT 0,
`hit_bonus` float NOT NULL DEFAULT 0,
`damage_type` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `NewIndex` (`item_id`),
CONSTRAINT `FK_item_details_thrown` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=316 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:08
/*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 `item_details_thrown`
--
LOCK TABLES `item_details_thrown` WRITE;
/*!40000 ALTER TABLE `item_details_thrown` DISABLE KEYS */;
INSERT INTO `item_details_thrown` VALUES
(1,20544,5,125,1.2,0), (1,20544,5,125,1.2,0),
(2,10020544,5,125,1.2,0), (2,10020544,5,125,1.2,0),
(3,20407,0,52,1.1,2), (3,20407,0,52,1.1,2),
@ -390,17 +325,3 @@ INSERT INTO `item_details_thrown` VALUES
(313,20452,5,18,1.2,2), (313,20452,5,18,1.2,2),
(314,10020452,5,18,1.2,2), (314,10020452,5,18,1.2,2),
(315,1020400,0,0,0,0); (315,1020400,0,0,0,0);
/*!40000 ALTER TABLE `item_details_thrown` 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:08
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,87 +1,22 @@
-- Table: `item_details_weapon` DROP TABLE IF EXISTS item_details_weapon;
USE `eq2emu`; CREATE TABLE item_details_weapon (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
wield_style INTEGER NOT NULL DEFAULT 0,
damage_type INTEGER NOT NULL DEFAULT 0,
dmg_low INTEGER NOT NULL DEFAULT 0,
dmg_high INTEGER NOT NULL DEFAULT 0,
dmg_mastery_low INTEGER NOT NULL DEFAULT 0,
dmg_mastery_high INTEGER NOT NULL DEFAULT 0,
dmg_base_low INTEGER NOT NULL DEFAULT 0,
dmg_base_high INTEGER NOT NULL DEFAULT 0,
delay INTEGER NOT NULL DEFAULT 0,
damage_rating REAL NOT NULL DEFAULT 0,
item_score INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_details_weapon VALUES
-- 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 `item_details_weapon`
--
DROP TABLE IF EXISTS `item_details_weapon`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_details_weapon` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`wield_style` tinyint(3) unsigned NOT NULL DEFAULT 0,
`damage_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`dmg_low` smallint(5) NOT NULL DEFAULT 0,
`dmg_high` smallint(5) NOT NULL DEFAULT 0,
`dmg_mastery_low` smallint(5) NOT NULL DEFAULT 0,
`dmg_mastery_high` smallint(5) NOT NULL DEFAULT 0,
`dmg_base_low` smallint(5) NOT NULL DEFAULT 0,
`dmg_base_high` smallint(5) NOT NULL DEFAULT 0,
`delay` tinyint(3) unsigned NOT NULL DEFAULT 0,
`damage_rating` float NOT NULL DEFAULT 0,
`item_score` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `ItemIndex` (`item_id`),
CONSTRAINT `FK_item_details_weapon` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=40949 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:08
/*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 `item_details_weapon`
--
LOCK TABLES `item_details_weapon` WRITE;
/*!40000 ALTER TABLE `item_details_weapon` DISABLE KEYS */;
INSERT INTO `item_details_weapon` VALUES
(1,78812,2,2,68,202,68,202,8,24,17,18.9209,0), (1,78812,2,2,68,202,68,202,8,24,17,18.9209,0),
(2,10078812,2,2,41,121,41,121,5,14,17,11.3525,0), (2,10078812,2,2,41,121,41,121,5,14,17,11.3525,0),
(3,70555,2,0,4,12,7,20,7,20,16,16.8,0), (3,70555,2,0,4,12,7,20,7,20,16,16.8,0),

File diff suppressed because it is too large Load Diff

View File

@ -1,78 +1,14 @@
-- Table: `item_itemset_bonus` DROP TABLE IF EXISTS item_itemset_bonus;
USE `eq2emu`; CREATE TABLE item_itemset_bonus (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
set_id INTEGER NOT NULL,
index INTEGER NOT NULL,
num_items_needed INTEGER NOT NULL,
UNIQUE(set_id, index),
FOREIGN KEY (set_id) REFERENCES item_itemsets(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_itemset_bonus VALUES
-- 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 `item_itemset_bonus`
--
DROP TABLE IF EXISTS `item_itemset_bonus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_itemset_bonus` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`set_id` int(10) unsigned NOT NULL,
`index` int(10) unsigned NOT NULL,
`num_items_needed` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UK_setid_index` (`set_id`,`index`),
CONSTRAINT `FK__item_itemsets` FOREIGN KEY (`set_id`) REFERENCES `item_itemsets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2675 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:11
/*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 `item_itemset_bonus`
--
LOCK TABLES `item_itemset_bonus` WRITE;
/*!40000 ALTER TABLE `item_itemset_bonus` DISABLE KEYS */;
INSERT INTO `item_itemset_bonus` VALUES
(1,1,0,2), (1,1,0,2),
(2,1,1,3), (2,1,1,3),
(3,1,2,4), (3,1,2,4),
@ -2747,17 +2683,3 @@ INSERT INTO `item_itemset_bonus` VALUES
(2672,1000,0,2), (2672,1000,0,2),
(2673,1001,0,2), (2673,1001,0,2),
(2674,1002,0,2); (2674,1002,0,2);
/*!40000 ALTER TABLE `item_itemset_bonus` 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:11
SET FOREIGN_KEY_CHECKS=1;

File diff suppressed because it is too large Load Diff

View File

@ -1,83 +1,19 @@
-- Table: `item_itemset_bonus_stats` DROP TABLE IF EXISTS item_itemset_bonus_stats;
USE `eq2emu`; CREATE TABLE item_itemset_bonus_stats (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
set_bonus_id INTEGER NOT NULL,
type INTEGER NOT NULL DEFAULT 0,
subtype INTEGER NOT NULL DEFAULT 0,
iValue INTEGER,
fValue REAL,
sValue TEXT,
level INTEGER NOT NULL DEFAULT 0,
stats_order INTEGER NOT NULL,
UNIQUE(set_bonus_id, stats_order),
FOREIGN KEY (set_bonus_id) REFERENCES item_itemset_bonus(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_itemset_bonus_stats VALUES
-- 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 `item_itemset_bonus_stats`
--
DROP TABLE IF EXISTS `item_itemset_bonus_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_itemset_bonus_stats` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`set_bonus_id` int(10) unsigned NOT NULL,
`type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`subtype` smallint(6) NOT NULL DEFAULT 0,
`iValue` int(11) DEFAULT NULL,
`fValue` float DEFAULT NULL,
`sValue` text DEFAULT NULL,
`level` tinyint(3) unsigned NOT NULL DEFAULT 0,
`stats_order` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UK_setbonusid_statsorder` (`set_bonus_id`,`stats_order`),
CONSTRAINT `FK_item_itemset_bonus_stats_item_itemset_bonus` FOREIGN KEY (`set_bonus_id`) REFERENCES `item_itemset_bonus` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2853 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:11
/*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 `item_itemset_bonus_stats`
--
LOCK TABLES `item_itemset_bonus_stats` WRITE;
/*!40000 ALTER TABLE `item_itemset_bonus_stats` DISABLE KEYS */;
INSERT INTO `item_itemset_bonus_stats` VALUES
(1,13,0,3,10,NULL,'',0,0), (1,13,0,3,10,NULL,'',0,0),
(2,16,0,3,10,NULL,'',0,0), (2,16,0,3,10,NULL,'',0,0),
(3,35,0,0,100,NULL,'',0,0), (3,35,0,0,100,NULL,'',0,0),
@ -2930,17 +2866,3 @@ INSERT INTO `item_itemset_bonus_stats` VALUES
(2850,2674,6,41,NULL,1,'',0,0), (2850,2674,6,41,NULL,1,'',0,0),
(2851,2674,6,54,NULL,1,'',0,1), (2851,2674,6,54,NULL,1,'',0,1),
(2852,2674,7,7,35,NULL,'',0,2); (2852,2674,7,7,35,NULL,'',0,2);
/*!40000 ALTER TABLE `item_itemset_bonus_stats` 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:11
SET FOREIGN_KEY_CHECKS=1;

File diff suppressed because it is too large Load Diff

View File

@ -1,78 +1,14 @@
-- Table: `item_itemsets` DROP TABLE IF EXISTS item_itemsets;
USE `eq2emu`; CREATE TABLE item_itemsets (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
set_name TEXT NOT NULL,
bPvpDesc INTEGER NOT NULL,
itemLevel INTEGER NOT NULL,
UNIQUE(bPvpDesc, set_name, itemLevel)
);
CREATE INDEX idx_item_itemsets_set_name ON item_itemsets(set_name);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_itemsets VALUES
-- 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 `item_itemsets`
--
DROP TABLE IF EXISTS `item_itemsets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_itemsets` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`set_name` varchar(255) NOT NULL,
`bPvpDesc` tinyint(4) NOT NULL,
`itemLevel` smallint(6) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UK_ItemSet_IDX` (`bPvpDesc`,`set_name`,`itemLevel`) USING BTREE,
KEY `SetNameIDX` (`set_name`)
) ENGINE=InnoDB AUTO_INCREMENT=1003 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:11
/*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 `item_itemsets`
--
LOCK TABLES `item_itemsets` WRITE;
/*!40000 ALTER TABLE `item_itemsets` DISABLE KEYS */;
INSERT INTO `item_itemsets` VALUES
(841,'Aberrant Set',0,65), (841,'Aberrant Set',0,65),
(245,'Abrupt Persuasion Set',0,83), (245,'Abrupt Persuasion Set',0,83),
(943,'Accuracy',0,83), (943,'Accuracy',0,83),
@ -80,10 +16,10 @@ INSERT INTO `item_itemsets` VALUES
(195,'Acute Pitch Set',0,65), (195,'Acute Pitch Set',0,65),
(153,'Acute Pitch Set',0,70), (153,'Acute Pitch Set',0,70),
(637,'Adept Blood Hide',0,42), (637,'Adept Blood Hide',0,42),
(199,'Adversary\'s Aura of Death',0,94), (199,'Adversary''s Aura of Death',0,94),
(561,'Aegis of Nem Anhk',0,74), (561,'Aegis of Nem Anhk',0,74),
(179,'Agressive Complementary attunement',0,96), (179,'Agressive Complementary attunement',0,96),
(413,'Al\'Kabor\'s Spellborn Garb',0,74), (413,'Al''Kabor''s Spellborn Garb',0,74),
(237,'Alluring Set',0,70), (237,'Alluring Set',0,70),
(665,'Angelic Soul Set',0,55), (665,'Angelic Soul Set',0,55),
(171,'Angelic Soul Set',0,65), (171,'Angelic Soul Set',0,65),
@ -97,11 +33,11 @@ INSERT INTO `item_itemsets` VALUES
(935,'Arcanist Abomination Anihiliation',0,73), (935,'Arcanist Abomination Anihiliation',0,73),
(573,'Arch Lich Set',0,85), (573,'Arch Lich Set',0,85),
(875,'Ardent Blessing Set',0,70), (875,'Ardent Blessing Set',0,70),
(789,'Artificer\'s Insight',0,70), (789,'Artificer''s Insight',0,70),
(353,'Artificer\'s Inspiration',0,80), (353,'Artificer''s Inspiration',0,80),
(719,'Artisan\'s Tools of the Trade',0,70), (719,'Artisan''s Tools of the Trade',0,70),
(39,'Atramentous Shadowplate Set',0,83), (39,'Atramentous Shadowplate Set',0,83),
(151,'Attacker\'s Aura of Death',0,94), (151,'Attacker''s Aura of Death',0,94),
(687,'Aura of the Terranai',0,93), (687,'Aura of the Terranai',0,93),
(713,'Banditry Set',0,85), (713,'Banditry Set',0,85),
(711,'Bastion of Light Set',0,83), (711,'Bastion of Light Set',0,83),
@ -109,8 +45,8 @@ INSERT INTO `item_itemsets` VALUES
(597,'Beastlord Set',0,55), (597,'Beastlord Set',0,55),
(119,'Beastlord Set',0,65), (119,'Beastlord Set',0,65),
(881,'Benevolence Set',0,83), (881,'Benevolence Set',0,83),
(801,'Bergo\'s Healy Healings',0,80), (801,'Bergo''s Healy Healings',0,80),
(857,'Bergo\'s Healy Healings',0,82), (857,'Bergo''s Healy Healings',0,82),
(519,'Berserk Rage Set',0,55), (519,'Berserk Rage Set',0,55),
(449,'Berserk Rage Set',0,65), (449,'Berserk Rage Set',0,65),
(627,'Berserk Rage Set',0,70), (627,'Berserk Rage Set',0,70),
@ -130,7 +66,7 @@ INSERT INTO `item_itemsets` VALUES
(571,'Bombast Set',0,65), (571,'Bombast Set',0,65),
(659,'Bombast Set',0,70), (659,'Bombast Set',0,70),
(649,'Cabalistic Sacrifice Set',0,80), (649,'Cabalistic Sacrifice Set',0,80),
(359,'Carson McCabe\'s Doubledealer',0,74), (359,'Carson McCabe''s Doubledealer',0,74),
(897,'Caustic Gore Set',0,55), (897,'Caustic Gore Set',0,55),
(439,'Caustic Gore Set',0,65), (439,'Caustic Gore Set',0,65),
(817,'Caustic Gore Set',0,70), (817,'Caustic Gore Set',0,70),
@ -139,12 +75,12 @@ INSERT INTO `item_itemsets` VALUES
(149,'Champion of the Elements',0,83), (149,'Champion of the Elements',0,83),
(73,'Champion of the Void',0,83), (73,'Champion of the Void',0,83),
(47,'Chaotic Energy',0,83), (47,'Chaotic Energy',0,83),
(59,'Chaplain\'s Armor of Piety',0,73), (59,'Chaplain''s Armor of Piety',0,73),
(499,'Charms of Abstract Faith',0,83), (499,'Charms of Abstract Faith',0,83),
(493,'Charms of Defensive Grace',0,83), (493,'Charms of Defensive Grace',0,83),
(739,'Charms of Destructive Rage',0,83), (739,'Charms of Destructive Rage',0,83),
(417,'Chemist\'s Insight',0,70), (417,'Chemist''s Insight',0,70),
(957,'Chemist\'s Inspiration',0,80), (957,'Chemist''s Inspiration',0,80),
(863,'Chivalrous Set',0,85), (863,'Chivalrous Set',0,85),
(321,'Clockwork Spidersilk',0,49), (321,'Clockwork Spidersilk',0,49),
(355,'Coercion Set',0,85), (355,'Coercion Set',0,85),
@ -152,17 +88,17 @@ INSERT INTO `item_itemsets` VALUES
(999,'Coiling Carnage',0,83), (999,'Coiling Carnage',0,83),
(965,'Collect them all',0,0), (965,'Collect them all',0,0),
(975,'Collect them all',0,90), (975,'Collect them all',0,90),
(175,'Combatant\'s Aura of Death',0,94), (175,'Combatant''s Aura of Death',0,94),
(737,'Combatant\'s Technique',0,83), (737,'Combatant''s Technique',0,83),
(887,'Concussive Set',0,55), (887,'Concussive Set',0,55),
(103,'Concussive Set',0,65), (103,'Concussive Set',0,65),
(301,'Concussive Set',0,70), (301,'Concussive Set',0,70),
(365,'Conjuror Set',0,80), (365,'Conjuror Set',0,80),
(679,'Consecrated Blood Iron',0,42), (679,'Consecrated Blood Iron',0,42),
(851,'Control',0,83), (851,'Control',0,83),
(121,'Convoker\'s Aura of Death',0,94), (121,'Convoker''s Aura of Death',0,94),
(809,'Convoker\'s Aura of Frost',0,94), (809,'Convoker''s Aura of Frost',0,94),
(955,'Crafter\'s Tools of the Trade',0,80), (955,'Crafter''s Tools of the Trade',0,80),
(45,'Crippling Assault',0,82), (45,'Crippling Assault',0,82),
(225,'Crippling Assault',0,83), (225,'Crippling Assault',0,83),
(829,'Crushbone Legionnaire',0,27), (829,'Crushbone Legionnaire',0,27),
@ -186,7 +122,7 @@ INSERT INTO `item_itemsets` VALUES
(951,'Deathly Aura of the Curate',0,96), (951,'Deathly Aura of the Curate',0,96),
(509,'Deathly Aura of the Magi',0,96), (509,'Deathly Aura of the Magi',0,96),
(899,'Deep Forged Trinkets',0,94), (899,'Deep Forged Trinkets',0,94),
(515,'Defender\'s Frozen Aura',0,94), (515,'Defender''s Frozen Aura',0,94),
(49,'Defensive Stance',0,82), (49,'Defensive Stance',0,82),
(543,'Defensive Stance',0,83), (543,'Defensive Stance',0,83),
(433,'Demonguards Set',0,81), (433,'Demonguards Set',0,81),
@ -194,7 +130,7 @@ INSERT INTO `item_itemsets` VALUES
(357,'Despiteful Set',0,80), (357,'Despiteful Set',0,80),
(769,'Destruction',0,83), (769,'Destruction',0,83),
(79,'Diabolic Set',0,70), (79,'Diabolic Set',0,70),
(129,'Diabolist\'s Aura of Death',0,94), (129,'Diabolist''s Aura of Death',0,94),
(855,'Dirty Crusade',0,80), (855,'Dirty Crusade',0,80),
(909,'Dirty Crusade',0,82), (909,'Dirty Crusade',0,82),
(471,'Divination Set',0,73), (471,'Divination Set',0,73),
@ -205,13 +141,13 @@ INSERT INTO `item_itemsets` VALUES
(127,'Earth Mend',0,93), (127,'Earth Mend',0,93),
(661,'Earth Strike',0,93), (661,'Earth Strike',0,93),
(761,'Earthen Set',0,85), (761,'Earthen Set',0,85),
(7,'Ebon Strongbear\'s Steelskin',0,74), (7,'Ebon Strongbear''s Steelskin',0,74),
(559,'Elemental Aura',0,85), (559,'Elemental Aura',0,85),
(249,'Elemental Fascination Set',0,83), (249,'Elemental Fascination Set',0,83),
(995,'Elemental Offense',0,83), (995,'Elemental Offense',0,83),
(307,'Elemental Offense',0,84), (307,'Elemental Offense',0,84),
(263,'Elucidated Truth',0,83), (263,'Elucidated Truth',0,83),
(599,'Empowerment of Mayong\'s Enemies',0,83), (599,'Empowerment of Mayong''s Enemies',0,83),
(453,'Enigmatic Sacrifice Set',0,80), (453,'Enigmatic Sacrifice Set',0,80),
(275,'Enlightened Credence Set',0,83), (275,'Enlightened Credence Set',0,83),
(117,'Enlightening Set',0,80), (117,'Enlightening Set',0,80),
@ -220,14 +156,14 @@ INSERT INTO `item_itemsets` VALUES
(177,'Enthralling Magics',0,83), (177,'Enthralling Magics',0,83),
(351,'Enticing Set',0,80), (351,'Enticing Set',0,80),
(341,'Eternal Sentinel Set',0,73), (341,'Eternal Sentinel Set',0,73),
(483,'Ether Champion\'s Set',0,83), (483,'Ether Champion''s Set',0,83),
(51,'Ethereal Energy Set',0,83), (51,'Ethereal Energy Set',0,83),
(71,'Executioner Set',0,80), (71,'Executioner Set',0,80),
(567,'Exorcist Set',0,80), (567,'Exorcist Set',0,80),
(303,'Far Seas Supply Chain',0,5), (303,'Far Seas Supply Chain',0,5),
(447,'Fascination Set',0,73), (447,'Fascination Set',0,73),
(91,'Favor of the Tomb',0,96), (91,'Favor of the Tomb',0,96),
(651,'Faydark\'s Protection Set',0,85), (651,'Faydark''s Protection Set',0,85),
(979,'Fear and Loathing',0,73), (979,'Fear and Loathing',0,73),
(475,'Fear and Loathing',0,83), (475,'Fear and Loathing',0,83),
(693,'Fearless Bravado',0,83), (693,'Fearless Bravado',0,83),
@ -236,14 +172,14 @@ INSERT INTO `item_itemsets` VALUES
(461,'Fiery Destruction',0,83), (461,'Fiery Destruction',0,83),
(947,'Fire Weaving',0,83), (947,'Fire Weaving',0,83),
(31,'Fire Weaving',0,84), (31,'Fire Weaving',0,84),
(647,'Firewalker\'s Ferocity',0,83), (647,'Firewalker''s Ferocity',0,83),
(309,'Flesh Drapery',0,51), (309,'Flesh Drapery',0,51),
(53,'Fletcher\'s Insight',0,70), (53,'Fletcher''s Insight',0,70),
(615,'Fletcher\'s Inspiration',0,80), (615,'Fletcher''s Inspiration',0,80),
(751,'Focused Mind Set',0,81), (751,'Focused Mind Set',0,81),
(905,'Force Set',0,73), (905,'Force Set',0,73),
(643,'Forest Hunter Set',0,85), (643,'Forest Hunter Set',0,85),
(677,'Forestwalker\'s Aura of Frost',0,94), (677,'Forestwalker''s Aura of Frost',0,94),
(961,'Form',0,83), (961,'Form',0,83),
(985,'Frenzied View Set',0,55), (985,'Frenzied View Set',0,55),
(441,'Frenzied View Set',0,65), (441,'Frenzied View Set',0,65),
@ -251,8 +187,8 @@ INSERT INTO `item_itemsets` VALUES
(243,'Frenzied Wrath Set',0,70), (243,'Frenzied Wrath Set',0,70),
(425,'Furious Execution Set',0,83), (425,'Furious Execution Set',0,83),
(741,'Furious Voidchanneled Set',0,83), (741,'Furious Voidchanneled Set',0,83),
(787,'Gahdash\'s Mean Streak',0,80), (787,'Gahdash''s Mean Streak',0,80),
(907,'Gahdash\'s Mean Streak',0,82), (907,'Gahdash''s Mean Streak',0,82),
(923,'Gamut Set',0,55), (923,'Gamut Set',0,55),
(927,'Gamut Set',0,65), (927,'Gamut Set',0,65),
(229,'Gamut Set',0,70), (229,'Gamut Set',0,70),
@ -264,8 +200,8 @@ INSERT INTO `item_itemsets` VALUES
(685,'Goblin Crafted Set',0,30), (685,'Goblin Crafted Set',0,30),
(581,'Grave Reckoning Set',0,83), (581,'Grave Reckoning Set',0,83),
(315,'Grim Reproach Set',0,70), (315,'Grim Reproach Set',0,70),
(435,'Grunblig\'s Imbued Wrath',0,80), (435,'Grunblig''s Imbued Wrath',0,80),
(317,'Grunblig\'s Imbued Wrath',0,82), (317,'Grunblig''s Imbued Wrath',0,82),
(931,'Guardian Abomination Anihiliation',0,68), (931,'Guardian Abomination Anihiliation',0,68),
(987,'Guardian Abomination Anihiliation',0,71), (987,'Guardian Abomination Anihiliation',0,71),
(847,'Guardian Abomination Anihiliation',0,73), (847,'Guardian Abomination Anihiliation',0,73),
@ -295,23 +231,23 @@ INSERT INTO `item_itemsets` VALUES
(705,'Interlopers Set',0,70), (705,'Interlopers Set',0,70),
(901,'Intuitive Grace Set',0,83), (901,'Intuitive Grace Set',0,83),
(553,'Invoker Set',0,80), (553,'Invoker Set',0,80),
(131,'Jael\'s Elusive Set',0,85), (131,'Jael''s Elusive Set',0,85),
(673,'Jale Phlintoes\' Wildfire',0,74), (673,'Jale Phlintoes'' Wildfire',0,74),
(511,'Jarring Impact Set',0,55), (511,'Jarring Impact Set',0,55),
(335,'Jarring Impact Set',0,65), (335,'Jarring Impact Set',0,65),
(689,'Jarring Impact Set',0,70), (689,'Jarring Impact Set',0,70),
(607,'Jesters Set',0,70), (607,'Jesters Set',0,70),
(259,'Jeweled Iceshard Studs',0,94), (259,'Jeweled Iceshard Studs',0,94),
(241,'Jin Drake\'s Relentless Attack',0,83), (241,'Jin Drake''s Relentless Attack',0,83),
(547,'Judgment Set',0,83), (547,'Judgment Set',0,83),
(671,'Juggernaut Set',0,81), (671,'Juggernaut Set',0,81),
(835,'Keen Set',0,69), (835,'Keen Set',0,69),
(329,'Kithicor\'s Nighthunter',0,74), (329,'Kithicor''s Nighthunter',0,74),
(819,'Knight of the Elements',0,83), (819,'Knight of the Elements',0,83),
(265,'Knight Set',0,80), (265,'Knight Set',0,80),
(427,'Kyle Bayle\'s Dogma',0,74), (427,'Kyle Bayle''s Dogma',0,74),
(253,'Lamenting Ballads Set',0,83), (253,'Lamenting Ballads Set',0,83),
(779,'Lancer\'s Synergy',0,83), (779,'Lancer''s Synergy',0,83),
(531,'Languid Cloud Set',0,70), (531,'Languid Cloud Set',0,70),
(919,'Lava Lotus',0,83), (919,'Lava Lotus',0,83),
(397,'Lava Lotus',0,84), (397,'Lava Lotus',0,84),
@ -322,15 +258,15 @@ INSERT INTO `item_itemsets` VALUES
(853,'Magnetism Set',0,83), (853,'Magnetism Set',0,83),
(287,'Malicious Set',0,73), (287,'Malicious Set',0,73),
(631,'Maligned Intention Set',0,70), (631,'Maligned Intention Set',0,70),
(811,'Marauder\'s Guile',0,83), (811,'Marauder''s Guile',0,83),
(939,'Marring Set',0,55), (939,'Marring Set',0,55),
(457,'Marring Set',0,65), (457,'Marring Set',0,65),
(411,'Marring Set',0,70), (411,'Marring Set',0,70),
(361,'Meditation Set',0,85), (361,'Meditation Set',0,85),
(797,'Metalshaper\'s Insight',0,70), (797,'Metalshaper''s Insight',0,70),
(11,'Metalshaper\'s Inspiration',0,80), (11,'Metalshaper''s Inspiration',0,80),
(163,'Metalworker\'s Insight',0,70), (163,'Metalworker''s Insight',0,70),
(803,'Metalworker\'s Inspiration',0,80), (803,'Metalworker''s Inspiration',0,80),
(681,'Mindbending Set',0,81), (681,'Mindbending Set',0,81),
(333,'Mindmelt',0,83), (333,'Mindmelt',0,83),
(605,'Mindmelt',0,84), (605,'Mindmelt',0,84),
@ -339,10 +275,10 @@ INSERT INTO `item_itemsets` VALUES
(201,'Molten Eidolon',0,83), (201,'Molten Eidolon',0,83),
(759,'Moon Sundered Set',0,70), (759,'Moon Sundered Set',0,70),
(549,'Mossy Blood Hide',0,42), (549,'Mossy Blood Hide',0,42),
(345,'Myrmidon\'s Frozen Aura',0,94), (345,'Myrmidon''s Frozen Aura',0,94),
(733,'Najena\'s Voidcaller',0,74), (733,'Najena''s Voidcaller',0,74),
(319,'Natura\'s Grace Set',0,83), (319,'Natura''s Grace Set',0,83),
(209,'Nature\'s Tempest Set',0,85), (209,'Nature''s Tempest Set',0,85),
(277,'Netherealm Set',0,85), (277,'Netherealm Set',0,85),
(465,'Nexus Disruption Set',0,83), (465,'Nexus Disruption Set',0,83),
(219,'Nightbane Blood Mail',0,42), (219,'Nightbane Blood Mail',0,42),
@ -367,7 +303,7 @@ INSERT INTO `item_itemsets` VALUES
(99,'Offensive Influence',0,82), (99,'Offensive Influence',0,82),
(455,'Offensive Influence',0,83), (455,'Offensive Influence',0,83),
(925,'Offering of the Tomb',0,96), (925,'Offering of the Tomb',0,96),
(479,'Opal Darkbriar\'s Masquerade',0,74), (479,'Opal Darkbriar''s Masquerade',0,74),
(463,'Oracle Set',0,80), (463,'Oracle Set',0,80),
(207,'Outrider Set',0,73), (207,'Outrider Set',0,73),
(971,'Overcloud Set',0,55), (971,'Overcloud Set',0,55),
@ -381,8 +317,8 @@ INSERT INTO `item_itemsets` VALUES
(3,'Pious Diatribe',0,83), (3,'Pious Diatribe',0,83),
(203,'Planar Pirate Set',0,83), (203,'Planar Pirate Set',0,83),
(773,'Precision Flightrift Set',0,83), (773,'Precision Flightrift Set',0,83),
(291,'Predator\'s Aura of Frost',0,94), (291,'Predator''s Aura of Frost',0,94),
(821,'Priest\'s Aura of Frost',0,94), (821,'Priest''s Aura of Frost',0,94),
(937,'Primal Flux',0,96), (937,'Primal Flux',0,96),
(155,'Primal Nature Set',0,73), (155,'Primal Nature Set',0,73),
(993,'Primal Turmoil',0,96), (993,'Primal Turmoil',0,96),
@ -396,11 +332,11 @@ INSERT INTO `item_itemsets` VALUES
(159,'Protection of Discord',0,83), (159,'Protection of Discord',0,83),
(173,'Protection of Discord',0,94), (173,'Protection of Discord',0,94),
(781,'Protector Set',0,80), (781,'Protector Set',0,80),
(695,'Provisioner\'s Insight',0,70), (695,'Provisioner''s Insight',0,70),
(963,'Provisioner\'s Inspiration',0,80), (963,'Provisioner''s Inspiration',0,80),
(15,'Quarrelsome Set',0,80), (15,'Quarrelsome Set',0,80),
(771,'Quarrelsome Set',0,85), (771,'Quarrelsome Set',0,85),
(791,'Queen\'s Sadness',0,73), (791,'Queen''s Sadness',0,73),
(35,'Rage of Discord',0,35), (35,'Rage of Discord',0,35),
(1,'Rage of Discord',0,45), (1,'Rage of Discord',0,45),
(167,'Rage of Discord',0,55), (167,'Rage of Discord',0,55),
@ -425,14 +361,14 @@ INSERT INTO `item_itemsets` VALUES
(133,'Requisition Set',0,65), (133,'Requisition Set',0,65),
(757,'Requisition Set',0,70), (757,'Requisition Set',0,70),
(653,'Rift Evocation Set',0,83), (653,'Rift Evocation Set',0,83),
(381,'Rift Guardian\'s Set',0,83), (381,'Rift Guardian''s Set',0,83),
(503,'Riftcaller Set',0,83), (503,'Riftcaller Set',0,83),
(645,'Righteous Anger',0,83), (645,'Righteous Anger',0,83),
(135,'Rime Forged Bracelets',0,94), (135,'Rime Forged Bracelets',0,94),
(707,'Rime Imbued Earhoops',0,94), (707,'Rime Imbued Earhoops',0,94),
(663,'Rime Signet Rings',0,94), (663,'Rime Signet Rings',0,94),
(95,'Ringleader Set',0,70), (95,'Ringleader Set',0,70),
(85,'Rogue\'s Aura of Frost',0,94), (85,'Rogue''s Aura of Frost',0,94),
(385,'Roguish Charm Set',0,83), (385,'Roguish Charm Set',0,83),
(859,'Runed Silk Set',0,55), (859,'Runed Silk Set',0,55),
(29,'Runed Silk Set',0,65), (29,'Runed Silk Set',0,65),
@ -442,14 +378,14 @@ INSERT INTO `item_itemsets` VALUES
(293,'Scary Talismans',0,80), (293,'Scary Talismans',0,80),
(725,'Scary Talismans',0,82), (725,'Scary Talismans',0,82),
(521,'Scintillating Energy',0,83), (521,'Scintillating Energy',0,83),
(701,'Scribe\'s Insight',0,70), (701,'Scribe''s Insight',0,70),
(969,'Scribe\'s Inspiration',0,80), (969,'Scribe''s Inspiration',0,80),
(657,'Sculptor\'s Insight',0,70), (657,'Sculptor''s Insight',0,70),
(837,'Sculptor\'s Inspiration',0,80), (837,'Sculptor''s Inspiration',0,80),
(247,'Sepulchral Judgment Set',0,83), (247,'Sepulchral Judgment Set',0,83),
(305,'Set of Haunted Visions',0,72), (305,'Set of Haunted Visions',0,72),
(911,'Set of Marksmanship',0,70), (911,'Set of Marksmanship',0,70),
(283,'Set of Nature\'s Purification',0,70), (283,'Set of Nature''s Purification',0,70),
(529,'Set of Righteousness',0,73), (529,'Set of Righteousness',0,73),
(77,'Set of Scattered Dusts',0,67), (77,'Set of Scattered Dusts',0,67),
(767,'Set of the Freethinking',0,72), (767,'Set of the Freethinking',0,72),
@ -464,24 +400,24 @@ INSERT INTO `item_itemsets` VALUES
(997,'Somber Champion Set',0,55), (997,'Somber Champion Set',0,55),
(577,'Somber Champion Set',0,65), (577,'Somber Champion Set',0,65),
(391,'Somber Champion Set',0,70), (391,'Somber Champion Set',0,70),
(343,'Soothsayer\'s Set',0,83), (343,'Soothsayer''s Set',0,83),
(451,'Spectral Coercion Set',0,83), (451,'Spectral Coercion Set',0,83),
(867,'Spellbound',0,93), (867,'Spellbound',0,93),
(213,'Spellbound Sorcery',0,83), (213,'Spellbound Sorcery',0,83),
(497,'Spellsinger\'s Aura of Frost',0,94), (497,'Spellsinger''s Aura of Frost',0,94),
(545,'Spirit Siphoning Set',0,73), (545,'Spirit Siphoning Set',0,73),
(273,'Spiritlinked Set',0,83), (273,'Spiritlinked Set',0,83),
(183,'Spiritual Essence',0,83), (183,'Spiritual Essence',0,83),
(347,'Spiritual Protector Set',0,85), (347,'Spiritual Protector Set',0,85),
(609,'Spiritwalker\'s Aura of Frost',0,94), (609,'Spiritwalker''s Aura of Frost',0,94),
(19,'Stalker\'s Aura of Frost',0,94), (19,'Stalker''s Aura of Frost',0,94),
(487,'Stalwart Set',0,85), (487,'Stalwart Set',0,85),
(67,'Stoic Pride Set',0,70), (67,'Stoic Pride Set',0,70),
(621,'Stormbringer Set',0,80), (621,'Stormbringer Set',0,80),
(477,'Stormcalling Set',0,81), (477,'Stormcalling Set',0,81),
(913,'Subtle Harmony',0,83), (913,'Subtle Harmony',0,83),
(421,'Sullon\'s Focus',0,95), (421,'Sullon''s Focus',0,95),
(189,'Summoner\'s Calling',0,83), (189,'Summoner''s Calling',0,83),
(261,'Sylvan Moon Set',0,80), (261,'Sylvan Moon Set',0,80),
(783,'Symmetry Set',0,65), (783,'Symmetry Set',0,65),
(591,'Symmetry Set',0,70), (591,'Symmetry Set',0,70),
@ -490,10 +426,10 @@ INSERT INTO `item_itemsets` VALUES
(629,'Systematic Blight Set',0,55), (629,'Systematic Blight Set',0,55),
(893,'Systematic Blight Set',0,65), (893,'Systematic Blight Set',0,65),
(327,'Systematic Blight Set',0,70), (327,'Systematic Blight Set',0,70),
(231,'Tailor\'s Insight',0,70), (231,'Tailor''s Insight',0,70),
(683,'Tailor\'s Inspiration',0,80), (683,'Tailor''s Inspiration',0,80),
(279,'Tainted Shadowsteel Set',0,83), (279,'Tainted Shadowsteel Set',0,83),
(579,'Taleweaver\'s Set',0,81), (579,'Taleweaver''s Set',0,81),
(373,'Tempest Set',0,67), (373,'Tempest Set',0,67),
(169,'Temporal Foresight Set',0,73), (169,'Temporal Foresight Set',0,73),
(959,'Temporal Foresight Set',0,75), (959,'Temporal Foresight Set',0,75),
@ -502,7 +438,7 @@ INSERT INTO `item_itemsets` VALUES
(215,'Thicket Set',0,65), (215,'Thicket Set',0,65),
(349,'Thicket Set',0,70), (349,'Thicket Set',0,70),
(625,'Thistle Etched Blood Mail',0,42), (625,'Thistle Etched Blood Mail',0,42),
(525,'Tomb Raider\'s Set',0,81), (525,'Tomb Raider''s Set',0,81),
(795,'Tools of the Trade',0,60), (795,'Tools of the Trade',0,60),
(727,'Tormenting Set',0,85), (727,'Tormenting Set',0,85),
(641,'Totemic Etching Set',0,73), (641,'Totemic Etching Set',0,73),
@ -512,8 +448,8 @@ INSERT INTO `item_itemsets` VALUES
(9,'Triumphant Armor of the Divide',0,94), (9,'Triumphant Armor of the Divide',0,94),
(949,'Triumphant Hero Set',0,67), (949,'Triumphant Hero Set',0,67),
(823,'Triumphant Hero Set',0,69), (823,'Triumphant Hero Set',0,69),
(983,'Tunare\'s Might',0,73), (983,'Tunare''s Might',0,73),
(271,'Tunare\'s Wrath',0,73), (271,'Tunare''s Wrath',0,73),
(409,'Twisted Thoughts Set',0,83), (409,'Twisted Thoughts Set',0,83),
(139,'Umbrae Blood Mail',0,42), (139,'Umbrae Blood Mail',0,42),
(709,'Unholy Rift Set',0,83), (709,'Unholy Rift Set',0,83),
@ -523,10 +459,10 @@ INSERT INTO `item_itemsets` VALUES
(539,'Unseen Magics Set',0,65), (539,'Unseen Magics Set',0,65),
(331,'Unseen Magics Set',0,70), (331,'Unseen Magics Set',0,70),
(623,'Untamed Forces',0,83), (623,'Untamed Forces',0,83),
(929,'Usla\'s Magickery',0,80), (929,'Usla''s Magickery',0,80),
(981,'Usla\'s Magickery',0,82), (981,'Usla''s Magickery',0,82),
(945,'Valorous Set',0,65), (945,'Valorous Set',0,65),
(407,'Vanguard\'s Frozen Aura',0,94), (407,'Vanguard''s Frozen Aura',0,94),
(115,'Vehement Set',0,73), (115,'Vehement Set',0,73),
(269,'Vexing Hexing',0,15), (269,'Vexing Hexing',0,15),
(205,'Vexing Hexing',0,25), (205,'Vexing Hexing',0,25),
@ -536,14 +472,14 @@ INSERT INTO `item_itemsets` VALUES
(375,'Vexing Hexing',0,65), (375,'Vexing Hexing',0,65),
(429,'Vexing Hexing',0,73), (429,'Vexing Hexing',0,73),
(849,'Vexing Hexing',0,83), (849,'Vexing Hexing',0,83),
(401,'Vhalen\'s Thunderous Coda',0,74), (401,'Vhalen''s Thunderous Coda',0,74),
(501,'Vigilant Set',0,83), (501,'Vigilant Set',0,83),
(805,'Vindication Set',0,35), (805,'Vindication Set',0,35),
(845,'Vine Etched Set',0,55), (845,'Vine Etched Set',0,55),
(495,'Vine Etched Set',0,57), (495,'Vine Etched Set',0,57),
(619,'Vocal Rift Set',0,83), (619,'Vocal Rift Set',0,83),
(423,'Void Elementalist Set',0,83), (423,'Void Elementalist Set',0,83),
(587,'Void Knight\'s Oppression',0,83), (587,'Void Knight''s Oppression',0,83),
(843,'Void Spirits',0,83), (843,'Void Spirits',0,83),
(193,'Voidbeam Set',0,83), (193,'Voidbeam Set',0,83),
(717,'Voidcry',0,83), (717,'Voidcry',0,83),
@ -553,11 +489,11 @@ INSERT INTO `item_itemsets` VALUES
(235,'Vortex Set',0,65), (235,'Vortex Set',0,65),
(187,'Vortex Set',0,70), (187,'Vortex Set',0,70),
(869,'Warborn Blood Iron',0,42), (869,'Warborn Blood Iron',0,42),
(101,'Warcaster\'s Aura of Death',0,94), (101,'Warcaster''s Aura of Death',0,94),
(431,'Warding Earth',0,93), (431,'Warding Earth',0,93),
(715,'Warding Spirits Set',0,85), (715,'Warding Spirits Set',0,85),
(729,'Warmage\'s Aura of Frost',0,94), (729,'Warmage''s Aura of Frost',0,94),
(437,'Watchman\'s Spidersilk Set',0,55), (437,'Watchman''s Spidersilk Set',0,55),
(107,'Wayward Moon Set',0,80), (107,'Wayward Moon Set',0,80),
(903,'Wayward Set',0,73), (903,'Wayward Set',0,73),
(379,'Whispered Echoes Set',0,70), (379,'Whispered Echoes Set',0,70),
@ -567,10 +503,10 @@ INSERT INTO `item_itemsets` VALUES
(557,'Withered Grasp Set',0,70), (557,'Withered Grasp Set',0,70),
(21,'Wondrous Faith Set',0,70), (21,'Wondrous Faith Set',0,70),
(735,'Wrathbringer Set',0,81), (735,'Wrathbringer Set',0,81),
(839,'Wu\'s Fighting Gear',0,74), (839,'Wu''s Fighting Gear',0,74),
(339,'Ykesha\'s Spiritwalker',0,74), (339,'Ykesha''s Spiritwalker',0,74),
(141,'Zealot Set',0,70), (141,'Zealot Set',0,70),
(807,'Zealot\'s Zeal',0,83), (807,'Zealot''s Zeal',0,83),
(589,'Zenith Set',0,55), (589,'Zenith Set',0,55),
(731,'Zenith Set',0,65), (731,'Zenith Set',0,65),
(197,'Zenith Set',0,70), (197,'Zenith Set',0,70),
@ -581,10 +517,10 @@ INSERT INTO `item_itemsets` VALUES
(196,'Acute Pitch Set',1,65), (196,'Acute Pitch Set',1,65),
(154,'Acute Pitch Set',1,70), (154,'Acute Pitch Set',1,70),
(638,'Adept Blood Hide',1,42), (638,'Adept Blood Hide',1,42),
(200,'Adversary\'s Aura of Death',1,94), (200,'Adversary''s Aura of Death',1,94),
(562,'Aegis of Nem Anhk',1,74), (562,'Aegis of Nem Anhk',1,74),
(180,'Agressive Complementary attunement',1,96), (180,'Agressive Complementary attunement',1,96),
(414,'Al\'Kabor\'s Spellborn Garb',1,74), (414,'Al''Kabor''s Spellborn Garb',1,74),
(238,'Alluring Set',1,70), (238,'Alluring Set',1,70),
(666,'Angelic Soul Set',1,55), (666,'Angelic Soul Set',1,55),
(172,'Angelic Soul Set',1,65), (172,'Angelic Soul Set',1,65),
@ -598,11 +534,11 @@ INSERT INTO `item_itemsets` VALUES
(936,'Arcanist Abomination Anihiliation',1,73), (936,'Arcanist Abomination Anihiliation',1,73),
(574,'Arch Lich Set',1,85), (574,'Arch Lich Set',1,85),
(876,'Ardent Blessing Set',1,70), (876,'Ardent Blessing Set',1,70),
(790,'Artificer\'s Insight',1,70), (790,'Artificer''s Insight',1,70),
(354,'Artificer\'s Inspiration',1,80), (354,'Artificer''s Inspiration',1,80),
(720,'Artisan\'s Tools of the Trade',1,70), (720,'Artisan''s Tools of the Trade',1,70),
(40,'Atramentous Shadowplate Set',1,83), (40,'Atramentous Shadowplate Set',1,83),
(152,'Attacker\'s Aura of Death',1,94), (152,'Attacker''s Aura of Death',1,94),
(688,'Aura of the Terranai',1,93), (688,'Aura of the Terranai',1,93),
(714,'Banditry Set',1,85), (714,'Banditry Set',1,85),
(712,'Bastion of Light Set',1,83), (712,'Bastion of Light Set',1,83),
@ -610,8 +546,8 @@ INSERT INTO `item_itemsets` VALUES
(598,'Beastlord Set',1,55), (598,'Beastlord Set',1,55),
(120,'Beastlord Set',1,65), (120,'Beastlord Set',1,65),
(882,'Benevolence Set',1,83), (882,'Benevolence Set',1,83),
(802,'Bergo\'s Healy Healings',1,80), (802,'Bergo''s Healy Healings',1,80),
(858,'Bergo\'s Healy Healings',1,82), (858,'Bergo''s Healy Healings',1,82),
(520,'Berserk Rage Set',1,55), (520,'Berserk Rage Set',1,55),
(450,'Berserk Rage Set',1,65), (450,'Berserk Rage Set',1,65),
(628,'Berserk Rage Set',1,70), (628,'Berserk Rage Set',1,70),
@ -631,7 +567,7 @@ INSERT INTO `item_itemsets` VALUES
(572,'Bombast Set',1,65), (572,'Bombast Set',1,65),
(660,'Bombast Set',1,70), (660,'Bombast Set',1,70),
(650,'Cabalistic Sacrifice Set',1,80), (650,'Cabalistic Sacrifice Set',1,80),
(360,'Carson McCabe\'s Doubledealer',1,74), (360,'Carson McCabe''s Doubledealer',1,74),
(898,'Caustic Gore Set',1,55), (898,'Caustic Gore Set',1,55),
(440,'Caustic Gore Set',1,65), (440,'Caustic Gore Set',1,65),
(818,'Caustic Gore Set',1,70), (818,'Caustic Gore Set',1,70),
@ -640,12 +576,12 @@ INSERT INTO `item_itemsets` VALUES
(150,'Champion of the Elements',1,83), (150,'Champion of the Elements',1,83),
(74,'Champion of the Void',1,83), (74,'Champion of the Void',1,83),
(48,'Chaotic Energy',1,83), (48,'Chaotic Energy',1,83),
(60,'Chaplain\'s Armor of Piety',1,73), (60,'Chaplain''s Armor of Piety',1,73),
(500,'Charms of Abstract Faith',1,83), (500,'Charms of Abstract Faith',1,83),
(494,'Charms of Defensive Grace',1,83), (494,'Charms of Defensive Grace',1,83),
(740,'Charms of Destructive Rage',1,83), (740,'Charms of Destructive Rage',1,83),
(418,'Chemist\'s Insight',1,70), (418,'Chemist''s Insight',1,70),
(958,'Chemist\'s Inspiration',1,80), (958,'Chemist''s Inspiration',1,80),
(864,'Chivalrous Set',1,85), (864,'Chivalrous Set',1,85),
(322,'Clockwork Spidersilk',1,49), (322,'Clockwork Spidersilk',1,49),
(356,'Coercion Set',1,85), (356,'Coercion Set',1,85),
@ -653,17 +589,17 @@ INSERT INTO `item_itemsets` VALUES
(1000,'Coiling Carnage',1,83), (1000,'Coiling Carnage',1,83),
(966,'Collect them all',1,0), (966,'Collect them all',1,0),
(976,'Collect them all',1,90), (976,'Collect them all',1,90),
(176,'Combatant\'s Aura of Death',1,94), (176,'Combatant''s Aura of Death',1,94),
(738,'Combatant\'s Technique',1,83), (738,'Combatant''s Technique',1,83),
(888,'Concussive Set',1,55), (888,'Concussive Set',1,55),
(104,'Concussive Set',1,65), (104,'Concussive Set',1,65),
(302,'Concussive Set',1,70), (302,'Concussive Set',1,70),
(366,'Conjuror Set',1,80), (366,'Conjuror Set',1,80),
(680,'Consecrated Blood Iron',1,42), (680,'Consecrated Blood Iron',1,42),
(852,'Control',1,83), (852,'Control',1,83),
(122,'Convoker\'s Aura of Death',1,94), (122,'Convoker''s Aura of Death',1,94),
(810,'Convoker\'s Aura of Frost',1,94), (810,'Convoker''s Aura of Frost',1,94),
(956,'Crafter\'s Tools of the Trade',1,80), (956,'Crafter''s Tools of the Trade',1,80),
(46,'Crippling Assault',1,82), (46,'Crippling Assault',1,82),
(226,'Crippling Assault',1,83), (226,'Crippling Assault',1,83),
(830,'Crushbone Legionnaire',1,27), (830,'Crushbone Legionnaire',1,27),
@ -687,7 +623,7 @@ INSERT INTO `item_itemsets` VALUES
(952,'Deathly Aura of the Curate',1,96), (952,'Deathly Aura of the Curate',1,96),
(510,'Deathly Aura of the Magi',1,96), (510,'Deathly Aura of the Magi',1,96),
(900,'Deep Forged Trinkets',1,94), (900,'Deep Forged Trinkets',1,94),
(516,'Defender\'s Frozen Aura',1,94), (516,'Defender''s Frozen Aura',1,94),
(50,'Defensive Stance',1,82), (50,'Defensive Stance',1,82),
(544,'Defensive Stance',1,83), (544,'Defensive Stance',1,83),
(434,'Demonguards Set',1,81), (434,'Demonguards Set',1,81),
@ -695,7 +631,7 @@ INSERT INTO `item_itemsets` VALUES
(358,'Despiteful Set',1,80), (358,'Despiteful Set',1,80),
(770,'Destruction',1,83), (770,'Destruction',1,83),
(80,'Diabolic Set',1,70), (80,'Diabolic Set',1,70),
(130,'Diabolist\'s Aura of Death',1,94), (130,'Diabolist''s Aura of Death',1,94),
(856,'Dirty Crusade',1,80), (856,'Dirty Crusade',1,80),
(910,'Dirty Crusade',1,82), (910,'Dirty Crusade',1,82),
(472,'Divination Set',1,73), (472,'Divination Set',1,73),
@ -706,13 +642,13 @@ INSERT INTO `item_itemsets` VALUES
(128,'Earth Mend',1,93), (128,'Earth Mend',1,93),
(662,'Earth Strike',1,93), (662,'Earth Strike',1,93),
(762,'Earthen Set',1,85), (762,'Earthen Set',1,85),
(8,'Ebon Strongbear\'s Steelskin',1,74), (8,'Ebon Strongbear''s Steelskin',1,74),
(560,'Elemental Aura',1,85), (560,'Elemental Aura',1,85),
(250,'Elemental Fascination Set',1,83), (250,'Elemental Fascination Set',1,83),
(996,'Elemental Offense',1,83), (996,'Elemental Offense',1,83),
(308,'Elemental Offense',1,84), (308,'Elemental Offense',1,84),
(264,'Elucidated Truth',1,83), (264,'Elucidated Truth',1,83),
(600,'Empowerment of Mayong\'s Enemies',1,83), (600,'Empowerment of Mayong''s Enemies',1,83),
(454,'Enigmatic Sacrifice Set',1,80), (454,'Enigmatic Sacrifice Set',1,80),
(276,'Enlightened Credence Set',1,83), (276,'Enlightened Credence Set',1,83),
(118,'Enlightening Set',1,80), (118,'Enlightening Set',1,80),
@ -721,14 +657,14 @@ INSERT INTO `item_itemsets` VALUES
(178,'Enthralling Magics',1,83), (178,'Enthralling Magics',1,83),
(352,'Enticing Set',1,80), (352,'Enticing Set',1,80),
(342,'Eternal Sentinel Set',1,73), (342,'Eternal Sentinel Set',1,73),
(484,'Ether Champion\'s Set',1,83), (484,'Ether Champion''s Set',1,83),
(52,'Ethereal Energy Set',1,83), (52,'Ethereal Energy Set',1,83),
(72,'Executioner Set',1,80), (72,'Executioner Set',1,80),
(568,'Exorcist Set',1,80), (568,'Exorcist Set',1,80),
(304,'Far Seas Supply Chain',1,5), (304,'Far Seas Supply Chain',1,5),
(448,'Fascination Set',1,73), (448,'Fascination Set',1,73),
(92,'Favor of the Tomb',1,96), (92,'Favor of the Tomb',1,96),
(652,'Faydark\'s Protection Set',1,85), (652,'Faydark''s Protection Set',1,85),
(980,'Fear and Loathing',1,73), (980,'Fear and Loathing',1,73),
(476,'Fear and Loathing',1,83), (476,'Fear and Loathing',1,83),
(694,'Fearless Bravado',1,83), (694,'Fearless Bravado',1,83),
@ -737,14 +673,14 @@ INSERT INTO `item_itemsets` VALUES
(462,'Fiery Destruction',1,83), (462,'Fiery Destruction',1,83),
(948,'Fire Weaving',1,83), (948,'Fire Weaving',1,83),
(32,'Fire Weaving',1,84), (32,'Fire Weaving',1,84),
(648,'Firewalker\'s Ferocity',1,83), (648,'Firewalker''s Ferocity',1,83),
(310,'Flesh Drapery',1,51), (310,'Flesh Drapery',1,51),
(54,'Fletcher\'s Insight',1,70), (54,'Fletcher''s Insight',1,70),
(616,'Fletcher\'s Inspiration',1,80), (616,'Fletcher''s Inspiration',1,80),
(752,'Focused Mind Set',1,81), (752,'Focused Mind Set',1,81),
(906,'Force Set',1,73), (906,'Force Set',1,73),
(644,'Forest Hunter Set',1,85), (644,'Forest Hunter Set',1,85),
(678,'Forestwalker\'s Aura of Frost',1,94), (678,'Forestwalker''s Aura of Frost',1,94),
(962,'Form',1,83), (962,'Form',1,83),
(986,'Frenzied View Set',1,55), (986,'Frenzied View Set',1,55),
(442,'Frenzied View Set',1,65), (442,'Frenzied View Set',1,65),
@ -752,8 +688,8 @@ INSERT INTO `item_itemsets` VALUES
(244,'Frenzied Wrath Set',1,70), (244,'Frenzied Wrath Set',1,70),
(426,'Furious Execution Set',1,83), (426,'Furious Execution Set',1,83),
(742,'Furious Voidchanneled Set',1,83), (742,'Furious Voidchanneled Set',1,83),
(788,'Gahdash\'s Mean Streak',1,80), (788,'Gahdash''s Mean Streak',1,80),
(908,'Gahdash\'s Mean Streak',1,82), (908,'Gahdash''s Mean Streak',1,82),
(924,'Gamut Set',1,55), (924,'Gamut Set',1,55),
(928,'Gamut Set',1,65), (928,'Gamut Set',1,65),
(230,'Gamut Set',1,70), (230,'Gamut Set',1,70),
@ -765,8 +701,8 @@ INSERT INTO `item_itemsets` VALUES
(686,'Goblin Crafted Set',1,30), (686,'Goblin Crafted Set',1,30),
(582,'Grave Reckoning Set',1,83), (582,'Grave Reckoning Set',1,83),
(316,'Grim Reproach Set',1,70), (316,'Grim Reproach Set',1,70),
(436,'Grunblig\'s Imbued Wrath',1,80), (436,'Grunblig''s Imbued Wrath',1,80),
(318,'Grunblig\'s Imbued Wrath',1,82), (318,'Grunblig''s Imbued Wrath',1,82),
(932,'Guardian Abomination Anihiliation',1,68), (932,'Guardian Abomination Anihiliation',1,68),
(988,'Guardian Abomination Anihiliation',1,71), (988,'Guardian Abomination Anihiliation',1,71),
(848,'Guardian Abomination Anihiliation',1,73), (848,'Guardian Abomination Anihiliation',1,73),
@ -796,23 +732,23 @@ INSERT INTO `item_itemsets` VALUES
(706,'Interlopers Set',1,70), (706,'Interlopers Set',1,70),
(902,'Intuitive Grace Set',1,83), (902,'Intuitive Grace Set',1,83),
(554,'Invoker Set',1,80), (554,'Invoker Set',1,80),
(132,'Jael\'s Elusive Set',1,85), (132,'Jael''s Elusive Set',1,85),
(674,'Jale Phlintoes\' Wildfire',1,74), (674,'Jale Phlintoes'' Wildfire',1,74),
(512,'Jarring Impact Set',1,55), (512,'Jarring Impact Set',1,55),
(336,'Jarring Impact Set',1,65), (336,'Jarring Impact Set',1,65),
(690,'Jarring Impact Set',1,70), (690,'Jarring Impact Set',1,70),
(608,'Jesters Set',1,70), (608,'Jesters Set',1,70),
(260,'Jeweled Iceshard Studs',1,94), (260,'Jeweled Iceshard Studs',1,94),
(242,'Jin Drake\'s Relentless Attack',1,83), (242,'Jin Drake''s Relentless Attack',1,83),
(548,'Judgment Set',1,83), (548,'Judgment Set',1,83),
(672,'Juggernaut Set',1,81), (672,'Juggernaut Set',1,81),
(836,'Keen Set',1,69), (836,'Keen Set',1,69),
(330,'Kithicor\'s Nighthunter',1,74), (330,'Kithicor''s Nighthunter',1,74),
(820,'Knight of the Elements',1,83), (820,'Knight of the Elements',1,83),
(266,'Knight Set',1,80), (266,'Knight Set',1,80),
(428,'Kyle Bayle\'s Dogma',1,74), (428,'Kyle Bayle''s Dogma',1,74),
(254,'Lamenting Ballads Set',1,83), (254,'Lamenting Ballads Set',1,83),
(780,'Lancer\'s Synergy',1,83), (780,'Lancer''s Synergy',1,83),
(532,'Languid Cloud Set',1,70), (532,'Languid Cloud Set',1,70),
(920,'Lava Lotus',1,83), (920,'Lava Lotus',1,83),
(398,'Lava Lotus',1,84), (398,'Lava Lotus',1,84),
@ -823,15 +759,15 @@ INSERT INTO `item_itemsets` VALUES
(854,'Magnetism Set',1,83), (854,'Magnetism Set',1,83),
(288,'Malicious Set',1,73), (288,'Malicious Set',1,73),
(632,'Maligned Intention Set',1,70), (632,'Maligned Intention Set',1,70),
(812,'Marauder\'s Guile',1,83), (812,'Marauder''s Guile',1,83),
(940,'Marring Set',1,55), (940,'Marring Set',1,55),
(458,'Marring Set',1,65), (458,'Marring Set',1,65),
(412,'Marring Set',1,70), (412,'Marring Set',1,70),
(362,'Meditation Set',1,85), (362,'Meditation Set',1,85),
(798,'Metalshaper\'s Insight',1,70), (798,'Metalshaper''s Insight',1,70),
(12,'Metalshaper\'s Inspiration',1,80), (12,'Metalshaper''s Inspiration',1,80),
(164,'Metalworker\'s Insight',1,70), (164,'Metalworker''s Insight',1,70),
(804,'Metalworker\'s Inspiration',1,80), (804,'Metalworker''s Inspiration',1,80),
(682,'Mindbending Set',1,81), (682,'Mindbending Set',1,81),
(334,'Mindmelt',1,83), (334,'Mindmelt',1,83),
(606,'Mindmelt',1,84), (606,'Mindmelt',1,84),
@ -840,10 +776,10 @@ INSERT INTO `item_itemsets` VALUES
(202,'Molten Eidolon',1,83), (202,'Molten Eidolon',1,83),
(760,'Moon Sundered Set',1,70), (760,'Moon Sundered Set',1,70),
(550,'Mossy Blood Hide',1,42), (550,'Mossy Blood Hide',1,42),
(346,'Myrmidon\'s Frozen Aura',1,94), (346,'Myrmidon''s Frozen Aura',1,94),
(734,'Najena\'s Voidcaller',1,74), (734,'Najena''s Voidcaller',1,74),
(320,'Natura\'s Grace Set',1,83), (320,'Natura''s Grace Set',1,83),
(210,'Nature\'s Tempest Set',1,85), (210,'Nature''s Tempest Set',1,85),
(278,'Netherealm Set',1,85), (278,'Netherealm Set',1,85),
(466,'Nexus Disruption Set',1,83), (466,'Nexus Disruption Set',1,83),
(220,'Nightbane Blood Mail',1,42), (220,'Nightbane Blood Mail',1,42),
@ -868,7 +804,7 @@ INSERT INTO `item_itemsets` VALUES
(100,'Offensive Influence',1,82), (100,'Offensive Influence',1,82),
(456,'Offensive Influence',1,83), (456,'Offensive Influence',1,83),
(926,'Offering of the Tomb',1,96), (926,'Offering of the Tomb',1,96),
(480,'Opal Darkbriar\'s Masquerade',1,74), (480,'Opal Darkbriar''s Masquerade',1,74),
(464,'Oracle Set',1,80), (464,'Oracle Set',1,80),
(208,'Outrider Set',1,73), (208,'Outrider Set',1,73),
(972,'Overcloud Set',1,55), (972,'Overcloud Set',1,55),
@ -882,8 +818,8 @@ INSERT INTO `item_itemsets` VALUES
(4,'Pious Diatribe',1,83), (4,'Pious Diatribe',1,83),
(204,'Planar Pirate Set',1,83), (204,'Planar Pirate Set',1,83),
(774,'Precision Flightrift Set',1,83), (774,'Precision Flightrift Set',1,83),
(292,'Predator\'s Aura of Frost',1,94), (292,'Predator''s Aura of Frost',1,94),
(822,'Priest\'s Aura of Frost',1,94), (822,'Priest''s Aura of Frost',1,94),
(938,'Primal Flux',1,96), (938,'Primal Flux',1,96),
(156,'Primal Nature Set',1,73), (156,'Primal Nature Set',1,73),
(994,'Primal Turmoil',1,96), (994,'Primal Turmoil',1,96),
@ -897,11 +833,11 @@ INSERT INTO `item_itemsets` VALUES
(160,'Protection of Discord',1,83), (160,'Protection of Discord',1,83),
(174,'Protection of Discord',1,94), (174,'Protection of Discord',1,94),
(782,'Protector Set',1,80), (782,'Protector Set',1,80),
(696,'Provisioner\'s Insight',1,70), (696,'Provisioner''s Insight',1,70),
(964,'Provisioner\'s Inspiration',1,80), (964,'Provisioner''s Inspiration',1,80),
(16,'Quarrelsome Set',1,80), (16,'Quarrelsome Set',1,80),
(772,'Quarrelsome Set',1,85), (772,'Quarrelsome Set',1,85),
(792,'Queen\'s Sadness',1,73), (792,'Queen''s Sadness',1,73),
(36,'Rage of Discord',1,35), (36,'Rage of Discord',1,35),
(2,'Rage of Discord',1,45), (2,'Rage of Discord',1,45),
(168,'Rage of Discord',1,55), (168,'Rage of Discord',1,55),
@ -926,14 +862,14 @@ INSERT INTO `item_itemsets` VALUES
(134,'Requisition Set',1,65), (134,'Requisition Set',1,65),
(758,'Requisition Set',1,70), (758,'Requisition Set',1,70),
(654,'Rift Evocation Set',1,83), (654,'Rift Evocation Set',1,83),
(382,'Rift Guardian\'s Set',1,83), (382,'Rift Guardian''s Set',1,83),
(504,'Riftcaller Set',1,83), (504,'Riftcaller Set',1,83),
(646,'Righteous Anger',1,83), (646,'Righteous Anger',1,83),
(136,'Rime Forged Bracelets',1,94), (136,'Rime Forged Bracelets',1,94),
(708,'Rime Imbued Earhoops',1,94), (708,'Rime Imbued Earhoops',1,94),
(664,'Rime Signet Rings',1,94), (664,'Rime Signet Rings',1,94),
(96,'Ringleader Set',1,70), (96,'Ringleader Set',1,70),
(86,'Rogue\'s Aura of Frost',1,94), (86,'Rogue''s Aura of Frost',1,94),
(386,'Roguish Charm Set',1,83), (386,'Roguish Charm Set',1,83),
(860,'Runed Silk Set',1,55), (860,'Runed Silk Set',1,55),
(30,'Runed Silk Set',1,65), (30,'Runed Silk Set',1,65),
@ -943,14 +879,14 @@ INSERT INTO `item_itemsets` VALUES
(294,'Scary Talismans',1,80), (294,'Scary Talismans',1,80),
(726,'Scary Talismans',1,82), (726,'Scary Talismans',1,82),
(522,'Scintillating Energy',1,83), (522,'Scintillating Energy',1,83),
(702,'Scribe\'s Insight',1,70), (702,'Scribe''s Insight',1,70),
(970,'Scribe\'s Inspiration',1,80), (970,'Scribe''s Inspiration',1,80),
(658,'Sculptor\'s Insight',1,70), (658,'Sculptor''s Insight',1,70),
(838,'Sculptor\'s Inspiration',1,80), (838,'Sculptor''s Inspiration',1,80),
(248,'Sepulchral Judgment Set',1,83), (248,'Sepulchral Judgment Set',1,83),
(306,'Set of Haunted Visions',1,72), (306,'Set of Haunted Visions',1,72),
(912,'Set of Marksmanship',1,70), (912,'Set of Marksmanship',1,70),
(284,'Set of Nature\'s Purification',1,70), (284,'Set of Nature''s Purification',1,70),
(530,'Set of Righteousness',1,73), (530,'Set of Righteousness',1,73),
(78,'Set of Scattered Dusts',1,67), (78,'Set of Scattered Dusts',1,67),
(768,'Set of the Freethinking',1,72), (768,'Set of the Freethinking',1,72),
@ -965,24 +901,24 @@ INSERT INTO `item_itemsets` VALUES
(998,'Somber Champion Set',1,55), (998,'Somber Champion Set',1,55),
(578,'Somber Champion Set',1,65), (578,'Somber Champion Set',1,65),
(392,'Somber Champion Set',1,70), (392,'Somber Champion Set',1,70),
(344,'Soothsayer\'s Set',1,83), (344,'Soothsayer''s Set',1,83),
(452,'Spectral Coercion Set',1,83), (452,'Spectral Coercion Set',1,83),
(868,'Spellbound',1,93), (868,'Spellbound',1,93),
(214,'Spellbound Sorcery',1,83), (214,'Spellbound Sorcery',1,83),
(498,'Spellsinger\'s Aura of Frost',1,94), (498,'Spellsinger''s Aura of Frost',1,94),
(546,'Spirit Siphoning Set',1,73), (546,'Spirit Siphoning Set',1,73),
(274,'Spiritlinked Set',1,83), (274,'Spiritlinked Set',1,83),
(184,'Spiritual Essence',1,83), (184,'Spiritual Essence',1,83),
(348,'Spiritual Protector Set',1,85), (348,'Spiritual Protector Set',1,85),
(610,'Spiritwalker\'s Aura of Frost',1,94), (610,'Spiritwalker''s Aura of Frost',1,94),
(20,'Stalker\'s Aura of Frost',1,94), (20,'Stalker''s Aura of Frost',1,94),
(488,'Stalwart Set',1,85), (488,'Stalwart Set',1,85),
(68,'Stoic Pride Set',1,70), (68,'Stoic Pride Set',1,70),
(622,'Stormbringer Set',1,80), (622,'Stormbringer Set',1,80),
(478,'Stormcalling Set',1,81), (478,'Stormcalling Set',1,81),
(914,'Subtle Harmony',1,83), (914,'Subtle Harmony',1,83),
(422,'Sullon\'s Focus',1,95), (422,'Sullon''s Focus',1,95),
(190,'Summoner\'s Calling',1,83), (190,'Summoner''s Calling',1,83),
(262,'Sylvan Moon Set',1,80), (262,'Sylvan Moon Set',1,80),
(784,'Symmetry Set',1,65), (784,'Symmetry Set',1,65),
(592,'Symmetry Set',1,70), (592,'Symmetry Set',1,70),
@ -991,10 +927,10 @@ INSERT INTO `item_itemsets` VALUES
(630,'Systematic Blight Set',1,55), (630,'Systematic Blight Set',1,55),
(894,'Systematic Blight Set',1,65), (894,'Systematic Blight Set',1,65),
(328,'Systematic Blight Set',1,70), (328,'Systematic Blight Set',1,70),
(232,'Tailor\'s Insight',1,70), (232,'Tailor''s Insight',1,70),
(684,'Tailor\'s Inspiration',1,80), (684,'Tailor''s Inspiration',1,80),
(280,'Tainted Shadowsteel Set',1,83), (280,'Tainted Shadowsteel Set',1,83),
(580,'Taleweaver\'s Set',1,81), (580,'Taleweaver''s Set',1,81),
(374,'Tempest Set',1,67), (374,'Tempest Set',1,67),
(170,'Temporal Foresight Set',1,73), (170,'Temporal Foresight Set',1,73),
(960,'Temporal Foresight Set',1,75), (960,'Temporal Foresight Set',1,75),
@ -1003,7 +939,7 @@ INSERT INTO `item_itemsets` VALUES
(216,'Thicket Set',1,65), (216,'Thicket Set',1,65),
(350,'Thicket Set',1,70), (350,'Thicket Set',1,70),
(626,'Thistle Etched Blood Mail',1,42), (626,'Thistle Etched Blood Mail',1,42),
(526,'Tomb Raider\'s Set',1,81), (526,'Tomb Raider''s Set',1,81),
(796,'Tools of the Trade',1,60), (796,'Tools of the Trade',1,60),
(728,'Tormenting Set',1,85), (728,'Tormenting Set',1,85),
(642,'Totemic Etching Set',1,73), (642,'Totemic Etching Set',1,73),
@ -1013,8 +949,8 @@ INSERT INTO `item_itemsets` VALUES
(10,'Triumphant Armor of the Divide',1,94), (10,'Triumphant Armor of the Divide',1,94),
(950,'Triumphant Hero Set',1,67), (950,'Triumphant Hero Set',1,67),
(824,'Triumphant Hero Set',1,69), (824,'Triumphant Hero Set',1,69),
(984,'Tunare\'s Might',1,73), (984,'Tunare''s Might',1,73),
(272,'Tunare\'s Wrath',1,73), (272,'Tunare''s Wrath',1,73),
(410,'Twisted Thoughts Set',1,83), (410,'Twisted Thoughts Set',1,83),
(140,'Umbrae Blood Mail',1,42), (140,'Umbrae Blood Mail',1,42),
(710,'Unholy Rift Set',1,83), (710,'Unholy Rift Set',1,83),
@ -1024,10 +960,10 @@ INSERT INTO `item_itemsets` VALUES
(540,'Unseen Magics Set',1,65), (540,'Unseen Magics Set',1,65),
(332,'Unseen Magics Set',1,70), (332,'Unseen Magics Set',1,70),
(624,'Untamed Forces',1,83), (624,'Untamed Forces',1,83),
(930,'Usla\'s Magickery',1,80), (930,'Usla''s Magickery',1,80),
(982,'Usla\'s Magickery',1,82), (982,'Usla''s Magickery',1,82),
(946,'Valorous Set',1,65), (946,'Valorous Set',1,65),
(408,'Vanguard\'s Frozen Aura',1,94), (408,'Vanguard''s Frozen Aura',1,94),
(116,'Vehement Set',1,73), (116,'Vehement Set',1,73),
(270,'Vexing Hexing',1,15), (270,'Vexing Hexing',1,15),
(206,'Vexing Hexing',1,25), (206,'Vexing Hexing',1,25),
@ -1037,14 +973,14 @@ INSERT INTO `item_itemsets` VALUES
(376,'Vexing Hexing',1,65), (376,'Vexing Hexing',1,65),
(430,'Vexing Hexing',1,73), (430,'Vexing Hexing',1,73),
(850,'Vexing Hexing',1,83), (850,'Vexing Hexing',1,83),
(402,'Vhalen\'s Thunderous Coda',1,74), (402,'Vhalen''s Thunderous Coda',1,74),
(502,'Vigilant Set',1,83), (502,'Vigilant Set',1,83),
(806,'Vindication Set',1,35), (806,'Vindication Set',1,35),
(846,'Vine Etched Set',1,55), (846,'Vine Etched Set',1,55),
(496,'Vine Etched Set',1,57), (496,'Vine Etched Set',1,57),
(620,'Vocal Rift Set',1,83), (620,'Vocal Rift Set',1,83),
(424,'Void Elementalist Set',1,83), (424,'Void Elementalist Set',1,83),
(588,'Void Knight\'s Oppression',1,83), (588,'Void Knight''s Oppression',1,83),
(844,'Void Spirits',1,83), (844,'Void Spirits',1,83),
(194,'Voidbeam Set',1,83), (194,'Voidbeam Set',1,83),
(718,'Voidcry',1,83), (718,'Voidcry',1,83),
@ -1054,11 +990,11 @@ INSERT INTO `item_itemsets` VALUES
(236,'Vortex Set',1,65), (236,'Vortex Set',1,65),
(188,'Vortex Set',1,70), (188,'Vortex Set',1,70),
(870,'Warborn Blood Iron',1,42), (870,'Warborn Blood Iron',1,42),
(102,'Warcaster\'s Aura of Death',1,94), (102,'Warcaster''s Aura of Death',1,94),
(432,'Warding Earth',1,93), (432,'Warding Earth',1,93),
(716,'Warding Spirits Set',1,85), (716,'Warding Spirits Set',1,85),
(730,'Warmage\'s Aura of Frost',1,94), (730,'Warmage''s Aura of Frost',1,94),
(438,'Watchman\'s Spidersilk Set',1,55), (438,'Watchman''s Spidersilk Set',1,55),
(108,'Wayward Moon Set',1,80), (108,'Wayward Moon Set',1,80),
(904,'Wayward Set',1,73), (904,'Wayward Set',1,73),
(380,'Whispered Echoes Set',1,70), (380,'Whispered Echoes Set',1,70),
@ -1068,24 +1004,10 @@ INSERT INTO `item_itemsets` VALUES
(558,'Withered Grasp Set',1,70), (558,'Withered Grasp Set',1,70),
(22,'Wondrous Faith Set',1,70), (22,'Wondrous Faith Set',1,70),
(736,'Wrathbringer Set',1,81), (736,'Wrathbringer Set',1,81),
(840,'Wu\'s Fighting Gear',1,74), (840,'Wu''s Fighting Gear',1,74),
(340,'Ykesha\'s Spiritwalker',1,74), (340,'Ykesha''s Spiritwalker',1,74),
(142,'Zealot Set',1,70), (142,'Zealot Set',1,70),
(808,'Zealot\'s Zeal',1,83), (808,'Zealot''s Zeal',1,83),
(590,'Zenith Set',1,55), (590,'Zenith Set',1,55),
(732,'Zenith Set',1,65), (732,'Zenith Set',1,65),
(198,'Zenith Set',1,70); (198,'Zenith Set',1,70);
/*!40000 ALTER TABLE `item_itemsets` 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:11
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,89 +1,10 @@
-- Table: `item_levels_override` DROP TABLE IF EXISTS item_levels_override;
USE `eq2emu`; CREATE TABLE item_levels_override (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ adventure_class_id INTEGER NOT NULL DEFAULT 0,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) tradeskill_class_id INTEGER NOT NULL DEFAULT 0,
-- level INTEGER NOT NULL DEFAULT 1,
-- Host: localhost Database: eq2emu UNIQUE(item_id, adventure_class_id, tradeskill_class_id),
-- ------------------------------------------------------ FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
-- 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 `item_levels_override`
--
DROP TABLE IF EXISTS `item_levels_override`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_levels_override` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`adventure_class_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
`tradeskill_class_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
`level` smallint(5) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `ItemClassIDX` (`item_id`,`adventure_class_id`,`tradeskill_class_id`),
CONSTRAINT `FK_item_levels_override` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB 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:11
/*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 `item_levels_override`
--
LOCK TABLES `item_levels_override` WRITE;
/*!40000 ALTER TABLE `item_levels_override` DISABLE KEYS */;
/*!40000 ALTER TABLE `item_levels_override` 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:11
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,83 +1,19 @@
-- Table: `item_mod_stats` DROP TABLE IF EXISTS item_mod_stats;
USE `eq2emu`; CREATE TABLE item_mod_stats (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
item_id INTEGER NOT NULL,
type INTEGER NOT NULL DEFAULT 0,
subtype INTEGER NOT NULL DEFAULT 0,
iValue INTEGER,
fValue REAL,
sValue TEXT,
level INTEGER NOT NULL DEFAULT 0,
stats_order INTEGER NOT NULL,
UNIQUE(item_id, stats_order),
FOREIGN KEY (item_id) REFERENCES items(id) ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_mod_stats VALUES
-- 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 `item_mod_stats`
--
DROP TABLE IF EXISTS `item_mod_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_mod_stats` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` int(10) unsigned NOT NULL,
`type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`subtype` smallint(6) NOT NULL DEFAULT 0,
`iValue` int(11) DEFAULT NULL,
`fValue` float DEFAULT NULL,
`sValue` text DEFAULT NULL,
`level` tinyint(3) unsigned NOT NULL DEFAULT 0,
`stats_order` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UK_setbonusid_statsorder` (`item_id`,`stats_order`) USING BTREE,
CONSTRAINT `FK_item_mod_stats_items` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=865102 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:11
/*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 `item_mod_stats`
--
LOCK TABLES `item_mod_stats` WRITE;
/*!40000 ALTER TABLE `item_mod_stats` DISABLE KEYS */;
INSERT INTO `item_mod_stats` VALUES
(1,172141,0,1,20,NULL,'',0,0), (1,172141,0,1,20,NULL,'',0,0),
(2,172141,0,0,20,NULL,'',0,1), (2,172141,0,0,20,NULL,'',0,1),
(3,172141,6,59,NULL,1.1,'',0,2), (3,172141,6,59,NULL,1.1,'',0,2),
@ -861852,17 +861788,3 @@ INSERT INTO `item_mod_stats` VALUES
(865099,135400,2,14,5,NULL,'',0,2), (865099,135400,2,14,5,NULL,'',0,2),
(865100,135400,2,3,5,NULL,'',0,3), (865100,135400,2,3,5,NULL,'',0,3),
(865101,135400,2,9,5,NULL,'',0,4); (865101,135400,2,9,5,NULL,'',0,4);
/*!40000 ALTER TABLE `item_mod_stats` 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:12
SET FOREIGN_KEY_CHECKS=1;

File diff suppressed because it is too large Load Diff

View File

@ -1,79 +1,13 @@
-- Table: `item_pvp_link` DROP TABLE IF EXISTS item_pvp_link;
USE `eq2emu`; CREATE TABLE item_pvp_link (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
base_item INTEGER NOT NULL UNIQUE,
pvp_item INTEGER NOT NULL UNIQUE,
FOREIGN KEY (base_item) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (pvp_item) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO item_pvp_link VALUES
-- 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 `item_pvp_link`
--
DROP TABLE IF EXISTS `item_pvp_link`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_pvp_link` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`base_item` int(10) unsigned NOT NULL,
`pvp_item` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UK_baseitem` (`base_item`),
UNIQUE KEY `UK_pvpitem` (`pvp_item`),
CONSTRAINT `FK__items` FOREIGN KEY (`base_item`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK__items_2` FOREIGN KEY (`pvp_item`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=124351 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:16
/*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 `item_pvp_link`
--
LOCK TABLES `item_pvp_link` WRITE;
/*!40000 ALTER TABLE `item_pvp_link` DISABLE KEYS */;
INSERT INTO `item_pvp_link` VALUES
(1,135487,10135487), (1,135487,10135487),
(2,163500,10163500), (2,163500,10163500),
(3,54947,10054947), (3,54947,10054947),
@ -124426,17 +124360,3 @@ INSERT INTO `item_pvp_link` VALUES
(124348,120593,10120593), (124348,120593,10120593),
(124349,179231,10179231), (124349,179231,10179231),
(124350,26157,10026157); (124350,26157,10026157);
/*!40000 ALTER TABLE `item_pvp_link` 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:16
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,93 +1,14 @@
-- Table: `item_stat_subtypes` DROP TABLE IF EXISTS item_stat_subtypes;
USE `eq2emu`; CREATE TABLE item_stat_subtypes (
SET FOREIGN_KEY_CHECKS=0; stat_id INTEGER PRIMARY KEY,
type_id INTEGER,
/*M!999999\- enable the sandbox mode */ subtype_id INTEGER,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) name TEXT,
-- title TEXT,
-- Host: localhost Database: eq2emu label_mask TEXT,
-- ------------------------------------------------------ value_type TEXT,
-- Server version 10.11.11-MariaDB-0+deb12u1 description TEXT,
note TEXT,
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; UNIQUE(type_id, subtype_id),
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; FOREIGN KEY (type_id) REFERENCES item_stat_types(id) ON DELETE CASCADE ON UPDATE CASCADE
/*!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 `item_stat_subtypes`
--
DROP TABLE IF EXISTS `item_stat_subtypes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_stat_subtypes` (
`stat_id` int(12) NOT NULL,
`type_id` int(12) DEFAULT NULL,
`subtype_id` int(12) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`label_mask` varchar(255) DEFAULT NULL,
`value_type` enum('integer','percent','string','decimal') DEFAULT NULL,
`description` text DEFAULT NULL,
`note` text DEFAULT NULL,
PRIMARY KEY (`stat_id`),
UNIQUE KEY `stat_id_unique` (`type_id`,`subtype_id`),
CONSTRAINT `FK_item_stat_types` FOREIGN KEY (`type_id`) REFERENCES `item_stat_types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB 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:17
/*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 `item_stat_subtypes`
--
LOCK TABLES `item_stat_subtypes` WRITE;
/*!40000 ALTER TABLE `item_stat_subtypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `item_stat_subtypes` 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:17
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,85 +1,6 @@
-- Table: `item_stat_types` DROP TABLE IF EXISTS item_stat_types;
USE `eq2emu`; CREATE TABLE item_stat_types (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
name TEXT,
/*M!999999\- enable the sandbox mode */ desc TEXT
-- 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 `item_stat_types`
--
DROP TABLE IF EXISTS `item_stat_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `item_stat_types` (
`id` int(12) NOT NULL,
`name` varchar(100) DEFAULT NULL,
`desc` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB 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:17
/*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 `item_stat_types`
--
LOCK TABLES `item_stat_types` WRITE;
/*!40000 ALTER TABLE `item_stat_types` DISABLE KEYS */;
/*!40000 ALTER TABLE `item_stat_types` 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:17
SET FOREIGN_KEY_CHECKS=1;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,80 +1,16 @@
-- Table: `itemstats` DROP TABLE IF EXISTS itemstats;
USE `eq2emu`; CREATE TABLE itemstats (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
version_range1 INTEGER NOT NULL DEFAULT 0,
version_range2 INTEGER NOT NULL DEFAULT 0,
emu_stat INTEGER NOT NULL DEFAULT 0,
name TEXT NOT NULL DEFAULT '',
stat 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 */ INSERT INTO itemstats VALUES
-- 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 `itemstats`
--
DROP TABLE IF EXISTS `itemstats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `itemstats` (
`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,
`emu_stat` smallint(5) unsigned NOT NULL DEFAULT 0,
`name` varchar(255) NOT NULL DEFAULT '',
`stat` 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=621 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:27
/*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 `itemstats`
--
LOCK TABLES `itemstats` WRITE;
/*!40000 ALTER TABLE `itemstats` DISABLE KEYS */;
INSERT INTO `itemstats` VALUES
(8,1193,1208,0,'ITEM_STAT_HPREGEN',600,1), (8,1193,1208,0,'ITEM_STAT_HPREGEN',600,1),
(9,1193,1208,1,'ITEM_STAT_MANAREGEN',601,1), (9,1193,1208,1,'ITEM_STAT_MANAREGEN',601,1),
(10,1193,1208,2,'ITEM_STAT_HPREGENPPT',602,1), (10,1193,1208,2,'ITEM_STAT_HPREGENPPT',602,1),

View File

@ -1,90 +1,25 @@
-- Table: `languages` DROP TABLE IF EXISTS languages;
USE `eq2emu`; CREATE TABLE languages (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
language TEXT DEFAULT 'Unknown' UNIQUE
);
/*M!999999\- enable the sandbox mode */ INSERT INTO languages VALUES
-- 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 `languages`
--
DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `languages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`language` varchar(25) DEFAULT 'Unknown',
PRIMARY KEY (`id`),
UNIQUE KEY `language` (`language`)
) ENGINE=InnoDB 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:27
/*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 `languages`
--
LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` VALUES
(42,'Ancient Draconic'), (42,'Ancient Draconic'),
(11,'Antonican'), (11,'Antonican'),
(32,'Argot'), (32,'Argot'),
(7,'Ayr\'Dal'), (7,'Ayr''Dal'),
(24,'Chaos Tongue'), (24,'Chaos Tongue'),
(45,'Common'), (45,'Common'),
(29,'Death\'s Whisper'), (29,'Death''s Whisper'),
(38,'Di\'Zokian'), (38,'Di''Zokian'),
(19,'Draconic'), (19,'Draconic'),
(27,'Druzaic'), (27,'Druzaic'),
(3,'Dwarven'), (3,'Dwarven'),
(4,'Erudian'), (4,'Erudian'),
(35,'Faerlie'), (35,'Faerlie'),
(23,'Fayefolk'), (23,'Fayefolk'),
(16,'Feir\'Dal'), (16,'Feir''Dal'),
(43,'Fleshless Tongue'), (43,'Fleshless Tongue'),
(39,'Froak'), (39,'Froak'),
(18,'Gnollish'), (18,'Gnollish'),
@ -95,7 +30,7 @@ INSERT INTO `languages` VALUES
(44,'Gymy'), (44,'Gymy'),
(1,'Halasian'), (1,'Halasian'),
(13,'Kerran'), (13,'Kerran'),
(9,'Koada\'Dal'), (9,'Koada''Dal'),
(25,'Krombral'), (25,'Krombral'),
(10,'Lucanic'), (10,'Lucanic'),
(14,'Oggish'), (14,'Oggish'),
@ -107,7 +42,7 @@ INSERT INTO `languages` VALUES
(33,'Serilian'), (33,'Serilian'),
(40,'Shisik'), (40,'Shisik'),
(8,'Stout'), (8,'Stout'),
(41,'Sul\'Dal'), (41,'Sul''Dal'),
(2,'Thexian'), (2,'Thexian'),
(21,'Thulian'), (21,'Thulian'),
(34,'Tik-Tok'), (34,'Tik-Tok'),
@ -115,17 +50,3 @@ INSERT INTO `languages` VALUES
(31,'Volant'), (31,'Volant'),
(22,'Words of Shade'), (22,'Words of Shade'),
(15,'Ykeshan'); (15,'Ykeshan');
/*!40000 ALTER TABLE `languages` 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:27
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,79 +1,15 @@
-- Table: `location_details` DROP TABLE IF EXISTS location_details;
USE `eq2emu`; CREATE TABLE location_details (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
location_id INTEGER NOT NULL DEFAULT 0,
x REAL NOT NULL DEFAULT 0,
y REAL NOT NULL DEFAULT 0,
z REAL NOT NULL DEFAULT 0,
FOREIGN KEY (location_id) REFERENCES locations(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_location_details_location_id ON location_details(location_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO location_details VALUES
-- 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 `location_details`
--
DROP TABLE IF EXISTS `location_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `location_details` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`location_id` int(10) unsigned NOT NULL DEFAULT 0,
`x` float NOT NULL DEFAULT 0,
`y` float NOT NULL DEFAULT 0,
`z` float NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `LocationIDX` (`location_id`),
CONSTRAINT `FK_location_details` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5021 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:27
/*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 `location_details`
--
LOCK TABLES `location_details` WRITE;
/*!40000 ALTER TABLE `location_details` DISABLE KEYS */;
INSERT INTO `location_details` VALUES
(1,9,1078.9,67.1,62.88), (1,9,1078.9,67.1,62.88),
(2,9,1037.71,75.26,21.94), (2,9,1037.71,75.26,21.94),
(3,9,1040.61,79.15,-6.51), (3,9,1040.61,79.15,-6.51),
@ -4625,17 +4561,3 @@ INSERT INTO `location_details` VALUES
(5018,191,-2550.37,-1227.92,3087.42), (5018,191,-2550.37,-1227.92,3087.42),
(5019,191,-3633.62,-1233.64,1992.49), (5019,191,-3633.62,-1233.64,1992.49),
(5020,192,1379.04,-36.0853,-177.204); (5020,192,1379.04,-36.0853,-177.204);
/*!40000 ALTER TABLE `location_details` 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:27
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,80 +1,16 @@
-- Table: `locations` DROP TABLE IF EXISTS locations;
USE `eq2emu`; CREATE TABLE locations (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
zone_id INTEGER NOT NULL DEFAULT 0,
grid_id INTEGER NOT NULL DEFAULT 0,
name TEXT,
include_y INTEGER NOT NULL DEFAULT 0,
discovery INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (zone_id) REFERENCES zones(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_locations_zone_id ON locations(zone_id);
CREATE INDEX idx_locations_grid_id ON locations(grid_id);
/*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 `locations`
--
DROP TABLE IF EXISTS `locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `locations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`zone_id` int(10) unsigned NOT NULL DEFAULT 0,
`grid_id` int(10) unsigned NOT NULL DEFAULT 0,
`name` varchar(64) DEFAULT NULL,
`include_y` tinyint(3) unsigned NOT NULL DEFAULT 0,
`discovery` tinyint(1) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `ZoneIDX` (`zone_id`),
KEY `GridIDX` (`grid_id`),
CONSTRAINT `FK_locations` FOREIGN KEY (`zone_id`) REFERENCES `zones` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=200 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:27
/*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 `locations`
--
LOCK TABLES `locations` WRITE;
/*!40000 ALTER TABLE `locations` DISABLE KEYS */;
INSERT INTO `locations` VALUES INSERT INTO `locations` VALUES
(1,253,771354606,'Sunset Meadow',0,0), (1,253,771354606,'Sunset Meadow',0,0),
(2,253,3146737430,'The Tainted Forest',0,0), (2,253,3146737430,'The Tainted Forest',0,0),
@ -84,40 +20,40 @@ INSERT INTO `locations` VALUES
(6,253,1246288135,'The Abondoned Village',0,0), (6,253,1246288135,'The Abondoned Village',0,0),
(7,253,1246288135,'Sapswill Hill',0,0), (7,253,1246288135,'Sapswill Hill',0,0),
(8,253,2656047938,'Hope Falls',0,0), (8,253,2656047938,'Hope Falls',0,0),
(9,262,0,'Dreg\'s Landing',0,0), (9,262,0,'Dreg''s Landing',0,0),
(10,262,0,'Ru\'Kaus',0,0), (10,262,0,'Ru''Kaus',0,0),
(11,262,0,'Dreadlands',0,0), (11,262,0,'Dreadlands',0,0),
(12,262,0,'Karnor\'s Castle',0,0), (12,262,0,'Karnor''s Castle',0,0),
(13,262,0,'Brakthyr\'s Post',0,0), (13,262,0,'Brakthyr''s Post',0,0),
(14,262,0,'Brute Gathering',0,0), (14,262,0,'Brute Gathering',0,0),
(15,262,0,'Omen\'s Churn Shore',0,0), (15,262,0,'Omen''s Churn Shore',0,0),
(16,262,0,'Krassik Gateway',0,0), (16,262,0,'Krassik Gateway',0,0),
(17,262,0,'Firiona\'s Vista',0,0), (17,262,0,'Firiona''s Vista',0,0),
(18,262,0,'Varis',0,0), (18,262,0,'Varis',0,0),
(19,262,0,'Point Break',0,0), (19,262,0,'Point Break',0,0),
(20,262,0,'Sulassk Post',0,0), (20,262,0,'Sulassk Post',0,0),
(21,262,0,'Waning Thicket',0,0), (21,262,0,'Waning Thicket',0,0),
(22,262,0,'Challenge Rock',0,0), (22,262,0,'Challenge Rock',0,0),
(23,262,0,'Gra\'al Shul Temple',0,0), (23,262,0,'Gra''al Shul Temple',0,0),
(24,262,0,'Wall of Emperors',0,0), (24,262,0,'Wall of Emperors',0,0),
(25,262,0,'Kunzar\'s Edge',0,0), (25,262,0,'Kunzar''s Edge',0,0),
(26,262,0,'Ryjesium Peaks',0,0), (26,262,0,'Ryjesium Peaks',0,0),
(27,262,0,'Westin Rouk',0,0), (27,262,0,'Westin Rouk',0,0),
(28,262,0,'Crush and Swill Fort',0,0), (28,262,0,'Crush and Swill Fort',0,0),
(29,262,0,'Icebound Pass',0,0), (29,262,0,'Icebound Pass',0,0),
(30,262,0,'Lost Valley',0,0), (30,262,0,'Lost Valley',0,0),
(31,262,0,'Teren\'s Grasp',0,0), (31,262,0,'Teren''s Grasp',0,0),
(32,262,0,'Arcane Refuge',0,0), (32,262,0,'Arcane Refuge',0,0),
(33,262,0,'Hall of Conviction',0,0), (33,262,0,'Hall of Conviction',0,0),
(34,262,0,'Hall of the Crafters',0,0), (34,262,0,'Hall of the Crafters',0,0),
(35,262,0,'Hall of Teren Rysis',0,0), (35,262,0,'Hall of Teren Rysis',0,0),
(36,262,0,'Stealth and Skullduggery',0,0), (36,262,0,'Stealth and Skullduggery',0,0),
(37,262,0,'Karatun Hold',0,0), (37,262,0,'Karatun Hold',0,0),
(38,262,0,'Gash of T\'Thelin',0,0), (38,262,0,'Gash of T''Thelin',0,0),
(39,262,0,'Monolith of Woe',0,0), (39,262,0,'Monolith of Woe',0,0),
(40,262,0,'Ember Hive',0,0), (40,262,0,'Ember Hive',0,0),
(41,262,0,'Highton',0,0), (41,262,0,'Highton',0,0),
(42,262,0,'Filrek\'s Eye',0,0), (42,262,0,'Filrek''s Eye',0,0),
(43,262,0,'Wurm Caverns',0,0), (43,262,0,'Wurm Caverns',0,0),
(44,262,0,'Den of the Brood Mother',0,0), (44,262,0,'Den of the Brood Mother',0,0),
(45,262,0,'Camp Rotsnot',0,0), (45,262,0,'Camp Rotsnot',0,0),
@ -125,23 +61,23 @@ INSERT INTO `locations` VALUES
(47,265,0,'Wurmbone Cleft',0,0), (47,265,0,'Wurmbone Cleft',0,0),
(48,265,0,'The Azure Cradle',0,0), (48,265,0,'The Azure Cradle',0,0),
(49,265,0,'The Ashen Grove',0,0), (49,265,0,'The Ashen Grove',0,0),
(50,265,0,'Venril\'s Crown',0,0), (50,265,0,'Venril''s Crown',0,0),
(51,265,0,'Iksar Hero',0,0), (51,265,0,'Iksar Hero',0,0),
(52,265,0,'Traitor\'s Pass',0,0), (52,265,0,'Traitor''s Pass',0,0),
(53,265,0,'Skleross Encampment',0,0), (53,265,0,'Skleross Encampment',0,0),
(54,265,0,'Stonehoof Badlands',0,0), (54,265,0,'Stonehoof Badlands',0,0),
(55,265,0,'Jarsath Wastes',0,0), (55,265,0,'Jarsath Wastes',0,0),
(56,265,0,'The Herculean Rampart',0,0), (56,265,0,'The Herculean Rampart',0,0),
(57,265,0,'Skyfire Mountains',0,0), (57,265,0,'Skyfire Mountains',0,0),
(58,265,0,'Ragefire\'s Talon',0,0), (58,265,0,'Ragefire''s Talon',0,0),
(59,265,0,'Valley of the Ancients',0,0), (59,265,0,'Valley of the Ancients',0,0),
(60,265,0,'Temple of the White Lady',0,0), (60,265,0,'Temple of the White Lady',0,0),
(61,265,0,'Temple of the Red Lord',0,0), (61,265,0,'Temple of the Red Lord',0,0),
(62,264,0,'Sathirian Highway',0,0), (62,264,0,'Sathirian Highway',0,0),
(63,264,0,'Bathezid\'s Watch',0,0), (63,264,0,'Bathezid''s Watch',0,0),
(64,264,0,'The Lake Ruins',0,0), (64,264,0,'The Lake Ruins',0,0),
(65,264,0,'Lake of Ill Omen',0,0), (65,264,0,'Lake of Ill Omen',0,0),
(66,264,0,'Omen\'s Call',0,0), (66,264,0,'Omen''s Call',0,0),
(67,264,0,'Iksar Bandit Camp',0,0), (67,264,0,'Iksar Bandit Camp',0,0),
(68,264,0,'Swamp of No Hope',0,0), (68,264,0,'Swamp of No Hope',0,0),
(69,264,0,'Eastern Pens of Riliss',0,0), (69,264,0,'Eastern Pens of Riliss',0,0),
@ -156,21 +92,21 @@ INSERT INTO `locations` VALUES
(78,264,0,'Mines of Nurga',0,0), (78,264,0,'Mines of Nurga',0,0),
(79,264,0,'Field of Bone',0,0), (79,264,0,'Field of Bone',0,0),
(80,264,0,'Camp Kromdek',0,0), (80,264,0,'Camp Kromdek',0,0),
(81,264,0,'Dragon\'s Rest Shallows',0,0), (81,264,0,'Dragon''s Rest Shallows',0,0),
(82,264,0,'Island of the Forgotten Ape',0,0), (82,264,0,'Island of the Forgotten Ape',0,0),
(83,264,0,'The Sheet',0,0), (83,264,0,'The Sheet',0,0),
(84,264,0,'The Spinebreaker',0,0), (84,264,0,'The Spinebreaker',0,0),
(85,264,0,'Kurn\'s Tower',0,0), (85,264,0,'Kurn''s Tower',0,0),
(86,264,0,'Bellywhumper Burrows',0,0), (86,264,0,'Bellywhumper Burrows',0,0),
(87,264,0,'Bonedigger Burrows',0,0), (87,264,0,'Bonedigger Burrows',0,0),
(88,264,0,'Jaled Dar\'s Remains',0,0), (88,264,0,'Jaled Dar''s Remains',0,0),
(89,73,0,'The Stilled Sea',0,0), (89,73,0,'The Stilled Sea',0,0),
(90,73,0,'Caiman Beach',0,0), (90,73,0,'Caiman Beach',0,0),
(91,73,0,'Croc Hunter Camp',0,0), (91,73,0,'Croc Hunter Camp',0,0),
(92,73,0,'The Oasis of Marr',0,0), (92,73,0,'The Oasis of Marr',0,0),
(93,73,0,'Buccaneer Beach',0,0), (93,73,0,'Buccaneer Beach',0,0),
(94,73,0,'Onerock Isle',0,1), (94,73,0,'Onerock Isle',0,1),
(95,73,0,'Pirate\'s Perch',0,0), (95,73,0,'Pirate''s Perch',0,0),
(96,73,0,'Hullcrasher Rock',0,0), (96,73,0,'Hullcrasher Rock',0,0),
(97,73,0,'The Eye of Anuk',0,0), (97,73,0,'The Eye of Anuk',0,0),
(98,73,0,'Sandslide Passage',0,0), (98,73,0,'Sandslide Passage',0,0),
@ -182,24 +118,24 @@ INSERT INTO `locations` VALUES
(104,70,0,'The Searing Gorge',0,0), (104,70,0,'The Searing Gorge',0,0),
(105,70,0,'The Table of Eyes',0,0), (105,70,0,'The Table of Eyes',0,0),
(106,70,0,'The Seer Stone',0,0), (106,70,0,'The Seer Stone',0,0),
(107,70,0,'Swiftrider\'s Caravan',0,0), (107,70,0,'Swiftrider''s Caravan',0,0),
(108,70,0,'Remnants of the Lifire',0,0), (108,70,0,'Remnants of the Lifire',0,0),
(109,70,0,'The Long and Dusty Road',0,0), (109,70,0,'The Long and Dusty Road',0,0),
(110,70,0,'The Grueling Pits',0,0), (110,70,0,'The Grueling Pits',0,0),
(111,70,0,'Camp Gar\'Nik',0,0), (111,70,0,'Camp Gar''Nik',0,0),
(112,70,0,'T\'Narev',0,0), (112,70,0,'T''Narev',0,0),
(113,70,0,'Master\'s Plateau',0,0), (113,70,0,'Master''s Plateau',0,0),
(114,70,0,'Camp Char\'Nik',0,0), (114,70,0,'Camp Char''Nik',0,0),
(115,70,0,'The Needle',0,0), (115,70,0,'The Needle',0,0),
(116,70,0,'The Island of the Naga',0,0), (116,70,0,'The Island of the Naga',0,0),
(117,70,0,'Sabertooth Valley',0,0), (117,70,0,'Sabertooth Valley',0,0),
(118,70,0,'Prophet\'s Peak',0,0), (118,70,0,'Prophet''s Peak',0,0),
(119,70,0,'The Scrawling Cliffs',0,0), (119,70,0,'The Scrawling Cliffs',0,0),
(120,70,0,'Camp K\'taakh',0,0), (120,70,0,'Camp K''taakh',0,0),
(121,70,0,'The Giant\'s Field',0,0), (121,70,0,'The Giant''s Field',0,0),
(122,70,0,'Kyrnok',0,0), (122,70,0,'Kyrnok',0,0),
(123,70,0,'The Sun Spires',0,0), (123,70,0,'The Sun Spires',0,0),
(124,70,0,'Camp Char\'Gin',0,0), (124,70,0,'Camp Char''Gin',0,0),
(125,70,0,'The Great Bonsai',0,0), (125,70,0,'The Great Bonsai',0,0),
(126,88,0,'Vultak Scavenging Site',0,0), (126,88,0,'Vultak Scavenging Site',0,0),
(127,88,0,'Fear Tainted Isle',0,0), (127,88,0,'Fear Tainted Isle',0,0),
@ -213,23 +149,23 @@ INSERT INTO `locations` VALUES
(135,88,0,'Vicious Breeding Grounds',0,0), (135,88,0,'Vicious Breeding Grounds',0,0),
(136,88,0,'The Komodo Overlook',0,0), (136,88,0,'The Komodo Overlook',0,0),
(137,85,0,'The Whisperwind Isle',0,0), (137,85,0,'The Whisperwind Isle',0,0),
(138,85,0,'Windgazer\'s Hideout',0,0), (138,85,0,'Windgazer''s Hideout',0,0),
(139,85,0,'The Stonefall Breach',0,0), (139,85,0,'The Stonefall Breach',0,0),
(140,85,0,'The Isle of Aversion',0,0), (140,85,0,'The Isle of Aversion',0,0),
(141,85,0,'The Isle of the Watchers',0,0), (141,85,0,'The Isle of the Watchers',0,0),
(142,85,0,'The Isle of Eaglewatch',0,0), (142,85,0,'The Isle of Eaglewatch',0,0),
(143,85,0,'The Blackwind Isle',0,0), (143,85,0,'The Blackwind Isle',0,0),
(144,85,0,'The Blacktalon Mining Site',0,0), (144,85,0,'The Blacktalon Mining Site',0,0),
(145,85,0,'The Warrior\'s Training Ground',0,0), (145,85,0,'The Warrior''s Training Ground',0,0),
(146,85,0,'The Blacktalon Camp',0,0), (146,85,0,'The Blacktalon Camp',0,0),
(147,85,0,'The Cloudmist Isle',0,0), (147,85,0,'The Cloudmist Isle',0,0),
(148,85,0,'The Isle of Desolation',0,0), (148,85,0,'The Isle of Desolation',0,0),
(149,85,0,'The Despoiler\'s Camp',0,0), (149,85,0,'The Despoiler''s Camp',0,0),
(150,85,0,'The Isle of the Guardians',0,0), (150,85,0,'The Isle of the Guardians',0,0),
(151,85,0,'The Isle of Awakening',0,0), (151,85,0,'The Isle of Awakening',0,0),
(152,85,0,'The Drake Breeding Ground',0,0), (152,85,0,'The Drake Breeding Ground',0,0),
(153,85,0,'Pool of the Awakened',0,0), (153,85,0,'Pool of the Awakened',0,0),
(154,85,0,'The Prisoner\'s Isle',0,0), (154,85,0,'The Prisoner''s Isle',0,0),
(155,85,0,'The Strifewind Isle',0,0), (155,85,0,'The Strifewind Isle',0,0),
(156,85,0,'The Strifewing Camp',0,0), (156,85,0,'The Strifewing Camp',0,0),
(157,85,0,'The Isle of Discord',0,0), (157,85,0,'The Isle of Discord',0,0),
@ -238,13 +174,13 @@ INSERT INTO `locations` VALUES
(160,87,0,'Drednever Crash Site',0,0), (160,87,0,'Drednever Crash Site',0,0),
(161,87,0,'Doomwing Dig Site',0,0), (161,87,0,'Doomwing Dig Site',0,0),
(162,87,0,'Hive Vornerus',0,0), (162,87,0,'Hive Vornerus',0,0),
(163,87,0,'Ghazi\'s Rest',0,0), (163,87,0,'Ghazi''s Rest',0,0),
(164,87,0,'Muck Lurker Hollow',0,0), (164,87,0,'Muck Lurker Hollow',0,0),
(165,87,0,'Doomwing Excavation',0,0), (165,87,0,'Doomwing Excavation',0,0),
(166,87,0,'The Calling Pool',0,0), (166,87,0,'The Calling Pool',0,0),
(167,87,0,'Bashir\'s Excavation',0,0), (167,87,0,'Bashir''s Excavation',0,0),
(168,87,0,'The Remnants of Xoch',0,0), (168,87,0,'The Remnants of Xoch',0,0),
(169,87,0,'Akharu\'s Dig Site',0,0), (169,87,0,'Akharu''s Dig Site',0,0),
(170,87,0,'The Halls of Fate',0,0), (170,87,0,'The Halls of Fate',0,0),
(171,87,0,'The Carrion Briar',0,0), (171,87,0,'The Carrion Briar',0,0),
(172,87,0,'The Cacotoxic Stain',0,0), (172,87,0,'The Cacotoxic Stain',0,0),
@ -253,7 +189,7 @@ INSERT INTO `locations` VALUES
(175,385,0,'The Lolly Cog',0,0), (175,385,0,'The Lolly Cog',0,0),
(176,385,0,'U.J.L. 1.0',0,0), (176,385,0,'U.J.L. 1.0',0,0),
(177,385,0,'Obelisk of Ahkzul',0,0), (177,385,0,'Obelisk of Ahkzul',0,0),
(178,385,0,'Ykesha\'s Spine',0,0), (178,385,0,'Ykesha''s Spine',0,0),
(179,385,0,'Entrance to Guk',0,0), (179,385,0,'Entrance to Guk',0,0),
(180,385,0,'Brokenskull Loft',0,0), (180,385,0,'Brokenskull Loft',0,0),
(181,385,0,'Tupta',0,0), (181,385,0,'Tupta',0,0),
@ -264,26 +200,12 @@ INSERT INTO `locations` VALUES
(186,385,0,'The Island of the Cyclops',0,0), (186,385,0,'The Island of the Cyclops',0,0),
(187,385,0,'Corrupted Tillage Patch',0,0), (187,385,0,'Corrupted Tillage Patch',0,0),
(188,385,0,'Ykeshan Flats',0,0), (188,385,0,'Ykeshan Flats',0,0),
(189,385,0,'Gunthak\'s Shanty',0,0), (189,385,0,'Gunthak''s Shanty',0,0),
(190,385,0,'Brokenskull Rock',0,0), (190,385,0,'Brokenskull Rock',0,0),
(191,385,0,'Brokenskull Harbor',0,0), (191,385,0,'Brokenskull Harbor',0,0),
(192,33,783227007,'285135',0,0), (192,33,783227007,'285135',0,0),
(195,237,3293282732,'The Willow Wood Memorial',0,1), (195,237,3293282732,'The Willow Wood Memorial',0,1),
(196,237,3293282732,'Spirit of Faydark Park',0,0), (196,237,3293282732,'Spirit of Faydark Park',0,0),
(197,233,342305820,'Nettleville Market Row',0,1), (197,233,342305820,'Nettleville Market Row',0,1),
(198,838,3549749756,'Garanel\'s resting place',0,0), (198,838,3549749756,'Garanel''s resting place',0,0),
(199,73,0,'The Port of Tears',0,0); (199,73,0,'The Port of Tears',0,0);
/*!40000 ALTER TABLE `locations` 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:27
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,85 +1,7 @@
-- Table: `log_messages` DROP TABLE IF EXISTS log_messages;
USE `eq2emu`; CREATE TABLE log_messages (
SET FOREIGN_KEY_CHECKS=0; type TEXT,
message TEXT,
/*M!999999\- enable the sandbox mode */ name TEXT,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) version TEXT
-- );
-- 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 `log_messages`
--
DROP TABLE IF EXISTS `log_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `log_messages` (
`type` text DEFAULT NULL,
`message` text DEFAULT NULL,
`name` text DEFAULT NULL,
`version` text DEFAULT NULL
) ENGINE=InnoDB 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:27
/*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 `log_messages`
--
LOCK TABLES `log_messages` WRITE;
/*!40000 ALTER TABLE `log_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `log_messages` 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:27
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,81 +1,17 @@
-- Table: `loot_global` DROP TABLE IF EXISTS loot_global;
USE `eq2emu`; CREATE TABLE loot_global (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
type TEXT NOT NULL DEFAULT 'Zone',
loot_table INTEGER NOT NULL,
value1 INTEGER NOT NULL DEFAULT 0,
value2 INTEGER NOT NULL DEFAULT 0,
value3 INTEGER NOT NULL DEFAULT 0,
value4 INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (loot_table) REFERENCES loottable(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_loot_global_loot_table ON loot_global(loot_table);
/*M!999999\- enable the sandbox mode */ INSERT INTO loot_global VALUES
-- 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 `loot_global`
--
DROP TABLE IF EXISTS `loot_global`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `loot_global` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` enum('Level','Racial','Zone') NOT NULL DEFAULT 'Zone',
`loot_table` int(10) unsigned NOT NULL,
`value1` int(10) unsigned NOT NULL DEFAULT 0,
`value2` int(10) unsigned NOT NULL DEFAULT 0,
`value3` int(10) unsigned NOT NULL DEFAULT 0,
`value4` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `FKLootTable` (`loot_table`),
CONSTRAINT `FKLootTable` FOREIGN KEY (`loot_table`) REFERENCES `loottable` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=393 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:27
/*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 `loot_global`
--
LOCK TABLES `loot_global` WRITE;
/*!40000 ALTER TABLE `loot_global` DISABLE KEYS */;
INSERT INTO `loot_global` VALUES
(1,'Zone',100,253,0,0,0), (1,'Zone',100,253,0,0,0),
(5,'Zone',130,278,0,0,0), (5,'Zone',130,278,0,0,0),
(17,'Zone',158,239,0,0,0), (17,'Zone',158,239,0,0,0),
@ -409,17 +345,3 @@ INSERT INTO `loot_global` VALUES
(390,'Level',2329,20,29,0,0), (390,'Level',2329,20,29,0,0),
(391,'Level',2330,20,29,0,0), (391,'Level',2330,20,29,0,0),
(392,'Level',2331,20,29,0,0); (392,'Level',2331,20,29,0,0);
/*!40000 ALTER TABLE `loot_global` 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:27
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,82 +1,18 @@
-- Table: `lootdrop` DROP TABLE IF EXISTS lootdrop;
USE `eq2emu`; CREATE TABLE lootdrop (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
loot_table_id INTEGER NOT NULL DEFAULT 0,
item_id INTEGER NOT NULL DEFAULT 0,
item_charges INTEGER NOT NULL DEFAULT 1,
equip_item INTEGER NOT NULL DEFAULT 0,
probability REAL NOT NULL DEFAULT 25,
no_drop_quest_completed INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (loot_table_id) REFERENCES loottable(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_lootdrop_loot_table_id ON lootdrop(loot_table_id);
CREATE INDEX idx_lootdrop_item_id ON lootdrop(item_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO lootdrop VALUES
-- 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 `lootdrop`
--
DROP TABLE IF EXISTS `lootdrop`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `lootdrop` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`loot_table_id` int(10) unsigned NOT NULL DEFAULT 0,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`item_charges` smallint(5) unsigned NOT NULL DEFAULT 1,
`equip_item` tinyint(3) unsigned NOT NULL DEFAULT 0,
`probability` float unsigned NOT NULL DEFAULT 25,
`no_drop_quest_completed` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `NewIndex` (`loot_table_id`),
KEY `FK_lootdrop` (`item_id`),
CONSTRAINT `FK_loottable` FOREIGN KEY (`loot_table_id`) REFERENCES `loottable` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=39770 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:27
/*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 `lootdrop`
--
LOCK TABLES `lootdrop` WRITE;
/*!40000 ALTER TABLE `lootdrop` DISABLE KEYS */;
INSERT INTO `lootdrop` VALUES
(15,2,3554,1,0,20,0), (15,2,3554,1,0,20,0),
(16,2,3555,1,0,20,0), (16,2,3555,1,0,20,0),
(17,2,3556,1,0,20,0), (17,2,3556,1,0,20,0),
@ -34402,17 +34338,3 @@ INSERT INTO `lootdrop` VALUES
(39767,2384,54556,0,0,33.33,0), (39767,2384,54556,0,0,33.33,0),
(39768,2384,137663,0,0,33.33,0), (39768,2384,137663,0,0,33.33,0),
(39769,2384,136182,0,0,33.34,0); (39769,2384,136182,0,0,33.34,0);
/*!40000 ALTER TABLE `lootdrop` 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:27
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,79 +1,15 @@
-- Table: `loottable` DROP TABLE IF EXISTS loottable;
USE `eq2emu`; CREATE TABLE loottable (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
name TEXT,
mincoin INTEGER NOT NULL DEFAULT 0,
maxcoin INTEGER NOT NULL DEFAULT 0,
maxlootitems INTEGER NOT NULL DEFAULT 0,
lootdrop_probability REAL NOT NULL DEFAULT 100,
coin_probability REAL NOT NULL DEFAULT 100
);
/*M!999999\- enable the sandbox mode */ INSERT INTO loottable VALUES
-- 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 `loottable`
--
DROP TABLE IF EXISTS `loottable`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `loottable` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) DEFAULT NULL,
`mincoin` int(10) unsigned NOT NULL DEFAULT 0,
`maxcoin` int(10) unsigned NOT NULL DEFAULT 0,
`maxlootitems` smallint(5) unsigned NOT NULL DEFAULT 0,
`lootdrop_probability` float unsigned NOT NULL DEFAULT 100,
`coin_probability` float unsigned NOT NULL DEFAULT 100,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=88889 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:28
/*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 `loottable`
--
LOCK TABLES `loottable` WRITE;
/*!40000 ALTER TABLE `loottable` DISABLE KEYS */;
INSERT INTO `loottable` VALUES
(1,'T1-T2 Classic Unclaimed Loot',0,0,0,0,0), (1,'T1-T2 Classic Unclaimed Loot',0,0,0,0,0),
(2,'AviakParts',0,0,1,22,0), (2,'AviakParts',0,0,1,22,0),
(3,'BixieParts',0,0,1,22,0), (3,'BixieParts',0,0,1,22,0),
@ -453,16 +389,16 @@ INSERT INTO `loottable` VALUES
(381,'NektulosNeriusScallywagLoot',0,0,2,6,100), (381,'NektulosNeriusScallywagLoot',0,0,2,6,100),
(382,'NektulosTirinorLoot',0,0,2,6,100), (382,'NektulosTirinorLoot',0,0,2,6,100),
(383,'NektulosPaddlefootLoot',0,0,2,6,100), (383,'NektulosPaddlefootLoot',0,0,2,6,100),
(384,'NektulosCaptainT\'SanneLoot',0,0,2,6,100), (384,'NektulosCaptainT''SanneLoot',0,0,2,6,100),
(385,'NektulosGrelkorMalignantLoot',0,0,2,6,100), (385,'NektulosGrelkorMalignantLoot',0,0,2,6,100),
(386,'NektulosVorrLoot',0,0,2,6,100), (386,'NektulosVorrLoot',0,0,2,6,100),
(387,'NektulosKoyliniteLoot',0,0,2,6,100), (387,'NektulosKoyliniteLoot',0,0,2,6,100),
(388,'NektulosKixizorZ\'NastLoot',0,0,2,100,100), (388,'NektulosKixizorZ''NastLoot',0,0,2,100,100),
(389,'NektulosAgelidaesLoot',0,0,2,6,100), (389,'NektulosAgelidaesLoot',0,0,2,6,100),
(390,'NektulosNeriusPirateCaptainLoot',0,0,2,6,100), (390,'NektulosNeriusPirateCaptainLoot',0,0,2,6,100),
(391,'NektulosShadespinnerQueenLoot',0,0,2,6,100), (391,'NektulosShadespinnerQueenLoot',0,0,2,6,100),
(392,'NektulosGravelLoot',0,0,2,6,100), (392,'NektulosGravelLoot',0,0,2,6,100),
(393,'NektulosCaptainD\'LexLoot',0,0,2,6,100), (393,'NektulosCaptainD''LexLoot',0,0,2,6,100),
(394,'NektulosAvatarHateLoot',0,0,2,6,100), (394,'NektulosAvatarHateLoot',0,0,2,6,100),
(395,'NektulosRootblighterLoot',0,0,2,6,100), (395,'NektulosRootblighterLoot',0,0,2,6,100),
(396,'TheCavesAltramentor',0,0,2,100,100), (396,'TheCavesAltramentor',0,0,2,100,100),
@ -572,7 +508,7 @@ INSERT INTO `loottable` VALUES
(500,'EnchantedWardenTesslaLoot',0,0,2,100,100), (500,'EnchantedWardenTesslaLoot',0,0,2,100,100),
(501,'EnchantedDeputyBumblefootLoot',0,0,2,100,100), (501,'EnchantedDeputyBumblefootLoot',0,0,2,100,100),
(502,'EnchantedMuuguLoot',0,0,1,100,100), (502,'EnchantedMuuguLoot',0,0,1,100,100),
(503,'EnchantedN\'KzakLoot',0,0,2,100,100), (503,'EnchantedN''KzakLoot',0,0,2,100,100),
(504,'EnchantedSludgeCreepLoot',0,0,3,100,100), (504,'EnchantedSludgeCreepLoot',0,0,3,100,100),
(505,'EnchantedShaydraLoot',0,0,2,100,100), (505,'EnchantedShaydraLoot',0,0,2,100,100),
(506,'EnchantedSavageSerpentLoot',0,0,1,100,100), (506,'EnchantedSavageSerpentLoot',0,0,1,100,100),
@ -797,7 +733,7 @@ INSERT INTO `loottable` VALUES
(725,'SinkingSandsScribeShivik',0,0,0,100,100), (725,'SinkingSandsScribeShivik',0,0,0,100,100),
(726,'SinkingSandsSenusret',0,0,0,100,100), (726,'SinkingSandsSenusret',0,0,0,100,100),
(727,'TenebrousChampionessPollenica',0,0,2,6,100), (727,'TenebrousChampionessPollenica',0,0,2,6,100),
(728,'TenebrousBuz\'zard',0,0,2,6,100), (728,'TenebrousBuz''zard',0,0,2,6,100),
(729,'TenebrousBroodmatron',0,0,2,6,100), (729,'TenebrousBroodmatron',0,0,2,6,100),
(730,'TenebrousDrizzler',0,0,2,6,100), (730,'TenebrousDrizzler',0,0,2,6,100),
(731,'TenebrousGloompall',0,0,2,6,100), (731,'TenebrousGloompall',0,0,2,6,100),
@ -856,13 +792,13 @@ INSERT INTO `loottable` VALUES
(784,'TenebrousGrubgullet',0,0,2,6,100), (784,'TenebrousGrubgullet',0,0,2,6,100),
(785,'TenebrousHurricanus',0,0,3,100,0), (785,'TenebrousHurricanus',0,0,3,100,0),
(786,'TenebrousHiveColonizer',0,0,2,6,100), (786,'TenebrousHiveColonizer',0,0,2,6,100),
(787,'TenebrousCar\'rion',0,0,2,6,100), (787,'TenebrousCar''rion',0,0,2,6,100),
(788,'TenebrousNurzon',0,0,2,6,100), (788,'TenebrousNurzon',0,0,2,6,100),
(789,'TenebrousNurzonBzzie',0,0,2,6,100), (789,'TenebrousNurzonBzzie',0,0,2,6,100),
(790,'TenebrousGantuz',0,0,2,6,100), (790,'TenebrousGantuz',0,0,2,6,100),
(791,'TenebrousOculus ',0,0,2,6,100), (791,'TenebrousOculus ',0,0,2,6,100),
(792,'TenebrousOculusReaverVurnaz',0,0,2,6,100), (792,'TenebrousOculusReaverVurnaz',0,0,2,6,100),
(793,'TenebrousZyivt\'koz',0,0,2,6,100), (793,'TenebrousZyivt''koz',0,0,2,6,100),
(794,'TenebrousSpykrachis',0,0,2,6,100), (794,'TenebrousSpykrachis',0,0,2,6,100),
(795,'TenebrousSoundlessGuardian',0,0,2,6,100), (795,'TenebrousSoundlessGuardian',0,0,2,6,100),
(796,'TenebrousSkywatcher',0,0,2,6,100), (796,'TenebrousSkywatcher',0,0,2,6,100),
@ -899,32 +835,32 @@ INSERT INTO `loottable` VALUES
(827,'LesserFaydarkWenjiiGlittermoon',0,0,0,100,100), (827,'LesserFaydarkWenjiiGlittermoon',0,0,0,100,100),
(828,'KaladimAvatarofSerilis',0,0,0,100,100), (828,'KaladimAvatarofSerilis',0,0,0,100,100),
(829,'PillarsofFlameAment',0,0,2,6,100), (829,'PillarsofFlameAment',0,0,2,6,100),
(830,'PillarsofFlameBug\'Tug',0,0,2,6,100), (830,'PillarsofFlameBug''Tug',0,0,2,6,100),
(831,'PillarsofFlameBurningPaws',0,0,2,6,100), (831,'PillarsofFlameBurningPaws',0,0,2,6,100),
(832,'PillarsofFlameBarakah',0,0,2,6,100), (832,'PillarsofFlameBarakah',0,0,2,6,100),
(833,'PillarsofFlameCinderpelt',0,0,2,6,100), (833,'PillarsofFlameCinderpelt',0,0,2,6,100),
(834,'PillarsofFlameChiefGar\'Nik',0,0,2,6,100), (834,'PillarsofFlameChiefGar''Nik',0,0,2,6,100),
(835,'PillarsofFlameChiefChar\'Nik',0,0,2,6,100), (835,'PillarsofFlameChiefChar''Nik',0,0,2,6,100),
(836,'PillarsofFlameDurgan',0,0,2,6,100), (836,'PillarsofFlameDurgan',0,0,2,6,100),
(837,'PillarsofFlameDefenderTsu\'Ma',0,0,2,6,100), (837,'PillarsofFlameDefenderTsu''Ma',0,0,2,6,100),
(838,'PillarsofFlameGargilliviontumon ',0,0,2,6,100), (838,'PillarsofFlameGargilliviontumon ',0,0,2,6,100),
(839,'PillarsofFlameFatPiu',0,0,2,6,100), (839,'PillarsofFlameFatPiu',0,0,2,6,100),
(840,'PillarsofFlameHadilWindsister',0,0,2,6,100), (840,'PillarsofFlameHadilWindsister',0,0,2,6,100),
(841,'PillarsofFlameMagiYiglarr',0,0,2,6,100), (841,'PillarsofFlameMagiYiglarr',0,0,2,6,100),
(842,'PillarsofFlameMagwep',0,0,2,6,100), (842,'PillarsofFlameMagwep',0,0,2,6,100),
(843,'PillarsofFlameMar\'Tuk',0,0,2,6,100), (843,'PillarsofFlameMar''Tuk',0,0,2,6,100),
(844,'PillarsofFlameMasterWindul',0,0,2,6,100), (844,'PillarsofFlameMasterWindul',0,0,2,6,100),
(845,'PillarsofFlameProphetofScalding',0,0,2,6,100), (845,'PillarsofFlameProphetofScalding',0,0,2,6,100),
(846,'PillarsofFlameOverseerLujk',0,0,2,6,100), (846,'PillarsofFlameOverseerLujk',0,0,2,6,100),
(847,'PillarsofFlameNas\'Mhal',0,0,2,6,100), (847,'PillarsofFlameNas''Mhal',0,0,2,6,100),
(848,'PillarsofFlameShamaner ',0,0,2,6,100), (848,'PillarsofFlameShamaner ',0,0,2,6,100),
(849,'PillarsofFlameSiuChun',0,0,2,6,100), (849,'PillarsofFlameSiuChun',0,0,2,6,100),
(850,'PillarsofFlameSiyamak',0,0,2,6,100), (850,'PillarsofFlameSiyamak',0,0,2,6,100),
(851,'PillarsofFlameSnaptail',0,0,2,6,100), (851,'PillarsofFlameSnaptail',0,0,2,6,100),
(852,'PillarsofFlameSorcerorTi\'Mm',0,0,2,6,100), (852,'PillarsofFlameSorcerorTi''Mm',0,0,2,6,100),
(853,'PillarofFlameSearedEyesAnther',0,0,2,6,100), (853,'PillarofFlameSearedEyesAnther',0,0,2,6,100),
(854,'PillarsofFlameWaiYuk',0,0,2,6,100), (854,'PillarsofFlameWaiYuk',0,0,2,6,100),
(855,'PillarsofFlameTan\'KeRei',0,0,2,6,100), (855,'PillarsofFlameTan''KeRei',0,0,2,6,100),
(856,'PillarsofFlameScarei',0,0,2,6,100), (856,'PillarsofFlameScarei',0,0,2,6,100),
(857,'BarrenSkyDrakemasterRommtok',0,0,2,6,100), (857,'BarrenSkyDrakemasterRommtok',0,0,2,6,100),
(858,'BarrenSkyGrimmfeather',0,0,2,6,100), (858,'BarrenSkyGrimmfeather',0,0,2,6,100),
@ -943,7 +879,7 @@ INSERT INTO `loottable` VALUES
(871,'BarrenSkySkyraiderBloodwing',0,0,2,6,100), (871,'BarrenSkySkyraiderBloodwing',0,0,2,6,100),
(872,'BarrenSkyStoutfeather',0,0,2,6,100), (872,'BarrenSkyStoutfeather',0,0,2,6,100),
(873,'BarrenSkyardenThornfeather',0,0,2,6,100), (873,'BarrenSkyardenThornfeather',0,0,2,6,100),
(874,'LopingPlainsAwu-Y\'hluo',0,0,2,6,100), (874,'LopingPlainsAwu-Y''hluo',0,0,2,6,100),
(875,'LopingPlainsBorpulisis',0,0,2,6,100), (875,'LopingPlainsBorpulisis',0,0,2,6,100),
(876,'LopingPlainsLordFalish',0,0,2,6,100), (876,'LopingPlainsLordFalish',0,0,2,6,100),
(877,'LopingPlainsGolgumoth',0,0,2,6,100), (877,'LopingPlainsGolgumoth',0,0,2,6,100),
@ -959,13 +895,13 @@ INSERT INTO `loottable` VALUES
(887,'KylongPlainsBroodMother',0,0,2,6,100), (887,'KylongPlainsBroodMother',0,0,2,6,100),
(888,'KylongPlainsCommanderVask',0,0,2,6,100), (888,'KylongPlainsCommanderVask',0,0,2,6,100),
(889,'KylongPlainsArborKingZamont',0,0,2,6,100), (889,'KylongPlainsArborKingZamont',0,0,2,6,100),
(890,'KylongPlainsResearcherTu\'Lox',0,0,2,6,100), (890,'KylongPlainsResearcherTu''Lox',0,0,2,6,100),
(891,'KylongPlainsGorguolatha',0,0,2,6,100), (891,'KylongPlainsGorguolatha',0,0,2,6,100),
(892,'KylongPlainsMarshallPiza\'Touz',0,0,2,6,100), (892,'KylongPlainsMarshallPiza''Touz',0,0,2,6,100),
(893,'KylongPlainsNightclaw',0,0,2,6,100), (893,'KylongPlainsNightclaw',0,0,2,6,100),
(894,'KylongPlainsRorlugFacegrinder',0,0,2,6,100), (894,'KylongPlainsRorlugFacegrinder',0,0,2,6,100),
(895,'KylongPlainsSilverback',0,0,2,6,100), (895,'KylongPlainsSilverback',0,0,2,6,100),
(896,'KylongPlainsVaultofSel\'Nok',0,0,2,6,100), (896,'KylongPlainsVaultofSel''Nok',0,0,2,6,100),
(897,'KylongPlainsHoneyGrubber',0,0,2,6,100), (897,'KylongPlainsHoneyGrubber',0,0,2,6,100),
(898,'KylongPlainsDominusAtrebe',0,0,2,6,100), (898,'KylongPlainsDominusAtrebe',0,0,2,6,100),
(899,'KylongPlainsBloodRitualistGrubeater',0,0,2,6,100), (899,'KylongPlainsBloodRitualistGrubeater',0,0,2,6,100),
@ -991,7 +927,7 @@ INSERT INTO `loottable` VALUES
(919,'KylongPlainsEntalon',0,0,2,6,100), (919,'KylongPlainsEntalon',0,0,2,6,100),
(920,'KaladimTheRingmaster',0,0,0,100,100), (920,'KaladimTheRingmaster',0,0,0,100,100),
(921,'KylongPlainsHooktalon',0,0,2,6,100), (921,'KylongPlainsHooktalon',0,0,2,6,100),
(922,'KylongPlainsWarlordDi\'Ouz',0,0,2,6,100), (922,'KylongPlainsWarlordDi''Ouz',0,0,2,6,100),
(923,'KylongPlainsWidowMistressXalthera',0,0,2,6,100), (923,'KylongPlainsWidowMistressXalthera',0,0,2,6,100),
(924,'KaladimWhipmasterKragnak',0,0,0,100,100), (924,'KaladimWhipmasterKragnak',0,0,0,100,100),
(925,'RunnyEyeAttendantBilriTeh',0,0,0,100,100), (925,'RunnyEyeAttendantBilriTeh',0,0,0,100,100),
@ -1019,7 +955,7 @@ INSERT INTO `loottable` VALUES
(947,'KylongPlainsSnarlFangtooth',0,0,2,6,100), (947,'KylongPlainsSnarlFangtooth',0,0,2,6,100),
(948,'KunzarBlackReaver',0,0,2,6,100), (948,'KunzarBlackReaver',0,0,2,6,100),
(949,'KunzarBlackLotus',0,0,2,6,100), (949,'KunzarBlackLotus',0,0,2,6,100),
(950,'KunzarCookie\'sMonster',0,0,2,6,100), (950,'KunzarCookie''sMonster',0,0,2,6,100),
(951,'KunzarDoom',0,0,2,6,100), (951,'KunzarDoom',0,0,2,6,100),
(952,'KunzarEnragedPoacher',0,0,2,6,100), (952,'KunzarEnragedPoacher',0,0,2,6,100),
(953,'KunzarIgoo',0,0,2,6,100), (953,'KunzarIgoo',0,0,2,6,100),
@ -1091,13 +1027,13 @@ INSERT INTO `loottable` VALUES
(1019,'BonemireDracomancerVandalix',0,0,2,6,100), (1019,'BonemireDracomancerVandalix',0,0,2,6,100),
(1020,'BonemireHaraghur ',0,0,2,6,100), (1020,'BonemireHaraghur ',0,0,2,6,100),
(1021,'BonemireGloom',0,0,2,6,100), (1021,'BonemireGloom',0,0,2,6,100),
(1022,'BonemireEarthlordAbnu\'kal',0,0,2,6,100), (1022,'BonemireEarthlordAbnu''kal',0,0,2,6,100),
(1023,'BonemireKingofBalefires',0,0,2,6,100), (1023,'BonemireKingofBalefires',0,0,2,6,100),
(1024,'BonemireMutagenicOutcast',0,0,2,6,100), (1024,'BonemireMutagenicOutcast',0,0,2,6,100),
(1025,'BonemireUmbralKeeper',0,0,2,100,0), (1025,'BonemireUmbralKeeper',0,0,2,100,0),
(1026,'BonemireVornerusTyrant',0,0,2,6,100), (1026,'BonemireVornerusTyrant',0,0,2,6,100),
(1027,'BonemireXalazalag',0,0,2,6,100), (1027,'BonemireXalazalag',0,0,2,6,100),
(1028,'BonemireTiaz\'tar',0,0,2,6,100), (1028,'BonemireTiaz''tar',0,0,2,6,100),
(1029,'BonemireShissatheAshweaver',0,0,2,6,100), (1029,'BonemireShissatheAshweaver',0,0,2,6,100),
(1030,'BonemireReclaimerManikin',0,0,2,6,100), (1030,'BonemireReclaimerManikin',0,0,2,6,100),
(1031,'BonemireRavagingMaw',0,0,3,100,0), (1031,'BonemireRavagingMaw',0,0,3,100,0),
@ -1196,19 +1132,19 @@ INSERT INTO `loottable` VALUES
(1124,'CleftsOfRujarkZirptheDelusional',0,0,1,100,100), (1124,'CleftsOfRujarkZirptheDelusional',0,0,1,100,100),
(1125,'LivingTombsAeonesse',0,0,0,100,100), (1125,'LivingTombsAeonesse',0,0,0,100,100),
(1126,'LivingTombsAraPriestessFyrUn',0,0,0,100,100), (1126,'LivingTombsAraPriestessFyrUn',0,0,0,100,100),
(1127,'LivingTombsBaru\'Sal',0,0,0,100,100), (1127,'LivingTombsBaru''Sal',0,0,0,100,100),
(1128,'LivingTombsCeramicistInkah',0,0,0,100,100), (1128,'LivingTombsCeramicistInkah',0,0,0,100,100),
(1129,'LivingTombsTheEmbalmer',0,0,0,100,100), (1129,'LivingTombsTheEmbalmer',0,0,0,100,100),
(1130,'LivingTombsFlowmasterDalu',0,0,0,100,100), (1130,'LivingTombsFlowmasterDalu',0,0,0,100,100),
(1131,'LivingTombsFlowmasterMoru',0,0,0,100,100), (1131,'LivingTombsFlowmasterMoru',0,0,0,100,100),
(1132,'LivingTombsFlowmasterUtat',0,0,0,100,100), (1132,'LivingTombsFlowmasterUtat',0,0,0,100,100),
(1133,'LivingTombsGroundskeeperNerus',0,0,0,100,100), (1133,'LivingTombsGroundskeeperNerus',0,0,0,100,100),
(1134,'LivingTombsJaroBaru\'Bah',0,0,0,100,100), (1134,'LivingTombsJaroBaru''Bah',0,0,0,100,100),
(1135,'LivingTombsTheMentalMason',0,0,0,100,100), (1135,'LivingTombsTheMentalMason',0,0,0,100,100),
(1136,'LivingTombsMujadTheVoyager',0,0,0,100,100), (1136,'LivingTombsMujadTheVoyager',0,0,0,100,100),
(1137,'LivingTombsPhara\'Tol',0,0,0,100,100), (1137,'LivingTombsPhara''Tol',0,0,0,100,100),
(1138,'LivingTombsPhenosTheExplorer',0,0,0,100,100), (1138,'LivingTombsPhenosTheExplorer',0,0,0,100,100),
(1139,'LivingTombsRezoAnu\'Tep',0,0,0,100,100), (1139,'LivingTombsRezoAnu''Tep',0,0,0,100,100),
(1140,'LivingTombsRinPriestessFyrUn',0,0,0,100,100), (1140,'LivingTombsRinPriestessFyrUn',0,0,0,100,100),
(1141,'LivingTombsARubbleRavager',0,0,0,100,100), (1141,'LivingTombsARubbleRavager',0,0,0,100,100),
(1142,'LivingTombsSeralTheSpiceTrader',0,0,0,100,100), (1142,'LivingTombsSeralTheSpiceTrader',0,0,0,100,100),
@ -1254,12 +1190,12 @@ INSERT INTO `loottable` VALUES
(1182,'SanctumScalebornSoulclencherJagz',0,0,2,6,100), (1182,'SanctumScalebornSoulclencherJagz',0,0,2,6,100),
(1183,'SanctumScalebornSoulclencherVolz',0,0,2,6,100), (1183,'SanctumScalebornSoulclencherVolz',0,0,2,6,100),
(1184,'SanctumScalebornSoulrenderXirloz',0,0,2,6,100), (1184,'SanctumScalebornSoulrenderXirloz',0,0,2,6,100),
(1185,'SanctumScalebornSslan\'yizAnimator',0,0,2,6,100), (1185,'SanctumScalebornSslan''yizAnimator',0,0,2,6,100),
(1186,'SanctumScalebornZorvSoulsnarer',0,0,2,6,100), (1186,'SanctumScalebornZorvSoulsnarer',0,0,2,6,100),
(1187,'SanctumScalebornTalonlordKayzon',0,0,2,6,100), (1187,'SanctumScalebornTalonlordKayzon',0,0,2,6,100),
(1188,'SanctumScalebornTalonlordSteelrend',0,0,2,6,100), (1188,'SanctumScalebornTalonlordSteelrend',0,0,2,6,100),
(1189,'ForsakenCityAncientKrangoris',0,0,2,6,100), (1189,'ForsakenCityAncientKrangoris',0,0,2,6,100),
(1190,'ForsakenCityEmpoweredXuun\'vok',0,0,2,6,100), (1190,'ForsakenCityEmpoweredXuun''vok',0,0,2,6,100),
(1191,'ForsakenCityBilgebelly',0,0,2,6,100), (1191,'ForsakenCityBilgebelly',0,0,2,6,100),
(1192,'ForsakenCityGannos',0,0,2,6,100), (1192,'ForsakenCityGannos',0,0,2,6,100),
(1193,'ForsakenCityManiacalSavant',0,0,2,6,100), (1193,'ForsakenCityManiacalSavant',0,0,2,6,100),
@ -1268,11 +1204,11 @@ INSERT INTO `loottable` VALUES
(1196,'ForsakenCityPorcupus',0,0,2,6,100), (1196,'ForsakenCityPorcupus',0,0,2,6,100),
(1197,'ForsakenCityTornuk',0,0,2,6,100), (1197,'ForsakenCityTornuk',0,0,2,6,100),
(1198,'ForsakenCityVegetarianTroll',0,0,2,6,100), (1198,'ForsakenCityVegetarianTroll',0,0,2,6,100),
(1199,'ForsakenCityZin\'vra',0,0,2,6,100), (1199,'ForsakenCityZin''vra',0,0,2,6,100),
(1200,'PalaceofAwakenedAdvisorSoliddar',0,0,2,6,100), (1200,'PalaceofAwakenedAdvisorSoliddar',0,0,2,6,100),
(1201,'PalaceofAwakenedBrakzar ',0,0,2,6,100), (1201,'PalaceofAwakenedBrakzar ',0,0,2,6,100),
(1202,'PalaceofAwakenedCaptainKrivak',0,0,2,6,100), (1202,'PalaceofAwakenedCaptainKrivak',0,0,2,6,100),
(1203,'PalaceofAwakenedEnmityNaar\'Yora',0,0,2,6,100), (1203,'PalaceofAwakenedEnmityNaar''Yora',0,0,2,6,100),
(1204,'PalaceofAwakenedIronfangVanguard',0,0,2,6,100), (1204,'PalaceofAwakenedIronfangVanguard',0,0,2,6,100),
(1205,'PalaceofAwakenedMalignantTear',0,0,2,6,100), (1205,'PalaceofAwakenedMalignantTear',0,0,2,6,100),
(1206,'PalaceofAwakenedAdjutantDrakknai',0,0,2,6,100), (1206,'PalaceofAwakenedAdjutantDrakknai',0,0,2,6,100),
@ -1286,36 +1222,36 @@ INSERT INTO `loottable` VALUES
(1214,'MistmooreChieftainKorgull',0,0,2,6,100), (1214,'MistmooreChieftainKorgull',0,0,2,6,100),
(1215,'MistmooreDarlektheExterminator',0,0,2,6,100), (1215,'MistmooreDarlektheExterminator',0,0,2,6,100),
(1216,'MistmooreGoregush ',0,0,2,6,100), (1216,'MistmooreGoregush ',0,0,2,6,100),
(1217,'MistmooreHeadMaidZ\'yra ',0,0,2,6,100), (1217,'MistmooreHeadMaidZ''yra ',0,0,2,6,100),
(1218,'MistmooreHeadButlerZ\'ral',0,0,2,6,100), (1218,'MistmooreHeadButlerZ''ral',0,0,2,6,100),
(1219,'MistmooreKorzar ',0,0,2,6,100), (1219,'MistmooreKorzar ',0,0,2,6,100),
(1220,'MistmooreLenetian ',0,0,2,6,100), (1220,'MistmooreLenetian ',0,0,2,6,100),
(1221,'MistmooreSarvalag ',0,0,2,6,100), (1221,'MistmooreSarvalag ',0,0,2,6,100),
(1222,'MistmooreStog',0,0,2,6,100), (1222,'MistmooreStog',0,0,2,6,100),
(1223,'MistmooreVeingore',0,0,2,6,100), (1223,'MistmooreVeingore',0,0,2,6,100),
(1224,'MistmooreSeneschalD\'naraz',0,0,2,6,100), (1224,'MistmooreSeneschalD''naraz',0,0,2,6,100),
(1225,'KarnorCastleCaptainKa\'Osh',0,0,2,6,100), (1225,'KarnorCastleCaptainKa''Osh',0,0,2,6,100),
(1226,'KarnorCastleUndeadJailer',0,0,2,6,100), (1226,'KarnorCastleUndeadJailer',0,0,2,6,100),
(1227,'KarnorCastleCommanderJorah',0,0,2,6,100), (1227,'KarnorCastleCommanderJorah',0,0,2,6,100),
(1228,'KarnorCastleVentrekHallgloom',0,0,2,6,100), (1228,'KarnorCastleVentrekHallgloom',0,0,2,6,100),
(1229,'KarnorCastleVorador',0,0,2,6,100), (1229,'KarnorCastleVorador',0,0,2,6,100),
(1230,'KarnorCastleXalgoz ',0,0,2,6,100), (1230,'KarnorCastleXalgoz ',0,0,2,6,100),
(1231,'ChardokNortalzDi\'Zok',0,0,2,6,100), (1231,'ChardokNortalzDi''Zok',0,0,2,6,100),
(1232,'ChardokBridgeKeeper',0,0,2,6,100), (1232,'ChardokBridgeKeeper',0,0,2,6,100),
(1233,'ChardokTrampler',0,0,2,6,100), (1233,'ChardokTrampler',0,0,2,6,100),
(1234,'ChardokKromikusDi\'Zok',0,0,2,6,100), (1234,'ChardokKromikusDi''Zok',0,0,2,6,100),
(1235,'ChardokMasterSkyriderKoonzid',0,0,2,6,100), (1235,'ChardokMasterSkyriderKoonzid',0,0,2,6,100),
(1236,'ChardokGorogon',0,0,2,6,100), (1236,'ChardokGorogon',0,0,2,6,100),
(1237,'ChardokRa\'Tsinis',0,0,2,6,100), (1237,'ChardokRa''Tsinis',0,0,2,6,100),
(1238,'ChardokStalisRa\'Dal',0,0,0,100,100), (1238,'ChardokStalisRa''Dal',0,0,0,100,100),
(1239,'ChardokWarlordShrez\'Nid',0,0,2,6,100), (1239,'ChardokWarlordShrez''Nid',0,0,2,6,100),
(1240,'ChardokWildhorn',0,0,2,6,100), (1240,'ChardokWildhorn',0,0,2,6,100),
(1241,'ChardokWarlordKilrokCaroeth',0,0,2,6,100), (1241,'ChardokWarlordKilrokCaroeth',0,0,2,6,100),
(1242,'ChardokWarlordHir\'roul',0,0,2,6,100), (1242,'ChardokWarlordHir''roul',0,0,2,6,100),
(1243,'ChardokWarlordDrelikus',0,0,0,100,100), (1243,'ChardokWarlordDrelikus',0,0,0,100,100),
(1244,'ChardokSilzokFoi\'zarth',0,0,2,6,100), (1244,'ChardokSilzokFoi''zarth',0,0,2,6,100),
(1245,'ChardokReservoirDefender',0,0,2,6,100), (1245,'ChardokReservoirDefender',0,0,2,6,100),
(1246,'ChardokSilrenDi\'Zok',0,0,2,6,100), (1246,'ChardokSilrenDi''Zok',0,0,2,6,100),
(1247,'ChardokQueenVelazul',0,0,2,6,100), (1247,'ChardokQueenVelazul',0,0,2,6,100),
(1248,'SebilisArcanistKulir',0,0,2,6,100), (1248,'SebilisArcanistKulir',0,0,2,6,100),
(1249,'SebilisFirstLieutenantRixol ',0,0,2,6,100), (1249,'SebilisFirstLieutenantRixol ',0,0,2,6,100),
@ -1336,8 +1272,8 @@ INSERT INTO `loottable` VALUES
(1264,'SebilisQuartermasterShylav',0,0,2,6,100), (1264,'SebilisQuartermasterShylav',0,0,2,6,100),
(1265,'SebilisNihilistYeegarn',0,0,2,6,100), (1265,'SebilisNihilistYeegarn',0,0,2,6,100),
(1266,'SebilisMasterArcanistGuroth',0,0,2,6,100), (1266,'SebilisMasterArcanistGuroth',0,0,2,6,100),
(1267,'SebilisMaitred\'Rixrir',0,0,2,6,100), (1267,'SebilisMaitred''Rixrir',0,0,2,6,100),
(1268,'SebilisXa\'rgo',0,0,2,6,100), (1268,'SebilisXa''rgo',0,0,2,6,100),
(1269,'SebilisNishaz',0,0,2,6,100), (1269,'SebilisNishaz',0,0,2,6,100),
(1270,'SebilisMyconid',0,0,2,6,100), (1270,'SebilisMyconid',0,0,2,6,100),
(1271,'HoleBahvrain',0,0,2,6,100), (1271,'HoleBahvrain',0,0,2,6,100),
@ -1347,10 +1283,10 @@ INSERT INTO `loottable` VALUES
(1275,'HoldConspiratorPuvintinev',0,0,2,6,100), (1275,'HoldConspiratorPuvintinev',0,0,2,6,100),
(1276,'HoleConspiratorSchtalinsk',0,0,2,6,100), (1276,'HoleConspiratorSchtalinsk',0,0,2,6,100),
(1277,'HoleKarlovsh',0,0,2,6,100), (1277,'HoleKarlovsh',0,0,2,6,100),
(1278,'HoleCaptainVal\'drin',0,0,2,6,100), (1278,'HoleCaptainVal''drin',0,0,2,6,100),
(1279,'HoleConspiratorSprivnik',0,0,2,6,100), (1279,'HoleConspiratorSprivnik',0,0,2,6,100),
(1280,'HoleCogglius',0,0,2,6,100), (1280,'HoleCogglius',0,0,2,6,100),
(1281,'HoleDartain\'sPersonalShield',0,0,0,6,100), (1281,'HoleDartain''sPersonalShield',0,0,0,6,100),
(1282,'HoleDisease-RiddenAbomination',0,0,2,6,100), (1282,'HoleDisease-RiddenAbomination',0,0,2,6,100),
(1283,'HoleGorgonWrangler',0,0,2,6,100), (1283,'HoleGorgonWrangler',0,0,2,6,100),
(1284,'HoleKluhb',0,0,2,6,100), (1284,'HoleKluhb',0,0,2,6,100),
@ -1375,7 +1311,7 @@ INSERT INTO `loottable` VALUES
(1303,'JarsathEbonmaw',0,0,2,6,100), (1303,'JarsathEbonmaw',0,0,2,6,100),
(1304,'JarsathDominusGanak',0,0,2,6,100), (1304,'JarsathDominusGanak',0,0,2,6,100),
(1305,'JarsathGazingPetrifier',0,0,2,6,100), (1305,'JarsathGazingPetrifier',0,0,2,6,100),
(1306,'JarsathGeneralV\'Deers',0,0,2,6,100), (1306,'JarsathGeneralV''Deers',0,0,2,6,100),
(1307,'JarsathGorehoof',0,0,2,6,100), (1307,'JarsathGorehoof',0,0,2,6,100),
(1308,'JarsathIcthiousGustu',0,0,2,6,100), (1308,'JarsathIcthiousGustu',0,0,2,6,100),
(1309,'JarsathIrefang',0,0,2,6,100), (1309,'JarsathIrefang',0,0,2,6,100),
@ -1431,14 +1367,14 @@ INSERT INTO `loottable` VALUES
(1359,'GreatDividePolarKraken',0,0,2,6,100), (1359,'GreatDividePolarKraken',0,0,2,6,100),
(1360,'EasternWastesFrenziedRapticor',0,0,2,6,100), (1360,'EasternWastesFrenziedRapticor',0,0,2,6,100),
(1361,'EasternWastesGlawksgotter',0,0,2,6,100), (1361,'EasternWastesGlawksgotter',0,0,2,6,100),
(1362,'EasternWastesOracleofRy\'Gorr',0,0,2,6,100), (1362,'EasternWastesOracleofRy''Gorr',0,0,2,6,100),
(1363,'EasternWastesTantor',0,0,2,6,100), (1363,'EasternWastesTantor',0,0,2,6,100),
(1364,'WitheredLandsTrashLoot',0,0,2,7,0), (1364,'WitheredLandsTrashLoot',0,0,2,7,0),
(1365,'WitheredLandsAaeper',0,0,2,6,100), (1365,'WitheredLandsAaeper',0,0,2,6,100),
(1366,'WitheredLandsHonvar',0,0,2,6,100), (1366,'WitheredLandsHonvar',0,0,2,6,100),
(1367,'WitheredLandsDaerlina',0,0,2,6,100), (1367,'WitheredLandsDaerlina',0,0,2,6,100),
(1368,'WitheredLandsHiveWatcher',0,0,2,6,100), (1368,'WitheredLandsHiveWatcher',0,0,2,6,100),
(1369,'WitheredLandsJapalatook\'tei',0,0,2,6,100), (1369,'WitheredLandsJapalatook''tei',0,0,2,6,100),
(1370,'WitheredLandsJenluk',0,0,2,6,100), (1370,'WitheredLandsJenluk',0,0,2,6,100),
(1371,'WitheredLandsKretiz',0,0,2,6,100), (1371,'WitheredLandsKretiz',0,0,2,6,100),
(1372,'WitheredLandsThorncreep',0,0,2,6,100), (1372,'WitheredLandsThorncreep',0,0,2,6,100),
@ -1448,7 +1384,7 @@ INSERT INTO `loottable` VALUES
(1376,'WitheredLandsRitualistTenderhoof',0,0,2,6,100), (1376,'WitheredLandsRitualistTenderhoof',0,0,2,6,100),
(1377,'WitheredLandsRumbleleaf',0,0,2,6,100), (1377,'WitheredLandsRumbleleaf',0,0,2,6,100),
(1378,'WitheredLandsSwampmaw',0,0,2,6,100), (1378,'WitheredLandsSwampmaw',0,0,2,6,100),
(1379,'WitheredLandsTalapatook\'tei',0,0,2,6,100), (1379,'WitheredLandsTalapatook''tei',0,0,2,6,100),
(1380,'ValleyofRogueMagiArchmagus ',0,0,2,6,100), (1380,'ValleyofRogueMagiArchmagus ',0,0,2,6,100),
(1381,'ValleyofRogueMagiCaptainGaurk',0,0,2,6,100), (1381,'ValleyofRogueMagiCaptainGaurk',0,0,2,6,100),
(1382,'ValleyofRogueMagiLieutenantDarvus',0,0,2,6,100), (1382,'ValleyofRogueMagiLieutenantDarvus',0,0,2,6,100),
@ -1476,8 +1412,8 @@ INSERT INTO `loottable` VALUES
(1404,'VaultFallenTseralith',0,0,2,100,0), (1404,'VaultFallenTseralith',0,0,2,100,0),
(1405,'CoveDecayCaptainUlssissaris',0,0,2,6,100), (1405,'CoveDecayCaptainUlssissaris',0,0,2,6,100),
(1406,'CoveDecayOctagorgon',0,0,2,6,100), (1406,'CoveDecayOctagorgon',0,0,2,6,100),
(1407,'CondemnedCatacombBek\'Tar',0,0,2,6,100), (1407,'CondemnedCatacombBek''Tar',0,0,2,6,100),
(1408,'CondemnedCatacombCh\'Uman',0,0,2,6,100), (1408,'CondemnedCatacombCh''Uman',0,0,2,6,100),
(1409,'CondemnedCatacombLeetar',0,0,2,6,100), (1409,'CondemnedCatacombLeetar',0,0,2,6,100),
(1410,'CondemnedCatacombThaumaturge',0,0,2,6,100), (1410,'CondemnedCatacombThaumaturge',0,0,2,6,100),
(1411,'CondemnedCatacombVindiami ',0,0,2,6,100), (1411,'CondemnedCatacombVindiami ',0,0,2,6,100),
@ -1497,9 +1433,9 @@ INSERT INTO `loottable` VALUES
(1425,'NektroposCastleCrystaEverling ',0,0,2,6,100), (1425,'NektroposCastleCrystaEverling ',0,0,2,6,100),
(1426,'NektroposCastleAnobiidae',0,0,2,6,100), (1426,'NektroposCastleAnobiidae',0,0,2,6,100),
(1427,'NektroposCastleInquisitorUlkorruuk ',0,0,2,6,100), (1427,'NektroposCastleInquisitorUlkorruuk ',0,0,2,6,100),
(1428,'NektroposCastleElise\'sHandmaiden ',0,0,2,6,100), (1428,'NektroposCastleElise''sHandmaiden ',0,0,2,6,100),
(1429,'NektroposCastleEliseEverling',0,0,2,6,100), (1429,'NektroposCastleEliseEverling',0,0,2,6,100),
(1430,'NektroposCastleCaptainGa\'vin',0,0,2,6,100), (1430,'NektroposCastleCaptainGa''vin',0,0,2,6,100),
(1431,'NektroposCastleJuggernaught ',0,0,2,6,100), (1431,'NektroposCastleJuggernaught ',0,0,2,6,100),
(1432,'NektroposCastleMelanieEverling',0,0,2,6,0), (1432,'NektroposCastleMelanieEverling',0,0,2,6,0),
(1433,'NektroposCastleMaltusEverling',0,0,2,6,100), (1433,'NektroposCastleMaltusEverling',0,0,2,6,100),
@ -1507,17 +1443,17 @@ INSERT INTO `loottable` VALUES
(1435,'NektroposCastleSwineLord',0,0,2,6,100), (1435,'NektroposCastleSwineLord',0,0,2,6,100),
(1436,'NektroposCastleswinefiend',0,0,2,6,100), (1436,'NektroposCastleswinefiend',0,0,2,6,100),
(1437,'NektroposCastleSpectralChef',0,0,2,6,100), (1437,'NektroposCastleSpectralChef',0,0,2,6,100),
(1438,'NektroposCastleSheila\'sHandmaiden ',0,0,2,6,100), (1438,'NektroposCastleSheila''sHandmaiden ',0,0,2,6,100),
(1439,'NektroposCastleSheilaEverling',0,0,2,6,100), (1439,'NektroposCastleSheilaEverling',0,0,2,6,100),
(1440,'NektroposCastleXestoblum',0,0,2,6,100), (1440,'NektroposCastleXestoblum',0,0,2,6,100),
(1441,'CryptT\'haenBloodReaver',0,0,2,6,100), (1441,'CryptT''haenBloodReaver',0,0,2,6,100),
(1442,'CryptT\'haenGuardianoftheAltar',0,0,2,6,100), (1442,'CryptT''haenGuardianoftheAltar',0,0,2,6,100),
(1443,'CryptT\'haenV\'nya',0,0,2,6,100), (1443,'CryptT''haenV''nya',0,0,2,6,100),
(1444,'CryptT\'haenT\'rath',0,0,2,6,100), (1444,'CryptT''haenT''rath',0,0,2,6,100),
(1445,'CryptT\'haenN\'alla',0,0,2,6,100), (1445,'CryptT''haenN''alla',0,0,2,6,100),
(1446,'DeathfistCitadelRathmana',0,0,2,6,100), (1446,'DeathfistCitadelRathmana',0,0,2,6,100),
(1447,'DeathfistCitadelSirn\'Vehn',0,0,2,6,100), (1447,'DeathfistCitadelSirn''Vehn',0,0,2,6,100),
(1448,'DeathfistCitadelHira\'Vehn',0,0,2,6,100), (1448,'DeathfistCitadelHira''Vehn',0,0,2,6,100),
(1449,'DeathfistCitadelNagini',0,0,2,6,100), (1449,'DeathfistCitadelNagini',0,0,2,6,100),
(1450,'DeathfistCitadelOrtallius',0,0,2,6,100), (1450,'DeathfistCitadelOrtallius',0,0,2,6,100),
(1451,'SanctumofFireNobleDojorn',0,0,2,6,100), (1451,'SanctumofFireNobleDojorn',0,0,2,6,100),
@ -1531,9 +1467,9 @@ INSERT INTO `loottable` VALUES
(1459,'SanctoriumRathmana',0,0,2,6,100), (1459,'SanctoriumRathmana',0,0,2,6,100),
(1460,'SanctoriumOrtallius',0,0,2,6,100), (1460,'SanctoriumOrtallius',0,0,2,6,100),
(1461,'SanctoriumNagini',0,0,2,6,100), (1461,'SanctoriumNagini',0,0,2,6,100),
(1462,'SanctoriumHira\'Vehn',0,0,2,6,100), (1462,'SanctoriumHira''Vehn',0,0,2,6,100),
(1463,'SanctoriumSirn\'Vehn',0,0,2,6,100), (1463,'SanctoriumSirn''Vehn',0,0,2,6,100),
(1464,'NektroposTheReturnZ\'Latten',0,0,2,6,100), (1464,'NektroposTheReturnZ''Latten',0,0,2,6,100),
(1465,'NektroposTheReturnBurningSoul',0,0,2,6,100), (1465,'NektroposTheReturnBurningSoul',0,0,2,6,100),
(1466,'NektroposTheReturnButlerBalthazen',0,0,2,6,100), (1466,'NektroposTheReturnButlerBalthazen',0,0,2,6,100),
(1467,'NektroposTheReturnCaptainGreeves',2,0,2,6,100), (1467,'NektroposTheReturnCaptainGreeves',2,0,2,6,100),
@ -1552,7 +1488,7 @@ INSERT INTO `loottable` VALUES
(1480,'NektroposTheReturnSpiritSucker',0,0,2,6,100), (1480,'NektroposTheReturnSpiritSucker',0,0,2,6,100),
(1481,'NektroposTheReturnMaltena',0,0,2,6,100), (1481,'NektroposTheReturnMaltena',0,0,2,6,100),
(1482,'NektroposTheReturnEdgan',0,0,2,6,100), (1482,'NektroposTheReturnEdgan',0,0,2,6,100),
(1483,'NektroposTheReturnT\'Kalin',0,0,2,6,100), (1483,'NektroposTheReturnT''Kalin',0,0,2,6,100),
(1484,'NektroposTheReturnLordEverling',0,0,2,6,100), (1484,'NektroposTheReturnLordEverling',0,0,2,6,100),
(1485,'MinesofMeldrathFleshknot',0,0,2,6,100), (1485,'MinesofMeldrathFleshknot',0,0,2,6,100),
(1486,'MinesofMeldrathGackhammer',0,0,2,6,100), (1486,'MinesofMeldrathGackhammer',0,0,2,6,100),
@ -1570,7 +1506,7 @@ INSERT INTO `loottable` VALUES
(1498,'BefallenHallsOfForsakenJoltan',0,0,2,6,100), (1498,'BefallenHallsOfForsakenJoltan',0,0,2,6,100),
(1499,'BefallenHallsOfForsakenHighgarden',0,0,2,6,100), (1499,'BefallenHallsOfForsakenHighgarden',0,0,2,6,100),
(1500,'BefallenHallsOfForsakenGromkey',0,0,2,6,100), (1500,'BefallenHallsOfForsakenGromkey',0,0,2,6,100),
(1501,'BefallenHallsOfForsakenTsiet\'Sozlt',0,0,2,6,100), (1501,'BefallenHallsOfForsakenTsiet''Sozlt',0,0,2,6,100),
(1502,'BefallenHallsOfForsakenEidolonofDepravity',0,0,2,6,100), (1502,'BefallenHallsOfForsakenEidolonofDepravity',0,0,2,6,100),
(1503,'CryptofVoxTheSpiritofVox',0,0,1,100,100), (1503,'CryptofVoxTheSpiritofVox',0,0,1,100,100),
(1504,'NecroticAsylumHamyr',0,0,0,100,100), (1504,'NecroticAsylumHamyr',0,0,0,100,100),
@ -1625,46 +1561,46 @@ INSERT INTO `loottable` VALUES
(1553,'ScornfeatherRoostThatWhich',0,0,2,6,100), (1553,'ScornfeatherRoostThatWhich',0,0,2,6,100),
(1554,'AncientsTableAlbinoDesertTarantula',0,0,2,6,100), (1554,'AncientsTableAlbinoDesertTarantula',0,0,2,6,100),
(1555,'AncientsTableAncientCyclops',0,0,2,6,100), (1555,'AncientsTableAncientCyclops',0,0,2,6,100),
(1556,'Cazel\'sMesaGorefang',0,0,2,6,100), (1556,'Cazel''sMesaGorefang',0,0,2,6,100),
(1557,'Cazel\'sMesaCazeltheMad',0,0,2,6,100), (1557,'Cazel''sMesaCazeltheMad',0,0,2,6,100),
(1558,'Cazel\'sMesaDarantar',0,0,2,6,100), (1558,'Cazel''sMesaDarantar',0,0,2,6,100),
(1559,'Cazel\'sMesaFotar',0,0,2,6,100), (1559,'Cazel''sMesaFotar',0,0,2,6,100),
(1560,'Cazel\'sMesaDarantar',0,0,2,6,100), (1560,'Cazel''sMesaDarantar',0,0,2,6,100),
(1561,'PoetsPalaceAysortheMighty',0,0,0,100,100), (1561,'PoetsPalaceAysortheMighty',0,0,0,100,100),
(1562,'PoetsPalaceAysoreye',0,0,0,100,100), (1562,'PoetsPalaceAysoreye',0,0,0,100,100),
(1563,'PoetsPalaceCreatureofBeauty',0,0,0,100,100), (1563,'PoetsPalaceCreatureofBeauty',0,0,0,100,100),
(1564,'PoetsPalaceCreatureofTerror',0,0,0,100,100), (1564,'PoetsPalaceCreatureofTerror',0,0,0,100,100),
(1565,'PoetsPalaceKeeperofSilence',0,0,0,100,100), (1565,'PoetsPalaceKeeperofSilence',0,0,0,100,100),
(1566,'PoetsPalaceAUniqueForm',0,0,0,100,100), (1566,'PoetsPalaceAUniqueForm',0,0,0,100,100),
(1567,'Cazel\'sMesaVenomTail',0,0,2,6,100), (1567,'Cazel''sMesaVenomTail',0,0,2,6,100),
(1568,'Cazel\'sMesaVotar',0,0,2,6,100), (1568,'Cazel''sMesaVotar',0,0,2,6,100),
(1569,'Cazel\'sMesaShotar',0,0,2,6,100), (1569,'Cazel''sMesaShotar',0,0,2,6,100),
(1570,'Cazel\'sMesaRarantartheRevived',0,0,2,6,100), (1570,'Cazel''sMesaRarantartheRevived',0,0,2,6,100),
(1571,'Cazel\'sMesaRarantar',0,0,0,100,100), (1571,'Cazel''sMesaRarantar',0,0,0,100,100),
(1572,'Cazel\'sMesaYotar',0,0,2,6,100), (1572,'Cazel''sMesaYotar',0,0,2,6,100),
(1573,'AcadechismWarAncientofZek',0,0,2,6,100), (1573,'AcadechismWarAncientofZek',0,0,2,6,100),
(1574,'AcadechismEmperorD\'Vinn',0,0,2,6,100), (1574,'AcadechismEmperorD''Vinn',0,0,2,6,100),
(1575,'AcadechismKelzaral',0,0,2,6,100), (1575,'AcadechismKelzaral',0,0,2,6,100),
(1576,'NestGreatEggAggressorKhranz',0,0,2,6,100), (1576,'NestGreatEggAggressorKhranz',0,0,2,6,100),
(1577,'NestGreatEggRezhirz',0,0,2,6,100), (1577,'NestGreatEggRezhirz',0,0,2,6,100),
(1578,'NestGreatEggKettleleader',0,0,2,6,100), (1578,'NestGreatEggKettleleader',0,0,2,6,100),
(1579,'NestGreatEggZhardiz',0,0,2,6,100), (1579,'NestGreatEggZhardiz',0,0,2,6,100),
(1580,'NestGreatEggChamberlainX\'Haviz',0,0,2,6,100), (1580,'NestGreatEggChamberlainX''Haviz',0,0,2,6,100),
(1581,'DenofDevourerDeepguardianKvaklin',0,0,0,100,100), (1581,'DenofDevourerDeepguardianKvaklin',0,0,0,100,100),
(1582,'DenofDevourerTheDevourer',0,0,0,100,100), (1582,'DenofDevourerTheDevourer',0,0,0,100,100),
(1583,'DenofDevourerSpiritofWater',0,0,0,100,100), (1583,'DenofDevourerSpiritofWater',0,0,0,100,100),
(1584,'DenofDevourerSvacklan',0,0,0,100,100), (1584,'DenofDevourerSvacklan',0,0,0,100,100),
(1585,'VaultsEl\'AradArcaneLibrarian',0,0,2,6,100), (1585,'VaultsEl''AradArcaneLibrarian',0,0,2,6,100),
(1586,'VaultsEl\'AradMessengerEl\'Arad ',0,0,2,6,100), (1586,'VaultsEl''AradMessengerEl''Arad ',0,0,2,6,100),
(1587,'VaultsEl\'AradKorgo',0,0,2,6,100), (1587,'VaultsEl''AradKorgo',0,0,2,6,100),
(1588,'BlackscaleGrash',0,0,2,6,100), (1588,'BlackscaleGrash',0,0,2,6,100),
(1589,'BlackscaleOranti',0,0,2,6,100), (1589,'BlackscaleOranti',0,0,2,6,100),
(1590,'ObeliskofBlightAxxyk\'Tuur',0,0,2,6,100), (1590,'ObeliskofBlightAxxyk''Tuur',0,0,2,6,100),
(1591,'ObeliskofBlightGretalik ',0,0,2,6,100), (1591,'ObeliskofBlightGretalik ',0,0,2,6,100),
(1592,'ObeliskofBlightInterrogatorBruek',0,0,2,6,100), (1592,'ObeliskofBlightInterrogatorBruek',0,0,2,6,100),
(1593,'ObeliskofBlightZzorzzazxx',0,0,2,6,100), (1593,'ObeliskofBlightZzorzzazxx',0,0,2,6,100),
(1594,'ObeliskofBlightOcculatorYxorx',0,0,2,6,100), (1594,'ObeliskofBlightOcculatorYxorx',0,0,2,6,100),
(1595,'HallsofFateJin\'tiz',0,0,2,6,100), (1595,'HallsofFateJin''tiz',0,0,2,6,100),
(1596,'HallsofFateTammuz',0,0,2,6,100), (1596,'HallsofFateTammuz',0,0,2,6,100),
(1597,'HallsofFateVimock',0,0,2,6,100), (1597,'HallsofFateVimock',0,0,2,6,100),
(1598,'HallsofFateSeptimus',0,0,2,6,100), (1598,'HallsofFateSeptimus',0,0,2,6,100),
@ -1687,15 +1623,15 @@ INSERT INTO `loottable` VALUES
(1615,'NektroposCastleTribulationCoaltergeist',0,0,2,6,100), (1615,'NektroposCastleTribulationCoaltergeist',0,0,2,6,100),
(1616,'NektroposCastleTribulationAngrimar',0,0,2,6,100), (1616,'NektroposCastleTribulationAngrimar',0,0,2,6,100),
(1617,'NektroposCastleTribulationPlasmaGolem',0,0,2,6,100), (1617,'NektroposCastleTribulationPlasmaGolem',0,0,2,6,100),
(1618,'NizaraMai\'sith',0,0,2,6,100), (1618,'NizaraMai''sith',0,0,2,6,100),
(1619,'NizaraK\'huthas',0,0,2,6,100), (1619,'NizaraK''huthas',0,0,2,6,100),
(1620,'NizaraDutheris',0,0,2,6,100), (1620,'NizaraDutheris',0,0,2,6,100),
(1621,'NizaraAeri\'ssth',0,0,2,6,100), (1621,'NizaraAeri''ssth',0,0,2,6,100),
(1622,'NizaraZsisae',0,0,2,6,100), (1622,'NizaraZsisae',0,0,2,6,100),
(1623,'NizaraZhi\'feng',0,0,2,6,100), (1623,'NizaraZhi''feng',0,0,2,6,100),
(1624,'NizaraSshi\'vaez',0,0,2,6,100), (1624,'NizaraSshi''vaez',0,0,2,6,100),
(1625,'NizaraVzee\'rist',0,0,2,6,100), (1625,'NizaraVzee''rist',0,0,2,6,100),
(1626,'NizaraVzee\'ristMistressZhvari',0,0,2,6,100), (1626,'NizaraVzee''ristMistressZhvari',0,0,2,6,100),
(1627,'ShardofFearAngst',0,0,0,100,100), (1627,'ShardofFearAngst',0,0,0,100,100),
(1628,'ShardofFearDracoliche',0,0,0,100,100), (1628,'ShardofFearDracoliche',0,0,0,100,100),
(1629,'ShardofFearKyrTok',0,0,0,100,100), (1629,'ShardofFearKyrTok',0,0,0,100,100),
@ -1712,7 +1648,7 @@ INSERT INTO `loottable` VALUES
(1640,'MistmyrManorPrimogenLaenzuo',0,0,2,6,100), (1640,'MistmyrManorPrimogenLaenzuo',0,0,2,6,100),
(1641,'RavenscaleNoyle ',0,0,2,6,100), (1641,'RavenscaleNoyle ',0,0,2,6,100),
(1642,'RavenscaleHulkingDrachnid',0,0,2,6,100), (1642,'RavenscaleHulkingDrachnid',0,0,2,6,100),
(1643,'RavenscaleT\'Lon',0,0,2,6,100), (1643,'RavenscaleT''Lon',0,0,2,6,100),
(1644,'CryptofAgonyArchDukeLatol',0,0,2,100,0), (1644,'CryptofAgonyArchDukeLatol',0,0,2,100,0),
(1645,'CryptofAgonyBaronYasig',0,0,2,100,0), (1645,'CryptofAgonyBaronYasig',0,0,2,100,0),
(1646,'CryptofAgonyFallenEmperorVekin',0,0,2,100,0), (1646,'CryptofAgonyFallenEmperorVekin',0,0,2,100,0),
@ -1727,19 +1663,19 @@ INSERT INTO `loottable` VALUES
(1655,'VaultofEternalSleepTrashLoot',0,0,0,100,100), (1655,'VaultofEternalSleepTrashLoot',0,0,0,100,100),
(1656,'CourtofKorucustKorucust',0,0,0,100,100), (1656,'CourtofKorucustKorucust',0,0,0,100,100),
(1657,'RavenscaleProtectorate ',0,0,2,6,100), (1657,'RavenscaleProtectorate ',0,0,2,6,100),
(1658,'CharasisMaiden\'sChamberBi\'lithu',0,0,2,6,100), (1658,'CharasisMaiden''sChamberBi''lithu',0,0,2,6,100),
(1659,'CharasisMaiden\'sDerzitha',0,0,2,6,100), (1659,'CharasisMaiden''sDerzitha',0,0,2,6,100),
(1660,'CharasisMaiden\'sDrusella ',0,0,2,6,100), (1660,'CharasisMaiden''sDrusella ',0,0,2,6,100),
(1661,'CharasisMaiden\'sSandstorm',0,0,2,6,100), (1661,'CharasisMaiden''sSandstorm',0,0,2,6,100),
(1662,'CharasisMaiden\'sChamberImpalerTzilug',0,0,2,6,100), (1662,'CharasisMaiden''sChamberImpalerTzilug',0,0,2,6,100),
(1663,'CharasisMaiden\'sGearAncients',0,0,2,6,100), (1663,'CharasisMaiden''sGearAncients',0,0,2,6,100),
(1664,'DenDarkbladeAssassinsSinyazV\'rix',0,0,2,100,100), (1664,'DenDarkbladeAssassinsSinyazV''rix',0,0,2,100,100),
(1665,'ChelsithBbal\'Gaz',0,0,2,6,100), (1665,'ChelsithBbal''Gaz',0,0,2,6,100),
(1666,'ChelsithBlueBaron',0,0,2,6,100), (1666,'ChelsithBlueBaron',0,0,2,6,100),
(1667,'ChelsithGok\'Chai',0,0,2,6,100), (1667,'ChelsithGok''Chai',0,0,2,6,100),
(1668,'ChelsithKrel\'Vhap',0,0,2,6,100), (1668,'ChelsithKrel''Vhap',0,0,2,6,100),
(1669,'ChelsithKuom\'Ziki ',0,0,2,6,100), (1669,'ChelsithKuom''Ziki ',0,0,2,6,100),
(1670,'ChelsithUth\'Gak',0,0,2,6,100), (1670,'ChelsithUth''Gak',0,0,2,6,100),
(1671,'ChelsithMajoraLeviathora',0,0,2,6,100), (1671,'ChelsithMajoraLeviathora',0,0,2,6,100),
(1672,'ChelsithMucus ',0,0,2,6,100), (1672,'ChelsithMucus ',0,0,2,6,100),
(1673,'RunnyeyeGatheringBoarkeeperMalleg',0,0,2,6,100), (1673,'RunnyeyeGatheringBoarkeeperMalleg',0,0,2,6,100),
@ -1757,18 +1693,18 @@ INSERT INTO `loottable` VALUES
(1685,'VeksarInvasionHimai',0,0,2,6,100), (1685,'VeksarInvasionHimai',0,0,2,6,100),
(1686,'VeksarSunkenRiggledub',0,0,2,6,100), (1686,'VeksarSunkenRiggledub',0,0,2,6,100),
(1687,'VeksarSunkenCribblekeep',0,0,2,6,100), (1687,'VeksarSunkenCribblekeep',0,0,2,6,100),
(1688,'VeksarSunkenUl\'lugh',0,0,2,6,100), (1688,'VeksarSunkenUl''lugh',0,0,2,6,100),
(1689,'VeksarSunkenLordSasil',0,0,2,6,100), (1689,'VeksarSunkenLordSasil',0,0,2,6,100),
(1690,'VeksarSunkenGruerg',0,0,2,6,100), (1690,'VeksarSunkenGruerg',0,0,2,6,100),
(1691,'VeksarSunkenGarudon',0,0,2,6,100), (1691,'VeksarSunkenGarudon',0,0,2,6,100),
(1692,'Nu\'rogaBilthor',0,0,2,6,100), (1692,'Nu''rogaBilthor',0,0,2,6,100),
(1693,'Nu\'rogaTuz\'Rak',0,0,2,6,100), (1693,'Nu''rogaTuz''Rak',0,0,2,6,100),
(1694,'Nu\'rogaBloodpriest',0,0,2,6,100), (1694,'Nu''rogaBloodpriest',0,0,2,6,100),
(1695,'Nu\'rogaBricktop',0,0,2,6,100), (1695,'Nu''rogaBricktop',0,0,2,6,100),
(1696,'FabledCityKor-shaSannik ',0,0,2,6,100), (1696,'FabledCityKor-shaSannik ',0,0,2,6,100),
(1697,'FabledCityKor-shaSanedrac',0,0,2,6,100), (1697,'FabledCityKor-shaSanedrac',0,0,2,6,100),
(1698,'FabledCityKor-shaSelgrak',0,0,2,6,100), (1698,'FabledCityKor-shaSelgrak',0,0,2,6,100),
(1699,'FabledCityKor-shaKa\'El',0,0,2,6,100), (1699,'FabledCityKor-shaKa''El',0,0,2,6,100),
(1700,'FabledCityKor-shaCaptainKelkrin',0,0,2,6,100), (1700,'FabledCityKor-shaCaptainKelkrin',0,0,2,6,100),
(1701,'RuinsGukHallsRideepa',0,0,2,6,100), (1701,'RuinsGukHallsRideepa',0,0,2,6,100),
(1702,'RuinsGukHallsFungoid',0,0,2,6,100), (1702,'RuinsGukHallsFungoid',0,0,2,6,100),
@ -1791,30 +1727,30 @@ INSERT INTO `loottable` VALUES
(1719,'ObeliskAhkzulVark',0,0,2,6,100), (1719,'ObeliskAhkzulVark',0,0,2,6,100),
(1720,'ObeliskAhkzulKierax',0,0,2,6,100), (1720,'ObeliskAhkzulKierax',0,0,2,6,100),
(1721,'ObeliskAhkzulProto-Ravager',0,0,2,6,100), (1721,'ObeliskAhkzulProto-Ravager',0,0,2,6,100),
(1722,'AnchorBazzulY\'nosii',0,0,2,6,100), (1722,'AnchorBazzulY''nosii',0,0,2,6,100),
(1723,'AnchorBazzulGhoz',0,0,2,6,100), (1723,'AnchorBazzulGhoz',0,0,2,6,100),
(1724,'AnchorBazzulZynos',0,0,2,6,100), (1724,'AnchorBazzulZynos',0,0,2,6,100),
(1725,'AnchorBazzulDi\'zsho',0,0,2,6,100), (1725,'AnchorBazzulDi''zsho',0,0,2,6,100),
(1726,'AnchorBazzulMagus',0,0,2,6,100), (1726,'AnchorBazzulMagus',0,0,2,6,100),
(1727,'PalaceFerzhulMewaye',0,0,2,6,100), (1727,'PalaceFerzhulMewaye',0,0,2,6,100),
(1728,'PalaceFerzhulMaldormous',0,0,2,6,100), (1728,'PalaceFerzhulMaldormous',0,0,2,6,100),
(1729,'PalaceFerzhulLlalortus',0,0,2,6,100), (1729,'PalaceFerzhulLlalortus',0,0,2,6,100),
(1730,'PalaceFerzhulFerzhul',0,0,2,6,100), (1730,'PalaceFerzhulFerzhul',0,0,2,6,100),
(1731,'PalaceFerzhulD\'decill',0,0,2,6,100), (1731,'PalaceFerzhulD''decill',0,0,2,6,100),
(1732,'PalaceFerzhulValdoartus',0,0,2,6,100), (1732,'PalaceFerzhulValdoartus',0,0,2,6,100),
(1733,'Kurn\'sTowerBreachingThovalakk',0,0,2,6,100), (1733,'Kurn''sTowerBreachingThovalakk',0,0,2,6,100),
(1734,'Kurn\'sTowerBreachingTelvorsinn',0,0,2,6,100), (1734,'Kurn''sTowerBreachingTelvorsinn',0,0,2,6,100),
(1735,'Kurn\'sTowerBreachingJennre',0,0,2,6,100), (1735,'Kurn''sTowerBreachingJennre',0,0,2,6,100),
(1736,'Kurn\'sTowerBreachingWumpus',0,0,2,6,100), (1736,'Kurn''sTowerBreachingWumpus',0,0,2,6,100),
(1737,'Kurn\'sTowerBreachingYynzik',0,0,2,6,100), (1737,'Kurn''sTowerBreachingYynzik',0,0,2,6,100),
(1738,'Emperor\'sAthenaeumCurator',0,0,2,6,100), (1738,'Emperor''sAthenaeumCurator',0,0,2,6,100),
(1739,'Emperor\'sAthenaeumDrago',0,0,2,6,100), (1739,'Emperor''sAthenaeumDrago',0,0,2,6,100),
(1740,'Emperor\'sAthenaeumMasterEmbalmers',0,0,2,6,100), (1740,'Emperor''sAthenaeumMasterEmbalmers',0,0,2,6,100),
(1741,'Emperor\'sAthenaeumSunrise',0,0,2,6,100), (1741,'Emperor''sAthenaeumSunrise',0,0,2,6,100),
(1742,'Emperor\'sAthenaeumNightfall',0,0,2,6,100), (1742,'Emperor''sAthenaeumNightfall',0,0,2,6,100),
(1743,'Emperor\'sAthenaeumOctuss',0,0,2,6,100), (1743,'Emperor''sAthenaeumOctuss',0,0,2,6,100),
(1744,'Emperor\'sAthenaeumSslatch',0,0,2,6,100), (1744,'Emperor''sAthenaeumSslatch',0,0,2,6,100),
(1745,'Emperor\'sAthenaeumSslortis',0,0,2,6,100), (1745,'Emperor''sAthenaeumSslortis',0,0,2,6,100),
(1746,'VastyDeepConservatoryEeloran',0,0,2,6,100), (1746,'VastyDeepConservatoryEeloran',0,0,2,6,100),
(1747,'VastyDeepConservatoryDelahnus',0,0,2,6,100), (1747,'VastyDeepConservatoryDelahnus',0,0,2,6,100),
(1748,'LibraryofErudinAncientArchivistFahim',0,0,0,100,100), (1748,'LibraryofErudinAncientArchivistFahim',0,0,0,100,100),
@ -1826,20 +1762,20 @@ INSERT INTO `loottable` VALUES
(1754,'VastyDeepConservatoryBilkozan',0,0,2,6,100), (1754,'VastyDeepConservatoryBilkozan',0,0,2,6,100),
(1755,'VastyDeepConservatoryBrappalec',0,0,2,6,100), (1755,'VastyDeepConservatoryBrappalec',0,0,2,6,100),
(1756,'VastyDeepConservatoryRiyadh',0,0,2,6,100), (1756,'VastyDeepConservatoryRiyadh',0,0,2,6,100),
(1757,'Demitrik\'sBastionTiriini',0,0,2,6,100), (1757,'Demitrik''sBastionTiriini',0,0,2,6,100),
(1758,'Demitrik\'sBastionCoercerPittles',0,0,2,6,100), (1758,'Demitrik''sBastionCoercerPittles',0,0,2,6,100),
(1759,'Demitrik\'sBastionDemitrik',0,0,2,6,100), (1759,'Demitrik''sBastionDemitrik',0,0,2,6,100),
(1760,'Demitrik\'sBastionNayt',0,0,2,6,100), (1760,'Demitrik''sBastionNayt',0,0,2,6,100),
(1761,'Demitrik\'sBastionGhondu',0,0,2,6,100), (1761,'Demitrik''sBastionGhondu',0,0,2,6,100),
(1762,'Demitrik\'sBastionSchteek',0,0,2,6,100), (1762,'Demitrik''sBastionSchteek',0,0,2,6,100),
(1763,'Demitrik\'sBastionShirinu',0,0,2,6,100), (1763,'Demitrik''sBastionShirinu',0,0,2,6,100),
(1764,'Demitrik\'sBastionShroombis',0,0,2,6,100), (1764,'Demitrik''sBastionShroombis',0,0,2,6,100),
(1765,'VastyDeepAbandonedBlobCorrupted',0,0,2,6,100), (1765,'VastyDeepAbandonedBlobCorrupted',0,0,2,6,100),
(1766,'VastyDeepAbandonedHerep\'Hilos',0,0,2,6,100), (1766,'VastyDeepAbandonedHerep''Hilos',0,0,2,6,100),
(1767,'VastyDeepAbandonedHomunculis',0,0,2,6,100), (1767,'VastyDeepAbandonedHomunculis',0,0,2,6,100),
(1768,'VastyDeepAbandonedZaina',0,0,2,6,100), (1768,'VastyDeepAbandonedZaina',0,0,2,6,100),
(1769,'VastyDeepAbandonedKadara\'Mola',0,0,2,6,100), (1769,'VastyDeepAbandonedKadara''Mola',0,0,2,6,100),
(1770,'VastyDeepAbandonedPerah\'Celsis',0,0,2,6,100), (1770,'VastyDeepAbandonedPerah''Celsis',0,0,2,6,100),
(1771,'VastyDeepVestigialWightSpecter',0,0,2,6,100), (1771,'VastyDeepVestigialWightSpecter',0,0,2,6,100),
(1772,'VastyDeepVestigialCrystasha',0,0,2,6,100), (1772,'VastyDeepVestigialCrystasha',0,0,2,6,100),
(1773,'VastyDeepVestigialEctoMalgum',0,0,2,6,100), (1773,'VastyDeepVestigialEctoMalgum',0,0,2,6,100),
@ -1847,21 +1783,21 @@ INSERT INTO `loottable` VALUES
(1775,'VastyDeepVestigialKraitenae',0,0,2,6,100), (1775,'VastyDeepVestigialKraitenae',0,0,2,6,100),
(1776,'VastyDeepVestigialQueenGwarthle',0,0,2,6,100), (1776,'VastyDeepVestigialQueenGwarthle',0,0,2,6,100),
(1777,'VastyDeepVestigialSecratiata',0,0,2,6,100), (1777,'VastyDeepVestigialSecratiata',0,0,2,6,100),
(1778,'ErudinResearchPin\'Tannil',0,0,2,6,100), (1778,'ErudinResearchPin''Tannil',0,0,2,6,100),
(1779,'ErudinResearchPolla',0,0,2,6,100), (1779,'ErudinResearchPolla',0,0,2,6,100),
(1780,'ErudinResearchRan',0,0,2,6,100), (1780,'ErudinResearchRan',0,0,2,6,100),
(1781,'ErudinResearchV\'ladOlkeen',0,0,2,6,100), (1781,'ErudinResearchV''ladOlkeen',0,0,2,6,100),
(1782,'ErudinResearchVal\'Kinad',0,0,2,6,100), (1782,'ErudinResearchVal''Kinad',0,0,2,6,100),
(1783,'ErudinResearchDeathgazer',0,0,2,6,100), (1783,'ErudinResearchDeathgazer',0,0,2,6,100),
(1784,'ErudinResearchTaranisGazerra',0,0,2,6,100), (1784,'ErudinResearchTaranisGazerra',0,0,2,6,100),
(1785,'RoyalPalaceErudinMash\'al',0,0,2,6,100), (1785,'RoyalPalaceErudinMash''al',0,0,2,6,100),
(1786,'RoyalPalaceErudinEl\'Arad',0,0,2,6,100), (1786,'RoyalPalaceErudinEl''Arad',0,0,2,6,100),
(1787,'SpiritsResonanceTyrid',0,0,2,6,100), (1787,'SpiritsResonanceTyrid',0,0,2,6,100),
(1788,'SpiritsResonanceAl\'tuur',0,0,2,6,100), (1788,'SpiritsResonanceAl''tuur',0,0,2,6,100),
(1789,'SpiritsResonanceMagicmelter',0,0,2,6,100), (1789,'SpiritsResonanceMagicmelter',0,0,2,6,100),
(1790,'SpiritsResonanceNortlav',0,0,2,6,100), (1790,'SpiritsResonanceNortlav',0,0,2,6,100),
(1791,'SpiritsResonanceKyrenna',0,0,2,6,100), (1791,'SpiritsResonanceKyrenna',0,0,2,6,100),
(1792,'SpiritsResonanceResearcherJal\'De',0,0,2,6,100), (1792,'SpiritsResonanceResearcherJal''De',0,0,2,6,100),
(1793,'OuterVaultSentinelStone',0,0,2,6,100), (1793,'OuterVaultSentinelStone',0,0,2,6,100),
(1794,'OuterVaultQuarry',0,0,2,6,100), (1794,'OuterVaultQuarry',0,0,2,6,100),
(1795,'OuterVaultCobble',0,0,2,6,100), (1795,'OuterVaultCobble',0,0,2,6,100),
@ -1887,16 +1823,16 @@ INSERT INTO `loottable` VALUES
(1815,'VigilantRescueKerbiros',0,0,2,6,100), (1815,'VigilantRescueKerbiros',0,0,2,6,100),
(1816,'VigilantRescueMarusXand',0,0,2,6,100), (1816,'VigilantRescueMarusXand',0,0,2,6,100),
(1817,'VigilantRescuePrime-Kedon',0,0,2,6,100), (1817,'VigilantRescuePrime-Kedon',0,0,2,6,100),
(1818,'Zraxth\'sUnseenArcanumTreskar',0,0,2,6,100), (1818,'Zraxth''sUnseenArcanumTreskar',0,0,2,6,100),
(1819,'Zraxth\'sUnseenAnathraxxis',0,0,2,6,100), (1819,'Zraxth''sUnseenAnathraxxis',0,0,2,6,100),
(1820,'Zraxth\'sUnseenLordKrasick',0,0,2,6,100), (1820,'Zraxth''sUnseenLordKrasick',0,0,2,6,100),
(1821,'Zraxth\'sUnseenRhee\'Gor',0,0,2,6,100), (1821,'Zraxth''sUnseenRhee''Gor',0,0,2,6,100),
(1822,'TowerFrozenShadowedAlvik',0,0,2,6,100), (1822,'TowerFrozenShadowedAlvik',0,0,2,6,100),
(1823,'TowerFrozenShadowedArmoredPresence',0,0,2,6,100), (1823,'TowerFrozenShadowedArmoredPresence',0,0,2,6,100),
(1824,'TowerFrozenShadowedSergeantSchriber',0,0,2,6,100), (1824,'TowerFrozenShadowedSergeantSchriber',0,0,2,6,100),
(1825,'TowerFrozenShadowedXalgoti',0,0,2,6,100), (1825,'TowerFrozenShadowedXalgoti',0,0,2,6,100),
(1826,'TowerFrozenUmbralAch\'erin',0,0,2,6,100), (1826,'TowerFrozenUmbralAch''erin',0,0,2,6,100),
(1827,'TowerFrozenUmbralTserrina\'sRage',0,0,2,6,100), (1827,'TowerFrozenUmbralTserrina''sRage',0,0,2,6,100),
(1828,'TowerFrozenMohnt',0,0,2,6,100), (1828,'TowerFrozenMohnt',0,0,2,6,100),
(1829,'GraveyardKeeperofEthernere',0,0,2,100,100), (1829,'GraveyardKeeperofEthernere',0,0,2,100,100),
(1830,'MaulicsStrongholdOverseerMaulic',0,0,2,100,0), (1830,'MaulicsStrongholdOverseerMaulic',0,0,2,100,0),
@ -1913,14 +1849,14 @@ INSERT INTO `loottable` VALUES
(1841,'CoastalCrabLoot',0,0,1,10,0), (1841,'CoastalCrabLoot',0,0,1,10,0),
(1842,'VerminSnyeCommonLoot',0,0,0,50,100), (1842,'VerminSnyeCommonLoot',0,0,0,50,100),
(1843,'DarklightWoodaSableveinRockbiter',0,0,1,100,100), (1843,'DarklightWoodaSableveinRockbiter',0,0,1,100,100),
(1844,'DarklightWoodSergeantJ\'Narus',0,0,1,100,100), (1844,'DarklightWoodSergeantJ''Narus',0,0,1,100,100),
(1845,'DarklightWoodTheNightmarshNightmare',0,0,2,100,100), (1845,'DarklightWoodTheNightmarshNightmare',0,0,2,100,100),
(1846,'MaulicsStrongholdGruktarnRedfist',0,0,2,100,0), (1846,'MaulicsStrongholdGruktarnRedfist',0,0,2,100,0),
(1847,'DarklightWoodSaldisOro',0,0,1,100,100), (1847,'DarklightWoodSaldisOro',0,0,1,100,100),
(1848,'MaulicsStrongholdGeneralDrull',0,0,2,100,0), (1848,'MaulicsStrongholdGeneralDrull',0,0,2,100,0),
(1849,'PermafrostCommanderKeg',0,0,2,100,100), (1849,'PermafrostCommanderKeg',0,0,2,100,100),
(1850,'CommonlandsCaptainSurestout',0,0,2,100,100), (1850,'CommonlandsCaptainSurestout',0,0,2,100,100),
(1851,'CommonlandsHighPriestofVal\'Marr',0,0,3,100,100), (1851,'CommonlandsHighPriestofVal''Marr',0,0,3,100,100),
(1852,'CommonlandsSeepscale',0,0,1,100,100), (1852,'CommonlandsSeepscale',0,0,1,100,100),
(1853,'CommonlandsReetusk',0,0,2,100,100), (1853,'CommonlandsReetusk',0,0,2,100,100),
(1854,'T1MasterSpells1-4',0,0,1,0,100), (1854,'T1MasterSpells1-4',0,0,1,0,100),
@ -2023,7 +1959,7 @@ INSERT INTO `loottable` VALUES
(1951,'Oakmyst NoteQuest Drop',0,0,1,4,0), (1951,'Oakmyst NoteQuest Drop',0,0,1,4,0),
(1952,'Oakmyst Farseas',0,0,0,100,100), (1952,'Oakmyst Farseas',0,0,0,100,100),
(1953,'NektroposCastleJenniEverling',0,0,2,100,0), (1953,'NektroposCastleJenniEverling',0,0,2,100,0),
(1954,'Ferith\'AnarPelt',0,0,1,75,0), (1954,'Ferith''AnarPelt',0,0,1,75,0),
(1955,'NektroposCastleFleshripper',0,0,2,100,0), (1955,'NektroposCastleFleshripper',0,0,2,100,0),
(1956,'TheHedgeHollowCollectionLoot',0,0,1,100,0), (1956,'TheHedgeHollowCollectionLoot',0,0,1,100,0),
(1957,'RuinsVarsoonAGuardCaptain',0,0,2,100,0), (1957,'RuinsVarsoonAGuardCaptain',0,0,2,100,0),
@ -2363,7 +2299,7 @@ INSERT INTO `loottable` VALUES
(2291,'ThievesWayClassicKrakamen',100,300,1,100,100), (2291,'ThievesWayClassicKrakamen',100,300,1,100,100),
(2292,'SprawlGutersnipeNoteQuest',0,0,1,3,0), (2292,'SprawlGutersnipeNoteQuest',0,0,1,3,0),
(2293,'ThievesWayClassicShiftBoss',100,300,1,100,100), (2293,'ThievesWayClassicShiftBoss',100,300,1,100,100),
(2294,'Llama\'s LootTable',0,0,0,100,100), (2294,'Llama''s LootTable',0,0,0,100,100),
(2295,'ThievesWayClassicLadyDarkblade',100,300,1,100,100), (2295,'ThievesWayClassicLadyDarkblade',100,300,1,100,100),
(2296,'LlamaLootTable',0,0,0,100,100), (2296,'LlamaLootTable',0,0,0,100,100),
(2297,'ThievesWayChugglesToolbox',0,0,1,4,0), (2297,'ThievesWayChugglesToolbox',0,0,1,4,0),
@ -2454,17 +2390,3 @@ INSERT INTO `loottable` VALUES
(2382,'NektulosClassicMolt',4000,20000,1,100,100), (2382,'NektulosClassicMolt',4000,20000,1,100,100),
(2383,'NektulosClassicDuskyOwlbear',0,0,0,100,100), (2383,'NektulosClassicDuskyOwlbear',0,0,0,100,100),
(2384,'NektulosClassicDedralium',10000,30000,1,100,100); (2384,'NektulosClassicDedralium',10000,30000,1,100,100);
/*!40000 ALTER TABLE `loottable` 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:28
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,90 +1,26 @@
-- Table: `map_data` DROP TABLE IF EXISTS map_data;
USE `eq2emu`; CREATE TABLE map_data (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
map_id INTEGER NOT NULL DEFAULT 0,
zone_name TEXT,
highest REAL NOT NULL DEFAULT 0,
lowest REAL NOT NULL DEFAULT 0,
explored_map_name TEXT,
unexplored_map_name TEXT,
bounds1_x REAL NOT NULL DEFAULT 0,
bounds1_z REAL NOT NULL DEFAULT 0,
bounds2_x REAL NOT NULL DEFAULT 0,
bounds2_z REAL NOT NULL DEFAULT 0,
bounds3_x REAL NOT NULL DEFAULT 0,
bounds3_z REAL NOT NULL DEFAULT 0,
bounds4_x REAL NOT NULL DEFAULT 0,
bounds4_z REAL NOT NULL DEFAULT 0,
explored_key INTEGER NOT NULL DEFAULT 0,
unexplored_key INTEGER NOT NULL DEFAULT 0,
UNIQUE(map_id, zone_name, unexplored_map_name, explored_map_name)
);
/*M!999999\- enable the sandbox mode */ INSERT INTO map_data VALUES
-- 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 `map_data`
--
DROP TABLE IF EXISTS `map_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `map_data` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`map_id` int(10) unsigned NOT NULL DEFAULT 0,
`zone_name` varchar(128) DEFAULT NULL,
`highest` float NOT NULL DEFAULT 0,
`lowest` float NOT NULL DEFAULT 0,
`explored_map_name` varchar(255) DEFAULT NULL,
`unexplored_map_name` varchar(255) DEFAULT NULL,
`bounds1_x` float NOT NULL DEFAULT 0,
`bounds1_z` float NOT NULL DEFAULT 0,
`bounds2_x` float NOT NULL DEFAULT 0,
`bounds2_z` float NOT NULL DEFAULT 0,
`bounds3_x` float NOT NULL DEFAULT 0,
`bounds3_z` float NOT NULL DEFAULT 0,
`bounds4_x` float NOT NULL DEFAULT 0,
`bounds4_z` float NOT NULL DEFAULT 0,
`explored_key` bigint(20) unsigned NOT NULL DEFAULT 0,
`unexplored_key` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `MapIDX` (`map_id`,`zone_name`,`unexplored_map_name`,`explored_map_name`)
) ENGINE=InnoDB AUTO_INCREMENT=196 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:28
/*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 `map_data`
--
LOCK TABLES `map_data` WRITE;
/*!40000 ALTER TABLE `map_data` DISABLE KEYS */;
INSERT INTO `map_data` VALUES
(1,689884944,'fprt_hood04',35,0.5,'NRVOBM/nms/freeportbeggarscourt_explored.dds','NRVOBM/nms/freeportbeggarscourt_unexplored.dds',-225.8,-137.49,181.39,158.88,-225.8,-137.49,181.39,158.88,4800855641399099720,901758263814064518), (1,689884944,'fprt_hood04',35,0.5,'NRVOBM/nms/freeportbeggarscourt_explored.dds','NRVOBM/nms/freeportbeggarscourt_unexplored.dds',-225.8,-137.49,181.39,158.88,-225.8,-137.49,181.39,158.88,4800855641399099720,901758263814064518),
(2,624167834,'fprt_hood01',35,0.5,'NRVOBM/nms/freeportbigbend_explored.dds','NRVOBM/nms/freeportbigbend_unexplored.dds',-268.73,-156.94,241.76,233.74,-268.73,-156.94,241.76,233.74,13893361007639750321,13906198626671770666), (2,624167834,'fprt_hood01',35,0.5,'NRVOBM/nms/freeportbigbend_explored.dds','NRVOBM/nms/freeportbigbend_unexplored.dds',-268.73,-156.94,241.76,233.74,-268.73,-156.94,241.76,233.74,13893361007639750321,13906198626671770666),
(3,3015956135,'darklight_wood',50,0.5,'NRVOBM/nms/dlere_darklight_explored.dds','NRVOBM/nms/dlere_darklight_unexplored.dds',-821.22,-602.32,755.95,579.64,-821.22,-602.32,755.95,579.64,5213882723512802523,15208764082748909030), (3,3015956135,'darklight_wood',50,0.5,'NRVOBM/nms/dlere_darklight_explored.dds','NRVOBM/nms/dlere_darklight_unexplored.dds',-821.22,-602.32,755.95,579.64,-821.22,-602.32,755.95,579.64,5213882723512802523,15208764082748909030),
@ -280,17 +216,3 @@ INSERT INTO `map_data` VALUES
(193,1290963353,'exp07_dun_kael_drakkel_9',0,0,'NRVOBM/nms/exp07_dun_kaeldrakkel02.dds','NRVOBM/nms/exp07_dun_kaeldrakkel02.dds',-1836,-940,616,947,-1740,-363,383,451,7568174142193434350,7568174142193434350), (193,1290963353,'exp07_dun_kael_drakkel_9',0,0,'NRVOBM/nms/exp07_dun_kaeldrakkel02.dds','NRVOBM/nms/exp07_dun_kaeldrakkel02.dds',-1836,-940,616,947,-1740,-363,383,451,7568174142193434350,7568174142193434350),
(194,1290963353,'exp07_dun_kael_drakkel_10',0,0,'NRVOBM/nms/exp07_dun_kaeldrakkel02.dds','NRVOBM/nms/exp07_dun_kaeldrakkel02.dds',-1836,-940,616,947,305,-552,406,-31,7568174142193434350,7568174142193434350), (194,1290963353,'exp07_dun_kael_drakkel_10',0,0,'NRVOBM/nms/exp07_dun_kaeldrakkel02.dds','NRVOBM/nms/exp07_dun_kaeldrakkel02.dds',-1836,-940,616,947,305,-552,406,-31,7568174142193434350,7568174142193434350),
(195,1290963353,'exp07_dun_kael_drakkel_11',0,0,'NRVOBM/nms/exp07_dun_kaeldrakkel03.dds','NRVOBM/nms/exp07_dun_kaeldrakkel03.dds',-728,-3383,2865,-743,-91,-3233,2150,-1053,13778997396821898878,13778997396821898878); (195,1290963353,'exp07_dun_kael_drakkel_11',0,0,'NRVOBM/nms/exp07_dun_kaeldrakkel03.dds','NRVOBM/nms/exp07_dun_kaeldrakkel03.dds',-728,-3383,2865,-743,-91,-3233,2150,-1053,13778997396821898878,13778997396821898878);
/*!40000 ALTER TABLE `map_data` 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:28
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,87 +1,23 @@
-- Table: `merchant_inventory` DROP TABLE IF EXISTS merchant_inventory;
USE `eq2emu`; CREATE TABLE merchant_inventory (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
inventory_id INTEGER NOT NULL DEFAULT 0,
item_id INTEGER NOT NULL DEFAULT 0,
quantity INTEGER NOT NULL DEFAULT 65535,
price_item_id INTEGER NOT NULL DEFAULT 0,
price_item_qty INTEGER NOT NULL DEFAULT 0,
price_item2_id INTEGER NOT NULL DEFAULT 0,
price_item2_qty INTEGER NOT NULL DEFAULT 0,
price_status INTEGER NOT NULL DEFAULT 0,
price_coins INTEGER NOT NULL DEFAULT 0,
price_stationcash INTEGER NOT NULL DEFAULT 0,
FOREIGN KEY (inventory_id) REFERENCES merchants(inventory_id) ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (item_id) REFERENCES items(id) ON DELETE CASCADE ON UPDATE CASCADE
);
CREATE INDEX idx_merchant_inventory_inventory_id ON merchant_inventory(inventory_id);
CREATE INDEX idx_merchant_inventory_item_id ON merchant_inventory(item_id);
/*M!999999\- enable the sandbox mode */ INSERT INTO merchant_inventory VALUES
-- 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 `merchant_inventory`
--
DROP TABLE IF EXISTS `merchant_inventory`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `merchant_inventory` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`inventory_id` int(10) unsigned NOT NULL DEFAULT 0,
`item_id` int(10) unsigned NOT NULL DEFAULT 0,
`quantity` smallint(5) unsigned NOT NULL DEFAULT 65535,
`price_item_id` int(10) unsigned NOT NULL DEFAULT 0,
`price_item_qty` smallint(5) unsigned NOT NULL DEFAULT 0,
`price_item2_id` int(10) unsigned NOT NULL DEFAULT 0,
`price_item2_qty` smallint(5) unsigned NOT NULL DEFAULT 0,
`price_status` int(10) unsigned NOT NULL DEFAULT 0,
`price_coins` int(10) unsigned NOT NULL DEFAULT 0,
`price_stationcash` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `InventoryIDX` (`inventory_id`),
KEY `FK_merchant_inventory2` (`item_id`),
CONSTRAINT `FK_merchant_inventory1` FOREIGN KEY (`inventory_id`) REFERENCES `merchants` (`inventory_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_merchant_inventory2` FOREIGN KEY (`item_id`) REFERENCES `items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=40708 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:28
/*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 `merchant_inventory`
--
LOCK TABLES `merchant_inventory` WRITE;
/*!40000 ALTER TABLE `merchant_inventory` DISABLE KEYS */;
INSERT INTO `merchant_inventory` VALUES
(1,1,36106,255,0,0,0,0,0,2,0), (1,1,36106,255,0,0,0,0,0,2,0),
(2,1,35475,255,0,0,0,0,0,10,0), (2,1,35475,255,0,0,0,0,0,10,0),
(3,1,35792,255,0,0,0,0,0,7,0), (3,1,35792,255,0,0,0,0,0,7,0),
@ -39431,17 +39367,3 @@ INSERT INTO `merchant_inventory` VALUES
(40705,5442,47478,1,0,0,0,0,80000,2073600,0), (40705,5442,47478,1,0,0,0,0,80000,2073600,0),
(40706,5442,47474,1,0,0,0,0,0,9907400,0), (40706,5442,47474,1,0,0,0,0,0,9907400,0),
(40707,5442,46615,1,0,0,0,0,0,2457600,0); (40707,5442,46615,1,0,0,0,0,0,2457600,0);
/*!40000 ALTER TABLE `merchant_inventory` 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:28
SET FOREIGN_KEY_CHECKS=1;

View File

@ -1,91 +1,12 @@
-- Table: `merchant_multipliers` DROP TABLE IF EXISTS merchant_multipliers;
USE `eq2emu`; CREATE TABLE merchant_multipliers (
SET FOREIGN_KEY_CHECKS=0; id INTEGER PRIMARY KEY,
merchant_id INTEGER NOT NULL DEFAULT 0,
/*M!999999\- enable the sandbox mode */ low_buy_multiplier REAL NOT NULL DEFAULT 1,
-- MariaDB dump 10.19 Distrib 10.11.11-MariaDB, for debian-linux-gnu (x86_64) high_buy_multiplier REAL NOT NULL DEFAULT 10,
-- low_sell_multiplier REAL NOT NULL DEFAULT 1,
-- Host: localhost Database: eq2emu high_sell_multiplier REAL NOT NULL DEFAULT 10,
-- ------------------------------------------------------ multiplier_faction_id INTEGER NOT NULL DEFAULT 0,
-- Server version 10.11.11-MariaDB-0+deb12u1 min_faction INTEGER NOT NULL DEFAULT -20000,
max_faction INTEGER NOT NULL DEFAULT 50000
/*!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 `merchant_multipliers`
--
DROP TABLE IF EXISTS `merchant_multipliers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `merchant_multipliers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`merchant_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Testing',
`low_buy_multiplier` float unsigned NOT NULL DEFAULT 1,
`high_buy_multiplier` float unsigned NOT NULL DEFAULT 10,
`low_sell_multiplier` float unsigned NOT NULL DEFAULT 1,
`high_sell_multiplier` float unsigned NOT NULL DEFAULT 10,
`multiplier_faction_id` int(10) unsigned NOT NULL DEFAULT 0,
`min_faction` int(11) NOT NULL DEFAULT -20000,
`max_faction` int(11) NOT NULL DEFAULT 50000,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 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:28
/*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 `merchant_multipliers`
--
LOCK TABLES `merchant_multipliers` WRITE;
/*!40000 ALTER TABLE `merchant_multipliers` DISABLE KEYS */;
/*!40000 ALTER TABLE `merchant_multipliers` 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:28
SET FOREIGN_KEY_CHECKS=1;

Some files were not shown because too many files have changed in this diff Show More