Changing the server owner is a two-step process that requires editing a file and then running a command in-game.
-
Edit the Config File:
- Stop your server.
- Open the file
AddonExeBP/scripts/config.js. - Find the
ownerPlayerNamesarray and replace the name(s) with the new owner's exact in-game name. - Save the file and start your server.
-
Reload the Config In-Game:
- Once the server is online, have an admin or operator run the command
/xreload. - This will sync the change from the file, and the new owner will receive their rank.
- Once the server is online, have an admin or operator run the command
For more details, see the Configuration Guide.
There are a few ways to grant admin permissions, with different results:
-
Recommended Method (Instant Permissions): Use the in-game command if you are already an admin:
/admin add <target: player>- This will give the player the admin tag and update their permissions immediately.
-
Operator Method (Instant Permissions): If you have operator permissions but not the admin rank yet, you can grant it to yourself with:
/function admin- This will give you the admin tag and update your permissions immediately.
-
Alternative Method (Delayed Permissions): Use the vanilla
/tagcommand:/tag "<playerName>" add admin- Important: If you use this method on an online player, their permissions will not update until they rejoin the server.
For the best experience, especially for server owners who need to configure the addon, we recommend a manual installation. This ensures you can easily access the configuration files.
-
Download the Addon:
- Go to the GitHub Releases page and download the latest
.mcaddonfile.
- Go to the GitHub Releases page and download the latest
-
Extract the Packs:
- Do not open the
.mcaddonfile directly. Instead, rename it to end in.zip(e.g.,AddonExe.mcaddon->AddonExe.zip). - Unzip the file. You will find two folders inside:
AddonExeBP(the Behavior Pack) andAddonExeRP(the Resource Pack).
- Do not open the
-
Move the Packs to Minecraft:
- You need to find your Minecraft's
com.mojangfolder. The location varies by device:- Windows:
C:\\Users\\<YourUsername>\\AppData\\Local\\Packages\\Microsoft.MinecraftUWP_8wekyb3d8bbwe\\LocalState\\games\\com.mojang - Android:
/Android/data/com.mojang.minecraftpe/files/games/com.mojang/ - iOS: The
On My iPad/iPhone/iPod > Minecraft > games > com.mojangfolder inside the Files app.
- Windows:
- Move the
AddonExeBPfolder into thebehavior_packsfolder. - Move the
AddonExeRPfolder into theresource_packsfolder. - If these folders don't exist, you can create them.
- You need to find your Minecraft's
-
Apply in Your World:
- Open Minecraft and go to the settings of the world you want to add AddonExe to.
- Under "Behavior Packs", activate
AddonExeBP. - Under "Resource Packs", activate
AddonExeRP. - Make sure the Behavior Pack is at the top of the list to ensure it works correctly.
-
Enable Required Game Settings:
- In your world settings, under the "Game" section, ensure "Activate Cheats" is turned ON.
- Under the "Experiments" section, toggle "Beta APIs" to ON.
- The addon will not work without these settings.
After these steps, the addon should be installed and ready to configure!
Installing on a Bedrock Dedicated Server is slightly different, as you manually manage the world files.
-
Place the Pack Folders:
- After extracting the
AddonExeBPandAddonExeRPfolders, move them into your BDS's main directory. AddonExeBPgoes into thebehavior_packsfolder.AddonExeRPgoes into theresource_packsfolder.
- After extracting the
-
Activate the Packs:
- You need to tell the server to use the addon's packs. To do this, download the following two files from the root of the repository:
- Place both of these files into the root folder of your world (the same folder that contains your
level.dat). - The server will read these files on startup and automatically activate the required packs for that world. The version
[0,1,0]in these files should be updated whenever you update the addon
-
Enable Beta APIs for BDS:
- AddonExe requires the "Beta APIs" experimental feature to be enabled. This can be tricky on BDS. You have two main options:
- Easy Method (Recommended): Download your world folder from the server. Open the world in a local version of Minecraft (on PC or mobile), go into the world settings, and enable the "Beta APIs" toggle under "Experiments". Then, re-upload the modified world folder to your server.
- Advanced Method: Use an NBT editor (like NBTStudio) to manually edit your world's
level.datfile. You need to find theexperimentstag and add a tag namedgametestwith a value of1(byte). This method is powerful but can corrupt your world if done incorrectly.
- AddonExe requires the "Beta APIs" experimental feature to be enabled. This can be tricky on BDS. You have two main options: