«    February 2026    »
MonTueWedThuFriSatSun
 1
2345678
9101112131415
16171819202122
232425262728 
February 2026 (80)
January 2026 (128)
December 2025 (59)
November 2025 (90)
October 2025 (67)
September 2025 (54)
 
For-Minecraft.com » Mods for Minecraft Pocket Edition » Sync: Mod Maker Addon v1.3 for Bedrock 1.21/26.0.X
0

Sync: Mod Maker Addon v1.3 for Bedrock 1.21/26.0.X




Sync is for creating mods (or add-ons to be more precise) directly inside Minecraft Bedrock. The add-on turns the interface into a development environment where you dont need to write code to change how the world works. If you've ever dreamed of having your own quests, shops, achievement system, or objects with custom properties on your server or in solo survival just use Sync. Below you will find an example of creating one of the add-ons.

By: ExterLeo

Sync: Mod Maker Addon v1.3 for Bedrock 1.21/26.0.X

Features:

  • In-game editor
  • Convenient grouping of functions and variables for different tasks.
  • Ability to configure triggering only for specific blocks, items or mobs.
  • Checking the player's state - whether they are sneaking, sleeping, flying or on fire.
  • Using inserts like {player} or {item_name} in texts to personalize messages.
  • Execution of tasks at specified intervals (ticks)
  • All created systems work on servers and in Realms worlds!
  • Built-in console for debugging your scripts in real time.

Sync: Mod Maker Addon v1.3 for Bedrock 1.21/26.0.X

Where to start:

The first thing that catches your eye when using Sync is the move away from console commands toward visual menus. After entering the command /sync menu, a folder system will open in front of you. This is the base from which you create a folder (for example, Food Effects), and inside it you set up the functions. This approach helps you avoid confusion when your mod building grows to dozens of different rules.

Sync: Mod Maker Addon v1.3 for Bedrock 1.21/26.0.X

Sync: Mod Maker Addon v1.3 for Bedrock 1.21/26.0.X

Triggers and the living world:

All work is based on hooks. Do you want experience to drop when any block is broken? Select the Player Break Block event, set the filter to any and write the command. The add-on understands a huge number of actions; from using a specific item to the death of a mob or a message in chat.

  • Before: triggers before the action happens. Here you can cancel the event (for example prohibit breaking blocks in a certain area).
  • After: triggers immediately after the action, suitable for giving out rewards.

Sync: Mod Maker Addon

Sync: Mod Maker Addon

Variables and automation:

Sync has a powerful built-in variable system, which means you can create kill counters, reputation levels, wallet balances, anything that has a count. Variables can be global (shared for all) or local (each player has there own). Also there is a system of loops that run in the background. With there help, its easy to create a timer, automatic lag clearing etc.

Sync: Mod Maker Addon

Visualization (also available in Sync):

For those who want to make their project look professional, there is a custom interface (UI) builder. You can create pop-up windows with buttons, text fields, input forms and more. For example a player clicks on an item, and a class selection menu opens where all interaction happens through buttons instead of chat.

Sync: Mod Maker Addon

How to create your first mechanic in Sync from scratch?

For example, we want to make a magic item - when the player uses a feather, they fly up and recieve a levitation effect.

Here is a step-by-step algorithm:

Preparation and folder creation

  1. First, you need to get access to the tools.
  2. Type /tag @s add sync in chat to give yourself administrator rights.
  3. Enter the command /sync menu.
  4. Click Create Folder. Name it, for example, Magic_Items.

Creating a function and selecting a trigger (Hook)

  1. Go to your folder and select Create Function.
  2. The system will prompt you to select a Hook (trigger event). For this case, select Item Use.

Setting up filters and conditions

  1. To prevent the effect from triggering from any item in your hands you need to set a filter.
  2. In the input field type feather. If you want multiple items separate them with commas.
  3. Click Submit.
  4. Next the Conditions section will appear. Here you can select, for example isSneaking, so that the magic only works when you are crouching. If you want it to work all the time just click Confirm without selecting anything.

Adding actions (Commands)

  1. Go to the Commands section and click Add Command.
  2. Executor: select Player (the command will be executed on behalf of the player)
  3. Command: write the command itself for example; effect @s levitation 2 5 true.
  4. You can add a second command via Add Part

Configuring the event (Event Phase)

  1. In the function menu, find the Switch Event button.
  2. Select After.

Video how to create addons in Bedrock:




Download Sync: Mod Maker Addon v1.3 for Bedrock 1.21/26.0.X


Recommend:



Name:*
E-Mail:
Captcha: *
Up © 2025 For-Minecraft.com