🌟FiveM Resource Loader - A fast way to install FiveM scripts from Github 🌟
- Download FiveM scripts from Github
- Places the script in selected resource folder
- Adds
ensure {script_name}
toserver.cfg
- help
help
- First time setup
(replaceC:\Users\fivem\server-data
with your actual path on server)
setup --server-data-path C:\Users\fivem\server-data
- Load a new script (Github)
This will download the master branch as a zip and extract them into selected resource destination. Make sure the repository is set to public and is following the supported project structure
Use--skip-cfg
to skip making changes to yourserver.cfg
load --url https://github.com/happsie/fivem-hello-world --script-name hello_world
- Load a new script (alternative source)
This will download source and extract them into selected resource destination. The download must be a.zip
file supported project structure
Use--skip-cfg
to skip making changes to yourserver.cfg
. See below example
load --url http://drive.google.com/uc?export=download&id={your_file_id} --script-name hello_world
- See loaded scripts by FiveM-loader
loaded
- Unload script
Replacehello_world
with your script name. You can see script names by using the commandloaded
.
Important, fivem-loader will at this version not automatically remove the config for the project
unload --script-name hello_world
- Update single script installed by FiveM Loader
update --script-name hello_world
- Update all installed scripts by FiveM Loader
update
The supported structure for repositories using this tool will be updated to support different kind of repository structures
only one FiveM-script per repository is currently supported to 100%