- Sky
- Blueberry
- Slate
- Blackcurrant
- Watermelon
- Strawberry
- Orange
- Banana
- Apple
- Emerald
- Chocolate
- Charcoal


Nexarius
Members-
Content Count
129 -
Joined
-
Last visited
-
Days Won
19
Nexarius last won the day on June 25 2020
Nexarius had the most liked content!
About Nexarius
-
Rank
Leading Member
Recent Profile Visitors
2644 profile views
-
Isn't that how it's already working? If the stargate aren't upgraded it cannot dial them right? All addresses the computer receives are first checked and only added if they can be dialed by that stargate. I'm using the stargates function to report how much energy is required to dial the gate to determine if the stargate can dial it or not. The function should report an error on an upgraded stargate in the nether with a not upgraded stargate in the overworld. If that not the case then I think it's a bug in the mod. Alternativly there is a config option to stop your computer from transmit
-
You can append ?recursive=1 to the github api request to get the entire repository tree as I've done here it works as long as the repository tree isn't exceeding the ram of the ingame computer. (which CAN happen)
-
Interesting. This isn't really a typical use case and I would be amazed if my nexDHD would run without crashing in this kind of configuration. I guess you could use nexDHD and ccDHD because they are OpenComputer and Computercraft respectively. If you have a computer with nexDHD and another with SGCX both connected to the stargate then I would assume their components connect to each other which will cause problems (and it would be really difficult to fix).
-
I don't know securitycraft or opensecurity but you can put a redstone card into the computer and get a redstone signal on incoming wormholes.
-
The computer has to activate each chevron individually and if you start the update everything else gets disabled even the dialing sequence. Just don't update the dialing computer while it's dialing the gate. (I should probably not allow updating while dialing)
-
Update 3.2: AUNIS support added The mod is cool but the computer support is a bit limited compared to SGCraft. The computer cannot... ...send messages to the other side. ...get the address of the connected gate (local or remote). ...find out how much energy is required to dial a gate. The symbols in the AUNIS addresses have to be seperated with a hyphen "-" to function in nexDHD. Have fun with this
-
I've looked at it ... but for example let's look how both mods handle dialing the gate from a computer. SG-Craft works like this: sg.dial("ABC-DEF-GHI") and AUNIS works like this: sg.engageSymbol("symbol name 1") "wait for event locked symbol 1" sg.engageSymbol("symbol name 2") "wait for event locked symbol 2" sg.engageSymbol("symbol name 3") "wait for event locked symbol 3" sg.engageSymbol("symbol name 4") "wait for event locked symbol 4" sg.engageSymbol("symbol name 5") "wait for event locked symbol 5" sg.engageSymbol("symbol name 6") "wait for event locked symbol 6" sg.engag