Compare commits

..

No commits in common. "c19888f59760276bea52f16cffe6daf9039e57f7" and "bee8f740c67440189b4802262f68f4e514dafa48" have entirely different histories.

2 changed files with 0 additions and 32 deletions

View File

@ -6,14 +6,6 @@ This is an implementation of a centralized storage network architecture that use
A GPS will need to be established and be accurate within range of the entire network to the block.
Slave nodes must have a modem attached and be within range of the GPS and master.
The master node must have a modem attached and be within range of all slave nodes.
1. Deploy at least one slave node
* The inventory it is to monitor must be above or in front of the unit
* The unit should be able to drop below itself to push items to the master node
## Communication Protocol
Port 42914 is used for Master => Slave broadcasting

View File

@ -1,24 +0,0 @@
#! /bin/sh
#
# deploy.sh
# Copyright (C) 2024 Jacob Babor <jacob@babor.tech>
#
# Distributed under terms of the MIT license.
#
mcroot="$HOME/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/instances/ComputerCraft Sandbox/"
world="New World"
masterid="0"
slaveid="1"
_ccroot="$mcroot/.minecraft/saves/$world/computercraft/computer"
ls -al "$_ccroot"
if [ -f master.lua ]; then
cp master.lua "$_ccroot/$masterid/autostart.lua"
fi
if [ -f slave.lua ]; then
cp slave.lua "$_ccroot/$slaveid/autostart.lua"
fi