骑马与砍杀中文站论坛

标题: 关于游戏闪退的一些方案(持续更新) [打印本页]

作者: huagao    时间: 2022-4-24 18:55
标题: 关于游戏闪退的一些方案(持续更新)
本帖最后由 huagao 于 2025-3-23 21:43 编辑

本文仅针对win10系统下的调试自检,均为本人的个人经验和认知,才疏智短,难免有误。如发现文中某处有错误之处,烦请指点雅正,不胜感激。

先针对最常见的 c++报错  和  rgl error  讲一下:
1.一般来说,如果是缺少组件控件,是进不去游戏的,即你在准备进入游戏时提示你缺少dll组件之类的;
2.如果你是游戏中途闪退,例如战场内闪退或渲染场景时闪退,那么大概率是内存调用或者渲染上的问题。建议重点检查,参考本帖 第二条《本地环境导致的内存问题》或 第三条《关于渲染/阴影/buffer 之类的弹框报错》。

一.运行库或组件问题
一般会有关于dll组件或ocx控件的弹框提示。
解决办法:
1.转去steam
Steam安装游戏时可以获取到需要的本地环境要求并同步配置
2.组件修复
自己找一下相关的修复工具或者针对某控件组件手动下载补充,注意不要去一些奇怪的地方下,建议去csdn或者其他技术论坛寻找,另外关于这种windows组件工具类的下载可以看一下是否有申明全部DX文件都有Microsoft的数字签名.
注意:在修复后仍然得不到改善的话
可以尝试在命令行cmd窗口(最好以管理员身份运行命令提示符窗口)
输入以下命令:
for %1 in (%windir%\system32\*.dll) do regsvr32.exe /s %1
即重新注册系统dll文件


二.本地环境导致的内存问题(非cache缓存)
游戏发生闪退时可以先检查骑砍战团根目录的运行日志(即rgl_log.txt,最好不要参考多年前的骑砍优化方案对此文件进行只读设置,它不会占用你多少资源)
1.   microsoft visual C++ runtime library问题:勾选“需要时载入纹理”。
2.    兼容性运行问题:
首先看系统环境的反馈,如果你的本地系统是win10,但日志内说明(os行)为win7或ram内存调用限制仅为1024MB,大概率是你开了兼容运行。百度让你兼容性运行其实不靠谱的!
解决办法:自己去exe的属性里面关掉兼容性运行。
3.     本地环境配置问题:
如果系统环境设置没有问题,再检查内存调用,即ram行,观察读数应为
xxxxMB/4096MB   即  可调用物理内存大小 / 允许调用的内存上限
此处xxxx即为本地支持调用的实际内存,默认小于等于4095。若此处值过小,也可考虑设置虚拟内存来扩充,此处需注意:
并不是说在设置完以后你的虚拟内存可以全部作用于骑砍的程序。 当程序运行时,若系统可调用的物理内存不足,系统会调用虚拟内存,很多汽油的虚拟内存设置是跟着不靠谱教程走的,c盘给一点,然后用其他盘符设置分页文件来补充。但实际上系统调用时会按照优先级仅调用c盘的虚拟内存区,导致很多汽油明明总分页文件大小拉满,但实际上运行时调用不到磁盘上其他盘符的空间作为内存。只考虑骑砍的话分页文件大小不必按百度教程所谓的实际物理内存的2倍,一般推荐值如果能到2048及以上就够了。

这里提供一个我个人的研究测试方法,仅供参考,在mod.ini里面加上
  1. use_scene_unloading = 1                        
  2. use_texture_degration_cache = 1
  3. reduce_texture_loader_memory_usage = 1
复制代码
原理详见我的帖子花糕滴小知识——module.ini篇


三.关于渲染/阴影/buffer 之类的弹框报错
首先笔记本玩家检查一下是不是电池供电在玩,或者是用的集显,这个在运行日志的gpu行可以看
这类报错(RGL ERROR等)常见于:
1.场景物/武器贴图问题,检查是否是因为自己导入一些模型贴图;
2.战场人数太大,可以尝试尸体数目和布娃娃数目调小,战场人数调小一点;
3.配置过低导致的资源不足,骑砍战团确实不吃配置,但是不能保证mod对于运行环境没有要求,可以尝试在启动器的配置里面将阴影质量调低,启用需要时加载纹理等。掉帧严重或者因为渲染闪退频繁可以考虑dx7;


四.游戏文件缺失
Unable to open xxxx file(dds或brf文件)
这种就是模型或者贴图文件有损坏或丢失了,要么你战团的文件有问题(验证完整性),要么就是mod下载出错,可以看一下报错文件的路径,重新下载找到对应的文件丢进去就好了。
Unable to open xxxx file(txt文件)
Mod文件缺失,重新下载或解压。


五.不能为read/write报错
原因分析:
该报错很多游戏都很常见,其实这个机翻并不准确,实际上是“某内存无法读取/写入数据”。大概率还是系统,软件冲突的问题,极少数情况是你内存条坏了或者有灰尘什么的影响到了插口。
一般无法读取是发生资源死锁或溢出就会报错;无法写入一般是内存分配出了问题,系统函数返回为0。有的说法是和驱动或dx组件有关,但是本人感觉关系不大。
解决办法:
1.首先检查一下是否近期安装过办公软件,尤其是数字签名里面有Citrix即思杰软件的,citrix workplace是真的坑人……
2.然后就是按个排查,是否最近安装了其他破解盗版游戏或者来路不明的软件,很多这种野路子软件本身或附带的捆绑进程会更改很多系统参数和系统文件
3.更新一下各类组件驱动,详情参考:一.运行库或组件问题内的解决办法。
4.下一个内存检测工具(如MediaCreationTool)看看是不是硬件问题
5.个人经历:若不能为written,即不能写入数据报错,有可能是内存不足的问题,可以酌情设置虚拟内存,若已设置,可以适量拉大一点


六.音频报错(Audiosystem was not initalizd)

常见于音频驱动或游戏设置或本地设置有问题时。
解决办法:
1.音频设置里 “禁用前面板插孔检测”
2.检查一下声卡驱动的更新;
3.换个设备,比如插个耳机什么的,
4.若都没效果,最后的将就办法,在骑砍的启动器设置里面把音效声音什么的都关掉。


七.ErrorloadingpostFX shaders报错

常见于两种原因:
1. DirectX问题。
2. Mod或者骑砍本体的着色器文件 postfx.fx问题。
解决办法:
1. Dx问题:自检的话可以在win+r输入dxdiag,点击确定进入windows的dx诊断工具界面检查版本,修复的话一般dx版本问题windows更新就会正常更新。
2. 着色器文件问题:首先检查一下mod文件夹里面有没有自带的postfx.fx着色器文件,如果有的话,备份一下该文件然后在mod里面删掉。如果没有,就需要看看是不是战团本体的问题了,可以重装或者验证一下文件完整性。该文件是设置一些着色渲染的,调色啊环境光照之类的,有的mod作者调整了其中的参数,但是可能由于一些玩家的本地环境问题会报错,只能暂时删除,默认战团本体的着色器文件了。如果删除掉之后进游戏觉得光照什么的怪怪的,可以试一试用native的postfx.txt替换过去,同样记得备份原文件;如果删掉了之后直接在加载界面闪退,请恢复原文件,参照战团的自己修改一下。

八.部分没有把握的推测
1.关于assertionfailed弹窗
该报错很少见于骑砍,我本人大部分是在unity游戏里见过,微软那边查的说法是一般和野指针的释放 或者openal32的的dll组件有关,但实际经验感觉有时候显卡过热降频,或者破解版启动器也会导致该弹窗。
解决办法:系个人经验,玄学成功率。要么忽视,要么找一下旧版本的openal32组件替换
注:最近发现疑似场景问题也会触发该弹框,如忽视后进入混乱场景,建议向mod作者反馈

2.关于renderbuffersize
此处谈一下render_buffer_size这个参数
之前看到凉大提起这个后就去看了一下,因为烤肉社可以参考的资料太少,类比了一下opengl的一些renderbuffer函数和缓冲区结构。
应该是类似于rbo对象的操作,通俗地讲在骑砍游戏就属于利用内存对显存的渲染的补偿作用,所以如果要改动的话,可以设置一下虚拟内存加以辅助,但是考虑到现存和内存在数据交换的带宽需求不一致,这种内存的补偿应该在游戏中的加载速度会慢一些。


九.部分新汽油容易出的问题
1.关于Unrecognizedresource type rfver弹窗
两种情况,要么你用了原版的游戏本体加载的战团的mod,要么是自己导入了旧时代的模型啥的。

2.关于进入游戏后字体乱码
大概率是把mod内的文件覆盖到战团本体的根目录了

3.神器没有词条和五行属性了/npc信息没了等等
一般是因为上一次游戏中,没有正常退出,电脑直接断电造成得。


作者: huagao    时间: 2022-4-27 11:58
本帖最后由 huagao 于 2022-6-1 23:45 编辑

[strike]附加更新内容[/strike]
附加内容已合并。虽然我确实写这种东西写的不是很容易理解,一大段一大段的看起来着实不易,但还是希望遇到问题的汽油先自行参考,可以自己解决是最好的。



作者: 祥子.    时间: 2022-4-27 12:51
很重要,真的很重要。楼主大大牛牛牛~
作者: weichangde    时间: 2022-4-27 13:10
我现在闪退的原因就是1.队伍里有杜兴,2.贴图错误直接闪退,比如某些武器装备3.刷档太快
作者: huagao    时间: 2022-4-27 13:30
weichangde 发表于 2022-4-27 13:10
我现在闪退的原因就是1.队伍里有杜兴,2.贴图错误直接闪退,比如某些武器装备3.刷档太快

SL太频繁,开始掉帧的时候大退一次,重新进就好了
作者: weichangde    时间: 2022-4-27 14:19
huagao 发表于 2022-4-27 13:30
SL太频繁,开始掉帧的时候大退一次,重新进就好了

这经常刷档肯定有所了解,主要还是杜兴bug到现在还没修
作者: 狂野骑士    时间: 2022-4-27 14:31
优化材质Optimizer Textures真心有用,没优化之前最多爽两个小时,优化后尽情砍戳五六个钟,用了都说好
作者: 风不来    时间: 2022-4-27 14:37
真不错,感谢lz
作者: 坑人坑爹坑队友    时间: 2022-4-27 22:55
huagao 发表于 2022-4-27 11:58
先占一楼,以后更新用

问一下跳出显示out of video memory咋整?我显卡内存8G了应该不至于显存不够吧
作者: huagao    时间: 2022-4-28 00:08
坑人坑爹坑队友 发表于 2022-4-27 22:55
问一下跳出显示out of video memory咋整?我显卡内存8G了应该不至于显存不够吧

是不是win7 32位的,不是的话去检查一下是不是兼容性运行了
作者: 谢部    时间: 2022-4-28 02:03
感谢分享,受益良多!
作者: 坑人坑爹坑队友    时间: 2022-4-28 12:44
huagao 发表于 2022-4-28 00:08
是不是win7 32位的,不是的话去检查一下是不是兼容性运行了

win10的,之前是开了兼容性,玩别的MOD时候开的,昨晚调整了一下好像可以了
作者: huagao    时间: 2022-4-28 14:11
坑人坑爹坑队友 发表于 2022-4-28 12:44
win10的,之前是开了兼容性,玩别的MOD时候开的,昨晚调整了一下好像可以了

不要兼容性运行。。影响内存调用的
作者: 坑人坑爹坑队友    时间: 2022-4-28 21:09
huagao 发表于 2022-4-28 14:11
不要兼容性运行。。影响内存调用的

多谢大佬
作者: 祥子.    时间: 2022-4-30 15:10
请问这个怎么解决
20220430151037front2_0_3353301_Fiid6y3qmDprAaavt1PbBU2AL03U.jpg

作者: 祥子.    时间: 2022-4-30 16:20
祥子. 发表于 2022-4-30 15:10
请问这个怎么解决

关键还就水浒跳这个,别的都不跳。
作者: huagao    时间: 2022-4-30 18:02
祥子. 发表于 2022-4-30 16:20
关键还就水浒跳这个,别的都不跳。

那估计是本地设置的什么问题了,你自己看看运行日志先
作者: 祥子.    时间: 2022-4-30 22:01
huagao 发表于 2022-4-30 18:02
那估计是本地设置的什么问题了,你自己看看运行日志先

系统装错了,装成32位了。换成64了。但是解压的时候提示我。
作者: 祥子.    时间: 2022-4-30 22:02
huagao 发表于 2022-4-30 18:02
那估计是本地设置的什么问题了,你自己看看运行日志先


20220430220116front2_0_3353301_FvqfeJ89GVOTAiT9KeTtANRf-j2m.jpg

作者: huagao    时间: 2022-5-1 00:25
祥子. 发表于 2022-4-30 22:02

你这是现在的mod压缩包啊。。。不关游戏的事啊。。。
作者: 祥子.    时间: 2022-5-2 03:02
huagao 发表于 2022-5-1 00:25
你这是现在的mod压缩包啊。。。不关游戏的事啊。。。

就在中文站里面下载的啊
作者: huagao    时间: 2022-5-2 13:22
祥子. 发表于 2022-5-2 03:02
就在中文站里面下载的啊

我的意思是,你游戏过程中的闪退的话去游戏的运行日志看啊,你贴个mod文件的下载干啥。。。
作者: Schweigen    时间: 2022-5-11 01:11
玩风云三国写实版打建业卡退4次…玩这游戏攻城都是提心吊胆生怕闪退了…搞不懂哪里有问题…系统win10 64 16g
作者: huagao    时间: 2022-5-11 07:29
Schweigen 发表于 2022-5-11 01:11
玩风云三国写实版打建业卡退4次…玩这游戏攻城都是提心吊胆生怕闪退了…搞不懂哪里有问题…系统win10 64 16 ...

自己检查一下运行日志吧。。。实际的资源调用和你的配置是不一样的。。
作者: Schweigen    时间: 2022-5-11 10:41
huagao 发表于 2022-5-11 07:29
自己检查一下运行日志吧。。。实际的资源调用和你的配置是不一样的。。

看了下那个记录日志,那个内存确实是4095…那应该没问题,不过我听说风三写实版就是2.76版本,就是基于战团1.154版本开发的,那现在战团都1.174版本了…不会是因为版本不匹配吧…难道其他玩风三不卡退吗
作者: huagao    时间: 2022-5-11 11:41
Schweigen 发表于 2022-5-11 10:41
看了下那个记录日志,那个内存确实是4095…那应该没问题,不过我听说风三写实版就是2.76版本,就是基于战 ...

一般战团是向下兼容的,风三这个我确实就不清楚了,会不会是渲染或者场景的问题
作者: bdc123    时间: 2022-5-24 21:04
前期还好,400天后疯狂闪退,基本都是战场闪退
作者: Showtimezxd    时间: 2022-6-19 01:49
我这两天重新下载了无双三国 只要点击面见村长或和武将聊天就闪退 我win 10 然后就是直接闪退出来 啥报错都没有。 怎么搞哦
作者: huagao    时间: 2022-6-19 02:12
Showtimezxd 发表于 2022-6-19 01:49
我这两天重新下载了无双三国 只要点击面见村长或和武将聊天就闪退 我win 10 然后就是直接闪退出来 啥报错都 ...

无双三国不清楚。
但是你说的这个情况很像凉大之前在0.962水浒更新日志里面提到过的 关于大宋血与钢系列装备模型动作绑定 问题所导致的闪退情况。
具体的可以去凉大的更新日志里面找,我记得是因为装备绑定动作的问题,所以在对话等界面会闪退。
作者: Showtimezxd    时间: 2022-6-19 04:59
huagao 发表于 2022-6-19 02:12
无双三国不清楚。
但是你说的这个情况很像凉大之前在0.962水浒更新日志里面提到过的 关于大宋血与钢系列 ...

可以给个link吗 谢谢。
作者: 香蕉骑士    时间: 2022-7-8 20:11
win10
点了应用程序,转了几圈没反应
这种一般是什么问题
作者: huagao    时间: 2022-7-8 21:10
香蕉骑士 发表于 2022-7-8 20:11
win10
点了应用程序,转了几圈没反应
这种一般是什么问题

steam的就从根目录启动,非steam玩家就检查一下你是不是Windefender或者其他杀软把进程拦截了。
作者: Jun1an-    时间: 2022-7-8 21:45
本帖最后由 Jun1an- 于 2022-7-8 23:05 编辑

我想问一下,已经改了虚拟内存运行,可是rgl里面还是显示RAM: Available physical RAM: 1023MB/1024MB 怎么办确认没有开兼容运行,i7处理器,16g内存

作者: 17543736227    时间: 2022-7-8 23:26
Starting new log file.
Version:  1.167

-- OS: Microsoft  (build 9200), 64-bit
-- RAM: Available physical RAM: 4095MB/4096MB
-- CPU: 11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz (GenuineIntel)
- L2 cache size: 256K
- CPU Features: FPU MMX SSE SSE2 SSE3 SSSE3 EST HTT
- Number of CPUs: 16 ( Speed: ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz )

-- GPU:
- D3D9 Adapter: 0 / Driver: nvldumd.dll / Description: NVIDIA GeForce RTX 3060 Laptop GPU
- Texture Memory: 4095 ( Available Texture Memory: 4056 )


Processing Ini File {
Module_name =  Calradia
Num Hints =  12
Setting Map Min X =  -250.000000
Setting Map Max X =  250.000000
Setting Map Min Y =  -250.000000
Setting Map Max Y =  250.000000
Setting Time Multiplier =  0.250000
Setting Seeing Range Multiplier =  6.500000
Setting Track Spotting Multiplier =  0.800000
Setting player_wounded_treshold =  5.000000
Setting hero_wounded_treshold =  15.000000
Setting Skill Prisoner Management Bonus =  5
Setting Skill Leadership Bonus =  3
Setting Base Companion Limit =  20
Setting player_xp_multiplier =  2.000000
Setting hero_xp_multiplier =  2.000000
Setting regulars_xp_multiplier =  3.000000
Setting damage_interrupt_attack_treshold =  3.000000
Setting damage_interrupt_attack_treshold_mp =  1.000000
Setting armor_soak_factor_against_cut =  0.800000
Setting armor_soak_factor_against_pierce =  0.650000
Setting armor_soak_factor_against_blunt =  0.500000
Setting armor_reduction_factor_against_cut =  1.000000
Setting armor_reduction_factor_against_pierce =  0.500000
Setting armor_reduction_factor_against_blunt =  0.750000
Setting horse_charge_damage_multiplier =  1.000000
Setting couched_lance_damage_multiplier =  0.650000
Setting fall_damage_multiplier =  1.000000
Setting shield_penetration_offset =  30.000000
Setting shield_penetration_factor =  3.000000
Setting missile_damage_speed_power =  1.900000
Setting melee_damage_speed_power =  2.000000
Setting multiplayer_walk_enabled =  0
Scan Module Textures =  1
Scan Module Sounds =  0
Loading Resource  test
Loading Resource  textures_face_gen
Loading Resource  shaders
Loading Resource  textures
Loading Resource  materials
Loading Resource  materials_face_gen
Loading Resource  uimeshes
Loading Resource  meshes_face_gen
Loading Resource  helpers
Loading Resource  map_tree_meshes
Loading Resource  map_icon_meshes
Loading Resource  particle_meshes
Loading Resource  skeletons
Loading Resource  tree_meshes
Loading Resource  xtree_meshes
Loading Resource  grass_meshes
Loading Resource  plant_meshes
Loading Resource  body_meshes
Loading Resource  object_meshes
Loading Resource  object_bodies
Loading Resource  goods_meshes
Loading Resource  item_meshes1
Loading Resource  horse_a
Loading Resource  arabian_horses
Loading Resource  arabian_castle
Loading Resource  food
Loading Resource  beards
Loading Resource  armors_b
Loading Resource  armors_c
Loading Resource  armors_d
Loading Resource  armors_e
Loading Resource  armors_f
Loading Resource  armors_g
Loading Resource  armors_h
Loading Resource  armors_i
Loading Resource  boots_b
Loading Resource  boots_c
Loading Resource  helmets
Loading Resource  helmets_b
Loading Resource  village_houses
Loading Resource  village_houses_a
Loading Resource  village_houses_b
Loading Resource  hair
Loading Resource  deneme
Loading Resource  interiors_a
Loading Resource  interiors_b
Loading Resource  interiors_c
Loading Resource  arena
Loading Resource  map_icons_b
Loading Resource  castle_a
Loading Resource  dungeon
Loading Resource  stone_houses
Loading Resource  snowy_houses
Loading Resource  snowy_castle
Loading Resource  helmets_d
Loading Resource  helmets_e
Loading Resource  helmets_f
Loading Resource  castle_b
Loading Resource  square_keep
Loading Resource  anim_b
Loading Resource  shields
Loading Resource  shields_b
Loading Resource  weapon_meshes_c
Loading Resource  xtree_meshes_b
Loading Resource  map_icons_c
Loading Resource  pictures
Loading Resource  user_interface_b
Loading Resource  user_interface_c
Loading Resource  scene_encounter_spot
Loading Resource  interior_thirsty_lion
Loading Resource  scene_small_tavern
Loading Resource  weapon_meshes1
Loading Resource  weapon_meshes_b
Loading Resource  houses1
Loading Resource  wall_meshes1
Loading Resource  town_houses
Loading Resource  doors
Loading Resource  churches
Loading Resource  town_houses_b
Loading Resource  castle_c
Loading Resource  castle_d
Loading Resource  castle_e
Loading Resource  castle_f
Loading Resource  castle_g
Loading Resource  castle_h
Loading Resource  castle_i
Loading Resource  gatehouse
Loading Resource  viking_houses
Loading Resource  fake_houses
Loading Resource  town_houses_c
Loading Resource  banners
Loading Resource  map_flags
Loading Resource  map_flags_b
Loading Resource  map_flags_c
Loading Resource  map_flags_d
Loading Resource  particles_2
Loading Resource  prisons
Loading Resource  prisons_b
Loading Resource  interiors_d
Loading Resource  costumes_b
Loading Resource  costumes_c
Loading Resource  arena_costumes
Loading Resource  boots_a
Loading Resource  terrain_borders
Loading Resource  terrain_borders_b
Loading Resource  skyboxes
Loading Resource  object_b
Loading Resource  tree_e_meshes
Loading Resource  destroy
Loading Resource  xtree_meshes_c
Loading Resource  grass_meshes_b
Loading Resource  interiors_steppe
Loading Resource  grooming_horse
Loading Resource  town_houses_d
Loading Resource  horses_b
Loading Resource  ani_horse_mounted
Loading Resource  deneme2
Loading Resource  horse_skeleton
Loading Resource  steppe_fake_houses
Loading Resource  weapon_meshes_d
Loading Resource  tableau_shields
Loading Resource  heraldic_armors
Loading Resource  spear
Loading Resource  weapons_e
Loading Resource  weapons_f
Loading Resource  instruments
Loading Resource  sarranid_armors
Loading Resource  custom_banner
Loading Resource  simple_primitives
Loading Resource  ani_man_walk
Loading Resource  ani_twohanded
Loading Resource  ani_onehanded
Loading Resource  ani_death
Loading Resource  ani_stand_guardsman
Loading Resource  ani_human_mounted
Loading Resource  ani_lady_stand
Loading Resource  ani_poses
Loading Resource  ani_stand_shopkeeper
Loading Resource  ani_man_cheer
Loading Resource  ani_stand_onhorse
Loading Resource  ani_throw_stone
Loading Resource  ani_strikes
Loading Resource  ani_equip_arms
Loading Resource  ani_run_p
Loading Resource  ani_run_forward_left_right
Loading Resource  uni_strikes3
Loading Resource  ani_walk_sideways
Loading Resource  ani_run_sideways
Loading Resource  ani_stand
Loading Resource  ani_crouch_down
Loading Resource  ani_low_walk
Loading Resource  ani_turn_man
Loading Resource  ani_attacks_single
Loading Resource  ani_lancer
Loading Resource  ani_attacks
Loading Resource  ani_kicks
Loading Resource  ani_parry_attack
Loading Resource  ani_walk_backward
Loading Resource  ani_run_lookingsides
Loading Resource  ani_defends
Loading Resource  ani_walk_lookingsides
Loading Resource  ani_jump
Loading Resource  ani_wedding
Loading Resource  arabian_props
Loading Resource  uni_jump
Loading Resource  uni_stances
Loading Resource  uni_equip
Loading Resource  uni_strike
Loading Resource  uni_throws
Loading Resource  uni_fistswing
Loading Resource  uni_lord_stand
Loading Resource  uni_defence
Loading Resource  uni_sideways
Loading Resource  dart
Loading Resource  armors_new_a
Loading Resource  armors_new_b
Loading Resource  armors_new_heraldic
Loading Resource  armors_new_arena
Loading Resource  crossbows
Loading Resource  arabian_armors
Loading Resource  rock
Loading Resource  costumes_d
Loading Resource  nordic_helmets
Loading Resource  sarranid_helmets
Loading Resource  sarranid_armor
Loading Resource  raw_materials
Loading Resource  khergit_lady_dress
Loading Resource  vaegir_helmets
Loading Resource  gauntlets_new
Loading Resource  sarranid_lady_dress
Loading Resource  sarranid_boots
Loading Resource  bride_dress
Loading Resource  full_plate_armor
Loading Resource  weapon_meshes_e
Loading Resource  fur_armors_a
Loading Resource  ui_server_filter
Loading Resource  warhorse_new
Loading Resource  ship
Loading Resource  arabian_houses
Loading Resource  object_c
Loading Resource  tree_f
Loading Resource  interiors_arabian
Loading Resource  arabian_village
Loading Resource  valleyProps
Loading Resource  workshops
Loading Resource  barrier_primitives
Loading Resource  town_houses_e
Loading Module Resource  pic_2

rgl_post_warning_line: get_object failed for texture: fysg_cheng_qiang15
rgl_post_warning_line: get_object failed for texture: fysg_cheng_qiang15_specular
rgl_post_warning_line: WARNING: Unable to find material dedal_kufel for mesh dedal_kufelR.1 Loading Module Resource  bfj

rgl_post_warning_line: get_object failed for texture: meiguotokc
rgl_post_warning_line: get_object failed for texture: castillion_pants_2
rgl_post_warning_line: get_object failed for texture: hat1_normalmap
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_officircap_bump
rgl_post_warning_line: get_object failed for texture: partizan_officircap_spec
rgl_post_warning_line: get_object failed for texture: partizan_uniform_bump
rgl_post_warning_line: get_object failed for texture: partizan_uniform_bump
rgl_post_warning_line: get_object failed for texture: partizan_uniform_bump
rgl_post_warning_line: get_object failed for texture: partizan_uniform_bump
rgl_post_warning_line: get_object failed for texture: partizan_uniform_bump
rgl_post_warning_line: get_object failed for texture: 1map_baolei1
rgl_post_warning_line: WARNING: Unable to find material qingjia1 for mesh qingjia_zenhuang2bj_Rx.lod2
rgl_post_warning_line: WARNING: Unable to find material kuei110 for mesh DaMing_helmet_101jglvs
rgl_post_warning_line: WARNING: Unable to find material kuei1101 for mesh 1qingkuei_zhong1dmw
rgl_post_warning_line: WARNING: Unable to find material Luying_Archers for mesh qingkueibianc1.1
rgl_post_warning_line: WARNING: Unable to find material cap_civilian for mesh _________cap_civilian
rgl_post_warning_line: WARNING: Unable to find material caps for mesh _________na_cap_8ra
rgl_post_warning_line: WARNING: Unable to find material caps for mesh _________na_cap_ca
rgl_post_warning_line: WARNING: Unable to find material caps for mesh _________na_cap_la
rgl_post_warning_line: WARNING: Unable to find material caps for mesh _________na_cap_gn
rgl_post_warning_line: WARNING: Unable to find material bal_rekrut for mesh vaegir_army_c2ggbhh_combined
rgl_post_warning_line: WARNING: Unable to find material helmetvietjet for mesh vaegir_army_c2ggbhh_combined
rgl_post_warning_line: WARNING: Unable to find material helmetvietjet for mesh bal_helmetbal_helmet
rgl_post_warning_line: WARNING: Unable to find material helmetvietjet for mesh bal_helmetbal_helmet.lod1
rgl_post_warning_line: WARNING: Unable to find material helmetvietjet for mesh bal_helmetbal_helmet.lod2
rgl_post_warning_line: WARNING: Unable to find material wb_helmets_for_warband for mesh caswazi_adrian
rgl_post_warning_line: WARNING: Unable to find material wb_helmets_for_warband for mesh caswazi_adrian.lod1
rgl_post_warning_line: WARNING: Unable to find material ja_uniform_yellow for mesh caswazi_adrian.3
rgl_post_warning_line: WARNING: Unable to find material a_capt_inf for mesh a_capt_infcaswazi_adrian
rgl_post_warning_line: WARNING: Unable to find material VaegirHelm for mesh cacommunist_adrian
rgl_post_warning_line: WARNING: Unable to find material VaegirHelm for mesh cacommunist_adrian.lod1
rgl_post_warning_line: WARNING: Unable to find material SwaziHelmet for mesh caswazi_tonny
rgl_post_warning_line: WARNING: Unable to find material SwaziHelmet for mesh caswazi_tonny.lod1
rgl_post_warning_line: WARNING: Unable to find material VaegirHelm for mesh cacommunist_tonny
rgl_post_warning_line: WARNING: Unable to find material VaegirHelm for mesh cacommunist_tonny.lod1
rgl_post_warning_line: WARNING: Unable to find material tank for mesh panzer_11
rgl_post_warning_line: WARNING: Unable to find material cannon for mesh cannon1
rgl_post_warning_line: WARNING: Unable to find material helmetvietjet for mesh bal_helmet.1
rgl_post_warning_line: WARNING: Unable to find material merc_prikaz_fura for mesh red_army_cap_brown4
rgl_post_warning_line: WARNING: Unable to find material vaegir_flakjacket for mesh gabqingjia_henlan.0
rgl_post_warning_line: WARNING: Unable to find material VaegirHelm for mesh neutral_het_1
rgl_post_warning_line: WARNING: Unable to find material VaegirHelm for mesh ____________neutral_het_1
rgl_post_warning_line: WARNING: Unable to find material VaegirHelm for mesh ____________neutrag_het_1
rgl_post_warning_line: WARNING: Unable to find material npla_2_uniform for mesh jfjfuzc1.1
rgl_post_warning_line: WARNING: Unable to find material npla_2_uniform for mesh jfjfuzc1.lod1.1
rgl_post_warning_line: WARNING: Unable to find material npla_2_uniform for mesh 8th_route_army_uniform.1
rgl_post_warning_line: WARNING: Unable to find material npla_2_uniform for mesh 8th_route_army_uniform.lod1.1
rgl_post_warning_line: WARNING: Unable to find material cap_civilian for mesh 1cap_civilian
rgl_post_warning_line: WARNING: Unable to find material caps for mesh 1na_cap_gn
rgl_post_warning_line: WARNING: Unable to find material caps for mesh 1na_cap_8ra
rgl_post_warning_line: WARNING: Unable to find material caps for mesh 1na_cap_ca
rgl_post_warning_line: WARNING: Unable to find material bljpartizan_officircap3B for mesh byjfm5_c
rgl_post_warning_line: WARNING: Unable to find material bljpartizan_officircap3B for mesh byjfm5_c1 Loading Module Resource  map_icon

rgl_post_warning_line: get_object failed for texture: 1map_icons_japan
rgl_post_warning_line: get_object failed for texture: 2map_icons_japan Loading Module Resource  map_icons_b1
Loading Module Resource  zw
Loading Module Resource  qingjia
Loading Module Resource  ozzs

rgl_post_warning_line: get_object failed for texture: mail_shirt_a1 Loading Module Resource  gwba

rgl_post_warning_line: WARNING: Unable to find material mao for mesh 1Hanguan31z.3
rgl_post_warning_line: WARNING: Unable to find material mao for mesh 1Hanguan31z
rgl_post_warning_line: WARNING: Unable to find material mao for mesh 1Hanguan31z.1
rgl_post_warning_line: WARNING: Unable to find material mao for mesh 1Hanguan31zz_combinedz Loading Module Resource  30nzz

rgl_post_warning_line: get_object failed for texture: 666621
rgl_post_warning_line: get_object failed for texture: Luying1_Archers
rgl_post_warning_line: get_object failed for texture: Luying1_Archers_n
rgl_post_warning_line: get_object failed for texture: Luying1_Archers_s
rgl_post_warning_line: get_object failed for texture: Qing001
rgl_post_warning_line: get_object failed for texture: Qing001_n
rgl_post_warning_line: get_object failed for texture: Qing001_s
rgl_post_warning_line: get_object failed for texture: armor_vijaynagri_helmroyal
rgl_post_warning_line: get_object failed for texture: DaMing_armor_03_n
rgl_post_warning_line: get_object failed for texture: DaMing_armor_04_s
rgl_post_warning_line: get_object failed for texture: trj_n
rgl_post_warning_line: WARNING: Unable to find material fysg_cheng_shishi for mesh 1yaopai01.2
rgl_post_warning_line: WARNING: Unable to find material huopao for mesh hpcs
rgl_post_warning_line: WARNING: Unable to find material tpao for mesh zzidao
rgl_post_warning_line: WARNING: Unable to find material tpao for mesh copy_zzidao
rgl_post_warning_line: WARNING: Unable to find material tpao for mesh copy_copy_zzidao
rgl_post_warning_line: WARNING: Unable to find material  for mesh siamelephant15
rgl_post_warning_line: WARNING: Unable to find material xangxoung17 for mesh siamelephant15.1
rgl_post_warning_line: WARNING: Unable to find material siamshield1 for mesh royal_shan_siamelephan.2
rgl_post_warning_line: WARNING: Unable to find material siamshield1 for mesh royal_shan_siamelephan.2
rgl_post_warning_line: WARNING: Unable to find material siamshield1 for mesh royal_shan_siamelephan.2
rgl_post_warning_line: WARNING: Unable to find material landsknecht_b for mesh 1cuirass_on_black2b
rgl_post_warning_line: WARNING: Unable to find material landsknecht_b for mesh 1cuirass_on_black2b.lod2
rgl_post_warning_line: WARNING: Unable to find material landsknecht_b for mesh 1cuirass_on_black2b.lod3
rgl_post_warning_line: WARNING: Unable to find material landsknecht_b for mesh copy_europe24z.2
rgl_post_warning_line: WARNING: Unable to find material landsknecht_b for mesh copy_europe24z.lod2.2
rgl_post_warning_line: WARNING: Unable to find material landsknecht_b for mesh copy_europe24z.lod3.2
rgl_post_warning_line: WARNING: Unable to find material landsknecht_b for mesh copy_plate_and_kilt0cz.1
rgl_post_warning_line: WARNING: Unable to find material landsknecht_b for mesh qsjzc.1
rgl_post_warning_line: WARNING: Unable to find material swed_civil_2 for mesh 1merc_musketeer_b
rgl_post_warning_line: WARNING: Unable to find material nogi_a for mesh 1merc_musketeer_b.1
rgl_post_warning_line: WARNING: Unable to find material rinda for mesh gambeso_combined
rgl_post_warning_line: WARNING: Unable to find material rinda for mesh gambeso_combined.lod1
rgl_post_warning_line: WARNING: Unable to find material rinda for mesh gambeso_combined.lod2
rgl_post_warning_line: WARNING: Unable to find material rinda for mesh rinda
rgl_post_warning_line: WARNING: Unable to find material rinda for mesh rinda.lod1
rgl_post_warning_line: WARNING: Unable to find material rinda for mesh rinda.lod2
rgl_post_warning_line: WARNING: Unable to find material mosk_civil1 for mesh mosk_civil1
rgl_post_warning_line: WARNING: Unable to find material mosk_civil1 for mesh mosk_civil1.lod1
rgl_post_warning_line: WARNING: Unable to find material mosk_civil1 for mesh mosk_civil1.lod2
rgl_post_warning_line: WARNING: Unable to find material mosk_civil2 for mesh mosk_civil2
rgl_post_warning_line: WARNING: Unable to find material mosk_civil2 for mesh mosk_civil2.lod1
rgl_post_warning_line: WARNING: Unable to find material mosk_civil2 for mesh mosk_civil2.lod2
rgl_post_warning_line: WARNING: Unable to find material pol_kuntush_pure_4 for mesh Pol_svitka_pure_d
rgl_post_warning_line: WARNING: Unable to find material pol_kuntush_pure_4 for mesh Pol_svitka_pure_d.lod1
rgl_post_warning_line: WARNING: Unable to find material pol_kuntush_pure_4 for mesh Pol_svitka_pure_d.lod2
rgl_post_warning_line: WARNING: Unable to find material Pol_svitka_pure_b for mesh Pol_svitka_pure_b.2
rgl_post_warning_line: WARNING: Unable to find material Pol_svitka_pure_b for mesh Pol_svitka_pure_b
rgl_post_warning_line: WARNING: Unable to find material Pol_svitka_pure_b for mesh Pol_svitka_pure_b.lod1
rgl_post_warning_line: WARNING: Unable to find material Pol_svitka_pure_b for mesh Pol_svitka_pure_b.lod2
rgl_post_warning_line: WARNING: Unable to find material Pol_svitka_rich_c for mesh Pol_svitka_rich_c
rgl_post_warning_line: WARNING: Unable to find material Pol_svitka_rich_c for mesh Pol_svitka_rich_c.lod1
rgl_post_warning_line: WARNING: Unable to find material Pol_svitka_rich_c for mesh Pol_svitka_rich_c.lod2 Loading Module Resource  wkk

rgl_post_warning_line: get_object failed for texture: 666621
rgl_post_warning_line: get_object failed for texture: Luying1_Archers
rgl_post_warning_line: get_object failed for texture: Luying1_Archers_n
rgl_post_warning_line: get_object failed for texture: Luying1_Archers_s
rgl_post_warning_line: get_object failed for texture: Qing001
rgl_post_warning_line: get_object failed for texture: Qing001_n
rgl_post_warning_line: get_object failed for texture: Qing001_s
rgl_post_warning_line: get_object failed for texture: kuei10_n
rgl_post_warning_line: get_object failed for texture: kuei10_s
rgl_post_warning_line: WARNING: Unable to find material samurai_nobori_heraldic for mesh rbkxdhghjkhs3.2
rgl_post_warning_line: WARNING: Unable to find material huafdds1 for mesh faguanHB
rgl_post_warning_line: WARNING: Unable to find material 1elfface_young_1.LOD for mesh syt+++++++++++++++++++++ Loading Module Resource  mq

rgl_post_warning_line: get_object failed for texture: DaMingj_armor_201
rgl_post_warning_line: get_object failed for texture: qingkuei_b_normalmap
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_specular
rgl_post_warning_line: get_object failed for texture: qingkuei_b_normalmap
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_specular
rgl_post_warning_line: get_object failed for texture: qingkuei_hong
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_normalmap
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_specular
rgl_post_warning_line: get_object failed for texture: qingkuei_hong
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_normalmap
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_specular
rgl_post_warning_line: get_object failed for texture: qingkuei_huang
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_normalmap
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_specular
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_normalmap
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_specular
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_normalmap
rgl_post_warning_line: get_object failed for texture: qingkuei_hong_specular
rgl_post_warning_line: get_object failed for texture: DaMing_armor_03_n
rgl_post_warning_line: get_object failed for texture: DaMing_armor_03_n
rgl_post_warning_line: get_object failed for texture: DaMing_armor_n
rgl_post_warning_line: get_object failed for texture: 1map_baolei1
rgl_post_warning_line: WARNING: Unable to find material DaMing_niaochong for mesh DaMing_armor_17w.2
rgl_post_warning_line: WARNING: Unable to find material DaMing_helmet_11 for mesh DaMing_armor_17w.2
rgl_post_warning_line: WARNING: Unable to find material DaMing_helmet_11 for mesh waMing_armor_01.2
rgl_post_warning_line: WARNING: Unable to find material DaMing_niaochong for mesh waMing_armor_01.3
rgl_post_warning_line: WARNING: Unable to find material weimarhelm for mesh aca
rgl_post_warning_line: WARNING: Unable to find material weimarhelm for mesh classichelm_plume
rgl_post_warning_line: WARNING: Unable to find material weimarhelm for mesh classichelm_plume.0
rgl_post_warning_line: WARNING: Unable to find material weimarhelm for mesh classichelm_plume.1
rgl_post_warning_line: WARNING: Unable to find material weimarhelm for mesh classichelm_plume.2
rgl_post_warning_line: WARNING: Unable to find material weimarhelm for mesh classichelm_plume.3
rgl_post_warning_line: WARNING: Unable to find material weimarhelm for mesh classichelm_plume.4 Loading Module Resource  qing

rgl_post_warning_line: get_object failed for texture: mongol_small_round_02
rgl_post_warning_line: get_object failed for texture: mongol_small_round_02_n
rgl_post_warning_line: get_object failed for texture: mongol_small_round_02_spec
rgl_post_warning_line: get_object failed for texture: mongol_small_round_01
rgl_post_warning_line: get_object failed for texture: mongol_small_round_01_n
rgl_post_warning_line: get_object failed for texture: mongol_small_round_01_spec
rgl_post_warning_line: get_object failed for texture: qing_jiang
rgl_post_warning_line: get_object failed for texture: qing_jiang_n
rgl_post_warning_line: get_object failed for texture: qing_jiang_s
rgl_post_warning_line: WARNING: Unable to find material qingjia_zenbe3 for mesh baqijia6--------------------
rgl_post_warning_line: WARNING: Unable to find material baqijia for mesh baqijia.7
rgl_post_warning_line: WARNING: Unable to find material qingjia_jiangjun for mesh --------------------------------
rgl_post_warning_line: WARNING: Unable to find material qingjia_jiangjun for mesh -----------------------------
rgl_post_warning_line: WARNING: Unable to find material shou_dao for mesh qing_zhandao_q_1 Loading Module Resource  qingz

rgl_post_warning_line: get_object failed for texture: sg_china_weapon_map
rgl_post_warning_line: get_object failed for texture: sg_china_weapon_spc Loading Module Resource  chaoxiani

rgl_post_warning_line: get_object failed for texture: yaodai_s
rgl_post_warning_line: get_object failed for texture: chaoxian_gunfu_n
rgl_post_warning_line: get_object failed for texture: chaoxian_bing_n
rgl_post_warning_line: get_object failed for texture: korean_infantrie_helmet12_n
rgl_post_warning_line: get_object failed for texture: korean_infantrie_helmet12_s
rgl_post_warning_line: get_object failed for texture: chaoxianyulin_n
rgl_post_warning_line: get_object failed for texture: chaoxianyulin_sp
rgl_post_warning_line: get_object failed for texture: chaoxian_suozijia_n
rgl_post_warning_line: get_object failed for texture: chaoxian_suozijia_s
rgl_post_warning_line: get_object failed for texture: chaoxian_suozijia2_n
rgl_post_warning_line: get_object failed for texture: chaoxian_suozijia2_s
rgl_post_warning_line: get_object failed for texture: chaoxianyulin_n
rgl_post_warning_line: get_object failed for texture: chaoxianyulin_sp
rgl_post_warning_line: get_object failed for texture: octotoad2_auv_n
rgl_post_warning_line: get_object failed for texture: octotoad2_auv_s
rgl_post_warning_line: get_object failed for texture: costume_korean01_n
rgl_post_warning_line: get_object failed for texture: costume_korean01_n
rgl_post_warning_line: get_object failed for texture: chaoxianyulin_n
rgl_post_warning_line: get_object failed for texture: chaoxianyulin_sp
rgl_post_warning_line: WARNING: Unable to find material 1manface_3 for mesh copy__combinedt Loading Module Resource  chaoxianyifu

rgl_post_warning_line: get_object failed for texture: korean_armor_2normalmap
rgl_post_warning_line: get_object failed for texture: mingjia_j444
rgl_post_warning_line: get_object failed for texture: qibingkuei444
rgl_post_warning_line: WARNING: Unable to find material song_mao for mesh baimao Loading Module Resource  zuqing

rgl_post_warning_line: WARNING: Unable to find material hliu for mesh copy_liuwen_combined
rgl_post_warning_line: WARNING: Unable to find material sam_common_hat for mesh copy_sam_yabusame
rgl_post_warning_line: WARNING: Unable to find material sam_common_hat for mesh copy_sam_yabusame.2
rgl_post_warning_line: WARNING: Unable to find material jingyiwei012 for mesh BZFS2.0
rgl_post_warning_line: WARNING: Unable to find material banruo for mesh shadow_mask.lod3.1 Loading Module Resource  zuqingmao
Loading Module Resource  japan_horse
Loading Module Resource  flintlock_weapons
Loading Module Resource  Summer

rgl_post_warning_line: get_object failed for texture: WPlatedCharger2n
rgl_post_warning_line: get_object failed for texture: WPlatedChargers
rgl_post_warning_line: get_object failed for texture: WPlatedCharger9n
rgl_post_warning_line: WARNING: Unable to find material sg_helm for mesh 1china_yanbian_helm_b Loading Module Resource  menggujia

rgl_post_warning_line: WARNING: Unable to find material mingjia4 for mesh ttr_seymenb.2
rgl_post_warning_line: WARNING: Unable to find material mingjia4 for mesh ttr_seymenb.lod1.2
rgl_post_warning_line: WARNING: Unable to find material mingjia4 for mesh ttr_seymenb.lod2.2
rgl_post_warning_line: WARNING: Unable to find material mingjia4 for mesh ttr_seymenb.lod3.2
rgl_post_warning_line: WARNING: Unable to find material mingjia4 for mesh ttr_seymenb.lod4.2 Loading Module Resource  menggu
Loading Module Resource  ming_jia

rgl_post_warning_line: get_object failed for texture: DaMing_armor_101
rgl_post_warning_line: get_object failed for texture: Wenguanfu_n
rgl_post_warning_line: get_object failed for texture: Wenguanfu_s
rgl_post_warning_line: get_object failed for texture: Youxia01_n
rgl_post_warning_line: get_object failed for texture: Youxia01_s
rgl_post_warning_line: get_object failed for texture: jingyiwei01_n
rgl_post_warning_line: get_object failed for texture: jingyiwei01_s
rgl_post_warning_line: WARNING: Unable to find material qibingkuei1 for mesh 1cw1copgkuei
rgl_post_warning_line: WARNING: Unable to find material qibingkuei1 for mesh 1cw1korea_qibingkuei2
rgl_post_warning_line: WARNING: Unable to find material qibingkuei3 for mesh 1cwcopgkuei
rgl_post_warning_line: WARNING: Unable to find material qibingkuei3 for mesh 1cwkorea_qibingkuei2
rgl_post_warning_line: WARNING: Unable to find material yifu-421js-xx for mesh DaMing_armor_03.2
rgl_post_warning_line: WARNING: Unable to find material qingkuei_1b for mesh copy_2DaMing_armor061
rgl_post_warning_line: WARNING: Unable to find material qingkuei_1b for mesh c1qingkuei_zhong1.2
rgl_post_warning_line: WARNING: Unable to find material yifu-421js-xx for mesh DaMing_armor_09.3
rgl_post_warning_line: WARNING: Unable to find material DaMing_armor_13a for mesh DaMing_armor_20.2
rgl_post_warning_line: WARNING: Unable to find material yifu-421js-xx for mesh DaMing_lingjia.2
rgl_post_warning_line: WARNING: Unable to find material jingyiwei01 for mesh DaMjingyiwei01na.1
rgl_post_warning_line: WARNING: Unable to find material yifu-421js-xx for mesh copy_DaMingJiea1.3
rgl_post_warning_line: WARNING: Unable to find material yifu-421js-xx for mesh copy_DaMing_armor_081.3
rgl_post_warning_line: WARNING: Unable to find material DaMing_helmet_12xx for mesh copy_DaMingbqibingku_combined
rgl_post_warning_line: WARNING: Unable to find material mingjia10 for mesh copy_mingjia1011.0
rgl_post_warning_line: WARNING: Unable to find material sg_woman for mesh fafadiaochan_a
rgl_post_warning_line: WARNING: Unable to find material xinqingkuei_hong for mesh _combined
rgl_post_warning_line: WARNING: Unable to find material mingjia10 for mesh mingjia1011
rgl_post_warning_line: WARNING: Unable to find material mingjia10 for mesh mingjia1011.0
rgl_post_warning_line: WARNING: Unable to find material mingjia10 for mesh mingjia1011.1
rgl_post_warning_line: WARNING: Unable to find material mingjia10 for mesh mingjia1011.2
rgl_post_warning_line: WARNING: Unable to find material jingyiwei04 for mesh wDaMing_armor_04.1
rgl_post_warning_line: WARNING: Unable to find material jingyiwei04 for mesh wDaMing_armor_04.lod2.1
rgl_post_warning_line: WARNING: Unable to find material jingyiwei04 for mesh wDaMing_armor_04.lod3.1
rgl_post_warning_line: WARNING: Unable to find material qingkuei_lang1 for mesh waqingkuei_lag
rgl_post_warning_line: WARNING: Unable to find material qingkuei_1lang for mesh waqingkuei_lang Loading Module Resource  mingj
Loading Module Resource  DaMing
Loading Module Resource  Mhanfu

rgl_post_warning_line: get_object failed for texture: Song_armor_n
rgl_post_warning_line: get_object failed for texture: sg_helm_normalmap
rgl_post_warning_line: get_object failed for texture: sg_helm_specular Loading Module Resource  yuanshi
Loading Module Resource  armor_yuanshibuluo
Loading Module Resource  xibanya_zb

rgl_post_warning_line: get_object failed for texture: mohhom_2_NM
rgl_post_warning_line: get_object failed for texture: mohhom_2_NM
rgl_post_warning_line: get_object failed for texture: mohhom_2_NM Loading Module Resource  lvsongfushi
Loading Module Resource  Hench

rgl_post_warning_line: get_object failed for texture: churburg_13_brass_normalmap
rgl_post_warning_line: get_object failed for texture: churburg_13_brass_specular Loading Module Resource  lvsong
Loading Module Resource  changqiang
Loading Module Resource  xibanyajia

rgl_post_warning_line: get_object failed for texture: steam_punk_clothes_three Loading Module Resource  xbyhqy

rgl_post_warning_line: get_object failed for texture: rinda
rgl_post_warning_line: get_object failed for texture: rinda_hat
rgl_post_warning_line: get_object failed for texture: saad_kol_hel_sw
rgl_post_warning_line: get_object failed for texture: steppe_horse_b Loading Module Resource  dapao
Loading Module Resource  wusangui
Loading Module Resource  wujun

rgl_post_warning_line: get_object failed for texture: Han_g_head2
rgl_post_warning_line: get_object failed for texture: Han_g_head2_2
rgl_post_warning_line: get_object failed for texture: Han_g_head2_2br
rgl_post_warning_line: get_object failed for texture: Han_g_head2_2bu
rgl_post_warning_line: get_object failed for texture: Han_g_head2_2yb
rgl_post_warning_line: get_object failed for texture: Han_g_head2_br
rgl_post_warning_line: get_object failed for texture: Han_g_head2_yel
rgl_post_warning_line: get_object failed for texture: Han_g_head_dark
rgl_post_warning_line: get_object failed for texture: Jinqi_helm
rgl_post_warning_line: get_object failed for texture: mingjia10wc_n
rgl_post_warning_line: get_object failed for texture: new_material
rgl_post_warning_line: get_object failed for texture: 1111shield_round1.dds
rgl_post_warning_line: get_object failed for texture: 1111shield_round2 Loading Module Resource  zangfu

rgl_post_warning_line: get_object failed for texture: tibet_lammel_peh
rgl_post_warning_line: get_object failed for texture: tibet_lammel_peh_b
rgl_post_warning_line: get_object failed for texture: tibet_lammel_peh_spec
rgl_post_warning_line: get_object failed for texture: tibet_lammel_peh2
rgl_post_warning_line: get_object failed for texture: tibet_lammel_peh2_b
rgl_post_warning_line: get_object failed for texture: tibet_lammel_peh2_spec Loading Module Resource  shahuang
Loading Module Resource  shaehuoq
Loading Module Resource  shahuange

rgl_post_warning_line: get_object failed for texture: rinda_hat
rgl_post_warning_line: get_object failed for texture: steppe_horse_b Loading Module Resource  Rus_armour
Loading Module Resource  shashibm
Loading Module Resource  shaexizang

rgl_post_warning_line: get_object failed for texture: prusofficerpants_n
rgl_post_warning_line: get_object failed for texture: gb_95th_pants_s
rgl_post_warning_line: get_object failed for texture: prusofficerpants_n
rgl_post_warning_line: get_object failed for texture: gb_95th_pants_s
rgl_post_warning_line: get_object failed for texture: trj_n Loading Module Resource  putaojia
Loading Module Resource  putaoyabj
Loading Module Resource  zhungaerjunjia

rgl_post_warning_line: get_object failed for texture: wei_xiadi_rich_tunic_a_normalmap Loading Module Resource  hanfu
Loading Module Resource  hanfu2
Loading Module Resource  buyi
Loading Module Resource  shaizigame
Loading Module Resource  liewu
Loading Module Resource  fysg_JL_changjin
Loading Module Resource  jiaolong
Loading Module Resource  fysg_changjin

rgl_post_warning_line: get_object failed for texture: fysg_chengmeng02
rgl_post_warning_line: get_object failed for texture: fysg_chengmeng03
rgl_post_warning_line: get_object failed for texture: fysg_chengmeng02
rgl_post_warning_line: get_object failed for texture: fysg_chengmeng03 Loading Module Resource  xiaocheng
Loading Module Resource  ylyq_cangjing
Loading Module Resource  fysg_changjin

rgl_post_warning_line: get_object failed for texture: fysg_chengmeng02
rgl_post_warning_line: get_object failed for texture: fysg_chengmeng03
rgl_post_warning_line: get_object failed for texture: fysg_chengmeng02
rgl_post_warning_line: get_object failed for texture: fysg_chengmeng03 Loading Module Resource  fysg_changjin2
Loading Module Resource  japan_tree
Loading Module Resource  japanese_building
Loading Module Resource  50_interior_01
Loading Module Resource  50_xiajian
Loading Module Resource  douran_castle_a
Loading Module Resource  50_tianzhao_building
Loading Module Resource  mgb
Loading Module Resource  ylyq_cangjing2

rgl_post_warning_line: WARNING: Unable to find material chs_tjp for mesh ylyq_tiejiang
rgl_post_warning_line: WARNING: Unable to find material chs_tjp1 for mesh ylyq_tiejiang.1
rgl_post_warning_line: WARNING: Unable to find material chs_tjp2 for mesh ylyq_tiejiang.2
rgl_post_warning_line: WARNING: Unable to find material chs_tjp for mesh ylyq_tiejiang.3 Loading Module Resource  qqg
Loading Module Resource  ming_dasong

rgl_post_warning_line: get_object failed for texture: tcmy_n
rgl_post_warning_line: get_object failed for texture: horse_c_normal
rgl_post_warning_line: get_object failed for texture: horse_c_s
rgl_post_warning_line: get_object failed for texture: tcmy_n
rgl_post_warning_line: WARNING: Unable to find material mjunhuzm for mesh song_maohh
rgl_post_warning_line: WARNING: Unable to find material feathers for mesh song_mao.1
rgl_post_warning_line: WARNING: Unable to find material feathers for mesh song_mao.lod1.1
rgl_post_warning_line: WARNING: Unable to find material mjunhuzm for mesh song_mao
rgl_post_warning_line: WARNING: Unable to find material mjunhuzm for mesh song_mao.lod1
rgl_post_warning_line: WARNING: Unable to find material tca6a for mesh song_mao_a.0
rgl_post_warning_line: WARNING: Unable to find material tca6a for mesh song_mao_a.lod1.0
rgl_post_warning_line: WARNING: Unable to find material tca6a for mesh song_mao_a.lod3.0 Loading Module Resource  17thchangj

rgl_post_warning_line: get_object failed for texture: lamellar_armor_kz32 Loading Module Resource  realorich_city
Loading Module Resource  hxqz_Hgongnu
Loading Module Resource  map_icons_17
Loading Module Resource  materials_face_gen
Loading Module Resource  hair
Loading Module Resource  nvguoti

rgl_post_warning_line: get_object failed for texture: n
rgl_post_warning_line: get_object failed for texture: face_old
rgl_post_warning_line: get_object failed for texture: face_old
rgl_post_warning_line: get_object failed for texture: face_old
rgl_post_warning_line: get_object failed for texture: face_old
rgl_post_warning_line: get_object failed for texture: face_old
rgl_post_warning_line: get_object failed for texture: face_old
rgl_post_warning_line: get_object failed for texture: face_old
rgl_post_warning_line: get_object failed for texture: face_old
rgl_post_warning_line: get_object failed for texture: face_old
rgl_post_warning_line: get_object failed for texture: octotoad2_auv_n
rgl_post_warning_line: get_object failed for texture: octotoad2_auv_s Loading Module Resource  new_body
Loading Module Resource  nanren

rgl_post_warning_line: get_object failed for texture: siam498 Loading Module Resource  food
Loading Module Resource  qimin1
Loading Module Resource  shenqi1

rgl_post_warning_line: get_object failed for texture: zhouyujian1 Loading Module Resource  dao_zhandao
Loading Module Resource  zhuxianshenqi
Loading Module Resource  bloods
Loading Module Resource  yongli
Loading Module Resource  sg_helms

} //Processing Ini File Finished
Loading Music...
Loading Textures...

rgl_post_warning_line: Unable to get technique with name diffuse_lance_banner
rgl_post_warning_line: Unable to get technique with name dot3_tree_bark
rgl_post_warning_line: Unable to get technique with name dot3_small_tree_bark
rgl_post_warning_line: Unable to get technique with name dot3_blowing_flag
rgl_post_warning_line: Unable to get technique with name dot3_hanging_on_rope
rgl_post_warning_line: Unable to get technique with name dot3_pinned_material_front
rgl_post_warning_line: Unable to get technique with name dot3_pinned_material_back
rgl_post_warning_line: Unable to get technique with name dot3_waving_material
rgl_post_warning_line: Unable to get technique with name diffuse_blowing_flag
rgl_post_warning_line: Unable to get technique with name diffuse_hanging_on_rope
rgl_post_warning_line: Unable to get technique with name diffuse_pinned_material_front
rgl_post_warning_line: Unable to get technique with name diffuse_pinned_material_back
rgl_post_warning_line: Unable to get technique with name diffuse_waving_material
rgl_post_warning_line: Unable to get technique with name diffuse_hanging
rgl_post_warning_line: Unable to get technique with name flora_bush
rgl_post_warning_line: Unable to get technique with name flora_small_tree
rgl_post_warning_line: Unable to get technique with name flora_small_tree_waving_leafes
rgl_post_warning_line: Unable to get technique with name soft_particle_modulate_on_water Finished Loading Textures...
L8 Format is  supported
WARNING: UNABLE TO MAP SOUND CODE:  snd_release_crossbow_medium
WARNING: UNABLE TO MAP SOUND CODE:  snd_release_crossbow_far
WARNING: UNABLE TO MAP SOUND CODE:  snd_bullet_hit_body
WARNING: UNABLE TO MAP SOUND CODE:  snd_player_hit_by_bullet

rgl_post_warning_line: WARNING: Unable to find material face_01.LOD
rgl_post_warning_line: WARNING: Unable to find material face_02.LOD
rgl_post_warning_line: WARNING: Unable to find material face_03.LOD
rgl_post_warning_line: WARNING: Unable to find material face_04.LOD
rgl_post_warning_line: WARNING: Unable to find material face_05.LOD
rgl_post_warning_line: WARNING: Unable to find material face_06.LOD
rgl_post_warning_line: WARNING: Unable to find material face_07.LOD
rgl_post_warning_line: WARNING: Unable to find material face_08.LOD
rgl_post_warning_line: WARNING: Unable to find material face_09.LOD
rgl_post_warning_line: get_object failed for body: bo_50_kikakawa
rgl_post_warning_line: get_object failed for body: bo_juma
rgl_post_warning_line: get_object failed for body: bo_shanlan1
rgl_post_warning_line: get_object failed for body: bo_shanlan2
rgl_post_warning_line: get_object failed for body: bo_shanlan3
rgl_post_warning_line: get_object failed for body: bo_shanlan4
rgl_post_warning_line: get_object failed for body: bo_shanlan5
rgl_post_warning_line: get_object failed for body: bo_shanlan6
rgl_post_warning_line: get_object failed for body: bo_qiang1
rgl_post_warning_line: get_object failed for body: bo_qiang2
rgl_post_warning_line: get_object failed for body: bo_qiang3
rgl_post_warning_line: get_object failed for body: bo_qiang4
rgl_post_warning_line: get_object failed for body: bo_qiang5
rgl_post_warning_line: get_object failed for body: bo_qiao
rgl_post_warning_line: get_object failed for body: bo_mumen
rgl_post_warning_line: get_object failed for body: bo_dizuo
rgl_post_warning_line: get_object failed for body: bo_daochang
rgl_post_warning_line: get_object failed for body: bo_gate2
rgl_post_warning_line: get_object failed for body: bo_gate1
rgl_post_warning_line: get_object failed for body: bo_opengate
rgl_post_warning_line: get_object failed for body: bo_qingzhou2
rgl_post_warning_line: get_object failed for body: bo_XYshanlan
rgl_post_warning_line: get_object failed for body: bo_tree_acher_1
rgl_post_warning_line: get_object failed for body: bo_ZGfysg_fanzi20
rgl_post_warning_line: get_object failed for body: bo_jcastl_ins15
rgl_post_warning_line: get_object failed for body: bo_jcastl_ins16
rgl_post_warning_line: get_object failed for body: bo_jcastl_ins17
rgl_post_warning_line: get_object failed for body: bo_jcastl_ins18
rgl_post_warning_line: get_object failed for body: bo_jcastl_ins19
rgl_post_warning_line: get_object failed for body: bo_jcastl_ins20
rgl_post_warning_line: get_object failed for body: bo_jcastl_ins21
rgl_post_warning_line: get_object failed for body: bo_jcastl_ins22
rgl_post_warning_line: get_object failed for body: bo_vase1 WARNING: UNABLE TO MAP GAME PRESENTATION CODE:  prsnt_game_escape
WARNING: UNABLE TO MAP GAME SCRIPT CODE:  game_missile_launch
WARNING: UNABLE TO MAP GAME SCRIPT CODE:  game_missile_dives_into_water
WARNING: UNABLE TO MAP GAME SCRIPT CODE:  game_character_screen_requested
Loading Module...
Loading item kinds...
Loading dialogs...
Loading mission templates...
Loading party templates...
loading time:  162875
Finished All...
Error: Unable to load Modules/Rise and Fall of EmpiresV1.0.5/music/500years_beat.mp3 : 1
Error: Unable to load Modules/Rise and Fall of EmpiresV1.0.5/music/500years_piano_version.mp3 : 1
Error: Unable to load Modules/Rise and Fall of EmpiresV1.0.5/music/500years_beat.mp3 : 1
Loading tracks
load_map_data complete.
Init_map complete.
init_meta_mission complete.
map mesh built.
get_ideal_sun_color.
get_ideal_fog_color.
943 parties added.
launch complete.
Error: Unable to load Modules/Rise and Fall of EmpiresV1.0.5/music/faded.mp3 : 1
Error: Unable to load Modules/Rise and Fall of EmpiresV1.0.5/music/500years_piano_version.mp3 : 1
Error: Unable to load Modules/Rise and Fall of EmpiresV1.0.5/music/chunyang.mp3 : 1
Error: Unable to load Modules/Rise and Fall of EmpiresV1.0.5/music/suonian.mp3 : 1

MEMORY ERROR!: InMemoryFileData: allocation failed!

MEMORY ERROR!: InMemoryFileData: allocation failed!

MEMORY ERROR!: InMemoryFileData: allocation failed!
Error: Unable to load Modules/Rise and Fall of EmpiresV1.0.5/music/yangguandiao.mp3 : 1
Error: Unable to load Modules/Rise and Fall of EmpiresV1.0.5/music/zhulinfuqin.mp3 : 1
Error: Unable to load Modules/Rise and Fall of EmpiresV1.0.5/music/yimeng.mp3 : 1

作者: 17543736227    时间: 2022-7-8 23:28
大佬帮忙看看我这个闪退是什么情况?  我玩很多剧本都会有闪退的情况   三藩之乱是最多最频繁的  上面我复制了我的运行日志 大佬帮忙看看有问题嘛? 我没开兼容  没开集显 游戏盘还有六百多G的可用空间
作者: 17543736227    时间: 2022-7-8 23:29
Starting new log file.
Version:  1.167

-- OS: Microsoft  (build 9200), 64-bit
-- RAM: Available physical RAM: 4095MB/4096MB
-- CPU: 11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz (GenuineIntel)
- L2 cache size: 256K
- CPU Features: FPU MMX SSE SSE2 SSE3 SSSE3 EST HTT
- Number of CPUs: 16 ( Speed: ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz / ~2304MHz )

-- GPU:
- D3D9 Adapter: 0 / Driver: nvldumd.dll / Description: NVIDIA GeForce RTX 3060 Laptop GPU
- Texture Memory: 4095 ( Available Texture Memory: 4056 )


Processing Ini File {
Module_name =  Calradia
Num Hints =  12
Setting Map Min X =  -250.000000
Setting Map Max X =  250.000000
Setting Map Min Y =  -250.000000
Setting Map Max Y =  250.000000
Setting Time Multiplier =  0.250000
Setting Seeing Range Multiplier =  6.500000
Setting Track Spotting Multiplier =  0.800000
Setting player_wounded_treshold =  5.000000
Setting hero_wounded_treshold =  15.000000
Setting Skill Prisoner Management Bonus =  5
Setting Skill Leadership Bonus =  3
Setting Base Companion Limit =  20
Setting player_xp_multiplier =  2.000000
作者: yangfandna    时间: 2022-7-9 08:44
哇哇哇哇哇好东西
作者: huagao    时间: 2022-7-9 12:43
Jun1an- 发表于 2022-7-8 21:45
我想问一下,已经改了虚拟内存运行,可是rgl里面还是显示RAM: Available physical RAM: 1023MB/1024MB 怎么 ...

不要兼容性运行
作者: huagao    时间: 2022-7-9 12:44
17543736227 发表于 2022-7-8 23:28
大佬帮忙看看我这个闪退是什么情况?  我玩很多剧本都会有闪退的情况   三藩之乱是最多最频繁的  上面我复 ...

主频低就把战场人数拉低一点吧。。
作者: 17543736227    时间: 2022-7-9 20:57
huagao 发表于 2022-7-9 12:44
主频低就把战场人数拉低一点吧。。

主频低是什么意思?  我试着把人数调低50  是好了一些  但是半小时左右还是会掉一次  50的话已经很少了吧?
我玩汉匈决战都是拉到200  300的  也只是偶尔才会闪退
作者: 17543736227    时间: 2022-7-9 20:57
huagao 发表于 2022-7-9 12:43
不要兼容性运行

大佬我没有兼容运行啊
作者: huagao    时间: 2022-7-9 21:43
17543736227 发表于 2022-7-9 20:57
大佬我没有兼容运行啊

你是win10 64位吗,如果是的话那就是兼容性运行的问题。
如果不是,请检查是不是32位的,但是32位也没见是1024最大调用的,难不成你是上古系统?
作者: 17543736227    时间: 2022-7-10 20:35
huagao 发表于 2022-7-9 21:43
你是win10 64位吗,如果是的话那就是兼容性运行的问题。
如果不是,请检查是不是32位的,但是32位也没见 ...

C:/Users/17543736227/Desktop/1657456404820.jpg
作者: 17543736227    时间: 2022-7-10 20:38
huagao 发表于 2022-7-9 21:43
你是win10 64位吗,如果是的话那就是兼容性运行的问题。
如果不是,请检查是不是32位的,但是32位也没见 ...

你看嘛  我也不知道咋回事  
实在受不了 我都不玩了  
突然发现那个战争之风mod  刷新了我的战团世界观  居然能飞 还有魔法 召唤术啥的  做的有点英雄无敌的那个感觉  我现在在玩那个了
1657456404820.jpg
1657456449943.jpg

作者: 17543736227    时间: 2022-7-10 20:40
我玩战争之风这个咋整都不掉  也不闪退 玩三藩之乱 五分钟闪退一次    运气好的话 半小时闪退一次
作者: huagao    时间: 2022-7-11 10:48
17543736227 发表于 2022-7-10 20:38
你看嘛  我也不知道咋回事  
实在受不了 我都不玩了  
突然发现那个战争之风mod  刷新了我的战团世界观 ...

。。建议换个战团
作者: 大大大居    时间: 2022-8-10 01:23
我一直闪退,找不到原因
作者: 大大大居    时间: 2022-8-10 01:45
222.jpg

作者: 大大大居    时间: 2022-8-10 01:47

这样子该怎么办啊

这样子该怎么办啊
这样子该怎么办啊

作者: 大大大居    时间: 2022-8-10 01:49
大大大居 发表于 2022-8-10 01:47
这样子该怎么办啊

求求大佬们帮一把吧

作者: 不安分的基因    时间: 2022-9-22 08:09
楼主带我装逼带我飞
作者: zhe7    时间: 2022-9-30 22:59
狂野骑士 发表于 2022-4-27 14:31
优化材质Optimizer Textures真心有用,没优化之前最多爽两个小时,优化后尽情砍戳五六个钟,用了 ...

求问怎么使用,工具在哪里拿,谢谢!
作者: ccty44    时间: 2022-12-18 14:48
谢谢分享支持大佬
作者: FSYZNB    时间: 2022-12-31 06:12
17543736227 发表于 2022-7-10 20:40
我玩战争之风这个咋整都不掉  也不闪退 玩三藩之乱 五分钟闪退一次    运气好的话 半小时闪退一次

我的也是,玩别的MOD都没啥问题,玩三藩之乱经常闪退
作者: gyqikan    时间: 2023-1-3 23:02
经常战场中整个画面卡住,有时候卡一下好了,有时候卡一下整个游戏就退出了。没报错,有没有兄弟分享一下经验
作者: z1979723    时间: 2023-1-5 10:40
以上情况 我都没遇到 我都是在进入战场情况下 直接闪退跳出的 有时 刚进入游戏 进入战场就闪退崩溃 有时2 3小时进入战场 闪退 总之都是在战场模式下闪退的
作者: 浅潇沉    时间: 2023-4-11 14:01
rgl_post_warning_line: get_skeleton_anim failed for: musket_thrust_forward_parry
rgl_post_warning_line: get_skeleton_anim failed for: equip_pistol
步枪和手枪报错,我全队没装枪类武器,也没打凌振,怎么出这个报错的
作者: huagao    时间: 2023-4-15 17:46
浅潇沉 发表于 2023-4-11 14:01
rgl_post_warning_line: get_skeleton_anim failed for: musket_thrust_forward_parry
rgl_post_warning_ ...

因为战团雀氏没有这个东西,你仔细看日志里面会发现一部分战团没有却有报错的东西,说明有地方调用。
尤其是game_start/escape界面,game_get_party_speed_multiplier脚本,还有几个音效等资源,这些资源里面有的是在源码里面被注释掉的,有些则除了报错信息根本没有其他线索,其中部分已经有很多人自行启用了
作者: 范范范    时间: 2023-5-28 13:45
楼主呀,我在别的mod导出了模型和贴图文件,导入了别的mod玩,可是在战场上打骑兵的时候一开枪就闪退(打步兵不会),这是哪里出了问题吗,帮帮小白吧
作者: a24a35    时间: 2023-9-8 12:11
楼主 ,我MOD 应该是没问题的进去游戏可以  但是交易浏览装备就提示 (文件读取失败,请尝试验证安装  此处是翻译)请问下怎么解决
作者: w1694661420    时间: 2023-10-15 21:16
huagao 发表于 2022-5-2 13:22
我的意思是,你游戏过程中的闪退的话去游戏的运行日志看啊,你贴个mod文件的下载干啥。。。 ...

原版的游戏有运行日志吗
作者: NineGToDou    时间: 2023-12-6 00:07
我刚买的1原版玩,刚开始问题都能选,也能捏脸,但是一开始游戏就直接闪退了,这咋办
作者: 埃里克森.滕哈赫    时间: 2024-1-22 03:46
现在是2024年一月二十二号,我单方面宣布楼主是神
作者: wanwan123321    时间: 2024-2-15 00:29
我个人经验 总结下
作者: wanwan123321    时间: 2024-2-15 00:30
战场闪退基本上是显卡问题 显卡够了就是设置问题
作者: wanwan123321    时间: 2024-2-15 00:31
大地图闪退如果内存够就是是虚拟内存问题  设置下
作者: wanwan123321    时间: 2024-2-15 00:32
配置和设置都没问题就是系统问题 重装系统
作者: lq7821376    时间: 2024-8-20 06:14
12333333333333333333333333333
作者: hjnjh    时间: 2024-12-31 12:28
你好  请问出现了第九个  第一问的弹窗 我该怎么解决呢
作者: hou7412589    时间: 2025-1-7 22:12
没有弹窗卡住一两秒 之后游戏直接消失  是什么问题?
Starting new log file.
Version:  1.173

-- OS: Microsoft  (build 9200), 64-bit
-- RAM: Available physical RAM: 4095MB/4096MB
-- CPU: 13th Gen Intel(R) Core(TM) i7-13700F (GenuineIntel)
- L2 cache size: 2048K
- CPU Features: FPU MMX SSE SSE2 SSE3 SSSE3 EST HTT
- Number of CPUs: 24 ( Speed: ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz / ~2112MHz )

-- GPU:
- D3D9 Adapter: 0 / Driver: nvldumd.dll / Description: NVIDIA GeForce RTX 4070
- Texture Memory: 4095 ( Available Texture Memory: 4080 )

作者: 芝士雪豹001    时间: 2025-3-21 16:25
直接闪退没有提示的咋整,一进世外桃源就退,有时候打完怪出物品栏也退,有时候加入对战也退,人麻了已经




欢迎光临 骑马与砍杀中文站论坛 (https://bbs.mountblade.com.cn/) Powered by Discuz! X3.4