48 lines
2.1 KiB
Markdown
48 lines
2.1 KiB
Markdown
<table align=center>
|
|
<tr>
|
|
<td>
|
|
|
|
<h1 align=center>(S)ophie</h1>
|
|
<h1 align=center>(I)ncorporated</h1>
|
|
<p align=center> </p>
|
|
<h1 align=center>(S)torage</h1>
|
|
<h1 align=center>(S)olution</h1>
|
|
|
|
</td>
|
|
<td align="right" width="40%">
|
|
<img src="logo.png" alt="Logo" width="168">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
## How to use
|
|
1. First, in your /config.lua file, add the following:
|
|
```lua
|
|
return {
|
|
["inventories"] = { -- REQUIRED!! Please set at least one inventory pattern.
|
|
".*barrel.*" -- Lua patterns to match all barrels
|
|
},
|
|
["import"] = { -- Not required, just don't set!
|
|
"ender_storage_156" -- A inventory I want to move all items from into our storage
|
|
},
|
|
["chatbox"] = { -- Not required, just don't set!
|
|
["hartbreix"] = "manipulator_42" -- Chatbox support
|
|
}
|
|
}
|
|
```
|
|
2. Run the following command:
|
|
```
|
|
wget run https://git.sad.ovh/sophie/storage-solution/raw/branch/main/src/.main-installer.lua
|
|
```
|
|
|
|
This will install storage-solution to /storage-solution.
|
|
To make it start every time you turn on the computer, add
|
|
|
|
```
|
|
shell.run("wget run https://git.sad.ovh/sophie/storage-solution/raw/branch/main/src/.main-installer.lua")
|
|
```
|
|
to startup.lua
|
|
|
|
### [EXTRA!]
|
|
|
|
You can also run `wget run https://files.sad.ovh/public/storage-solution/.beta-installer.lua`, which is quite unstable. You may experience issues while running the beta version, but also new juicy features :)
|