-
Notifications
You must be signed in to change notification settings - Fork 0
Command
Noah edited this page Sep 20, 2024
·
2 revisions
BetterReload functions through the following commands:
/reload/BetterReload/BetterReload:reload
In legacy versions tab completion is only available through /BetterReload and /BetterReload:reload due to a lack of a pre-processing stage for tab completions.
Any player with the permission node better.reload will be able to execute the reload command.
If you include no parameters in the command a ReloadEvent will be triggered for all plugins.
If you include parameters in the command, BetterReload will attempt to match those parameters to plugins and reload them in the order they are specified.
Example on a server with plugins Test1 and Test2:
-
/reloadwill reload Test1 and Test2. -
/reload Test1will reload Test1. -
/reload Test1 Test2will reload Test1 and then Test2. -
/reload Test1 Test2 Test1will reload Test1, Test2, then Test1 again. -
/reload InvalidPlugin Test1will reload Test1.