@@ -21,6 +21,8 @@ By default, without parameters, `update` updates the SCM script.
2121- ` all ` : Removes and downloads all installed scripts.
2222- ` <name> <sourceName> ` : Removes and downloads an installed script from a specific source. Sources can be added via the ` source ` command.
2323## source
24+ ** ` source ` commands have not yet been implemented.**
25+ Feel free to do so [ here] ( https://github.com/mc-cc-scripts/script-manager/issues/2 ) .
2426- ` add <scriptName> <sourceName> <source> ` : Adds a source (URL, Pastebin Code, ...) with a name to a script.
2527- ` get <scriptName> ` : Shows all sources of a script.
2628- ` remove <scriptName> <sourceName> ` : Removes a source from a script.
@@ -39,6 +41,7 @@ Shows all available configurations.
3941Shows all available commands and their description.
4042- ` <name> ` : Shows the description of a command by name.
4143
44+ # Example
4245## Requires
4346If you want to load a library within a program and keep it updated through SCM, then you can do that with the following notation:
4447
@@ -47,7 +50,7 @@ local scm = require("./scm")
4750scm :load (" testLibrary" )
4851```
4952
50- If the Library is already called by a Programm using this SCM loader, SCM will check all Libraries loaded for these comments:
53+ If the library is already called by a program using this SCM loader, SCM will check all libraries loaded for these comments:
5154
5255
5356``` lua
@@ -56,7 +59,7 @@ require("./libs/subLibrary")
5659
5760```
5861The comment tells SCM to look for the sub-library and, if it's not already installed, it will try to download it.
59- This prevent the programm from Crashing , should SCM not be installed.
62+ This prevents the program from crashing , should SCM not be installed.
6063
6164### Pastebin
6265
0 commit comments