安装 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(越南语)
Українська(乌克兰语)
报告翻译问题






--->> atomic1379
I am free to chat anytime if you'd like
It might be interesting also if you could scale power requirement with speed. So say, if a speed of 1x is 25MW, a speed of 2x might be 75MW, and a big scale up from there with 5x being an absurd amount in the gigawatt range. Hah. Also scales down but only linearly so 0.5x would be 12.5MW and so on so forth.
I could try and come up with a mathematical graph for that if you want. But it also might just be easlier to talk at some point if you want to add me. :P I've been a game tester several times and kinda like balancing things.
https://psteamcommunity.yuanyoumao.com/workshop/filedetails/?id=2111073562
If you wanna replace the mod, its a good idea to try and add back in all the features in an optimized way.
In the drill version of that mod, I usually blacklist a few ores when I get a certain amount of them. Be cool if your version had an on off for each and even an auto off for having more than x amount in your cargo. So I could say a blanket cutoff for each when I get 50,000 units or some such.
I'll have to revert back to the original build and repair system and drill and fill system.
monopolyman8986
Discord: Atomic1379
Specific snippet that blocks enemy grids entirely
```/// <summary>
/// Checks if a grid belongs to an enemy player/faction
/// Enemy grids should never be scanned regardless of help settings
/// </summary>
private bool IsEnemyGrid(IMyCubeGrid grid)
{
if (grid == null || _block == null) return false;
long campOwnerId = _block.OwnerId;
if (campOwnerId == 0) return false; // Unowned CAMP can't have enemies
long gridOwnerId = GetPrimaryOwnerId(grid);
if (gridOwnerId == 0) return false; // Unowned grids are neutral, not enemies
// Same owner is never an enemy
if (campOwnerId == gridOwnerId) return false;```
running a torch dedicated server with a bunch of mods.
02:11:57.751: CAMP InventoryManagement: RegisterCamp called for ID 112216990742683640
destroying all camp blocks and building new ones has them working again, for a few blocks, and then same thing....
CAMP will not use them.
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=3501213246