Starting Resources
To ensure your server loads resources automatically when it starts, you need to configure your server.cfg file.
Adding Resources to server.cfg
- Open your
server.cfgfile using a text editor (e.g., Notepad++ or Visual Studio Code). - Use the
ensurecommand to load individual resources. Example:
# Ensuring individual resources
ensure resource1
ensure resource2Using ensure for Resource Folders
Instead of adding each resource individually, you can load all resources from a folder by using square brackets []:
# Ensuring all resources in a folder
ensure [resourcefolder1]
ensure [resourcefolder2]All resources within the specified folders will be automatically loaded when the server starts, making your configuration simpler and more efficient.