井宏邈 发表于 2026-7-18 11:31:19

随行 发表于 2026-7-17 18:38
还有,共鸣cjb的面板对吗?没看到增加谐振效果的描述啊?目前版本太缺乏施加谐振效果的武器了,建议增加 ...

{:tieba_19:}共鸣cjb内测的时候是有谐振的但是后来不符合设计思路给砍了,设计的用法是大船上谐振和导弹支援小船突击,但实际上吗.......{:tieba_29:}

随行 发表于 2026-7-18 15:46:43

井宏邈 发表于 2026-7-18 11:31
共鸣cjb内测的时候是有谐振的但是后来不符合设计思路给砍了,设计的用法是大船上谐振和导弹支援小船突击 ...

那更新日志也没改啊{:tieba_40:}

GDDD111 发表于 2026-7-22 06:34:09

清流 级 的战术系统“界时滞留”所产生的“影子投影”会占用30部署点,占用持续整场战斗,并且在“详细战斗报告”mod中会显示为独立的舰船,目前还没使用过其它具有该战术系统的船。

Kwin 发表于 2026-7-22 12:12:31

GDDD111 发表于 2026-7-22 06:34
清流 级 的战术系统“界时滞留”所产生的“影子投影”会占用30部署点,占用持续整场战斗,并且在“详细战斗 ...

下个小版本会修复的

随行 发表于 2026-7-22 21:47:53

GDDD111 发表于 2026-7-22 06:34
清流 级 的战术系统“界时滞留”所产生的“影子投影”会占用30部署点,占用持续整场战斗,并且在“详细战斗 ...

秋绪更是灾难级的,打一场下来,部署点负几千。

随行 发表于 2026-7-22 21:49:41

Kwin 发表于 2026-7-22 12:12
下个小版本会修复的

话说那个高级联系人有没有签署雇佣协议的要求啊?我无法和那个npc对话,不知道是不是因为我是没开新档直接更新mod的原因。

Kwin 发表于 2026-7-23 12:29:17

随行 发表于 2026-7-22 21:49
话说那个高级联系人有没有签署雇佣协议的要求啊?我无法和那个npc对话,不知道是不是因为我是没开新档直 ...

没开新存档的原因,这个联系人不需要签署雇佣协议。

Kwin 发表于 2026-7-23 12:29:40

GDDD111 发表于 2026-7-22 06:34
清流 级 的战术系统“界时滞留”所产生的“影子投影”会占用30部署点,占用持续整场战斗,并且在“详细战斗 ...

新版本已修复,感谢支持

持恋不为无爱也 发表于 2026-7-25 01:25:58

禊罪在开启战术系统的情况下如果因为没有业力结构掉到0退场,会导致整场战斗都处于慢动作的情况

登dua狼 发表于 2026-7-30 17:48:15

本帖最后由 登dua狼 于 2026-7-30 17:49 编辑

不好意思佬,打这mod赏金的时候闪退了请问这个是哪里出问题了呢?{:tieba_01:}

登dua狼 发表于 2026-7-30 20:50:22

落叶 发表于 2026-3-7 11:02
打远视驱动的特遣队闪退了,有大佬说是怠惰MIRV发射器的特效没有做空值检查

[游戏日志]


俺也一样:funk:

Kwin 发表于 2026-7-30 22:19:04

登dua狼 发表于 2026-7-30 20:50
俺也一样

感谢提供反馈,下个版本会修复的

渡鸦612 发表于 2026-8-1 06:52:16

这美术风格是真的赞,光凭这个就有让我放在必装mod下的想法了,看简介感觉像隐藏反派,附属势力虹光看着反而正常很多,难道是玩反差感的?另外所有回复看下来个人最直观的感受就是bug多,但制作组修得也快,勤勉(手动滑稽)

D.D.D 发表于 2026-8-2 08:36:16

BGM好耳熟是黄昏的天使吗

LIa 发表于 2026-8-7 21:35:05

闪退报错了,把日志给ai看了,大佬看看闪退原因

远行星号 / Starsector 闪退报告
发给作者:远视驱动公司 FarsightDrive

================================================================================
基本信息
================================================================================
模组:FarsightDrive(远视驱动)
模组版本:0.4.2.6-ver4
游戏版本:0.98a(模组声明)
相关文件:data/hullmods/FSD_HarmonicFluxWheel.java 第 86 行
复现方式:在货物/改装栏中将鼠标悬停到「谐和通量轮 / FSD_HarmonicFluxWheel」物品上查看 tooltip 时闪退

================================================================================
问题摘要
================================================================================
ClassCastException: String cannot be cast to Float

原因:addPostDescriptionSection() 里调用 tooltip.beginTable() 时,
列参数只传了表头字符串,缺少列宽(Float)。
beginTable 的可变参数要求「列宽(Float), 表头(String)」成对出现,
当前写法会把第一个 String 当成 Float 去强转,导致崩溃。

有问题的代码(约第 86 行):
--------------------------------------------------------------------------------
tooltip.beginTable(Color.GRAY, Color.BLACK, Color.BLACK, 20f,
    "幅能水平", "每100点幅能的业力消耗", "返还速率");
--------------------------------------------------------------------------------

建议写法(示例,列宽可按 UI 再调):
--------------------------------------------------------------------------------
tooltip.beginTable(Color.GRAY, Color.BLACK, Color.BLACK, 20f,
    width * 0.35f, "幅能水平",
    width * 0.35f, "每100点幅能的业力消耗",
    width * 0.30f, "返还速率");
--------------------------------------------------------------------------------

================================================================================
完整崩溃堆栈(来自 starsector.log 末尾)
================================================================================
19283370 ERROR com.fs.starfarer.combat.CombatMain- java.lang.ClassCastException: class java.lang.String cannot be cast to class java.lang.Float (java.lang.String and java.lang.Float are in module java.base of loader 'bootstrap')
java.lang.ClassCastException: class java.lang.String cannot be cast to class java.lang.Float (java.lang.String and java.lang.Float are in module java.base of loader 'bootstrap')
        at com.fs.starfarer.ui.impl.StandardTooltipV2Expandable.beginTable(Unknown Source) ~
        at com.fs.starfarer.ui.impl.StandardTooltipV2Expandable.beginTable(Unknown Source) ~
        at data.hullmods.FSD_HarmonicFluxWheel.addPostDescriptionSection(FSD_HarmonicFluxWheel.java:86) ~[?:?]
        at com.fs.starfarer.api.campaign.impl.items.ModSpecItemPlugin.createTooltip(ModSpecItemPlugin.java:217) ~
        at com.fs.starfarer.campaign.ui.trade.CargoDataGridView$1.createImpl(Unknown Source) ~
        at com.fs.starfarer.ui.impl.StandardTooltipV2Expandable.create(Unknown Source) ~
        at com.fs.starfarer.ui.impl.StandardTooltipV2Expandable.beforeShown(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.showTooltip(Unknown Source) ~
        at com.fs.starfarer.ui.O0Oo.ÓÒ0000(Unknown Source) ~
        at com.fs.starfarer.ui.O0Oo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.campaign.ui.trade.CargoDataGridView.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.g$Oo.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.g.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.campaign.ui.G.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.class.I.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.oo0O.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.newui._.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.oo0O.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.newui.o0Oo.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.oo0O.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.newui.L.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.oo0O.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.newui.o0Oo.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source) ~
        at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source) ~
        at com.fs.starfarer.ui.OOOo.processInput(Unknown Source) ~
        at com.fs.starfarer.campaign.CampaignState.processInput(Unknown Source) ~
        at com.fs.starfarer.BaseGameState.traverse(Unknown Source) ~
        at com.fs.state.AppDriver.begin(Unknown Source) ~
        at com.fs.starfarer.combat.CombatMain.main(Unknown Source)
        at com.fs.starfarer.StarfarerLauncher.o00000(Unknown Source)
        at com.fs.starfarer.StarfarerLauncher$1.run(Unknown Source)
        at java.base/java.lang.Thread.run(Thread.java:1516) [?:?]

================================================================================
相关源码片段(FSD_HarmonicFluxWheel.java addPostDescriptionSection)
================================================================================
tooltip.addPara("幅能水平与业力消耗和返还速率关系:", pad);
tooltip.beginTable(Color.GRAY, Color.BLACK, Color.BLACK, 20f, "幅能水平", "每100点幅能的业力消耗", "返还速率");
tooltip.addRow(highlight, "幅能水平<33%", "2%", "300点/秒");
tooltip.addRow(highlight, "33%<=幅能水平<67%", "1%", "200点/秒");
tooltip.addRow(highlight, "幅能水平>=67%", "0.5%", "100点/秒");
tooltip.addTable("", 0, pad);

六尺之下 发表于 2026-8-21 23:03:05

565300 INFOdata.scripts.RSSettingsRegisteredPlugin- mounted
565301 INFOorg.boxutil.manager.CombatRenderingManager- 'BoxUtil' Combat rendering plugin join layer: 'BELOW_PLANETS'
565301 INFOorg.boxutil.manager.CombatRenderingManager- 'BoxUtil' Combat rendering plugin join layer: 'JUST_BELOW_WIDGETS'
565302 INFOorg.boxutil.manager.CombatRenderingManager- 'BoxUtil' Combat rendering manager invited!
565302 INFOcom.fs.starfarer.loading.LoadingUtils- Loading JSON from
565305 INFOcom.fs.starfarer.loading.LoadingUtils- Loading JSON from
565308 INFOcom.fs.starfarer.loading.LoadingUtils- Loading JSON from
565310 INFOcom.fs.starfarer.loading.LoadingUtils- Loading JSON from
565312 INFOcom.fs.starfarer.loading.LoadingUtils- Loading JSON from
565314 INFOcom.fs.starfarer.loading.LoadingUtils- Loading JSON from
565316 INFOcom.fs.starfarer.loading.LoadingUtils- Loading JSON from
565320 INFOdata.scripts.aEP_CombatEffectPlugin- aEP_CombatEffectPlugin Registered in EveryFrameCombatPlugin
565322 INFOdata.scripts.aEP_CombatEffectPlugin- aEP_CombatEffectPlugin Registered in CombatLayeredRenderingPlugin
565350 INFOorg.dark.shaders.util.TextureData- Estimated VRAM usage for material/normal/surface maps before unload/preload: 19580890 bytes
565367 INFOorg.dark.shaders.util.TextureData- Unloading...
565373 INFOorg.dark.shaders.util.TextureData- Preloading...
565383 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_XC___SHIP_normal.png (using reflection)
565384 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_XCCannon___HARDPOINT0_normal.png (using reflection)
565385 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_XCCannon___HARDPOINT1_normal.png (using reflection)
565386 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_XCCannon___HARDPOINT2_normal.png (using reflection)
565387 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_XCCannon___HARDPOINT3_normal.png (using reflection)
565388 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_CelestrailArrow_wing___SHIP_normal.png (using reflection)
565390 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_EntrobeamL___TURRET0_normal.png (using reflection)
565391 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_needler___HARDPOINT0_normal.png (using reflection)
565392 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_sword_wing___SHIP_normal.png (using reflection)
565393 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_HMG_Derive___TURRET0_normal.png (using reflection)
565394 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_HMG_Derive___TURRET_BARREL_normal.png (using reflection)
565395 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_EnhanceRiftLight_Shell___MISSILE_normal.png (using reflection)
565395 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_EntrobeamL___HARDPOINT0_normal.png (using reflection)
565403 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_auditorium___SHIP_normal.png (using reflection)
565405 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_needler___TURRET0_normal.png (using reflection)
565405 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Chaingun___TURRET0_normal.png (using reflection)
565406 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Chaingun___TURRET1_normal.png (using reflection)
565407 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Chaingun___TURRET2_normal.png (using reflection)
565408 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Drone1_wing___SHIP_normal.png (using reflection)
565409 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_GuiderPD___TURRET0_normal.png (using reflection)
565412 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_storm___SHIP_normal.png (using reflection)
565413 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Decay___HARDPOINT0_normal.png (using reflection)
565414 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Decaysrm___MISSILE_normal.png (using reflection)
565416 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_InspireLight_Shell___MISSILE_normal.png (using reflection)
565417 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Lightneedler___TURRET0_normal.png (using reflection)
565421 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_delight_core___SHIP_normal.png (using reflection)
565422 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Tusk1___HARDPOINT0_normal.png (using reflection)
565423 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Tusk_warhead___MISSILE_normal.png (using reflection)
565427 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_delight_L___SHIP_normal.png (using reflection)
565431 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_delight_R___SHIP_normal.png (using reflection)
565434 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Lenient___SHIP_normal.png (using reflection)
565437 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Caritas___SHIP_normal.png (using reflection)
565438 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Proliferation___HARDPOINT0_normal.png (using reflection)
565439 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Proliferation1___MISSILE_normal.png (using reflection)
565440 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Proliferation2___MISSILE_normal.png (using reflection)
565442 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Newchimes___SHIP_normal.png (using reflection)
565443 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_ResonanceBurst___HARDPOINT0_normal.png (using reflection)
565444 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Decay___TURRET0_normal.png (using reflection)
565445 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Lightneedler___HARDPOINT0_normal.png (using reflection)
565446 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_TaticalLazer___HARDPOINT0_normal.png (using reflection)
565448 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_prosody___SHIP_normal.png (using reflection)
565451 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_tonal___SHIP_normal.png (using reflection)
565452 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture cache/FSD_Harmony___SHIP_normal.png (using reflection)
565452 INFOorg.dark.shaders.util.TextureData- VRAM after unload/preload: 26303793 bytes
565473 INFOorg.boxutil.units.standard.attribute.FontMapData- 'BoxUtil' font applied texture with path: 'graphics/fonts/insignia25LTaa_0.png'.
565532 INFOorg.boxutil.units.standard.attribute.FontMapData- 'BoxUtil' loaded font at path: 'graphics/fonts/insignia25LTaa.fnt'.
565533 INFOdata.scripts.plugins.bt_gestalt_battlestart- other fleet faction Farsight_Drive is not in list, it's so joever
566328 INFOsound.O- Cleaning up music with id
566697 INFOsound.O- Creating streaming player for music with id
566697 INFOsound.H- Playing music with id
573017 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture graphics/shaders/material/weapons/covers/cover_turret_midline_medium_material.png (using reflection)
573020 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture graphics/shaders/material/weapons/covers/cover_hardpoint_midline_medium_material.png (using reflection)
573031 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture graphics/shaders/normal/ships/pegasus/pegasus_normal.png (using reflection)
573034 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture graphics/shaders/normal/weapons/covers/cover_turret_midline_medium_normal.png (using reflection)
573036 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture graphics/shaders/normal/weapons/covers/cover_hardpoint_midline_medium_normal.png (using reflection)
573039 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture graphics/shaders/surface/weapons/covers/cover_turret_midline_medium_surface.png (using reflection)
573041 INFOcom.fs.graphics.TextureLoader- Cleaned buffer for texture graphics/shaders/surface/weapons/covers/cover_hardpoint_midline_medium_surface.png (using reflection)
573600 INFOorg.boxutil.manager.CombatRenderingManager- 'BoxUtil' Combat rendering plugin join layer: 'ABOVE_PARTICLES_LOWER'
574162 INFOcom.fs.starfarer.loading.LoadingUtils- Loading JSON from
596699 INFOsound.O- Cleaning up music with id
596699 INFOsound.O- Cleaning up music with id
596713 INFOsound.O- Cleaning up music with id
596730 INFOsound.O- Creating streaming player for music with id
596730 INFOsound.H- Playing music with id
599660 ERROR com.fs.starfarer.combat.CombatMain- java.lang.IndexOutOfBoundsException: fromIndex = -1
java.lang.IndexOutOfBoundsException: fromIndex = -1
        at java.base/java.util.AbstractList.subListRangeCheck(AbstractList.java:507) ~[?:?]
        at java.base/java.util.ArrayList.subList(ArrayList.java:1199) ~[?:?]
        at org.boxutil.base.BaseInstanceRenderData.setInstanceData(BaseInstanceRenderData.java:132) ~[?:?]
        at data.combat.FSD_NeedlerShotOnHit.onHit(FSD_NeedlerShotOnHit.java:62) ~[?:?]
        at com.fs.starfarer.combat.entities.BallisticProjectile.setDidDamage(Unknown Source) ~
        at com.fs.starfarer.combat.entities.BallisticProjectile.notifyDealtDamage(Unknown Source) ~
        at com.fs.starfarer.combat.E.A.D.o00000(Unknown Source) ~
        at com.fs.starfarer.combat.E.oOOO.super(Unknown Source) ~
        at com.fs.starfarer.combat.E.oOOO.super(Unknown Source) ~
        at com.fs.starfarer.combat.CombatEngine.advanceInner(Unknown Source) ~
        at com.fs.starfarer.combat.CombatEngine.advance(Unknown Source) ~
        at com.fs.starfarer.combat.CombatState.traverse(Unknown Source) ~
        at com.fs.state.AppDriver.begin(Unknown Source) ~
        at com.fs.starfarer.combat.CombatMain.main(Unknown Source)
        at com.fs.starfarer.StarfarerLauncher.o00000(Unknown Source)
        at com.fs.starfarer.StarfarerLauncher$1.run(Unknown Source)
        at java.base/java.lang.Thread.run(Thread.java:1516) [?:?]
说是和box的不兼容

linlin 发表于 2026-8-25 10:40:56


Mycophobia 发表于 2026-9-2 04:00:35

六尺之下 发表于 2026-8-21 23:03
565300 INFOdata.scripts.RSSettingsRegisteredPlugin- mounted
565301 INFOo ...

报错里看不出任何和Box相关的码。 出错的代码是远视武器命中后的特效代码。Array -1 是很奇怪,你出错时有没有时流非常高的东西在场或者开了战斗加速?

非色の空 发表于 2026-9-4 13:34:02

不知道为什么,有种黄昏的天使的既视感?

dumn 发表于 2026-9-5 17:33:21

夜露的紧凑锻炉设计。有bug。减少40%导弹伤害会叠加。在模拟里测试了一下,死神鱼雷的伤害,变成了111.我还翻了半天csv数据,还以为是其他什么mod把死神鱼雷数据改了。那个40%伤害减少,每一次发射导弹都会触发,疯狂叠加,4000伤害变111伤害。重启游戏之后会恢复正常。还有,夜露还是不能自己放技能。悲极。
页: 1 2 3 4 5 [6]
查看完整版本: 【0.97a/0.98a】远视驱动公司