【DCS】 MOD汇总
本帖最后由 johnnyr73 于 2014-10-31 20:43 编辑发帖说明:
1、此贴挑选各个网站、论坛的DCS模型, 由于版权原因,任何模型不得用以商业用途。
2、此贴MOD均来此国外网站。 所以会有些翻译不当及信息不全的模型,还请各位谅解。
3、此贴一些MOD不包含如何安装的教程(视MOD情况而定,一般情况均为覆盖原文件。)
4、此贴均为转载,部分MOD未经测试,请各位务必做好备份工作。
5、 由于版面设置问题,MOD大于512KB的,请各位自行下载。(没办法 帖子大小有限制)
5、因DCS版本变更,部分MOD在当前版本无法使用。请各位谅解。
6、此贴先占10楼,不定期更新模型。
7、如下载链接不能下载,请告知模型编号.
设计图镇楼:
MOD 001:
黑鲨2高清黑色驾驶舱
说明:可以下载配套高清HUD模型
原帖地址:http://forums.eagle.ru/showthread.php?t=94081
下载地址:http://www.digitalcombatsimulator.com/en/files/602834/
HUD下载地址: www.devrimbabacan.net/dcs/mods/Devrim_DCSWBS2_RicardoHDPit.rar
MOD 002:
环境模型
说明:覆盖源文件 (做好备份工作)
原帖地址:http://forums.eagle.ru/showthread.php?t=113374
下载地址:
MOD 003:
MIG21座舱按键模型
说明:覆盖源文件 (做好备份工作)
下载地址:http://www.digitalcombatsimulator.com/en/files/668712/
本帖最后由 johnnyr73 于 2014-10-31 20:43 编辑
MOD 004:
X-Control Mod
说明:大概意思如下:在此模型下可对AI飞机做任何修改。具体说明太长, 大家可以自己看下:http://forums.eagle.ru/showthread.php?t=107012
原帖地址:http://forums.eagle.ru/showthread.php?t=107012
下载地址:http://forums.eagle.ru/attachmen ... =82473&d=1369516335
MOD 005:
FW190 英文座舱
说明:插件文件复制粘贴DCS世界文件夹
原帖:http://forums.eagle.ru/showthread.php?t=131833
下载地址:http://www.digitalcombatsimulator.com/en/files/901283/
MOD 006:
A10C 被动雷达模型
说明:
分配每一个雷达装备车辆(地面/空中/海军)&主动雷达导弹在DCS世界A-10C独特RWR音频信号采集和锁定,以便更好地协助跟踪和识别潜在威胁视觉显示的雷达告警接收机
原帖地址:http://forums.eagle.ru/showthread.php?t=110840
下载地址: https://dl.dropboxusercontent.co ... O_EXPANSION_3.1.rar
模型更新: https://dl.dropboxusercontent.co ... DION_3.1_UPDATE.rar
MOD 007
MIG31
说明:应该是可以开MIG31了, 座舱和27差不多。只有相似的气动效果,没有动画
下载地址:http://www.digitalcombatsimulator.com/en/files/487456/
本帖最后由 johnnyr73 于 2014-10-31 20:00 编辑
MOD 008
A10C 夜视仪模型
说明: 1、安装模型至 DCS目录下
(下载地址:http://forums.eagle.ru/attachmen ... =76416&d=1359067520)
2、DCS World/config/graphics and change PrecompiledEffects mode to "USE_PRECOMPILED_EFFECTS_FOR_UNCHANGED_FILES"
具体说明如下:
------------------
- Installation
------------------
Make sure to edit DCS World/config/graphics and change PrecompiledEffects mode
to "USE_PRECOMPILED_EFFECTS_FOR_UNCHANGED_FILES" (Its already there, but commented out).
Not doing so will not let this mod work!
------------------
- Tweaking
------------------
// Center of the circle used to represent the NVGs.
//
// Now let's imagine we use 1000x1000 Pixels as In-game Resolution:
// And lets say we want the center at 300px from the left and 650px from the bottom.
//
// 1000px=1 so 300px = 0.3
//
// The Values are starting to count from the Bottom-Left corner of your Res, first is for for
// Horizontal position and the second for Vertical:
//
//
const float2 EYE_CENTER = float2(0.5f, 0.57f);
// In precent of screen size. Since most monitors are not 1:1 aspect ratio most often you will
// choose your height was the percent value then you take the pixel value of that percentage and
// divide that by your screen width.
//
// Example: Resolution = 1920x1080
// You want the eye to be 85% the size of 1080. You take 1080*.85=918, now to figure out same
// size width take 918/1920=0.4781. Now your circle will be the same width and height.
//
// Here are the some numbers for different common aspect-ratios:
// 4:3 = 1.333 -> Triplehead 4:3 = 4
// 5:4 = 1.25 -> Triplehead 5:4 = 3.75
// 16:10 = 1.6 -> Triplehead 16:10 = 4.8
// 16:9 = 1.78 -> riplehead 16:9 = 5.333
//
// First value is for width second for height:
//
//const float2 EYE_SIZE = float2(0.5344f, 0.95f);
const float2 EYE_SIZE = float2(0.5906f, 1.05f);
// How much to scale the image in RENDER_MODE=1. Anything greater then 20% is a bit crazy!
const float EYE_SCALE = 0.19f;
// Min value to multiply noise.
const float NOISE_MIN =
{
0.5f, // A-10C
0.75f // KA-50
};
// Max value to multiply noise.
const float NOISE_MAX =
{
0.5f, // A-10C
0.75f // KA-50
};
// Color to use for NVGs.
const float2x3 COLORIZE_COLOR =
{
{0.65f, 1.00f, 0.35f}, // A-10C
{0.2f, 0.46f, 0.22f} // KA-50
};
// Based on the NVG magnification the image is lifted by this.
// (COLORIZE_COLOR * nvgmag) * this
const float NVG_COLOR_LIFT =
{
0.175f, // A-10C
0.175f // KA-50
};
// Changes the Circle rendering mode.
//
// 0 = Circle without zoom
// 1 = Circle with zoom
// 2 = Fullscreen without zoom.
//
const int RENDER_MODE = 1;
// Enables a slight distortion along the edges of the NVG glass.
const bool ENABLE_RIM_DISTORT = true;
// Changes the blur rendering mode.
//
// 0 = Use default game blur
//
// Not yet implemented
//
const int NVG_INNER_BLUR_MODE = 0;
------------------
- Changes
------------------
verison 1.0v4b2:
* Fixed a bug that use incorrect translations coords in RENDER_MODE=1 for users of multi-display
setups.
* Fixed a bug that rendered the IR laser outside the NVG area. Also made it so that the IR laser no
longer uses a texture file to define the NVG area mask. Just like the NVG area the IR laser uses
a on the fly generated mask.
* Reverted the feature that when the NVG gain was set to 0 the NVG area would render like binoculars
instead of drawing black.
version 1.0v2:
* Changed NVG Shape.
* Tweaked NVG color. Noise no longer affects bright illuminated areas and its affect
increases/decreases with the NVGs sensitivity setting as well.
* Added lens distortions to the rim of the NVG Glass.
* Added a few more configuration variables.
MOD 009
苏机座舱细节包
说明:增加文理细节 包含(27、33、25)
下载地址:
http://download863.mediafire.com ... kpitsHDTextures.zip
MOD 010
SU25/25T 声音包
发动机、航炮声音都有所变化
视频地址:https://www.youtube.com/watch?fe ... edded&v=Io0l4Hag0Gg
下载地址:85.25.100.192/DCS/Mods/=STP=%20Isegrims%20SU-25_%20SU-25T%20Soundmod.rar
MOD 011
K50 座舱细化包
说明: 座舱细化,支持4096x2048 分辨率
下载地址:http://www.digitalcombatsimulator.com/en/files/602926/
MOD 012
地面沙漠化MOD
说明: 使用方法较为复杂,有兴趣的飞友可以看: http://forums.eagle.ru/showthread.php?t=121524
下载链接如下:https://drive.google.com/file/d/0B31Ed4Wn1_E2d05qWmxEaFFtRUE/edit
本帖最后由 johnnyr73 于 2014-10-31 02:03 编辑
MOD 013
25座舱细化及光影效果包
说明:复制到XX\Eagle Dynamics\DCS World\Mods\aircrafts\Su-25T\Cockpit\Resources\Model\Textures
下载地址: 左图:https://drive.google.com/file/d/0Bzy06scTcPcnbm5KQ01LUnNNUnM/edit
右图:https://drive.google.com/file/d/0Bzy06scTcPcncFBpY2FxNVJPYWs/edit
MOD014
MIG 21英文座舱包
下载地址:
MOD 015
FW190 黑色金属座舱模型
下载地址:http://www.digitalcombatsimulator.com/en/files/777127/
MOD 016
MK82 炸弹高清模型
下载地址:http://www.digitalcombatsimulator.com/en/files/827447/
本帖最后由 johnnyr73 于 2014-10-31 02:22 编辑
MOD 017
A10C 蛇纹涂漆
下载地址:http://www.lockonfiles.com/files/file/2102-dcs-a-10c-snake-skin-by-4cgrom/
MOD 018 小合辑
1. Real Sound (A10C航炮声音)- http://www.lockonfiles.com/files/fil...und-dcs-a-10c/
2. Worn HD Cockpit, by Ricardo(A10C高清座舱) - http://www.lockonfiles.com/files/fil...-horse-of-war/
3. Diveplane's GAU-8 Sound(A10C航炮声音包(官网)) - http://www.digitalcombatsimulator.com/en/files/431050/
4. Diveplane's Improved Sun(亲测无效=。=) - http://www.digitalcombatsimulator.com/en/files/202346/
5. Rockwelder's TDAC Terrain & Tees(地面树木 细化补丁) - http://forums.eagle.ru/showthread.php?t=89199
6. PeterP's HDR(阳光下 座舱和HUD会变清晰) - http://www.digitalcombatsimulator.com/en/files/374966/
MOD 018
MOD大神合辑包
包含很多东西 不在此一一列举
官网链接: http://www.digitalcombatsimulator.com/en/files/?arrFilter_pf=&arrFilter_pf=&arrFilter_pf=&arrFilter_pf=&arrFilter_CREATED_USER_NAME=chsubzero&set_filter=Filter&set_filter=Y
MOD 019
美军‘真实’ 徽章补丁
下载地址: http://www.digitalcombatsimulator.com/en/files/487992/
MOD 020
座舱地图辅助模型
说明 : 覆盖至 XX\Eagle Dynamics\DCS World\Config\MonitorSetup\ (貌似只能单机用,没有测试过)
下载地址: http://www.digitalcombatsimulator.com/en/files/339334/
本帖最后由 johnnyr73 于 2014-10-31 08:49 编辑
MOD 020
港口简化包
说明:简化港口设施。 貌似用处不大=。=
下载地址:
MOD 021
F16可操控补丁
说明: 可以飞行的F-16A(美国)和F-16A MLU(比利时、丹麦、意大利、挪威、荷兰)
下载地址: http://www.digitalcombatsimulator.com/en/files/772204/
MOD 022
3D膝板
说明: 可用于 UH1、P51D 和FC3不支持A10C和K50
And each module has a modified DCSWorld\Mods\aircrafts\>module<\Cockpit\Scripts\device_init.luato 'reroute' the calls for the Kneeboard to my new folder "KNEEBOARD_MOD_PeterP".
支持 DCS 1.2.6 以前的版本。 目前有没有用还没有测试
下载地址:www.digitalcombatsimulator.com/upload/iblock/a83/KNEEBOARD_Tablet_Mod_PP_1.02_for%20DCSWORLD_1.2.5.rar
MOD 023
UH1 和 MI8 座舱污垢减少 补丁
说明:减少玻璃上的污垢
下载地址: UH1: http://www.digitalcombatsimulator.com/en/files/777142/
MI8: http://www.digitalcombatsimulator.com/en/files/777143/
本帖最后由 johnnyr73 于 2014-10-31 21:17 编辑
MOD 024
SU27 英文座舱MOD
原帖地址:http://forums.eagle.ru/showthread.php?t=127792
下载地址: http://www.digitalcombatsimulator.com/en/files/757827/
MOD 025
直升机集合包
说明:可以开全部 直升机机种, 座舱为K50 座舱
拷贝K50文件夹,重命名为Apache并复制到 XX\DCS World\Sounds\Speech\Sound\ENG
下载地址:1. AH-64A Apache / Apache in ME
原帖地址:http://forums.eagle.ru/showthread.php?t=98921
1. AH-64A Apache / Apache in ME
Download link: http://www.mediafire.com/download.php?4kgvo6o3d54mcvj
----
2. Mi-24v / Hind in ME
Mi-24v with some new skins, working shturms
Download link: http://www.mediafire.com/download.php?77elo1sg35axqzo
---
3. AH-1WCobra / Cobrain ME
Download link:http://www.mediafire.com/download.php?e9nqu2ptadnnzb6
---
4. Mi-28N / Havoc in ME
Download link: http://www.mediafire.com/download.php?o4ddt99baedxfg9
5. OH-58D / Kiowa in ME
Download link: http://www.mediafire.com/download.php?ll9f2p7a78im7d1
6. Mi-8MT / Mi-8 in ME
Download link: http://www.mediafire.com/download.php?ewcct5f888qx58z
MOD 026
27/29 系列介绍图签
说明:包含所有国家使用的 所有中队,所有孪生型号的 图签 (非MOD,均为介绍)
原帖:SU27系列: http://www.mars.slupsk.pl/fort/sukhoi/default.htm
MIG29系列: http://www.mars.slupsk.pl/fort/mig/
占楼7 占楼8 占楼9