1182 lines
150 KiB
MySQL
1182 lines
150 KiB
MySQL
|
-- MySQL dump 10.17 Distrib 10.3.22-MariaDB, for debian-linux-gnu (x86_64)
|
|||
|
--
|
|||
|
-- Host: localhost Database: lotgd
|
|||
|
-- ------------------------------------------------------
|
|||
|
-- Server version 10.3.22-MariaDB-1ubuntu1
|
|||
|
|
|||
|
/*!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 */;
|
|||
|
|
|||
|
--
|
|||
|
-- Current Database: `lotgd`
|
|||
|
--
|
|||
|
|
|||
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `lotgd` /*!40100 DEFAULT CHARACTER SET utf8mb4 */;
|
|||
|
|
|||
|
USE `lotgd`;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `accounts`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `accounts`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `accounts` (
|
|||
|
`acctid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`name` varchar(60) NOT NULL,
|
|||
|
`sex` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`specialty` varchar(20) NOT NULL,
|
|||
|
`experience` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`gold` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`weapon` varchar(50) NOT NULL DEFAULT 'Fists',
|
|||
|
`armor` varchar(50) NOT NULL DEFAULT 'T-Shirt',
|
|||
|
`seenmaster` int(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`level` int(11) unsigned NOT NULL DEFAULT 1,
|
|||
|
`defense` int(11) unsigned NOT NULL DEFAULT 1,
|
|||
|
`attack` int(11) unsigned NOT NULL DEFAULT 1,
|
|||
|
`alive` int(11) unsigned NOT NULL DEFAULT 1,
|
|||
|
`goldinbank` int(11) NOT NULL DEFAULT 0,
|
|||
|
`marriedto` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`spirits` int(4) NOT NULL DEFAULT 0,
|
|||
|
`laston` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`hitpoints` int(11) NOT NULL DEFAULT 10,
|
|||
|
`maxhitpoints` int(11) unsigned NOT NULL DEFAULT 10,
|
|||
|
`gems` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`weaponvalue` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`armorvalue` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`location` varchar(25) NOT NULL DEFAULT 'Degolburg',
|
|||
|
`turns` int(11) unsigned NOT NULL DEFAULT 10,
|
|||
|
`title` varchar(25) NOT NULL,
|
|||
|
`password` varchar(32) NOT NULL,
|
|||
|
`badguy` text NOT NULL,
|
|||
|
`companions` text NOT NULL,
|
|||
|
`allowednavs` mediumtext NOT NULL,
|
|||
|
`loggedin` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`resurrections` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`superuser` int(11) unsigned NOT NULL DEFAULT 1,
|
|||
|
`weapondmg` int(11) NOT NULL DEFAULT 0,
|
|||
|
`armordef` int(11) NOT NULL DEFAULT 0,
|
|||
|
`age` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`charm` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`specialinc` varchar(50) NOT NULL,
|
|||
|
`specialmisc` text NOT NULL,
|
|||
|
`login` varchar(50) NOT NULL,
|
|||
|
`lastmotd` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`playerfights` int(11) unsigned NOT NULL DEFAULT 3,
|
|||
|
`lasthit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`seendragon` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`dragonkills` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`locked` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`restorepage` varchar(128) DEFAULT NULL,
|
|||
|
`hashorse` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`bufflist` text NOT NULL,
|
|||
|
`gentime` double unsigned NOT NULL DEFAULT 0,
|
|||
|
`gentimecount` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`lastip` varchar(40) NOT NULL,
|
|||
|
`uniqueid` varchar(32) DEFAULT NULL,
|
|||
|
`dragonpoints` text NOT NULL,
|
|||
|
`boughtroomtoday` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
`emailaddress` varchar(128) NOT NULL,
|
|||
|
`emailvalidation` varchar(32) NOT NULL,
|
|||
|
`sentnotice` int(11) NOT NULL DEFAULT 0,
|
|||
|
`prefs` text NOT NULL,
|
|||
|
`pvpflag` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`transferredtoday` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`soulpoints` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`gravefights` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`hauntedby` varchar(50) NOT NULL,
|
|||
|
`deathpower` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`gensize` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`recentcomments` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`donation` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`donationspent` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`donationconfig` text NOT NULL,
|
|||
|
`referer` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`refererawarded` tinyint(1) NOT NULL DEFAULT 0,
|
|||
|
`bio` varchar(255) NOT NULL,
|
|||
|
`race` varchar(25) NOT NULL DEFAULT '0',
|
|||
|
`biotime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`banoverride` tinyint(4) DEFAULT 0,
|
|||
|
`buffbackup` text DEFAULT NULL,
|
|||
|
`amountouttoday` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`pk` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
|||
|
`dragonage` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`bestdragonage` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`ctitle` varchar(25) NOT NULL,
|
|||
|
`beta` tinyint(3) unsigned NOT NULL DEFAULT 0,
|
|||
|
`slaydragon` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`fedmount` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`regdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`clanid` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`clanrank` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`clanjoindate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
PRIMARY KEY (`acctid`),
|
|||
|
KEY `name` (`name`),
|
|||
|
KEY `level` (`level`),
|
|||
|
KEY `login` (`login`),
|
|||
|
KEY `alive` (`alive`),
|
|||
|
KEY `laston` (`laston`),
|
|||
|
KEY `lasthit` (`lasthit`),
|
|||
|
KEY `emailaddress` (`emailaddress`),
|
|||
|
KEY `clanid` (`clanid`),
|
|||
|
KEY `locked` (`locked`,`loggedin`,`laston`),
|
|||
|
KEY `referer` (`referer`),
|
|||
|
KEY `uniqueid` (`uniqueid`),
|
|||
|
KEY `emailvalidation` (`emailvalidation`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `accounts`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `accounts` WRITE;
|
|||
|
/*!40000 ALTER TABLE `accounts` DISABLE KEYS */;
|
|||
|
INSERT INTO `accounts` VALUES (1,'`%Admin `&admin`0',0,'MP',0,0,'Fists','T-Shirt',0,1,1,1,1,0,0,1,'2020-08-12 19:11:19',10,10,0,0,0,'Degolburg',11,'','a31e0f49d2dc4381072e30ee5a313237','','a:0:{}','a:0:{}',0,0,3923967,0,0,1,0,'','','admin','0000-00-00 00:00:00',3,'2020-08-12 19:08:59',0,0,0,'news.php',0,'a:0:{}',3.5302112102506,32,'192.168.1.133','8cec52f5b954fa644bc0bc91650fb69d','a:0:{}',0,'','',0,'a:1:{s:12:\"ihavenocheer\";i:0;}','0000-00-00 00:00:00',0,55,10,'',0,721701,'0000-00-00 00:00:00',0,0,'',0,0,'','Human','0000-00-00 00:00:00',0,NULL,0,0,0,0,'`%Admin',0,0,0,'2020-08-12 19:08:34',0,0,'0000-00-00 00:00:00');
|
|||
|
/*!40000 ALTER TABLE `accounts` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `accounts_output`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `accounts_output`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `accounts_output` (
|
|||
|
`acctid` int(11) unsigned NOT NULL,
|
|||
|
`output` mediumtext NOT NULL,
|
|||
|
PRIMARY KEY (`acctid`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `accounts_output`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `accounts_output` WRITE;
|
|||
|
/*!40000 ALTER TABLE `accounts_output` DISABLE KEYS */;
|
|||
|
INSERT INTO `accounts_output` VALUES (1,'\r\n<!DOCTYPE HTML PUBLIC \'-//W3C//DTD HTML 4.01 Transitional//EN\'>\r\n<html>\r\n<head>\r\n <title>Degolburg Square</title>\r\n <link href=\'templates/jade.css\' rel=\'stylesheet\' type=\'text/css\'>\r\n <LINK REL=\"shortcut icon\" HREF=\"favicon.ico\" TYPE=\"image/x-icon\"/><script language=\'JavaScript\'>\n <!--\n document.onkeypress=keyevent;\n function keyevent(e){\n var c;\n var target;\n var altKey;\n var ctrlKey;\n if (window.event != null) {\n c=String.fromCharCode(window.event.keyCode).toUpperCase();\n altKey=window.event.altKey;\n ctrlKey=window.event.ctrlKey;\n }else{\n c=String.fromCharCode(e.charCode).toUpperCase();\n altKey=e.altKey;\n ctrlKey=e.ctrlKey;\n }\n if (window.event != null)\n target=window.event.srcElement;\n else\n target=e.originalTarget;\n if (target.nodeName.toUpperCase()==\'INPUT\' || target.nodeName.toUpperCase()==\'TEXTAREA\' || altKey || ctrlKey){\n }else{\n if (c == \'F\') { window.location=\'forest.php?c=72-191116\'; return false; }\n if (c == \'S\') { window.location=\'pvp.php?c=72-191116\'; return false; }\n if (c == \'Q\') { window.location=\'login.php?op=logout&c=72-191116\'; return false; }\n if (c == \'M\') { window.location=\'mercenarycamp.php?c=72-191116\'; return false; }\n if (c == \'U\') { window.location=\'train.php?c=72-191116\'; return false; }\n if (c == \'J\') { window.location=\'lodge.php?c=72-191116\'; return false; }\n if (c == \'W\') { window.location=\'weapons.php?c=72-191116\'; return false; }\n if (c == \'A\') { window.location=\'armor.php?c=72-191116\'; return false; }\n if (c == \'B\') { window.location=\'bank.php?c=72-191116\'; return false; }\n if (c == \'Z\') { window.location=\'gypsy.php?c=72-191116\'; return false; }\n if (c == \'I\') { window.location=\'inn.php?c=72-191116\'; return false; }\n if (c == \'E\') { window.location=\'stables.php?c=72-191116\'; return false; }\n if (c == \'G\') { window.location=\'gardens.php?c=72-191116\'; return false; }\n if (c == \'R\') { window.location=\'rock.php?c=72-191116\'; return false; }\n if (c == \'C\') { window.location=\'clan.php?c=72-191116\'; return false; }\n if (c == \'?\') { window.open(\'petition.php?op=faq\'); return false; }\n if (c == \'N\') { window.location=\'news.php?c=72-191116\'; return false; }\n if (c == \'L\') { window.location=\'list.php?c=72-191116\'; return false; }\n if (c == \'O\') { window.location=\'hof.php?c=72-191116\'; return false; }\n if (c == \'P\') { window.location=\'prefs.php?c=72-191116\'; return false; }\n if (c == \',\') { window.location=\'moderate.php?c=72-191116\'; return false; }\n if (c == \'X\') { window.location=\'superuser.php?c=72-191116\'; return false; }\n if (c == \'/\') { window.location=\'newday.php?c=72-191116\'; return false; }\n }\n }\n //-->\n </script>\r\n</head>\r\n<body bgcolor=\'#003800\' text=\"#CCCCCC\">\r\n<table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\'>\r\n <tr>\r\n <td>\r\n <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' width=\'100%\'>\r\n <tr>\r\n <td nowrap valign=\'top\'>\r\n <table border=\'0\' cellpadding=\'0\' cellspacing=\'0\'>\r\n <tr>\r\n <td><img name=\'tlc\' src=\'templates/jade/tlc.gif\' width=\'10\' height=\'15\' border=\'0\' alt=\'\'></td>\r\n <td background=\'templates/jade/tm.gif\'><img name=\'tm\' src=\'templates/jade/spacer.gif\' width=\'1\' height=\'1\' border=\'0\' alt=\'\'></td>\r\n <td><img name=\'trc\' src=\'templates/jade/trc.gif\' width=\'10\' height=\'15\' border=\'0\' alt=\'\'></td>\r\n </tr>\r\n <tr>\r\n <td background=\'templates/jade/tlt.gif\'><img name=\'tlt\' src=\'templates/jade/spacer.gif\' width=\'1\' height=\'1\' border=\'0\' alt=\'\'></td>\r\n <td valign=\'top\' bgcolor=\'#003800\' nowrap><span class=\'pagetitle\'>• Degolburg Square</span></td>\r\n <td background=\'templates/jade/trt.gif\'><img name=\'trt\' src=\'templates/jade/spacer.gif\' width=\'1\' height=\'1\' border=\'0\' alt=\'\'></td>\r\n </tr>\r\n <tr>\r\n <td><img name=\'blc
|
|||
|
/*!40000 ALTER TABLE `accounts_output` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `armor`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `armor`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `armor` (
|
|||
|
`armorid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`armorname` varchar(128) DEFAULT NULL,
|
|||
|
`value` int(11) NOT NULL DEFAULT 0,
|
|||
|
`defense` int(11) NOT NULL DEFAULT 1,
|
|||
|
`level` int(11) NOT NULL DEFAULT 0,
|
|||
|
PRIMARY KEY (`armorid`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `armor`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `armor` WRITE;
|
|||
|
/*!40000 ALTER TABLE `armor` DISABLE KEYS */;
|
|||
|
INSERT INTO `armor` VALUES (1,'Fuzzy Slippers',48,1,0),(2,'Flannel Pajamas',225,2,0),(3,'Homespun Longjohns',585,3,0),(4,'Homespun Undershirt',990,4,0),(5,'Knitted Socks',1575,5,0),(6,'Knitted Gloves',2250,6,0),(7,'Old Leather Boots',2790,7,0),(8,'Homespun Pants',3420,8,0),(9,'Homespun Tunic',4230,9,0),(10,'Gypsy Cape',5040,10,0),(11,'Old Leather Cap',5850,11,0),(12,'Old Leather Bracers',6840,12,0),(13,'Traveller\'s Shield',8010,13,0),(14,'Old Leather Pants',9000,14,0),(15,'Old Leather Tunic',10350,15,0),(16,'Flip-Flops',48,1,1),(17,'Swimsuit and Towel',225,2,1),(18,'Cotton Undershirt',585,3,1),(19,'Wool Socks',990,4,1),(20,'Wool Gloves',1575,5,1),(21,'Leather Boots',2250,6,1),(22,'Leather Cap',2790,7,1),(23,'Leather Bracers',3420,8,1),(24,'Leather Leggings',4230,9,1),(25,'Leather Tunic',5040,10,1),(26,'Hooded Leather Cape',5850,11,1),(27,'Deerskin Leggings',6840,12,1),(28,'Deerskin Belt',8010,13,1),(29,'Deerskin Tunic',9000,14,1),(30,'Small Rawhide Shield',10350,15,1),(31,'Workboots',48,1,2),(32,'Overalls',225,2,2),(33,'Sturdy Leather Gloves',585,3,2),(34,'Sturdy Leather Bracers',990,4,2),(35,'Sturdy Leather Boots',1575,5,2),(36,'Sturdy Leather Helm',2250,6,2),(37,'Sturdy Leather Pants',2790,7,2),(38,'Sturdy Leather Tunic',3420,8,2),(39,'Sturdy Leather Cloak',4230,9,2),(40,'Woodsman\'s Helm',5040,10,2),(41,'Woodsman\'s Gauntlets',5850,11,2),(42,'Woodsman\'s Bracers',6840,12,2),(43,'Woodsman\'s Greaves',8010,13,2),(44,'Woodsman\'s Tunic',9000,14,2),(45,'Woodsman\'s Kite Shield',10350,15,2),(46,'Showercap and Towel',48,1,3),(47,'Bathrobe',225,2,3),(48,'Wolfskin Gloves',585,3,3),(49,'Wolfskin-lined Boots',990,4,3),(50,'Wolfskin Bracers',1575,5,3),(51,'Wolfskin Pants',2250,6,3),(52,'Wolfskin Tunic',2790,7,3),(53,'Hooded Wolfskin Cape',3420,8,3),(54,'Wolfmaster\'s Bracers',4230,9,3),(55,'Wolfmaster\'s Gauntlets',5040,10,3),(56,'Wolfmasters Helm',5850,11,3),(57,'Wolfmaster\'s Leggings',6840,12,3),(58,'Wolfmaster\'s Belted Jerkin',8010,13,3),(59,'Wolfhide Cape',9000,14,3),(60,'Shield of the Wolf Master',10350,15,3),(61,'Sweat Pants',48,1,4),(62,'Sweat Shirt',225,2,4),(63,'Studded Leather Helm',585,3,4),(64,'Studded Leather Gauntlets',990,4,4),(65,'Hardened Leather Boots',1575,5,4),(66,'Studded Leather Leggings',2250,6,4),(67,'Studded Leather Tunic',2790,7,4),(68,'Tanner\'s Cape',3420,8,4),(69,'Rusty Chainmail Helm',4230,9,4),(70,'Rusty Chainmail Gauntlets',5040,10,4),(71,'Rusty Chainmail Bracers',5850,11,4),(72,'Rusty Chainmail Boots',6840,12,4),(73,'Rusty Chainmail Greaves',8010,13,4),(74,'Rusty Chainmail Tunic',9000,14,4),(75,'Large Iron Buckler',10350,15,4),(76,'Bunny Slippers',48,1,5),(77,'Feety Pajamas',225,2,5),(78,'Comfortable Leather Undergarments',585,3,5),(79,'Heavy Chainmail Helm',990,4,5),(80,'Heavy Chainmail Gauntlets',1575,5,5),(81,'Heavy Chainmail Bracers',2250,6,5),(82,'Heavy Chainmail Boots',2790,7,5),(83,'Heavy Chainmail Greaves',3420,8,5),(84,'Heavy Chainmail Tunic',4230,9,5),(85,'Dragon Soldier\'s Bracers',5040,10,5),(86,'Dragon Soldier\'s Gauntlets',5850,11,5),(87,'Dragon Soldier\'s Boots',6840,12,5),(88,'Dragon Soldier\'s Greaves',8010,13,5),(89,'Dragon Soldier\'s Chestplate',9000,14,5),(90,'Dragon Soldier\'s Shield',10350,15,5),(91,'Bluejeans',48,1,6),(92,'Flannel Shirt',225,2,6),(93,'Well Crafted Bronze Helm',585,3,6),(94,'Well Crafted Bronze Gauntlets',990,4,6),(95,'Well Crafted Bronze Bracers',1575,5,6),(96,'Well Crafted Bronze Boots',2250,6,6),(97,'Well Crafted Bronze Greaves',2790,7,6),(98,'Well Crafted Bronze Chestplate',3420,8,6),(99,'Enchanted Bronze Helm',4230,9,6),(100,'Enchanted Bronze Gauntlets',5040,10,6),(101,'Enchanted Bronze Bracers',5850,11,6),(102,'Enchanted Bronze Boots',6840,12,6),(103,'Enchanted Bronze Greaves',8010,13,6),(104,'Enchanted Bronze Chestplate',9000,14,6),(105,'Hooded Unicorn Skin Cloak',10350,15,6),(106,'Barrel',48,1,7),(107,'Lampshade',225,2,7),(108,'Perfectly Crafted Steel Helm',585,3,7),(109,'Perfectly Crafted Steel Gauntlets',990,4,7),(110,'Perfectly Crafted Steel Boots',1575,5,7),(111,'Perfectly Crafted Steel Bracers',2250,6,7),(112,'Perfectly Crafted Steel Greaves
|
|||
|
/*!40000 ALTER TABLE `armor` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `bans`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `bans`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `bans` (
|
|||
|
`ipfilter` varchar(15) NOT NULL,
|
|||
|
`uniqueid` varchar(32) NOT NULL,
|
|||
|
`banexpire` datetime DEFAULT NULL,
|
|||
|
`banreason` text NOT NULL,
|
|||
|
`banner` varchar(50) NOT NULL,
|
|||
|
`lasthit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
KEY `banexpire` (`banexpire`),
|
|||
|
KEY `uniqueid` (`uniqueid`),
|
|||
|
KEY `ipfilter` (`ipfilter`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `bans`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `bans` WRITE;
|
|||
|
/*!40000 ALTER TABLE `bans` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `bans` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `clans`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `clans`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `clans` (
|
|||
|
`clanid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`clanname` varchar(255) NOT NULL,
|
|||
|
`clanshort` varchar(5) NOT NULL,
|
|||
|
`clanmotd` text DEFAULT NULL,
|
|||
|
`clandesc` text DEFAULT NULL,
|
|||
|
`motdauthor` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`descauthor` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`customsay` varchar(15) NOT NULL,
|
|||
|
PRIMARY KEY (`clanid`),
|
|||
|
KEY `clanname` (`clanname`),
|
|||
|
KEY `clanshort` (`clanshort`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `clans`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `clans` WRITE;
|
|||
|
/*!40000 ALTER TABLE `clans` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `clans` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `commentary`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `commentary`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `commentary` (
|
|||
|
`commentid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`section` varchar(20) DEFAULT NULL,
|
|||
|
`author` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`comment` varchar(200) NOT NULL,
|
|||
|
`postdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
PRIMARY KEY (`commentid`),
|
|||
|
KEY `section` (`section`),
|
|||
|
KEY `postdate` (`postdate`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `commentary`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `commentary` WRITE;
|
|||
|
/*!40000 ALTER TABLE `commentary` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `commentary` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `companions`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `companions`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `companions` (
|
|||
|
`companionid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`name` varchar(255) NOT NULL,
|
|||
|
`category` varchar(255) NOT NULL,
|
|||
|
`description` text NOT NULL,
|
|||
|
`attack` int(6) unsigned NOT NULL DEFAULT 1,
|
|||
|
`attackperlevel` int(6) unsigned NOT NULL DEFAULT 0,
|
|||
|
`defense` int(6) unsigned NOT NULL DEFAULT 1,
|
|||
|
`defenseperlevel` int(6) unsigned NOT NULL DEFAULT 0,
|
|||
|
`maxhitpoints` int(6) unsigned NOT NULL DEFAULT 10,
|
|||
|
`maxhitpointsperlevel` int(6) unsigned NOT NULL DEFAULT 10,
|
|||
|
`abilities` text NOT NULL,
|
|||
|
`cannotdie` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
`cannotbehealed` tinyint(4) NOT NULL DEFAULT 1,
|
|||
|
`companionlocation` varchar(25) NOT NULL DEFAULT 'all',
|
|||
|
`companionactive` tinyint(25) NOT NULL DEFAULT 1,
|
|||
|
`companioncostdks` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
`companioncostgems` int(6) NOT NULL DEFAULT 0,
|
|||
|
`companioncostgold` int(10) NOT NULL DEFAULT 0,
|
|||
|
`jointext` text NOT NULL,
|
|||
|
`dyingtext` varchar(255) NOT NULL,
|
|||
|
`allowinshades` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
`allowinpvp` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
`allowintrain` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
PRIMARY KEY (`companionid`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `companions`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `companions` WRITE;
|
|||
|
/*!40000 ALTER TABLE `companions` DISABLE KEYS */;
|
|||
|
INSERT INTO `companions` VALUES (1,'Mortimer teh javelin man','Knight','A rough and ready warrior. Beneath his hardened exterior, one can detect a man of strong honour.',5,2,1,2,20,20,'a:4:{s:5:\"fight\";s:1:\"1\";s:4:\"heal\";s:1:\"0\";s:5:\"magic\";s:1:\"0\";s:6:\"defend\";b:0;}',0,0,'Degolburg',1,0,4,573,'`^Greetings unto thee, my friend. Let us go forth and conquer the evils of this world together!','`4Argggggh! I am slain! Shuffling off my mortal coil. Fare thee well, my friends.',1,0,0),(2,'Florenz','Healer','With a slight build, Florenz is better suited as a healer than a fighter.',1,1,5,5,15,10,'a:4:{s:4:\"heal\";s:1:\"2\";s:5:\"magic\";s:1:\"0\";s:5:\"fight\";b:0;s:6:\"defend\";b:0;}',0,0,'Degolburg',1,0,3,1000,'Thank ye for thy faith in my skills. I shall endeavour to keep ye away from Ramius\' claws.','O Discordia!',1,0,0),(3,'Grizzly Bear','Wild Beasts','You look at the beast knowing that this Grizzly Bear will provide an effective block against attack with its long curved claws and massive body of silver-tipped fur.',1,2,5,2,25,25,'a:4:{s:5:\"fight\";s:1:\"0\";s:4:\"heal\";s:1:\"0\";s:5:\"magic\";s:1:\"0\";s:6:\"defend\";s:1:\"1\";}',0,0,'Qexelcrag',1,0,4,600,'You hear a low, deep belly growl coming from a shadowed corner of the Bestiarium. Curious you walk over to investigate your purchase. As you approach a large form shuffles on all four legs towards the front of its hewn rock enclosure.`n`nThe hunched shoulders of the largest bear you have ever seen ripple as its front haunches push against the ground causing it to stand on its hind legs. It makes another low growl before dropping back on all four legs to follow you on your adventure.','The grizzly gets scared by the multitude of blows and hits he has to take and flees into the forest.',1,0,0);
|
|||
|
/*!40000 ALTER TABLE `companions` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `creatures`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `creatures`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `creatures` (
|
|||
|
`creatureid` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`creaturename` varchar(50) DEFAULT NULL,
|
|||
|
`creaturelevel` int(11) DEFAULT NULL,
|
|||
|
`creatureweapon` varchar(50) DEFAULT NULL,
|
|||
|
`creaturelose` varchar(120) DEFAULT NULL,
|
|||
|
`creaturewin` varchar(120) DEFAULT NULL,
|
|||
|
`creaturegold` int(11) DEFAULT NULL,
|
|||
|
`creatureexp` int(11) DEFAULT NULL,
|
|||
|
`creaturehealth` int(11) DEFAULT NULL,
|
|||
|
`creatureattack` int(11) DEFAULT NULL,
|
|||
|
`creaturedefense` int(11) DEFAULT NULL,
|
|||
|
`creatureaiscript` text DEFAULT NULL,
|
|||
|
`createdby` varchar(50) DEFAULT NULL,
|
|||
|
`forest` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
`graveyard` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
`oldcreatureexp` int(11) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`creatureid`),
|
|||
|
KEY `creaturelevel` (`creaturelevel`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=321 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `creatures`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `creatures` WRITE;
|
|||
|
/*!40000 ALTER TABLE `creatures` DISABLE KEYS */;
|
|||
|
INSERT INTO `creatures` VALUES (1,'Thieving Kender',1,'Whirling Hoopak','You only wish you could pickpocket your money back from the thief.',NULL,36,14,10,1,1,NULL,'Appleshiner',1,0,NULL),(2,'Rude Student',1,'Worn Textbook','You have sent this student to permanent detention.','',36,14,10,1,1,'','Appleshiner',1,0,NULL),(3,'Baby Unicorn',1,'Blunt Horn','You feel like a real jerk killing something so pretty.','',36,14,10,1,1,'','Appleshiner',1,0,NULL),(4,'Small Purple Mouse',1,'Lashing pink tail','It is written in black and white: this strange technicolor mouse is no more.','',36,14,10,1,1,'','Appleshiner',1,0,NULL),(5,'Grunting Piggy',1,'Wiggly Snout','Mmm...Bacon',NULL,36,14,10,1,1,NULL,'Appleshiner',1,0,NULL),(6,'Dumb Old Eyesore',2,'Nagging complaints','All she ever did was nag...nag...nag...',NULL,97,24,21,3,3,NULL,'Appleshiner',1,0,NULL),(7,'Pygmy Marmoset',2,'Pieces of treebark','The strange little monkey falls from the trees and lies still.',NULL,97,24,21,3,3,NULL,'Appleshiner',1,0,NULL),(8,'Burly Man',15,'Amazing Absorbency','Fantasize, fantasize about Burly ...Eeeh, Eeeh, Eeeh!',NULL,531,189,155,29,21,NULL,'Bluspring',1,0,NULL),(9,'Screaming Banshee',2,'Hauntingly Beautiful Voice','You plunge your weapon into her breast, silencing her song.','',97,24,21,3,3,'','Appleshiner',1,1,NULL),(10,'Ursa Minor',2,'Twinkling Lights','After an astronomical battle, Ursa Minor is the one seeing stars',NULL,97,24,21,3,3,NULL,'Appleshiner',1,0,NULL),(11,'Stone Troll',2,'Gaping Maw','That troll is stone cold ugly.',NULL,97,24,21,3,3,NULL,'Appleshiner',1,0,NULL),(12,'Slithering Asp',2,'Hypnotic eyes','You break the deadly gaze of the snake to save your own life.','',97,24,21,3,3,'','Appleshiner',1,0,NULL),(13,'Windan The Barbarian',2,'Feathered Spear','He really was just a feather-weight',NULL,97,24,21,3,3,NULL,'Appleshiner',1,0,NULL),(14,'Studious Young Sorceror',2,'Newly memorized spells','Perhaps she should have studied harder.','',97,24,21,3,3,'','Appleshiner',1,0,NULL),(15,'Four and Twenty Blackbirds',3,'Freshly Baked Pies','Now isn\'t this a dainty dish to set before a king?',NULL,148,34,32,5,4,NULL,'Appleshiner',1,0,NULL),(16,'Amazon',3,'Bow and Arrow','The beautiful warrior lass has lost a battle for the first time.',NULL,148,34,32,5,4,NULL,'Appleshiner',1,0,NULL),(17,'Overbearing Mother',3,'9pm Curfew','With one fell swoop you save your social life!','',148,34,32,5,4,'','Appleshiner',1,0,NULL),(18,'Huge Bald Programmer',3,'Shining Forehead','You feel as if you have seen this man before in the village.','',148,34,32,5,4,'','Appleshiner',1,0,NULL),(19,'Someone\'s Grandfather',3,'Stories that go nowhere','This reminds you of the time you needed a new heel for your shoe.','',148,34,32,5,4,'','Appleshiner',1,0,NULL),(20,'Juvenile Delinquent',3,'Poor Attitude','With a satisfying thump, you knock the smirk right off his face.','',148,34,32,5,4,'','Appleshiner',1,0,NULL),(21,'Beautiful Woodland Sprite',3,'Kindness and tranquility','You really cut that wood sprite down to size.','',148,34,32,5,4,'','Appleshiner',1,0,NULL),(22,'Society Belle',3,'Southern Charm','Now she will never be on time for the ball!',NULL,148,34,32,5,4,NULL,'Appleshiner',1,0,NULL),(23,'Giant Goldfish Cracker',3,'Annoying Commercial Jingles','Now *there* is a fish that smiled till you bit his head off.',NULL,148,34,32,5,4,NULL,'Appleshiner',1,0,NULL),(24,'Angry Mob',4,'Torches','There is no justice for an angry mob.','',162,45,43,7,6,'','Appleshiner',1,0,NULL),(25,'Polar Bear',4,'Terrible claws','That bear really needed an attitude adjustment.','',162,45,43,7,6,'','Appleshiner',1,0,NULL),(26,'Decaying Skeleton',4,'Rusty Sword','His leg ought to make a good toy for your dog.',NULL,162,45,43,7,6,NULL,'Appleshiner',1,1,NULL),(27,'Willie the Wonder Hampster',4,'Nuclear Sunflower Seeds','You smile a grim smile at Willie and quietly munch on some seeds.','',162,45,43,7,6,'','Appleshiner',1,0,NULL),(28,'Winged Demon Of Death',4,'Red Glare','You cut off the Demon\'s head, to be sure of its death.',NULL,162,45,43,7,6,NULL,'foilwench',1,1,NULL),(29,'Small Dragon',4,'Hot
|
|||
|
/*!40000 ALTER TABLE `creatures` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `debuglog`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `debuglog`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `debuglog` (
|
|||
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`actor` int(11) unsigned DEFAULT NULL,
|
|||
|
`target` int(11) unsigned DEFAULT NULL,
|
|||
|
`message` text NOT NULL,
|
|||
|
`field` varchar(20) NOT NULL,
|
|||
|
`value` float(9,2) NOT NULL DEFAULT 0.00,
|
|||
|
PRIMARY KEY (`id`),
|
|||
|
KEY `date` (`date`),
|
|||
|
KEY `field` (`actor`,`field`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `debuglog`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `debuglog` WRITE;
|
|||
|
/*!40000 ALTER TABLE `debuglog` DISABLE KEYS */;
|
|||
|
INSERT INTO `debuglog` VALUES (1,'2020-08-12 19:08:59',1,0,'New Day Turns: Base: 10, Spirits: 1, DK: 0','',0.00);
|
|||
|
/*!40000 ALTER TABLE `debuglog` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `faillog`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `faillog`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `faillog` (
|
|||
|
`eventid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`post` tinytext NOT NULL,
|
|||
|
`ip` varchar(40) NOT NULL,
|
|||
|
`acctid` int(11) unsigned DEFAULT NULL,
|
|||
|
`id` varchar(32) NOT NULL,
|
|||
|
PRIMARY KEY (`eventid`),
|
|||
|
KEY `date` (`date`),
|
|||
|
KEY `acctid` (`acctid`),
|
|||
|
KEY `ip` (`ip`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `faillog`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `faillog` WRITE;
|
|||
|
/*!40000 ALTER TABLE `faillog` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `faillog` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `gamelog`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `gamelog`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `gamelog` (
|
|||
|
`logid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`message` text NOT NULL,
|
|||
|
`category` varchar(50) NOT NULL,
|
|||
|
`filed` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`who` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
PRIMARY KEY (`logid`),
|
|||
|
KEY `date` (`category`,`date`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `gamelog`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `gamelog` WRITE;
|
|||
|
/*!40000 ALTER TABLE `gamelog` DISABLE KEYS */;
|
|||
|
INSERT INTO `gamelog` VALUES (1,'Deleted 0 accounts:\n[0] with 0 dk avg lvl [0]\n[0] with 1 dk avg lvl [0]\nAvg DK: [0]\nAccounts: ','char expiration',0,'2020-08-12 19:08:59',1),(2,'Cleaned up 0 old values in module_userprefs that don\'t exist anymore','maintenance',0,'2020-08-12 19:08:59',1),(3,'Cleaned up 0 old values in module_settings that don\'t exist anymore','maintenance',0,'2020-08-12 19:08:59',1),(4,'Cleaned up 0 from debuglog older than 2020-07-25 19:08:59.','maintenance',0,'2020-08-12 19:08:59',1),(5,'Cleaned up gamelog table removing 0 older than 2020-07-12 19:08:59.','maintenance',0,'2020-08-12 19:08:59',1),(6,'Deleted 0 old comments.','comment expiration',0,'2020-08-12 19:08:59',1),(7,'Deleted 0 old moderated comments.','comment expiration',0,'2020-08-12 19:08:59',1);
|
|||
|
/*!40000 ALTER TABLE `gamelog` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `logdnet`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `logdnet`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `logdnet` (
|
|||
|
`serverid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`address` varchar(255) NOT NULL,
|
|||
|
`description` varchar(255) NOT NULL,
|
|||
|
`priority` double NOT NULL DEFAULT 100,
|
|||
|
`lastupdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`version` varchar(255) NOT NULL DEFAULT 'Unknown',
|
|||
|
`admin` varchar(255) NOT NULL DEFAULT 'unknown',
|
|||
|
`lastping` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`recentips` varchar(255) NOT NULL,
|
|||
|
`count` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`lang` varchar(20) NOT NULL,
|
|||
|
PRIMARY KEY (`serverid`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `logdnet`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `logdnet` WRITE;
|
|||
|
/*!40000 ALTER TABLE `logdnet` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `logdnet` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `logdnetbans`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `logdnetbans`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `logdnetbans` (
|
|||
|
`banid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`bantype` varchar(20) NOT NULL,
|
|||
|
`banvalue` varchar(255) NOT NULL,
|
|||
|
PRIMARY KEY (`banid`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `logdnetbans`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `logdnetbans` WRITE;
|
|||
|
/*!40000 ALTER TABLE `logdnetbans` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `logdnetbans` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `mail`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `mail`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `mail` (
|
|||
|
`messageid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`msgfrom` varchar(255) NOT NULL DEFAULT '0',
|
|||
|
`msgto` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`subject` varchar(255) NOT NULL,
|
|||
|
`body` text NOT NULL,
|
|||
|
`sent` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`seen` tinyint(1) NOT NULL DEFAULT 0,
|
|||
|
`originator` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
PRIMARY KEY (`messageid`),
|
|||
|
KEY `msgto` (`msgto`),
|
|||
|
KEY `seen` (`seen`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `mail`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `mail` WRITE;
|
|||
|
/*!40000 ALTER TABLE `mail` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `mail` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `masters`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `masters`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `masters` (
|
|||
|
`creatureid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`creaturename` varchar(50) DEFAULT NULL,
|
|||
|
`creaturelevel` int(11) DEFAULT NULL,
|
|||
|
`creatureweapon` varchar(50) DEFAULT NULL,
|
|||
|
`creaturelose` varchar(120) DEFAULT NULL,
|
|||
|
`creaturewin` varchar(120) DEFAULT NULL,
|
|||
|
`creaturegold` int(11) DEFAULT NULL,
|
|||
|
`creatureexp` int(11) DEFAULT NULL,
|
|||
|
`creaturehealth` int(11) DEFAULT NULL,
|
|||
|
`creatureattack` int(11) DEFAULT NULL,
|
|||
|
`creaturedefense` int(11) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`creatureid`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `masters`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `masters` WRITE;
|
|||
|
/*!40000 ALTER TABLE `masters` DISABLE KEYS */;
|
|||
|
INSERT INTO `masters` VALUES (1,'Mireraband',1,'Small Dagger','Well done %w`&, I should have guessed you\'d grown some.','As I thought, %w`^, your skills are no match for my own!',NULL,NULL,12,2,2),(2,'Fie',2,'Short Sword','Well done %w`&, you really know how to use your %x.','You should have known you were no match for my %X',NULL,NULL,22,4,4),(3,'Glynyc',3,'Hugely Spiked Mace','Aah, defeated by the likes of you! Next thing you know, Mireraband will be hunting me down!','Haha, maybe you should go back to Mireraband\'s class.',NULL,NULL,33,6,6),(4,'Guth',4,'Spiked Club','Ha! Hahaha, excellent fight %w`&! Haven\'t had a battle like that since I was in the RAF!','Back in the RAF, we\'d have eaten the likes of you alive! Go work on your skills some old boy!',NULL,NULL,44,8,8),(5,'Un<EFBFBD>lith',5,'Thought Control','Your mind is greater than mine. I concede defeat.','Your mental powers are lacking. Meditate on this failure and perhaps some day you will defeat me.',NULL,NULL,55,10,10),(6,'Adwares',6,'Dwarven Battle Axe','Ach! Y\' do hold yer %x with skeel!','Har! Y\' do be needin moore praktise y\' wee cub!',NULL,NULL,66,12,12),(7,'Gerrard',7,'Battle Bow','Hmm, mayhaps I underestimated you.','As I thought.',NULL,NULL,77,14,14),(8,'Ceiloth',8,'Orkos Broadsword','Well done %w`&, I can see that great things lie in the future for you!','You are becoming powerful, but not yet that powerful.',NULL,NULL,88,16,16),(9,'Dwiredan',9,'Twin Swords','Perhaps I should have considered your %x...','Perhaps you\'ll reconsider my twin swords before you try that again?',NULL,NULL,99,18,18),(10,'Sensei Noetha',10,'Martial Arts Skills','Your style was superior, your form greater. I bow to you.','Learn to adapt your style, and you shall prevail.',NULL,NULL,110,20,20),(11,'Celith',11,'Throwing Halos','Wow, how did you dodge all those halos?','Watch out for that last halo, it\'s coming back this way!',NULL,NULL,121,22,22),(12,'Gadriel the Elven Ranger',12,'Elven Long Bow','I can accept that you defeated me, because after all elves are immortal while you are not, so the victory will be mine.','Do not forget that elves are immortal. Mortals will likely never defeat one of the fey.',NULL,NULL,132,24,24),(13,'Adoawyr',13,'Gargantuan Broad Sword','If I could have picked up this sword, I probably would have done better!','Haha, I couldn\'t even pick the sword UP and I still won!',NULL,NULL,143,26,26),(14,'Yoresh',14,'Death Touch','Well, you evaded my touch. I salute you!','Watch out for my touch next time!',NULL,NULL,154,28,28);
|
|||
|
/*!40000 ALTER TABLE `masters` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `moderatedcomments`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `moderatedcomments`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `moderatedcomments` (
|
|||
|
`modid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`comment` text DEFAULT NULL,
|
|||
|
`moderator` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`moddate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
PRIMARY KEY (`modid`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `moderatedcomments`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `moderatedcomments` WRITE;
|
|||
|
/*!40000 ALTER TABLE `moderatedcomments` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `moderatedcomments` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `module_event_hooks`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `module_event_hooks`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `module_event_hooks` (
|
|||
|
`event_type` varchar(20) NOT NULL,
|
|||
|
`modulename` varchar(50) NOT NULL,
|
|||
|
`event_chance` text NOT NULL,
|
|||
|
KEY `modulename` (`modulename`),
|
|||
|
KEY `event_type` (`event_type`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `module_event_hooks`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `module_event_hooks` WRITE;
|
|||
|
/*!40000 ALTER TABLE `module_event_hooks` DISABLE KEYS */;
|
|||
|
INSERT INTO `module_event_hooks` VALUES ('forest','fairy','return 100;'),('forest','findgem','return 100;'),('travel','findgem','return 20;'),('forest','foilwench','return 100;'),('forest','glowingstream','return 100;'),('travel','glowingstream','return 100;'),('forest','goldmine','return 100;'),('forest','findgold','return 100;'),('travel','findgold','return 20;'),('forest','crazyaudrey','return 100;'),('forest','darkhorse','require_once(\"modules/darkhorse.php\");\n return (darkhorse_tavernmount() ? 0 : 100);'),('travel','darkhorse','require_once(\"modules/darkhorse.php\");\n return (darkhorse_tavernmount() ? 0 : 100);');
|
|||
|
/*!40000 ALTER TABLE `module_event_hooks` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `module_hooks`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `module_hooks`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `module_hooks` (
|
|||
|
`modulename` varchar(50) NOT NULL,
|
|||
|
`location` varchar(50) NOT NULL,
|
|||
|
`function` varchar(50) NOT NULL,
|
|||
|
`whenactive` text NOT NULL,
|
|||
|
`priority` int(11) NOT NULL DEFAULT 50,
|
|||
|
PRIMARY KEY (`modulename`,`location`,`function`),
|
|||
|
KEY `location` (`location`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `module_hooks`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `module_hooks` WRITE;
|
|||
|
/*!40000 ALTER TABLE `module_hooks` DISABLE KEYS */;
|
|||
|
INSERT INTO `module_hooks` VALUES ('cedrikspotions','header-inn','cedrikspotions_dohook','',50),('cedrikspotions','hprecalc','cedrikspotions_dohook','',50),('cedrikspotions','newday-runonce','cedrikspotions_dohook','',50),('crazyaudrey','newday','crazyaudrey_dohook','',50),('crazyaudrey','newday-runonce','crazyaudrey_dohook','',50),('crazyaudrey','village','crazyaudrey_dohook','',50),('crazyaudrey','village-desc','crazyaudrey_dohook','',50),('dag','delete_character','dag_dohook','',50),('dag','dragonkill','dag_dohook','',50),('dag','inn','dag_dohook','',50),('dag','inn-desc','dag_dohook','',50),('dag','newday','dag_dohook','',50),('dag','pvpwin','dag_dohook','',50),('dag','showsettings','dag_dohook','',50),('dag','superuser','dag_dohook','',50),('darkhorse','forest','darkhorse_dohook','',50),('darkhorse','moderate','darkhorse_dohook','',50),('darkhorse','mountfeatures','darkhorse_dohook','',50),('drinks','ale','drinks_dohook','',50),('drinks','commentary','drinks_dohook','',50),('drinks','dragonkill','drinks_dohook','',50),('drinks','header-graveyard','drinks_dohook','',50),('drinks','newday','drinks_dohook','',50),('drinks','soberup','drinks_dohook','',50),('drinks','superuser','drinks_dohook','',50),('fairy','hprecalc','fairy_dohook','',50),('game_dice','darkhorsegame','game_dice_dohook','',50),('game_stones','darkhorsegame','game_stones_dohook','',50),('lovers','inn','lovers_dohook','',50),('lovers','newday','lovers_dohook','',50),('outhouse','forest','outhouse_dohook','',50),('outhouse','newday','outhouse_dohook','',50),('racedwarf','camplocs','racedwarf_dohook','',50),('racedwarf','changesetting','racedwarf_dohook','',50),('racedwarf','chooserace','racedwarf_dohook','',50),('racedwarf','creatureencounter','racedwarf_dohook','',50),('racedwarf','drinks-check','racedwarf_dohook','',50),('racedwarf','drinks-text','racedwarf_dohook','',50),('racedwarf','mercenarycamptext','racedwarf_dohook','',50),('racedwarf','moderate','racedwarf_dohook','',50),('racedwarf','raceminedeath','racedwarf_dohook','',50),('racedwarf','racenames','racedwarf_dohook','',50),('racedwarf','setrace','racedwarf_dohook','',50),('racedwarf','travel','racedwarf_dohook','',50),('racedwarf','validforestloc','racedwarf_dohook','',50),('racedwarf','validlocation','racedwarf_dohook','',50),('racedwarf','village','racedwarf_dohook','',50),('racedwarf','villagetext','racedwarf_dohook','',50),('raceelf','adjuststats','raceelf_dohook','',50),('raceelf','changesetting','raceelf_dohook','',50),('raceelf','chooserace','raceelf_dohook','',50),('raceelf','moderate','raceelf_dohook','',50),('raceelf','newday','raceelf_dohook','',50),('raceelf','pvpadjust','raceelf_dohook','',50),('raceelf','raceminedeath','raceelf_dohook','',50),('raceelf','racenames','raceelf_dohook','',50),('raceelf','setrace','raceelf_dohook','',50),('raceelf','travel','raceelf_dohook','',50),('raceelf','validforestloc','raceelf_dohook','',50),('raceelf','validlocation','raceelf_dohook','',50),('raceelf','villagetext','raceelf_dohook','',50),('raceelf','weaponstext','raceelf_dohook','',50),('racehuman','changesetting','racehuman_dohook','',50),('racehuman','chooserace','racehuman_dohook','',50),('racehuman','moderate','racehuman_dohook','',50),('racehuman','newday','racehuman_dohook','',50),('racehuman','raceminedeath','racehuman_dohook','',50),('racehuman','racenames','racehuman_dohook','',50),('racehuman','setrace','racehuman_dohook','',50),('racehuman','stablelocs','racehuman_dohook','',50),('racehuman','stabletext','racehuman_dohook','',50),('racehuman','travel','racehuman_dohook','',50),('racehuman','validforestloc','racehuman_dohook','',50),('racehuman','validlocation','racehuman_dohook','',50),('racehuman','villagetext','racehuman_dohook','',50),('racetroll','adjuststats','racetroll_dohook','',50),('racetroll','changesetting','racetroll_dohook','',50),('racetroll','chooserace','racetroll_dohook','',50),('racetroll','moderate','racetroll_dohook','',50),('racetroll','newday','racetroll_dohook','',50),('racetroll','pvpadjust','racetroll_dohook','',50),('racetroll','raceminedeath','racetroll
|
|||
|
/*!40000 ALTER TABLE `module_hooks` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `module_objprefs`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `module_objprefs`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `module_objprefs` (
|
|||
|
`modulename` varchar(50) NOT NULL,
|
|||
|
`objtype` varchar(50) NOT NULL,
|
|||
|
`setting` varchar(50) NOT NULL,
|
|||
|
`objid` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`value` text DEFAULT NULL,
|
|||
|
PRIMARY KEY (`modulename`,`objtype`,`setting`,`objid`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `module_objprefs`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `module_objprefs` WRITE;
|
|||
|
/*!40000 ALTER TABLE `module_objprefs` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `module_objprefs` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `module_settings`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `module_settings`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `module_settings` (
|
|||
|
`modulename` varchar(50) NOT NULL,
|
|||
|
`setting` varchar(50) NOT NULL,
|
|||
|
`value` text DEFAULT NULL,
|
|||
|
PRIMARY KEY (`modulename`,`setting`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `module_settings`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `module_settings` WRITE;
|
|||
|
/*!40000 ALTER TABLE `module_settings` DISABLE KEYS */;
|
|||
|
INSERT INTO `module_settings` VALUES ('cedrikspotions','atkmod','.75'),('cedrikspotions','carrydk','1'),('cedrikspotions','charmcost','2'),('cedrikspotions','charmgain','1'),('cedrikspotions','defmod','.75'),('cedrikspotions','forgcost','2'),('cedrikspotions','ischarm','1'),('cedrikspotions','isforget','1'),('cedrikspotions','ismax','1'),('cedrikspotions','istemp','1'),('cedrikspotions','istrans','1'),('cedrikspotions','maxcost','2'),('cedrikspotions','maxrand','5'),('cedrikspotions','minrand','2'),('cedrikspotions','randcost','2'),('cedrikspotions','random','0'),('cedrikspotions','survive','1'),('cedrikspotions','tempcost','2'),('cedrikspotions','tempgain','20'),('cedrikspotions','transcost','2'),('cedrikspotions','transmuteturns','10'),('cedrikspotions','vitalgain','1'),('crazyaudrey','animal','Kitten'),('crazyaudrey','animals','Kittens'),('crazyaudrey','buffname','Warm Fuzzies'),('crazyaudrey','cost','5'),('crazyaudrey','defaultanimal','Kitten'),('crazyaudrey','defaultanimals','Kittens'),('crazyaudrey','defaultbuffname','Warm Fuzzies'),('crazyaudrey','defaultsound','mew'),('crazyaudrey','gamedaysremaining','-1'),('crazyaudrey','lanimal','kitten'),('crazyaudrey','lanimals','kittens'),('crazyaudrey','profit','5'),('crazyaudrey','sound','mew'),('crazyaudrey','villagepercent','20'),('dag','bountyfee','10'),('dag','bountylevel','3'),('dag','bountymax','200'),('dag','bountymin','50'),('dag','maxbounties','5'),('darkhorse','tavernname','Dark Horse Tavern'),('drinks','hardlimit','3'),('drinks','maxdrunk','66'),('fairy','carrydk','1'),('fairy','fftoaward','1'),('fairy','hptoaward','1'),('findgold','maxgold','50'),('findgold','mingold','10'),('goldmine','alwaystether','10'),('goldmine','percentgemloss','0'),('goldmine','percentgoldloss','0'),('outhouse','badmusthit','50'),('outhouse','cost','5'),('outhouse','giveback','3'),('outhouse','givegempercent','25'),('outhouse','giveturnchance','0'),('outhouse','goldinhand','1'),('outhouse','goodmusthit','60'),('outhouse','takeback','1'),('racedwarf','minedeathchance','5'),('racedwarf','villagename','Qexelcrag'),('raceelf','minedeathchance','90'),('raceelf','villagename','Glorfindal'),('racehuman','bonus','2'),('racehuman','minedeathchance','90'),('racehuman','villagename','Romar'),('racetroll','minedeathchance','90'),('racetroll','villagename','Glukmoore'),('sethsong','bhploss','10'),('sethsong','goldloss','5'),('sethsong','hpgain','20'),('sethsong','maxgems','1'),('sethsong','maxgold','50'),('sethsong','mingems','1'),('sethsong','mingold','10'),('sethsong','shploss','20'),('sethsong','visits','1');
|
|||
|
/*!40000 ALTER TABLE `module_settings` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `module_userprefs`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `module_userprefs`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `module_userprefs` (
|
|||
|
`modulename` varchar(50) NOT NULL,
|
|||
|
`setting` varchar(50) NOT NULL,
|
|||
|
`userid` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`value` text DEFAULT NULL,
|
|||
|
PRIMARY KEY (`modulename`,`setting`,`userid`),
|
|||
|
KEY `modulename` (`modulename`,`userid`),
|
|||
|
KEY `userid` (`userid`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `module_userprefs`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `module_userprefs` WRITE;
|
|||
|
/*!40000 ALTER TABLE `module_userprefs` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `module_userprefs` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `modules`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `modules`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `modules` (
|
|||
|
`modulename` varchar(50) NOT NULL,
|
|||
|
`formalname` varchar(255) NOT NULL,
|
|||
|
`description` text NOT NULL,
|
|||
|
`moduleauthor` varchar(255) NOT NULL,
|
|||
|
`active` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
`filename` varchar(255) NOT NULL,
|
|||
|
`installdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`installedby` varchar(50) NOT NULL,
|
|||
|
`filemoddate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`type` tinyint(4) NOT NULL DEFAULT 0,
|
|||
|
`extras` text DEFAULT NULL,
|
|||
|
`category` varchar(50) NOT NULL,
|
|||
|
`infokeys` text NOT NULL,
|
|||
|
`version` varchar(10) DEFAULT NULL,
|
|||
|
`download` varchar(200) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`modulename`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `modules`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `modules` WRITE;
|
|||
|
/*!40000 ALTER TABLE `modules` DISABLE KEYS */;
|
|||
|
INSERT INTO `modules` VALUES ('cedrikspotions','Cedrik\'s Potion Shop','','Eric Stevens<br>Modifications by: Chris Vorndran',1,'cedrikspotions.php','2020-08-12 19:09:49','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Inn','|name|version|author|category|download|settings|prefs|description|requires|','2.6','core_module'),('crazyaudrey','Crazy Audrey\'s Petting Zoo','','Eric Stevens',1,'crazyaudrey.php','2020-08-12 19:09:49','`%Admin `&admin`0','2020-06-21 05:47:56',0,NULL,'Forest Specials','|name|version|author|category|download|settings|prefs|requires|description|','1.1','core_module'),('dag','Dag Durnick Bounties','','Darrel Morrone<br>Updates by Andrew Senger, JT Traub, and Eric Stevens',1,'dag.php','2020-08-12 19:09:49','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Inn','|name|author|version|category|download|settings|prefs|description|requires|','1.3','core_module'),('darkhorse','Dark Horse Tavern','','Eric Stevens',1,'darkhorse.php','2020-08-12 19:09:50','`%Admin `&admin`0','2020-06-21 05:47:56',0,NULL,'Forest Specials','|name|version|author|category|download|settings|prefs-mounts|requires|description|','1.1','core_module'),('drinks','Exotic Drinks','','John J. Collins<br>Heavily modified by JT Traub',1,'drinks.php','2020-08-12 19:09:50','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Inn','|name|author|category|download|settings|prefs|version|description|requires|','1.1','core_module'),('fairy','Forest Fairy','','Eric Stevens',1,'fairy.php','2020-08-12 19:09:50','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Forest Specials','|name|version|author|category|download|settings|prefs|description|requires|','1.1','core_module'),('findgem','Find Gems','','Eric Stevens',1,'findgem.php','2020-08-12 19:09:50','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Forest Specials','|name|version|author|category|download|description|requires|','1.1','core_module'),('findgold','Find Gold','','Eric Stevens',1,'findgold.php','2020-08-12 19:09:57','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Forest Specials','|name|version|author|category|download|settings|description|requires|','1.1','core_module'),('foilwench','Foilwench','','Eric Stevens',1,'foilwench.php','2020-08-12 19:09:50','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Forest Specials','|name|version|author|category|download|description|requires|','1.1','core_module'),('game_dice','Dice Game for DarkHorse','','Eric Stevens',1,'game_dice.php','2020-08-12 19:09:50','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Darkhorse Game','|name|author|version|category|download|description|requires|','1.1','core_module'),('game_stones','Stones Game for DarkHorse','','Eric Stevens',1,'game_stones.php','2020-08-12 19:09:50','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Darkhorse Game','|name|author|version|category|download|description|requires|','1.1','core_module'),('glowingstream','Glowing Stream','','Eric Stevens',1,'glowingstream.php','2020-08-12 19:09:50','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Forest Specials','|name|version|author|category|download|description|requires|','1.1','core_module'),('goldmine','Gold Mine','','Ville Valtokari',1,'goldmine.php','2020-08-12 19:09:50','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Forest Specials','|name|version|author|category|download|settings|prefs-mounts|description|requires|','1.0','core_module'),('lovers','Violet and Seth Lovers','','Eric Stevens',1,'lovers.php','2020-08-12 19:09:50','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Inn','|name|author|version|category|download|prefs|description|requires|','1.0','core_module'),('outhouse','Gnomish Outhouse','','John Collins',1,'outhouse.php','2020-08-12 19:09:50','`%Admin `&admin`0','0000-00-00 00:00:00',0,NULL,'Forest','|name|author|version|category|download|prefs|settings|description|requires|','2.0','core_module'),('racedwarf','Race - Dwarf','','Eric Stevens',1,'racedwarf.php','2020-08-12 19:09:50','`%Admin `&admin`0','2020-06-21 05:47:57',0,NULL,'Races','|name|version|author|category|download|settings|prefs-drinks|requires|description|','1.1','core
|
|||
|
/*!40000 ALTER TABLE `modules` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `motd`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `motd`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `motd` (
|
|||
|
`motditem` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`motdtitle` varchar(200) DEFAULT NULL,
|
|||
|
`motdbody` text DEFAULT NULL,
|
|||
|
`motddate` datetime DEFAULT NULL,
|
|||
|
`motdtype` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`motdauthor` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
PRIMARY KEY (`motditem`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `motd`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `motd` WRITE;
|
|||
|
/*!40000 ALTER TABLE `motd` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `motd` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `mounts`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `mounts`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `mounts` (
|
|||
|
`mountid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`mountname` varchar(50) NOT NULL,
|
|||
|
`mountdesc` text DEFAULT NULL,
|
|||
|
`mountcategory` varchar(50) NOT NULL,
|
|||
|
`mountbuff` text DEFAULT NULL,
|
|||
|
`mountcostgems` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`mountcostgold` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`mountactive` int(11) unsigned NOT NULL DEFAULT 1,
|
|||
|
`mountforestfights` int(11) NOT NULL DEFAULT 0,
|
|||
|
`newday` text NOT NULL,
|
|||
|
`recharge` text NOT NULL,
|
|||
|
`partrecharge` text NOT NULL,
|
|||
|
`mountfeedcost` int(11) unsigned NOT NULL DEFAULT 20,
|
|||
|
`mountlocation` varchar(25) NOT NULL DEFAULT 'all',
|
|||
|
`mountdkcost` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
PRIMARY KEY (`mountid`),
|
|||
|
KEY `mountid` (`mountid`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `mounts`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `mounts` WRITE;
|
|||
|
/*!40000 ALTER TABLE `mounts` DISABLE KEYS */;
|
|||
|
INSERT INTO `mounts` VALUES (1,'Pony','This docile beast is young yet.','Horses','a:5:{s:4:\"name\";s:13:\"`&Pony Attack\";s:8:\"roundmsg\";s:26:\"Your pony fights with you!\";s:6:\"rounds\";s:2:\"20\";s:6:\"atkmod\";s:3:\"1.2\";s:8:\"activate\";s:7:\"offense\";}',6,0,1,1,'You strap your {weapon} to your pony\'s saddle bags, and head out for some adventure!','`&Remembering that is has been quite some time since you last fed your pony, you decide this is a perfect time to relax and allow it to graze the field a bit. You doze off enjoying this peaceful serenity.`0','`&You dismount in the field to allow your pony to graze for a moment even though it has recently been fully fed. As you lean back in the grass to watch the clouds, your pony whickers softly and trots off into the underbrush. You search for a while before returning to the fields hoping that it\'ll return. A short time later, your pony trots back into the clearing holding its head high, looking much more energized and with a very equine grin on its face.`0',20,'all',0),(2,'Gelding','This powerful beast is fiercely loyal.','Horses','a:5:{s:4:\"name\";s:16:\"`&Gelding Attack\";s:8:\"roundmsg\";s:29:\"Your gelding fights with you!\";s:6:\"rounds\";s:2:\"40\";s:6:\"atkmod\";s:3:\"1.2\";s:8:\"activate\";s:7:\"offense\";}',10,0,1,2,'You strap your {weapon} to your gelding\'s saddle bags, and head out for some adventure!','`&Remembering that is has been quite some time since you last fed your gelding, you decide this is a perfect time to relax and allow it to graze the field a bit. You doze off enjoying this peaceful serenity.`0','`&You dismount in the field to allow your gelding to graze for a moment even though it has recently been fully fed. As you lean back in the grass to watch the clouds, your gelding whickers softly and trots off into the underbrush. You search for a while before returning to the fields hoping that it\'ll return. A short time later, your gelding trots back into the clearing holding its head high, looking much more energized and with a very equine grin on its face.`n`nAnd here you thought geldings weren\'t equipped that way any longer!`0',25,'all',0),(3,'Stallion','This noble beast is huge and powerful!','Horses','a:5:{s:4:\"name\";s:17:\"`&Stallion Attack\";s:8:\"roundmsg\";s:30:\"Your stallion fights with you!\";s:6:\"rounds\";s:2:\"60\";s:6:\"atkmod\";s:3:\"1.2\";s:8:\"activate\";s:7:\"offense\";}',16,0,1,3,'You strap your {weapon} to your stallion\'s saddle bags, and head out for some adventure!','`&Remembering that is has been quite some time since you last fed your stallion, you decide this is a perfect time to relax and allow it to graze the field a bit. You doze off enjoying this peaceful serenity.`0','`&You dismount in the field to allow your stallion to graze for a moment even though it has recently been fully fed. As you lean back in the grass to watch the clouds, your stallion whickers softly and trots off into the underbrush. You search for a while before returning to the fields hoping that it\'ll return. A short time later, your stallion trots back into the clearing holding its head high, looking much more energized and with a very equine grin on its face.`0',30,'all',0);
|
|||
|
/*!40000 ALTER TABLE `mounts` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `nastywords`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `nastywords`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `nastywords` (
|
|||
|
`words` text DEFAULT NULL,
|
|||
|
`type` varchar(10) DEFAULT NULL
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `nastywords`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `nastywords` WRITE;
|
|||
|
/*!40000 ALTER TABLE `nastywords` DISABLE KEYS */;
|
|||
|
INSERT INTO `nastywords` VALUES ('*damn* *dyke *fuck* *nigger* *phuck* *shit* amcik andskota arschloch arse* ass asshole atouche ayir bastard bitch* boiolas bollock* buceta butt* butt-pirate cabron cawk cazzo chink chraa chuj cipa clit cock* cum cunt* dago daygo dego dick* dike dildo dirsa dupa dziwka ejaculate ejackulate ekrem* ekto enculer faen fag* fanculo fanny fatass fcuk feces feg felcher ficken fitta fitte flikker foreskin phuck fuk* fut futkretzn fuxor gay gook guiena hell helvete hoer* honkey honky hor hore huevon hui injun jism jizz kanker* kawk kike klootzak knulle kraut kuk kuksuger kurac kurwa kusi* kyrp<72>* leitch lesbian lesbo mamhoon masturbat* merd merde mibun monkleigh mouliewop muie mulkku muschi nazis nepesaurio nigga* nigger nutsack orospu paska* pendejo penis perse phuck picka pierdol* pillu* pimmel pimpis piss* pizda poontsee poop porn preteen preud prick pron pula pule pusse pussy puta puto qahbeh queef* queer* qweef rautenberg schaffer scheiss* scheisse schlampe schmuck screw scrotum sharmuta sharmute shemale shipal shiz skribz skurwysyn slut smut sphencter shpincter spic spierdalaj splooge suka teets teez testicle tits titties titty twat twaty vittu votze wank* wetback* whoar whore wichser woose wop yed zabourah','nasty');
|
|||
|
/*!40000 ALTER TABLE `nastywords` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `news`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `news`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `news` (
|
|||
|
`newsid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`newstext` text NOT NULL,
|
|||
|
`newsdate` date NOT NULL DEFAULT '0000-00-00',
|
|||
|
`accountid` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`arguments` text NOT NULL,
|
|||
|
`tlschema` varchar(255) NOT NULL DEFAULT 'news',
|
|||
|
PRIMARY KEY (`newsid`,`newsdate`),
|
|||
|
KEY `accountid` (`accountid`),
|
|||
|
KEY `newsdate` (`newsdate`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `news`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `news` WRITE;
|
|||
|
/*!40000 ALTER TABLE `news` DISABLE KEYS */;
|
|||
|
INSERT INTO `news` VALUES (1,'`^A strange awakening takes place in the world.`0','2020-08-12',0,'','');
|
|||
|
/*!40000 ALTER TABLE `news` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `paylog`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `paylog`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `paylog` (
|
|||
|
`payid` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`info` text NOT NULL,
|
|||
|
`response` text NOT NULL,
|
|||
|
`txnid` varchar(32) NOT NULL,
|
|||
|
`amount` float(9,2) NOT NULL DEFAULT 0.00,
|
|||
|
`name` varchar(50) NOT NULL,
|
|||
|
`acctid` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`processed` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`filed` tinyint(4) unsigned NOT NULL DEFAULT 0,
|
|||
|
`txfee` float(9,2) NOT NULL DEFAULT 0.00,
|
|||
|
`processdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
PRIMARY KEY (`payid`),
|
|||
|
KEY `txnid` (`txnid`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `paylog`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `paylog` WRITE;
|
|||
|
/*!40000 ALTER TABLE `paylog` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `paylog` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `petitions`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `petitions`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `petitions` (
|
|||
|
`petitionid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`author` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`status` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`body` text DEFAULT NULL,
|
|||
|
`pageinfo` text DEFAULT NULL,
|
|||
|
`closedate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
`closeuserid` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`ip` varchar(40) NOT NULL,
|
|||
|
`id` varchar(32) NOT NULL,
|
|||
|
PRIMARY KEY (`petitionid`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `petitions`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `petitions` WRITE;
|
|||
|
/*!40000 ALTER TABLE `petitions` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `petitions` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `pollresults`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `pollresults`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `pollresults` (
|
|||
|
`resultid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`choice` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`account` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
`motditem` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
PRIMARY KEY (`resultid`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `pollresults`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `pollresults` WRITE;
|
|||
|
/*!40000 ALTER TABLE `pollresults` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `pollresults` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `referers`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `referers`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `referers` (
|
|||
|
`refererid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`uri` text DEFAULT NULL,
|
|||
|
`count` int(11) DEFAULT NULL,
|
|||
|
`last` datetime DEFAULT NULL,
|
|||
|
`site` varchar(50) NOT NULL,
|
|||
|
`dest` varchar(255) DEFAULT NULL,
|
|||
|
`ip` varchar(40) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`refererid`),
|
|||
|
KEY `uri` (`uri`(100)),
|
|||
|
KEY `site` (`site`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `referers`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `referers` WRITE;
|
|||
|
/*!40000 ALTER TABLE `referers` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `referers` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `settings`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `settings`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `settings` (
|
|||
|
`setting` varchar(20) NOT NULL,
|
|||
|
`value` varchar(255) NOT NULL,
|
|||
|
PRIMARY KEY (`setting`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `settings`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `settings` WRITE;
|
|||
|
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
|
|||
|
INSERT INTO `settings` VALUES ('allowclans','1'),('allowspecialswitch','1'),('automaster','1'),('barkeep','`)Cedrik'),('beta','0'),('betaperplayer','1'),('cachetranslations','0'),('charset','ISO-8859-1'),('collecttexts','0'),('daysperday','4'),('defaultlanguage','en'),('defaultskin','jade.htm'),('enablecompanions','1'),('enabletranslation','1'),('expirecontent','180'),('expirenewacct','10'),('expireoldacct','45'),('expiretrashacct','1'),('fightsforinterest','4'),('gameoffsetseconds','0'),('game_epoch','2020-07-13 00:00:00 +0000'),('gravefightsperday','10'),('homecurtime','1'),('homenewdaytime','1'),('homenewestplayer','1'),('homeskinselect','1'),('innname','The Boar\'s Head Inn'),('installer_version','1.1.2 Dragonprime Edition'),('lastdboptimize','2020-08-11 19:08:59'),('last_char_expire','2020-08-12 19:08:59'),('logdnet','0'),('loginbanner','*BETA* This is a BETA of this website, things are likely to change now and again, as it is under active development *BETA*'),('LOGINTIMEOUT','900'),('maxinterest','10'),('maxonline','0'),('mininterest','1'),('newdaycron','0'),('newdaySemaphore','2020-08-12 19:08:59'),('newestplayer',''),('oldmail','14'),('OnlineCount','0'),('OnlineCountLast','1597259479'),('paypalcurrency','USD'),('paypalemail',''),('permacollect','0'),('pvp','1'),('pvpday','3'),('resurrectionturns','-6'),('serverlanguages','en,English,fr,Fran<EFBFBD>ais,dk,Danish,de,Deutsch,es,Espa<EFBFBD>ol,it,Italian'),('serverurl','http://_/'),('show_notices','0'),('tl_maxallowed','0'),('turns','10'),('villagechance','0'),('villagename','Degolburg');
|
|||
|
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `taunts`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `taunts`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `taunts` (
|
|||
|
`tauntid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`taunt` text DEFAULT NULL,
|
|||
|
`editor` varchar(50) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`tauntid`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `taunts`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `taunts` WRITE;
|
|||
|
/*!40000 ALTER TABLE `taunts` DISABLE KEYS */;
|
|||
|
INSERT INTO `taunts` VALUES (1,'`5\"`6Just wait for my revenge, `4%W`6. It will be swift!`5\" %w declares.','Bluspring'),(2,'`5\"`6I\'m really going to enjoy this new `4%x`6 that %w`6 had,`5\" exclaimed %W.','joe'),(3,'`5\"`6Aah, so `bthat\'s`b what `4%X`6 is for!`5\" exclaimed %W','joe'),(4,'`5\"`6Oh man! I didn\'t think you had it in you, `5%W`6,`5\" %w exclaims.','Bluspring'),(5,'`5%W was overheard saying, \"`6%p `4%x`6 was no match for my `4%X`6!`5\"','Bluspring'),(6,'`5\"`6You know, you really shouldn\'t have a `4%x`6 unless you know how to use it,`5\" suggested %W.','Bluspring'),(7,'`5\"`6`bARRRGGGGGGG`b!!`5\" %w screams in frustration.','Bluspring'),(8,'`5\"`6How could I be so feeble?`5\" %w laments.','Bluspring'),(9,'`5\"`6I must not be as sturdy as I thought...!`5\" %w concedes.','Bluspring'),(10,'`5\"`6Watch your back, `4%W`6, I am coming for you!`5\" %w warns.','Bluspring'),(11,'`5\"`6This both sucks and blows!`5\" wails %w.','Bluspring'),(12,'`5\"`6I see London, I see France, I see `4%w\'s`6 underpants!`5\" reveals %W.','Bluspring'),(13,'`5\"`6The Healer\'s Hut can\'t help you now, `4%w`6!`5\" chides %W.','Bluspring'),(14,'`5%W smiles. \"`6You are too slow. You are too weak.`5\"','Bluspring'),(15,'`5%w bangs %p head against a stone...\"`6Stupid, stupid, stupid!`5\" %o was heard to say.','Bluspring'),(16,'`5\"`6My ego can\'t take much more of this bruising!`5\" exclaims %w.','Bluspring'),(17,'`5\"`6Why didn\'t I become a successful doctor like my father suggested?`5\" wonders %w aloud.','Bluspring'),(18,'`5\"`6Maybe `bnext`b time you won\'t be so cocky!`5\" laughs %W','Bluspring'),(19,'`5\"`6A baby could wield a `4%x `6better than that!`5\" %W proclaims.','Bluspring'),(20,'`5\"`6You should have just stayed in bed,`5\" %W suggests.','Bluspring'),(21,'`5\"`6Well isn\'t that a kick in the crotch?!`5\" %w observes.','Bluspring'),(22,'`5\"`6Come back when you learn how to fight,`5\" %W scoffs.','Bluspring'),(23,'`5\"`6Next time, eat your Wheaties,`5\" %W suggests.','Bluspring'),(24,'`5 \"`6You are dishonorable, `4%W`6!`5\" %w cries.','Bluspring'),(25,'`5\"`4%w`6, your lack of posture is a disgrace,`5\" %W states. ','Bluspring'),(26,'`5\"`6You know, `4%w`6 really had it coming to %s after all those things `bI`b said about `b%p`b mom`5,\" commented %W.','Joe');
|
|||
|
/*!40000 ALTER TABLE `taunts` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `titles`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `titles`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `titles` (
|
|||
|
`titleid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`dk` int(11) NOT NULL DEFAULT 0,
|
|||
|
`ref` varchar(100) NOT NULL,
|
|||
|
`male` varchar(25) NOT NULL,
|
|||
|
`female` varchar(25) NOT NULL,
|
|||
|
PRIMARY KEY (`titleid`),
|
|||
|
KEY `dk` (`dk`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `titles`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `titles` WRITE;
|
|||
|
/*!40000 ALTER TABLE `titles` DISABLE KEYS */;
|
|||
|
INSERT INTO `titles` VALUES (1,0,'','Farmboy','Farmgirl'),(2,1,'','Page','Page'),(3,2,'','Squire','Squire'),(4,3,'','Gladiator','Gladiatrix'),(5,4,'','Legionnaire','Legioness'),(6,5,'','Centurion','Centurioness'),(7,6,'','Sir','Madam'),(8,7,'','Reeve','Reeve'),(9,8,'','Steward','Steward'),(10,9,'','Mayor','Mayoress'),(11,10,'','Baron','Baroness'),(12,11,'','Count','Countess'),(13,12,'','Viscount','Viscountess'),(14,13,'','Marquis','Marchioness'),(15,14,'','Chancellor','Chancelloress'),(16,15,'','Prince','Princess'),(17,16,'','King','Queen'),(18,17,'','Emperor','Empress'),(19,18,'','Angel','Angel'),(20,19,'','Archangel','Archangel'),(21,20,'','Principality','Principality'),(22,21,'','Power','Power'),(23,22,'','Virtue','Virtue'),(24,23,'','Dominion','Dominion'),(25,24,'','Throne','Throne'),(26,25,'','Cherub','Cherub'),(27,26,'','Seraph','Seraph'),(28,27,'','Demigod','Demigoddess'),(29,28,'','Titan','Titaness'),(30,29,'','Archtitan','Archtitaness'),(31,30,'','Undergod','Undergoddess'),(32,31,'','God','Goddess');
|
|||
|
/*!40000 ALTER TABLE `titles` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `translations`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `translations`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `translations` (
|
|||
|
`tid` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
`language` varchar(10) NOT NULL,
|
|||
|
`uri` varchar(255) NOT NULL,
|
|||
|
`intext` blob NOT NULL,
|
|||
|
`outtext` blob NOT NULL,
|
|||
|
`author` varchar(50) DEFAULT NULL,
|
|||
|
`version` varchar(50) DEFAULT NULL,
|
|||
|
PRIMARY KEY (`tid`),
|
|||
|
KEY `language` (`language`,`uri`),
|
|||
|
KEY `uri` (`uri`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `translations`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `translations` WRITE;
|
|||
|
/*!40000 ALTER TABLE `translations` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `translations` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `untranslated`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `untranslated`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `untranslated` (
|
|||
|
`intext` blob NOT NULL,
|
|||
|
`language` varchar(10) NOT NULL,
|
|||
|
`namespace` varchar(255) NOT NULL,
|
|||
|
PRIMARY KEY (`intext`(200),`language`,`namespace`),
|
|||
|
KEY `language` (`language`),
|
|||
|
KEY `intext1` (`intext`(200),`language`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `untranslated`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `untranslated` WRITE;
|
|||
|
/*!40000 ALTER TABLE `untranslated` DISABLE KEYS */;
|
|||
|
/*!40000 ALTER TABLE `untranslated` ENABLE KEYS */;
|
|||
|
UNLOCK TABLES;
|
|||
|
|
|||
|
--
|
|||
|
-- Table structure for table `weapons`
|
|||
|
--
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `weapons`;
|
|||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
CREATE TABLE `weapons` (
|
|||
|
`weaponid` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
`weaponname` varchar(128) DEFAULT NULL,
|
|||
|
`value` int(11) NOT NULL DEFAULT 0,
|
|||
|
`damage` int(11) NOT NULL DEFAULT 1,
|
|||
|
`level` int(11) NOT NULL DEFAULT 0,
|
|||
|
PRIMARY KEY (`weaponid`)
|
|||
|
) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8mb4;
|
|||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|||
|
--
|
|||
|
-- Dumping data for table `weapons`
|
|||
|
--
|
|||
|
|
|||
|
LOCK TABLES `weapons` WRITE;
|
|||
|
/*!40000 ALTER TABLE `weapons` DISABLE KEYS */;
|
|||
|
INSERT INTO `weapons` VALUES (1,'Rake',48,1,0),(2,'Trowel',225,2,0),(3,'Spade',585,3,0),(4,'Adze',990,4,0),(5,'Gardening Hoe',1575,5,0),(6,'Torch',2250,6,0),(7,'Pitchfork',2790,7,0),(8,'Shovel',3420,8,0),(9,'Hedge Trimmers',4230,9,0),(10,'Hatchet',5040,10,0),(11,'Carving Knife',5850,11,0),(12,'Rusty Iron Wood-Chopping Axe',6840,12,0),(13,'Dull Steel Wood-chopping Axe',8010,13,0),(14,'Sharp Steel Wood-chopping Axe',9000,14,0),(15,'Woodsman\'s Axe',10350,15,0),(16,'Pebbles',48,1,1),(17,'Stones',225,2,1),(18,'Rocks',585,3,1),(19,'Small Treebranch',990,4,1),(20,'Large Treebranch',1575,5,1),(21,'Thickly Padded Sparring Pole',2250,6,1),(22,'Thinly Padded Sparring Pole',2790,7,1),(23,'Wooden Stave',3420,8,1),(24,'Wooden Practice Sword',4230,9,1),(25,'Blunt Bronze Short Sword',5040,10,1),(26,'Well Crafted Bronze Short Sword',5850,11,1),(27,'Rusty Steel Short Sword',6840,12,1),(28,'Dull Steel Short Sword',8010,13,1),(29,'Sharp Steel Short Sword',9000,14,1),(30,'Pages\'s Short Sword',10350,15,1),(31,'Dull Bronze Sword',48,1,2),(32,'Bronze Sword',225,2,2),(33,'Well Crafted Bronze Sword',585,3,2),(34,'Dull Iron Sword',990,4,2),(35,'Iron Sword',1575,5,2),(36,'Enchanted Sword',9000,14,2),(37,'Well Crafted Iron Sword',2250,6,2),(38,'Rusty Steel Sword',2790,7,2),(39,'Dull Steel Sword',3420,8,2),(40,'Well Crafted Steel Sword',4230,9,2),(41,'Engraved Steel Sword',5040,10,2),(42,'Steel Sword with Jeweled Hilt',5850,11,2),(43,'Golden Hilted Sword',6840,12,2),(44,'Platinum Hilted Sword',8010,13,2),(45,'Adept\'s Sword',10350,15,2),(46,'Steel Longsword',48,1,3),(47,'Etched Steel Longsword',585,3,3),(48,'Polished Steel Longsword',225,2,3),(49,'Well Balanced Steel Longsword',990,4,3),(50,'Perfectly Balanced Steel Longsword',1575,5,3),(51,'Engraved Steel Longsword',2250,6,3),(52,'Longsword with Silver-plated Hilt',2790,7,3),(53,'Longsword with Gold-plated Hilt',3420,8,3),(54,'Longsword with Solid Gold Hilt',4230,9,3),(55,'Longsword with Solid Platinum Hilt',5040,10,3),(56,'Moonsilver Longsword',5850,11,3),(57,'Autumngold Longsword',6840,12,3),(58,'Elfsilver Longsword',8010,13,3),(59,'Enchanted Longsword',9000,14,3),(60,'Wolfmaster\'s Longsword',10350,15,3),(61,'Poorly Balanced Bastard Sword',48,1,4),(62,'Tarnished Bastard Sword',225,2,4),(63,'Iron Bastard Sword',585,3,4),(64,'Steel Bastard Sword',990,4,4),(65,'Well Balanced Steel Bastard Sword',1575,5,4),(66,'Perfectly Balanced Bastard Sword',2250,6,4),(67,'Rune-etched Bastard Sword',2790,7,4),(68,'Bronze-inlay Bastard Sword',3420,8,4),(69,'Silver-inlay Bastard Sword',4230,9,4),(70,'Gold-inlay Bastard Sword',5040,10,4),(71,'Nightsilver Bastard Sword',5850,11,4),(72,'Morning-gold Bastard Sword',6840,12,4),(73,'Truesplendor Bastard Sword',8010,13,4),(74,'Enchanted Elfgold Bastard Sword',9000,14,4),(75,'Noble\'s Bastard Sword',10350,15,4),(76,'Tarnished Iron Claymore',48,1,5),(77,'Polished Iron Claymore',225,2,5),(78,'Rusty Steel Claymore',585,3,5),(79,'Steel Claymore',990,4,5),(80,'Finely Crafted Steel Claymore',1575,5,5),(81,'Scottish Broadsword',2250,6,5),(82,'Viking War Sword',2790,7,5),(83,'Barbarian\'s Sword',3420,8,5),(84,'Scottish Basket-Hilt Claymore',4230,9,5),(85,'Agincourt Steel Sword',5040,10,5),(86,'Celtic Combat Sword',5850,11,5),(87,'Norseman\'s Sword',6840,12,5),(88,'Knight\'s Sword',8010,13,5),(89,'Heraldic Lion Claymore',9000,14,5),(90,'Dragon Soldier\'s Claymore',10350,15,5),(91,'Two Broken Short Swords',48,1,6),(92,'Two Short Swords',225,2,6),(93,'Iron Scimitars',585,3,6),(94,'Balanced Scimitars',990,4,6),(95,'Tarnished Steel Scimitars',1575,5,6),(96,'Rusty Steel Scimitars',2250,6,6),(97,'Steel Scimitars',2790,7,6),(98,'Bronze Hilted Steel Scimitars',3420,8,6),(99,'Gold Hilted Steel Scimitars',4230,9,6),(100,'Platinum Hilted Steel Scimitars',5040,10,6),(101,'Well Crafted Adamantite Scimitars',5850,11,6),(102,'Perfectly Crafted Adamantite Scimitars',6840,12,6),(103,'Enchanted Scimitars',8010,13,6),(104,'Drow Crafted Scimitars',9000,14,6),(105,'Unicorn Blood-Forged Scimitars',10350,15,6),(106,'Chipped Iron Axe',48,1,7),(107,'Iron Axe',225,2,7),(108,'Rusty Steel Axe',585,3,7),(109
|
|||
|
/*!40000 ALTER TABLE `weapons` 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 */;
|
|||
|
/*!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 2020-08-12 19:58:00
|