【已过期】两倍掉落和掉率,火炬不减,买东西不要钱,战斗中不掉关系
本帖最后由 bet444 于 2023-5-11 19:02 编辑正式版没玩,这是以前修改的经验,正式版请自行探索
这些修改用dnspy打开都在RunStatType里,制作组很良心了,其他懒得找了,欢迎大佬们自己寻找修改更新版本
// Token: 0x04000EF4 RID: 3828
[StaticInitializer
public static readonly RunStatType LOOT_CHANCE = new RunStatType("loot_chance", 2f, float.MinValue, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true); 掉率
// Token: 0x04000EF5 RID: 3829
public static readonly RunStatType LOOT_QTY = new RunStatType("loot_qty", 2f, float.MinValue, float.MaxValue, StatType<RunStatType>.NumberType.VALUE, true, true);掉落数量
// Token: 0x04000EF6 RID: 3830
public static readonly RunStatType TORCH_ADD_PERCENT = new RunStatType("torch_add_percent", 1f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);火炬增加
// Token: 0x04000EF7 RID: 3831
public static readonly RunStatType TORCH_REMOVE_PERCENT = new RunStatType("torch_remove_percent", 0f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);火炬减少
// Token: 0x04000EF8 RID: 3832
public static readonly RunStatType TORCH_DRAIN_BETWEEN_NODES = new RunStatType("torch_drain_between_nodes", 0f, float.MinValue, float.MaxValue, StatType<RunStatType>.NumberType.VALUE, true, true);
// Token: 0x04000EF9 RID: 3833
public static readonly RunStatType ITEM_MAX_QTY = new RunStatType("item_max_qty", 10f, float.MinValue, float.MaxValue, StatType<RunStatType>.NumberType.VALUE, true, true);道具最大堆叠 好像无效,不清楚
// Token: 0x04000EFA RID: 3834
public static readonly RunStatType PLAYER_INVENTORY_MAX_SLOTS = new RunStatType("player_inventory_max_slots", 10f, float.MinValue, float.MaxValue, StatType<RunStatType>.NumberType.VALUE, true, true);背包最大堆叠
// Token: 0x04000EFB RID: 3835
public static readonly RunStatType RETREAT_CHANCE = new RunStatType("retreat_chance", 0f, float.MinValue, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, false, true);撤退之类的
// Token: 0x04000EFC RID: 3836
public static readonly RunStatType SCOUT_CHANCE = new RunStatType("scout_chance", 1f, 1f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);侦查几率
// Token: 0x04000EFD RID: 3837
public static readonly RunStatType STORE_COST_BUY_MULTIPLIER = new RunStatType("store_cost_buy_multiplier", 0f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);商店买价百分比
// Token: 0x04000EFE RID: 3838
public static readonly RunStatType STORE_COST_SELL_MULTIPLIER = new RunStatType("store_cost_sell_multiplier", 1f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);商店卖价百分比
// Token: 0x04000EFF RID: 3839
public static readonly RunStatType AFFINITY_TICK_TRIGGER_POSITIVE_CHANCE_MULTIPLIER = new RunStatType("affinity_tick_trigger_positive_chance_multiplier", 1f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);正面关系几率
// Token: 0x04000F00 RID: 3840
public static readonly RunStatType AFFINITY_TICK_TRIGGER_NEGATIVE_CHANCE_MULTIPLIER = new RunStatType("affinity_tick_trigger_negative_chance_multiplier", 0f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);负面关系几率
接下来都是地图关卡相关的没去尝试
// Token: 0x04000F01 RID: 3841
public static readonly RunStatType BATTLE_MODIFIER_CHANCE = new RunStatType("battle_modifier_chance", 0f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);
// Token: 0x04000F02 RID: 3842
public static readonly RunStatType STORY_CHANCE_MULTIPLIER = new RunStatType("story_choice_multiplier", 1f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);
// Token: 0x04000F03 RID: 3843
public static readonly RunStatType NODE_QTY_MULTIPLIER = new RunStatType("node_qty_multiplier", 1f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);
// Token: 0x04000F04 RID: 3844
public static readonly RunStatType NODE_EXTRA_QTY = new RunStatType("node_extra_qty", 0f, float.MinValue, float.MaxValue, StatType<RunStatType>.NumberType.VALUE, true, true);
// Token: 0x04000F05 RID: 3845
public static readonly RunStatType MAP_GENERATION_NODES_PER_ROW_MIN = new RunStatType("map_generation_nodes_per_row_min", 1f, 1f, 3f, StatType<RunStatType>.NumberType.VALUE_ROUNDED, true, true);
// Token: 0x04000F06 RID: 3846
public static readonly RunStatType MAP_GENERATION_NODES_PER_ROW_MAX = new RunStatType("map_generation_nodes_per_row_max", 3f, 1f, 3f, StatType<RunStatType>.NumberType.VALUE_ROUNDED, true, true);
// Token: 0x04000F07 RID: 3847
public static readonly RunStatType MAP_GENERATION_NODES_PER_ROW_MULTIPLIER = new RunStatType("map_generation_nodes_per_row_multiplier", 1f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);
// Token: 0x04000F08 RID: 3848
public static readonly RunStatType MAP_GENERATION_LENGTH_MULTIPLIER = new RunStatType("map_generation_length_multiplier", 1f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);
// Token: 0x04000F09 RID: 3849
public static readonly RunStatType MAP_GENERATION_NODE_SPAWN_MULTIPLIER = new RunStatType("map_generation_node_spawn_multiplier", 1f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);
// Token: 0x04000F0A RID: 3850
public static readonly RunStatType MAP_GENERATION_ROAD_EVENT_SPAWN_MULTIPLIER = new RunStatType("map_generation_road_event_spawn_multiplier", 1f, 0f, float.MaxValue, StatType<RunStatType>.NumberType.PERCENT, true, true);
好兄弟问问怎么手动修改 只想修改3饰品玩玩
修改来得好快!!hxd怎么改的啊,我也想改改角色技能什么的 谢谢楼主的修改和分享 不错。。。。。。。。。。。。。。 刚刚epic入手了,来试试!感谢! 说实话,用了进不去游戏了,一直卡在载入界面,是因为我打了汉化补丁吗?游侠1.0的 克拉德美索 发表于 2021-10-27 23:32
说实话,用了进不去游戏了,一直卡在载入界面,是因为我打了汉化补丁吗?游侠1.0的 ...
我的不打汉化正常进去,修改都有效果
h417370198 发表于 2021-10-27 23:44
我的不打汉化正常进去,修改都有效果
我特意重新下了个3dm发的,还是不行:'(,卡在右下角火炬界面进不去。。。。
克拉德美索 发表于 2021-10-27 23:52
我特意重新下了个3dm发的,还是不行,卡在右下角火炬界面进不去。。。。
...
文件夾改名,不能有「.」,例如改成:Darkest Dungeon 2
我也用dnspy改了一下,第一遍游戏存档还算正常但是重开一局之后,第一次进inn,直接没物品卖了哈哈,不知道啥地方出问题了 zmh123666 发表于 2021-10-28 07:41
我也用dnspy改了一下,第一遍游戏存档还算正常但是重开一局之后,第一次进inn,直接没物品卖了哈哈,不知道 ...
重新读档又好了。。。。
有正版能用的修改嘛 EPIC用不了 QAQ 这个游戏的修改机制还是很银杏的 谢谢大佬!就指望大佬的文件了 櫻庭十六夜 发表于 2021-10-28 06:27
文件夾改名,不能有「.」,例如改成:Darkest Dungeon 2
我也是后来猜到了(笑哭)
能更新一下吗 游戏更新了
。。。。。。。。。。。。。。。。。 653838735423543543 6666666666666666
dddddddddddddddddd
支持一下
页:
[1]