您当前的位置:首页 > 魔兽技术

数据库传送宝石配置说明及模版

本文出处:网游动力作者:本站发布时间:2009-06-20阅读次数:
-- 创建传送表,此表只能用于sd2库
DROP TABLE IF EXISTS `custom_tele_stone`;
CREATE TABLE `custom_tele_stone` (
  `id` bigint(20) unsigned NOT NULL auto_increment COMMENT '主索引 ',
  `icon` bigint(20) default '1' COMMENT '图标',
  `Title` varchar(255) default NULL COMMENT '传送地址名称',
  `points` bigint(20) unsigned default '0' COMMENT '传送积分点数',
  `level` bigint(20) default '0' COMMENT '会员级别',
  `Price` bigint(20) unsigned default '0' COMMENT '送传金币价格',
  `Mapid` int(10) default NULL COMMENT '送传map地图编号',
  `position_x` float default NULL COMMENT '送传x坐标',
  `position_y` float default NULL COMMENT '送传y坐标',
  `position_z` float default NULL COMMENT '送传z坐标',
  `parentid` bigint(20) default '0' COMMENT '父结点ID',
  `order_id` bigint(20) default '0' COMMENT '排序id',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='传送数据表 ';

-- ----------------------------
-- 以下缩进的是二级菜单
-- ----------------------------
INSERT INTO `custom_tele_stone` VALUES ('10', '9', '【vip主城传送】', '1', '0', '0', '0', '0', '0', '0', '0', '10');
                INSERT INTO `custom_tele_stone` VALUES ('101', '9', '联盟 暴风城', '0', '0', '5', '0', '-8829', '626', '96', '10', '101');
                INSERT INTO `custom_tele_stone` VALUES ('102', '9', '联盟 铁炉堡', '0', '0', '5', '0', '-4948', '-921', '504', '10', '102');
                INSERT INTO `custom_tele_stone` VALUES ('103', '9', '联盟 达纳苏斯', '0', '0', '5', '1', '9951', '2319', '1340', '10', '103');
                INSERT INTO `custom_tele_stone` VALUES ('104', '9', '联盟 艾克索达', '0', '0', '5', '530', '-3944', '-11620', '-136', '10', '104');
                INSERT INTO `custom_tele_stone` VALUES ('105', '9', '部落 奥格瑞玛', '0', '0', '5', '1', '1541', '-4435', '13', '10', '105');
                INSERT INTO `custom_tele_stone` VALUES ('106', '9', '部落 雷霆崖', '0', '0', '5', '1', '-1265', '76', '129', '10', '106');
                INSERT INTO `custom_tele_stone` VALUES ('107', '9', '部落 幽暗城', '0', '0', '5', '0', '1607', '239', '-50', '10', '107');
                INSERT INTO `custom_tele_stone` VALUES ('108', '9', '部落 银月城', '0', '0', '5', '530', '9687', '-7434', '17', '10', '108');
                INSERT INTO `custom_tele_stone` VALUES ('109', '9', '中立 棘齿城', '0', '0', '5', '1', '-977', '-3788', '6', '10', '109');
                INSERT INTO `custom_tele_stone` VALUES ('110', '9', '中立 藏宝海湾', '0', '0', '5', '0', '-14406', '425', '10', '10', '110');
                INSERT INTO `custom_tele_stone` VALUES ('111', '9', '中立 冬泉谷', '0', '0', '5', '1', '6706', '-4647', '723', '10', '111');
                INSERT INTO `custom_tele_stone` VALUES ('112', '9', '中立 加基森', '0', '0', '5', '1', '-7135', '-3787', '10', '10', '112');
                
INSERT INTO `custom_tele_stone` VALUES ('60', '9', '【火星主城传送】', '1', '0', '0', '0', '0', '0', '0', '0', '60');
                INSERT INTO `custom_tele_stone` VALUES ('601', '9', '黑暗之门', '0', '0', '5', '530', '-247', '946', '84', '60', '601');
                INSERT INTO `custom_tele_stone` VALUES ('602', '9', '永歌森林', '0', '0', '5', '530', '9337', '-7278', '14', '60', '602');
                INSERT INTO `custom_tele_stone` VALUES ('603', '9', '海加尔峰', '0', '0', '5', '534', '5070.08', '-1791.98', '1320.99', '60', '603');
                INSERT INTO `custom_tele_stone` VALUES ('604', '9', '沙塔斯城', '0', '0', '5', '530', '-1889', '5433', '-11', '60', '604');
                INSERT INTO `custom_tele_stone` VALUES ('605', '9', '哈兰', '0', '0', '5', '530', '-1567', '7959', '-21', '60', '605');
                INSERT INTO `custom_tele_stone` VALUES ('606', '9', '风暴尖塔', '0', '0', '5', '530', '4151', '3041', '339', '60', '606');
                
INSERT INTO `custom_tele_stone` VALUES ('70', '9', '【初级副本传送】', '1', '0', '0', '0', '0', '0', '0', '0', '70');
                INSERT INTO `custom_tele_stone` VALUES ('701', '9', '[14]怒焰裂谷', '0', '0', '5', '389', '2.02', '-10.02', '-16.19', '70', '701');
                INSERT INTO `custom_tele_stone` VALUES ('702', '9', '[19]死亡矿井', '0', '0', '5', '36', '-16.4', '-383.07', '61.78', '70', '702');
                INSERT INTO `custom_tele_stone` VALUES ('703', '9', '[22]哀嚎洞穴', '0', '0', '5', '43', '-161.84', '133.27', '-73.86', '70', '703');
                INSERT INTO `custom_tele_stone` VALUES ('704', '9', '[24]影牙城堡', '0', '0', '5', '33', '-228.19', '2110.56', '76.89', '70', '704');
                INSERT INTO `custom_tele_stone` VALUES ('705', '9', '[26]黑暗深渊', '0', '0', '5', '48', '-150.36', '102.99', '-40.55', '70', '705');
                INSERT INTO `custom_tele_stone` VALUES ('706', '9', '[27]暴风城监狱', '0', '0', '5', '34', '48.29', '0.45', '-16.14', '70', '706');
                INSERT INTO `custom_tele_stone` VALUES ('707', '9', '[31]剃刀沼泽', '0', '0', '5', '47', '1943', '1544', '82', '70', '707');
                INSERT INTO `custom_tele_stone` VALUES ('708', '9', '[33]诺莫瑞根', '0', '0', '5', '90', '-332.56', '-3.44', '-152.84', '70', '708');
                INSERT INTO `custom_tele_stone` VALUES ('709', '9', '[40]血色修道院', '0', '0', '5', '189', '855.9', '1321.94', '18.67', '70', '709');
                INSERT INTO `custom_tele_stone` VALUES ('710', '9', '[42]剃刀高地', '0', '0', '5', '129', '2593.21', '1109.46', '51.09', '70', '710');
                INSERT INTO `custom_tele_stone` VALUES ('711', '9', '[45]奥达曼', '0', '0', '5', '70', '-227.53', '45', '-46.02', '70', '711');
                
INSERT INTO `custom_tele_stone` VALUES ('40', '9', '【中级副本传送】', '1', '0', '0', '0', '0', '0', '0', '0', '40');
                INSERT INTO `custom_tele_stone` VALUES ('401', '9', '[46]祖尔法拉克', '0', '0', '5', '209', '1213', '841', '8.9', '40', '401');
                INSERT INTO `custom_tele_stone` VALUES ('402', '9', '[49]马拉顿', '0', '0', '5', '349', '1012.7', '-459.32', '-43.55', '40', '402');
                INSERT INTO `custom_tele_stone` VALUES ('403', '9', '[53]失落的神庙', '0', '0', '5', '109', '-313.37', '99.95', '-131.85', '40', '403');
                INSERT INTO `custom_tele_stone` VALUES ('404', '9', '[57]黑石深渊', '0', '0', '5', '230', '456.93', '34.93', '-69.39', '40', '404');
                INSERT INTO `custom_tele_stone` VALUES ('405', '9', '[60]通灵学院', '0', '0', '5', '289', '199', '126', '135', '40', '405');
                INSERT INTO `custom_tele_stone` VALUES ('406', '9', '[60]厄运[北区]', '0', '0', '5', '429', '255.16', '-17.02', '-2.56', '40', '406');
                INSERT INTO `custom_tele_stone` VALUES ('407', '9', '[60]厄运[东区]', '0', '0', '5', '429', '46.24', '-155.53', '-2.71', '40', '407');
                INSERT INTO `custom_tele_stone` VALUES ('408', '9', '[60]厄运[西区]', '0', '0', '5', '429', '32.72', '159.42', '-3.47', '40', '408');
                INSERT INTO `custom_tele_stone` VALUES ('409', '9', '[60]斯坦索姆', '0', '0', '5', '329', '3392', '-3379', '143', '40', '409');
                INSERT INTO `custom_tele_stone` VALUES ('410', '9', '[60]黑石塔下', '0', '0', '5', '229', '78.19', '-227.63', '49.72', '40', '410');
                
INSERT INTO `custom_tele_stone` VALUES ('20', '9', '【团队副本传送】', '1', '0', '0', '0', '0', '0', '0', '0', '20');
                INSERT INTO `custom_tele_stone` VALUES ('201', '9', '[团]溶火之心', '0', '0', '5', '409', '1089.6', '-470.19', '-106.41', '20', '201');
                INSERT INTO `custom_tele_stone` VALUES ('202', '9', '[团]黑石塔', '0', '0', '5', '229', '78.34', '-227.79', '49.71', '20', '202');
                INSERT INTO `custom_tele_stone` VALUES ('203', '9', '[团]祖尔格拉布', '0', '0', '5', '309', '-11916', '-1251.47', '92.32', '20', '203');
                INSERT INTO `custom_tele_stone` VALUES ('204', '9', '[团]黑翼之巢', '0', '0', '5', '469', '-7674.47', '-1108.38', '396.65', '20', '204');
                INSERT INTO `custom_tele_stone` VALUES ('205', '9', '[团]安其拉神庙', '0', '0', '5', '531', '-8212', '2034.47', '129.14', '20', '205');
                INSERT INTO `custom_tele_stone` VALUES ('206', '9', '[团]安其拉废墟', '0', '0', '5', '509', '-8443.47', '1518.65', '31.9', '20', '206');
                INSERT INTO `custom_tele_stone` VALUES ('207', '9', '[团]奥妮克希亚的巢穴', '0', '0', '5', '249', '30.01', '-58.84', '-5.32', '20', '207');
                INSERT INTO `custom_tele_stone` VALUES ('208', '9', '[团]纳克萨玛斯', '0', '0', '5', '533', '3005.87', '-3435.01', '293.88', '20', '208');
                INSERT INTO `custom_tele_stone` VALUES ('209', '9', '[团]冰龙巢穴', '0', '0', '5', '533', '3700.35', '-5185.92', '143.96', '20', '209');
                INSERT INTO `custom_tele_stone` VALUES ('210', '9', '[团]祖阿曼', '0', '0', '5', '568', '122', '1769', '45', '20', '210');
                
INSERT INTO `custom_tele_stone` VALUES ('50', '9', '【外域团队副本】', '1', '0', '0', '0', '0', '0', '0', '0', '50');
                INSERT INTO `custom_tele_stone` VALUES ('501', '9', '[团]暴风城超级监狱', '0', '0', '5', '0', '-8644.16', '595.67', '95.7', '50', '501');
                INSERT INTO `custom_tele_stone` VALUES ('502', '9', '[团]卡拉赞', '0', '0', '5', '532', '-11108', '-2002.06', '49.89', '50', '502');
                INSERT INTO `custom_tele_stone` VALUES ('503', '9', '[团]遗忘之井', '0', '0', '5', '0', '-11068.1', '-1811.07', '52.82', '50', '503');
                INSERT INTO `custom_tele_stone` VALUES ('504', '9', '[团]鬼魂之地', '0', '0', '5', '530', '6851.2', '-7993.67', '192.29', '50', '504');
                INSERT INTO `custom_tele_stone` VALUES ('505', '9', '[团]地狱火城墙', '0', '0', '5', '543', '-1355.82', '1646.83', '68.45', '50', '505');
                INSERT INTO `custom_tele_stone` VALUES ('506', '9', '[团]风暴要塞', '0', '0', '5', '530', '3087.56', '1387.23', '185.04', '50', '506');
                INSERT INTO `custom_tele_stone` VALUES ('507', '9', '[团]暗影迷宫', '0', '0', '5', '555', '2.16', '0.4', '-1.13', '50', '507');
                INSERT INTO `custom_tele_stone` VALUES ('508', '9', '[团]黑暗神殿', '0', '0', '5', '564', '106', '1000', '-86', '50', '508');
                INSERT INTO `custom_tele_stone` VALUES ('509', '9', '[团]赞格沼泽', '0', '0', '5', '530', '919.01', '6854.86', '-66.43', '50', '509');
                INSERT INTO `custom_tele_stone` VALUES ('510', '9', '[团]黑色沼泽', '0', '0', '5', '269', '-2095.3', '7125.54', '34.59', '50', '510');
                INSERT INTO `custom_tele_stone` VALUES ('511', '9', '[团]毒蛇神殿', '0', '0', '5', '548', '29.14', '-57.07', '-71.73', '50', '511');
                
INSERT INTO `custom_tele_stone` VALUES ('30', '9', '【外域五人副本】', '1', '0', '0', '0', '0', '0', '0', '0', '30');
                INSERT INTO `custom_tele_stone` VALUES ('301', '9', '破碎大厅', '0', '0', '5', '540', '-41', '-22', '-14', '30', '301');
                INSERT INTO `custom_tele_stone` VALUES ('302', '9', '鲜血熔炉', '0', '0', '5', '542', '-3', '11', '-45', '30', '302');
                INSERT INTO `custom_tele_stone` VALUES ('303', '9', '生态船', '0', '0', '5', '553', '40', '-28.6', '-1.1', '30', '303');
                INSERT INTO `custom_tele_stone` VALUES ('304', '9', '禁魔监狱', '0', '0', '5', '552', '-1.2', '0', '-0.2', '30', '304');
                INSERT INTO `custom_tele_stone` VALUES ('305', '9', '能源舰', '0', '0', '5', '554', '-28.9', '0.7', '-1.8', '30', '305');
                INSERT INTO `custom_tele_stone` VALUES ('306', '9', '凤凰大厅', '0', '0', '5', '550', '-6.8', '-0.9', '-2.4', '30', '306');
                INSERT INTO `custom_tele_stone` VALUES ('307', '9', '奴隶围栏', '0', '0', '5', '547', '123.14', '-122.69', '-0.45', '30', '307');
                INSERT INTO `custom_tele_stone` VALUES ('308', '9', '蒸汽地窟', '0', '0', '5', '545', '-7.5', '5.9', '-4.3', '30', '308');
                INSERT INTO `custom_tele_stone` VALUES ('309', '9', '幽暗沼泽', '0', '0', '5', '546', '14.91', '-19.91', '-2.75', '30', '309');
                INSERT INTO `custom_tele_stone` VALUES ('310', '9', '格鲁尔的巢穴', '0', '0', '5', '530', '3543.44', '5079.01', '0.95', '30', '310');
                INSERT INTO `custom_tele_stone` VALUES ('311', '9', '玛瑟里顿的巢穴', '0', '0', '5', '544', '188.41', '29.33', '67.93', '30', '311');
                INSERT INTO `custom_tele_stone` VALUES ('312', '9', '太阳之井高地', '0', '0', '5', '530', '12564.9', '-6775.38', '15.09', '30', '312');
                INSERT INTO `custom_tele_stone` VALUES ('313', '9', '魔导师平台', '0', '0', '5', '530', '12887.4', '-7327.2', '65.49', '30', '313');

-- 批量设置排序
update `custom_tele_stone` set `order_id`=`id` where id >100;
-- 批量设置花费金钱和点数
update `custom_tele_stone` set `points`=0,`Price`=5 where id >100;