安装 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(越南语)
Українська(乌克兰语)
报告翻译问题
Either by making sure it finds no valid target by type, or with setting the radius to 0, it should do what you want. If you know how to spawn custom objects (vanilla item spawning command), you could make custom doors that do what you want.
"queryOpenRadius" : 0
There are other things you can change, if you look at the top pinned thread above.
My Support Drones mod handles doors this way:
- Drone pathfinder finds a wall and detects it to be a door (via hasCapability("door"))
- Drone, while following the path, checks if the door is closed (via hasCapability("closedDoor")
- If it finds a closed door in its path, it will open it (via calling onInteraction with object {source={mcontroller.facingDirection()}}
The drones are monsters.
I haven't looked at your code, but it might be unable to perceive the possibility of a monster opening a door.
Or it needs an entity id in the table passed to onInteraction. (The data provided by the drone for that call is incomplete)
This is so if your traveling at a good speed (hover bikes or techs), you shouldn't crash into doors.
You can custom spawn your doors though: see the pinned threads?
But should I ever come to it, be sure that these requests are on the bucket list.
(I did notice the "Basic customization" pinned discussion, but I'm using this in a modpack that downloads from the workshop, so editing the mod just for myself would defeat the purpose)
And you can also look into starbound.log file inside the storage folder and see if any error messages in there might indicate something.
And thank you Moses for the appreciation :)
But maybe another ship mod could be doing something. Or in theory they could be using custom object properties in the ship's blockKey.
Oh and other mods could also be an issue, remember if you have installed some others before it happened.
As you aren't able to replace the ship doors, which would often fix it, you can try to unsubscribe from it, enter your savegame, then exit and subscribe again. But it is a far guess. And better make a save of the "universe" folder in the game directory before, just in case.
Also it could be that they made an update that changed those specific doors?
Cause that would be Fantastic!
Makes doors useless if Flyers can barge in anytime they wish.
Playing MP Dedi server with a few mods:
RPG Growth
Life alert
Food Stacking
pixel bags
overhauled moons
sticky notes
and This lovely automated door mod.
But you can change the code to also work for NPCs (otherwise they use the manual E-method, except in the outpost which uses a new internal automatic function they added in one of the last few patches.
Very good mod! Thanks.