本帖最后由 c020109703 于 2016-4-14 10:56 编辑



这个mod预置了更多不同地质不同方块上步行的脚步声,更加有身临其境的感觉。

演示视频:

http://www.tudou.com/v/SnTTXRtgV5Q/&rpid=2818288&resourceId=2818288_04_05_99/v.swf

使用方法:

老规矩,解压之后jar文件放入mods文件夹,资源包zip文件放入resourcepacks文件夹
1.7以后的版本采取mod文件+音频资源包的方式打包,按照作者预置好的目录结构放入并在资源包选择页面添加即可。

1.7.2版本要求Forge 10.12.2.1121 + Liteloader 1.7.2_04以上
1.7.10版本要求Forge 10.13.0.1180 + Liteloader 1.7.10_03以上


如需加入其他自定义脚步声和对应方块可以修改下列2个文件代码,示范格式:

定义对应方块:blockmap.cfg
  1. 56=ore           # Diamond ore plays an "ore" material
  2. 57=composite     # Block of diamond ore plays a "composite" material
  3. 58=wood          # Crafting Table plays a "wood" material
  4. 59=NOT_EMITTER   # Wheat crops does not emit any sound when walken on
  5. 59_0.foliage=NOT_EMITTER    # Just planted seeds does not emit any sound when walked through
  6. 59_1.foliage=NOT_EMITTER
  7. 59_2.foliage=brush          # Early wheat plays a "brush" material
  8. 59_3.foliage=brush
  9. 59_4.foliage=brush_straw_transition   # Medium wheat plays a material
  10. 59_5.foliage=brush_straw_transition   #   which is like "brush" and "straw"
  11. 59_6.foliage=straw          # Grown wheat plays a "straw" material
  12. 59_7.foliage=straw
  13. 60=dirt
复制代码
定义音效:acoustics.cfg
  1. "stone" : {
  2.     "run"  : {
  3.       "name"  : "stone.stone_run",
  4.       "pitch_min" : 65,
  5.       "pitch_max" : 70
  6.     },
  7.     "walk"  : {
  8.       "name"  : "stone.stone_walk",
  9.       "pitch_min" : 65,
  10.       "pitch_max" : 70
  11.     },
  12.     "wander": "stone.stone_wander",
  13.     "land"  : {
  14.       "type"  : "simultaneous",
  15.       "array" : [
  16.         "concrete.concrete_run",
  17.         {
  18.           "name"  : "stone.stone_walk",
  19.           "vol_min"   : 50,
  20.           "vol_max"   : 50
  21.         },
  22.         {
  23.           "type"  : "delayed",
  24.           "delay" : 50,
  25.           "name"  : "stone.stone_run"
  26.         }
  27.       ]
  28.     }
  29.   },
复制代码

下载:http://pan.baidu.com/s/1ntyVQAl