安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
,其他关卡还是正常显示的
修改后如下:
using System;
namespace BlockEnhancementMod
{
internal class SteeringBlockScript
{
}
}
1:使用dnspy打开如下文件steam/steamapps/workshop/content/346010/1479144172/BlockEnhancementMod/BlockEnhancementMod.dll
{游戏根目录}/Besiege_Data/Managed/Assembly-UnityScript.dll
{游戏根目录}/Besiege_Data/Managed/UnityEngine.dll
2:在dnspy中打开名为SteeringBlockScript的类(可以使用搜索功能)
3:编辑类,删除类名下的所有内容,只剩下如下内容
using System;
namespace BlockEnhancementMod
{
internal class SteeringBlockScript : SteeringWheel_GenericEnhanceScript
{
}
}
4:保存,如果一切顺利,那这就成功屏蔽了该模组目前故障的转向模块的修改内容
using System.Collections;
using System.Runtime.CompilerServices;
using UnityEngine;
1:Use dnspy to open the following file:
steam/steamapps/workshop/content/346010/1479144172/BlockEnhancementMod/BlockEnhancementMod.dll
{game root directory}/Besiege_Data/Managed/Assembly-UnityScript.dll
{game root directory}/Besiege_Data/Managed/UnityEngine.dll
2:Open the class called SteeringBlockScript in dnspy (you can use the search function)
3:Edit the class and delete all the contents under the class name, leaving only the following contents
using System;
namespace BlockEnhancementMod
{
internal class SteeringBlockScript : SteeringWheel_GenericEnhanceScript
{
}
}
4:Save, if all goes well, then this successfully deletes the changes to the steering module
Where do i find the .dll file of the mod
The devs said the mod is no longer maintained
Its weird because the game updated and the mod was working fine as I was also testing out the new blocks. But all of sudden it stopped working. There apparently was some kind of hotfix the day after 1.65. If you're looking to rollback, get the 19 OCT version. Apparently 21 OCT is 1.65 and still Mod had still bugged the game.
I agree, I have the same thing