Disable Custom Script into my server
- 
Hello, I started another server, but I would like it to be a vanilla server without custom scripts, how can I disable them? 
- 
My preferred way is to have a separate plutonium directory (the one in %LocalAppData%\Plutonium, where you put your scripts) for every server. - Create update.bat
 @echo off set plutonium=C:\path\to\plutonium.exe set installDir=C:\unique\dir "%plutonium%" -install-dir "%installDir%" -update-only- change plutonium var (C:\path\to\plutonium.exe) to the path of your plutonium.exe
- change installDir var (C:\unique\dir) to the directory you want for the servers plutonium files
- this has to be different for every server that should use different scripts
 
 - 
Update your start.bat 
 if you use the default start bat, there'll be a line like this
 cd /D %LOCALAPPDATA%\Plutonium
 change "%LOCALAPPDATA%\Plutonium" to the path you set for installDir
- 
Put scripts on the new plutonium folder, or don't if you don't want any :^) 
 
 A different way is to modify your script(s) so they only load on servers with a specific port 
 https://forum.plutonium.pw/topic/17070/assign-a-script-to-another-server-how?_=1643248860552
- 
My preferred way is to have a separate plutonium directory (the one in %LocalAppData%\Plutonium, where you put your scripts) for every server. - Create update.bat
 @echo off set plutonium=C:\path\to\plutonium.exe set installDir=C:\unique\dir "%plutonium%" -install-dir "%installDir%" -update-only- change plutonium var (C:\path\to\plutonium.exe) to the path of your plutonium.exe
- change installDir var (C:\unique\dir) to the directory you want for the servers plutonium files
- this has to be different for every server that should use different scripts
 
 - 
Update your start.bat 
 if you use the default start bat, there'll be a line like this
 cd /D %LOCALAPPDATA%\Plutonium
 change "%LOCALAPPDATA%\Plutonium" to the path you set for installDir
- 
Put scripts on the new plutonium folder, or don't if you don't want any :^) 
 
 A different way is to modify your script(s) so they only load on servers with a specific port 
 https://forum.plutonium.pw/topic/17070/assign-a-script-to-another-server-how?_=1643248860552mxve 
 Thanks dude!
 Your guide works fine without problems!

