Skip to content
This repository was archived by the owner on Aug 10, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "0.3.0",
"configurations": [
{
"type": "minecraft-js",
"request": "attach",
"name": "Debug with Minecraft",
"mode": "listen",
"targetModuleUuid": "000abe0b-dcba-43ac-a52f-ee8489a18ce5",
"localRoot": "${workspaceFolder}/packs/BP/scripts",
"port": 19144
}
]
}
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@

[![GitHub Downloads](https://img.shields.io/github/downloads/ForestOfLight/Understudy/total?label=Github%20downloads&logo=github)](https://github.com/ForestOfLight/Understudy/releases/latest)
[![Curseforge Downloads](https://cf.way2muchnoise.eu/full_1093805_downloads.svg)](https://www.curseforge.com/minecraft-bedrock/addons/understudy)
[![Minecraft - Version](https://img.shields.io/badge/Minecraft-v26.20_(Bedrock)-brightgreen)](https://feedback.minecraft.net/hc/en-us/sections/360001186971-Release-Changelogs)
[![Minecraft - Version](https://img.shields.io/badge/Minecraft-v26.30_(Bedrock)-brightgreen)](https://feedback.minecraft.net/hc/en-us/sections/360001186971-Release-Changelogs)
[![Discord](https://badgen.net/discord/members/9KGche8fxm?icon=discord&label=Discord&list=what)](https://discord.gg/9KGche8fxm)
[![BuyMeACoffee](https://raw.githubusercontent.com/pachadotdev/buymeacoffee-badges/main/bmc-donate-yellow.svg)](https://buymeacoffee.com/forestoflight)
</div>

Understudy gives you complete control over simulated players in your Minecraft Bedrock world. Afk your farms, load areas, and more -- all through a set of powerful, intuitive commands!
Expand Down Expand Up @@ -97,3 +98,7 @@ These rules can be toggled in **Canopy**.

- **`simplayerRejoining`**: Makes online simulated players rejoin when the world reloads.
- **`noSimplayerSaving`**: Disables saving playerdata for simulated players. Improves performance but causes simulated players to lose their inventory and location when they leave and rejoin.

## Donate

If you appreciate my work here and would like to support the future development of my addons, please consider donating to me on [BuyMeACoffee](https://buymeacoffee.com/forestoflight). Your support is greatly appreciated!
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"vitest": "^3.1.2"
},
"dependencies": {
"@minecraft/server": "^2.7.0-beta.1.26.14-stable",
"@minecraft/server-gametest": "^1.0.0-beta.1.26.14-stable"
"@minecraft/server": "^2.9.0-beta.1.26.30-stable",
"@minecraft/server-gametest": "^1.0.0-beta.1.26.30-stable"
}
}
12 changes: 6 additions & 6 deletions packs/BP/manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"format_version": 2,
"header": {
"name": "Understudy v1.2.2",
"name": "Understudy v1.2.3",
"description": "Simulated player extension for §l§aCanopy§r by §aForestOfLight§r.",
"uuid": "bb50de74-6e59-467b-871f-8ef829ab579f",
"min_engine_version": [1, 26, 20],
"version": [1, 2, 2]
"min_engine_version": [1, 26, 30],
"version": [1, 2, 3]
},
"modules": [
{
Expand All @@ -26,15 +26,15 @@
"dependencies": [
{
"module_name": "@minecraft/server",
"version": "2.8.0-beta"
"version": "2.9.0-beta"
},
{
"module_name": "@minecraft/server-gametest",
"version": "1.0.0-beta"
},
{
"uuid": "7f6b23df-a583-476b-b0e4-87457e65f7c0", // Canopy BP
"version": [1, 5, 6]
"uuid": "7f6b23df-a583-476b-b0e4-87457e65f7c0",
"version": [1, 5, 7]
}
]
}
2 changes: 1 addition & 1 deletion packs/BP/scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const extension = new CanopyExtension({
author: 'ForestOfLight',
name: 'Understudy',
description: 'Simulated Players for §l§aCanopy§r',
version: '1.2.2'
version: '1.2.3'
});

import './commands/join';
Expand Down
Loading