七日杀 修改合成表图文教程

首先要找到游戏中合成表的位置

  游戏根目录>>Data>>Config>>recipes.xml

  右键 编辑

  你会发现里面大概是这个样子的

  <?xml version=”1.0″ encoding=”UTF-8″?>
  <recipes>
  <recipe name=”Awning1″ count=”4″>
  <ingredient name=”yuccaFibers” count=”1″ grid=”-1, -1″ />
  <ingredient name=”yuccaFibers” count=”1″ grid=”0, -1″ />
  <ingredient name=”yuccaFibers” count=”1″ grid=”1, -1″ />
  <ingredient name=”yuccaFibers” count=”1″ grid=”-1, 0″ />
  <ingredient name=”yuccaFibers” count=”1″ grid=”0, 0″ />
  <ingredient name=”yuccaFibers” count=”1″ grid=”1, 0″ />
  <ingredient name=”yuccaFibers” count=”1″ grid=”-1, 1″ />
  <ingredient name=”yuccaFibers” count=”1″ grid=”0, 1″ />
  <ingredient name=”yuccaFibers” count=”1″ grid=”1, 1″ />
  </recipe>
  ……

  下面来告诉大家他们分别代表什么意思

  <?xml version=”1.0″ encoding=”UTF-8″?>
  <recipes>

  这个是合成表自带的 大家不要修改= =

  <ingredient name=”yuccaFibers” count=”1″ grid=”-1, -1″ />

  那这又是什么呢?

  yuccaFibers 代表的是放在合成表中的物品

  1 代表的是所需数量 注:目前版本中都是 1 大家不需填别的

  -1, -1 代表的是在合成表中的位置

  下面介绍 合成表 位置

风君子博客

  每一个位置们分别代表的是:

  (-2, -2)(-1, -2)(0, -2)(1, -2)(2, -2)
  (-2, -1)(-1, -1)(0, -1)(1, -1)(2, -1)
  (-2, 0) (-1, 0) (0, 0) (1, 0) (2, 0)
  (-2, 1) (-1, 1) (0, 1) (1, 1) (2, 1)
  (-2, 2) (-1, 2) (0, 2) (1, 2) (2, 2)

注意事项!!!

  一、物品代码不一定就是WIKI网站中物品的名称

  1、会把两个单词写在一起 如:油箱不是 Gas Can 而是 gasCan

  2、有的会少单词 如:尖锐的棍子 不是Sharpened Stick 而是 sharpStick

  3、代码虽然很扯淡 但是 一个单词的物品 除了首字母会有大小写的区别外 基本无问题

  二、格式一定要对齐 不然打开游戏合成表会消失

  三、不要多写或者少写 不然打开游戏合成表也会消失

  四、字母大小写要区分 不然打开游戏合成表依然会消失

电锯的

风君子博客

  <recipe name=”chainsaw” count=”1″>
  <ingredient name=”spring” count=”1″ grid=”0, 0″ />
  <ingredient name=”ingotIron” count=”1″ grid=”1, -1″ />
  <ingredient name=”ingotIron” count=”1″ grid=”1, 0″ />
  <ingredient name=”ingotIron” count=”1″ grid=”2, 0″ />
  <ingredient name=”ingotIron” count=”1″ grid=”0, 1″ />
  <ingredient name=”ingotIron” count=”1″ grid=”2, -1″ />
  <ingredient name=”scrapMetal” count=”1″ grid=”0, -1″ />
  <ingredient name=”scrapMetal” count=”1″ grid=”-1, 0″ />
  </recipe>

电钻的

风君子博客

  <recipe name=”auger” count=”1″>
  <ingredient name=”ingotIron” count=”1″ grid=”0, 0″ />
  <ingredient name=”ingotIron” count=”1″ grid=”1, 0″ />
  <ingredient name=”ingotIron” count=”1″ grid=”2, 0″ />
  <ingredient name=”ingotIron” count=”1″ grid=”0, 1″ />
  <ingredient name=”spring” count=”1″ grid=”-1, 0″ />
  <ingredient name=”scrapMetal” count=”1″ grid=”0, -1″ />
  <ingredient name=”scrapMetal” count=”1″ grid=”-1, -1″ />
  </recipe>

  手枪子弹代码:pistolClip

  mp5子弹代码:mp5Clip

  散弹枪子弹代码:shotgunShell

  M136(火箭筒)子弹代码:m136Rocket

  狙子弹代码:sniperRifleClip

  手枪代码:pistol

  mp5代码:mp5

  散弹代码:SawedOffPumpShotgun

  M136代码:m136

  狙代码:sniperRifle

  这个改了之后联机是可以的 但只有改了的人才能用 没改的用不了

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注