diff --git a/docs/home/installer.md b/docs/home/installer.md index cddd247..4bd7895 100644 --- a/docs/home/installer.md +++ b/docs/home/installer.md @@ -8,9 +8,9 @@ Here is a very basic one which just installs basalt.lua if don't exist: --Basalt configurated installer local filePath = "basalt.lua" --here you can change the file path default: basalt.lua if not(fs.exists(filePath))then - shell.run("pastebin run ESs1mg7P "..filePath) -- this is an alternative to the wget command + shell.run("pastebin run ESs1mg7P packed true "..filePath) -- this is an alternative to the wget command end -local basalt = dofile(filePath) -- here you can change the variablename in any variablename you want default: basalt +local basalt = require(filePath:gsub(".lua", "")) -- here you can change the variablename in any variablename you want default: basalt ``` ## Advanced Installer @@ -51,7 +51,7 @@ if not(fs.exists(filePath))then local event, p1,p2,p3,p4 = os.pullEvent() if(event=="mouse_click")then if(p3==math.floor(h/2+2))and(p2>=w/2-8)and(p2<=w/2-2)then - shell.run("pastebin run ESs1mg7P "..filePath) + shell.run("pastebin run ESs1mg7P packed true "..filePath) _installerWindow.setVisible(false) term.clear() break @@ -69,6 +69,6 @@ if not(fs.exists(filePath))then term.clear() end -local basalt = dofile(filePath) -- here you can change the variablename in any variablename you want default: basalt +local basalt = require(filePath:gsub(".lua", "")) -- here you can change the variablename in any variablename you want default: basalt ------------------------------ ```