最新天堂2私服也可以用财富商人来做替代设置,本次介绍的是用31756这个NPC来做交换东西的:首先打开\gameserver\data\html\merchant,在里面找到31757.html复制一个91757.html档案,打开91757.html档案并将旧内容删除修改成:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
[庆典金币与金币]兑换商人:
<br>
愿天堂2私服财富的祝福与您同在!
金币与庆典金币之间的兑换(1000000000:1),避免最新天堂2私服金币超过21亿后归零。
<br>
<br>
<br>
<a action="bypass -h npc_%objectId%_multisell 317561001">庆典金币与金币之间的兑换</a>
<br>
<br>
<a action="bypass -h npc_%objectId%_multisell 317561002">奖励新手[最新天堂II私服导览]换成10亿金币</a>
<br>
</body></html>
然后用\gameserver\data\multisell里,找到001.XML复制2个交换.mxl档案,317561001.MXL及317561002.MXL,打开317561001.MXL档案将内容修改如下:
<?xml version='1.0' encoding='utf-8'?>
<!-- celebration gold or gold -->
<list>
<!-- gold TO celebration gold -->
<item id="74">
<ingredient id="57" count="1000000000"/>
<production id="6673" count="1"/>
</item>
<!-- celebration gold TO gold -->
<item id="75">
<ingredient id="6673" count="1"/>
<production id="57" count="1000000000"/>
</item>
</list>
打开317561002.MXL档案将内容修改如下:
<?xml version='1.0' encoding='utf-8'?>
<!-- L2 beginner book to gold -->
<list>
<!--L2 beginner book to 100000000 gold -->
<item id="1">
<ingredient id="5588" count="1"/>
<production id="57" count="100000000"/>
</item>
</list>
最后在游戏中用TT2GM帐号召唤NPC91757即可!附上天堂私服财富商人的html修改方法,在\gameserver\data\html\seven_signs,找到资料文件夹中的mammmerch_1.html:
<html>
<body>
财富的商人:
<br>
掌控贪欲的封印之人愿财富的祝福与您同在!我们财富公会为提供各位珍贵的精品,所以来到天堂私服地下深处。
<br>
在逛东西之前有几件事得叮咛!我们不接受外面世界的货币,只用<font color="LEVEL">古代的金币</font>来作交易。
还有购买强化卷轴时,必须得准备好<font color="LEVEL">空的卷轴</font>来。
金币与庆典金币之间的兑换(100000000:1),避免最新天堂2私服金币超过21亿后归零。
<br>
<a action="bypass -h npc_%objectId%_multisell 317561001">庆典金币与金币之间的兑换</a>
<br>
<a action="bypass -h npc_%objectId%_multisell 317561002">奖励新手[最新天堂II私服导览]换成10亿金币</a>
<br>
<a action="bypass -h npc_%objectId%_multisell 501">购买物品</a>
<br>
<a action="bypass -h npc_%objectId%_SevenSignsDesc 10">询问有关古代的金币</a>
<br>
<a action="bypass -h npc_%objectId%_SevenSignsDesc 11">询问有关空的卷轴</a>
</body>
</html>
然后要制作2个交换档案317561001.MXL,以及317561002.MXL同理完成修改设置。
<!-- 10e金币换1庆典 -->
▌这行是「注解」,<!-- 代表注解开头,-->代表注解结尾,所以格式不能变,基本上东西不多自己又看得懂的话可以不用写。
<item id="1">
▌这行是这档案中所有物品列表显示在交易物品表格中的数字,如果有一项以上的物品要做交换,请依序「增加」不要写错。
<ingredient id="57" count="1000000000"/>
▌" " 内的数字57为「系统会收走的物品id」〈此例的57就是金币的物品id〉,ingredient(原料)代表系统会把这个东西收走,最后的count=数量。
<production id="6673" count="1"/>
▌" " 内的数字6673为「玩家取得的物品id」〈此例的6673就是庆典金币的物品id〉,production(生产)代表系统会兑换这个东西给你,最后的count=数量。
</item>
▌这个天堂2私服代码务必不要少写,该代码代表这个物品交换栏位的结尾。