提示:请谨慎购买商业服务端,遇到无法使用的免费服务端请向管理员报告.
2943 版 VIP会员版+非会员60级会员80级+AI+MCH1.5c使用说明
功能说明 1 此版本支持VIP会员功能 将 会员 设置为 1级GM 打怪 双倍经验 可以随意传送 随时储存 2 非会员 最高只能到 60级 不能使用传送功能 3 减少服务器负担 设置 .save 间隔6分钟才能使用, 4 增加黑龙妹妹 和 奥妮克希亚 AI 5 此版本没有添加任何广告,请放心使用
安装说明: 第一步: 导入realmd.sql mangos.sql 数据库 (这个里都能找得到)
第二步: 改变GM命令取消1 级Gm的所有权限 将 .save 命令只允许 VIP会员使用 减少服务器负担
UPDATE `command` SET `security`='3' WHERE (`security`='2' or `security`='1' ); UPDATE `command` SET `security`='1' WHERE (`name`='save' or `name`='gps' );
第三步: 修改 mangosd.conf 会员经验倍数 默认是2 倍
# vip经验 默认2倍 Rate.VIP_XP.Kill = 4
========================================================= -- 监狱数据库倒入文件 DELETE FROM command WHERE name IN ('jail', 'jailinfo', 'unjail', 'pinfo');
INSERT INTO command (name, security, help) VALUES ("jail", 2, "Syntax: .jail character minutes [reason] Jailed the 'character' for 'minutes' \(5-10080\) with the [reason].");
INSERT INTO command (name, security, help) VALUES ("jailinfo", 0, "Syntax: .jailinfo Shows your jail status.");
INSERT INTO command (name, security, help) VALUES ("unjail", 2, "Syntax: .unjail character Realeases the 'character' out of the jail.");
INSERT INTO command (name, security, help) VALUES ("pinfo", 2, "Syntax: .pinfo [$player_name] [rep] [jail] Output account information for selected player or player find by $player_name. If ""rep"" parameter provided show reputation information for player. If ""jail"" parameter provided show jail information for player.");
DROP TABLE IF EXISTS jail;
CREATE TABLE `jail` (`char` varchar(12) NOT NULL COMMENT 'Char who''s jailed.', `release` int(11) unsigned NOT NULL default '0' COMMENT 'Release time for the char', `reason` varchar(255) NOT NULL default 'No reason given.' COMMENT 'Why is this char jailed?', `times` int(11) unsigned NOT NULL default '0' COMMENT 'How many times was this char jailed?', `gmacc` int(11) NOT NULL default '0' COMMENT 'Used GM acc to jail this char.', `gmchar` varchar(12) NOT NULL COMMENT 'Used GM char to jail this char.', PRIMARY KEY (`char`), UNIQUE KEY `char` (`char`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Jail table for mangos by WarHead.';
====================================================================== |