Prep for RP

This commit is contained in:
ForestOfLight
2025-04-15 09:14:10 -07:00
Unverified
parent 53c886dd17
commit 6a0f2ba376
34 changed files with 0 additions and 0 deletions
@@ -0,0 +1,20 @@
import { Command } from '../lib/canopy/CanopyExtension';
import { extension } from '../config';
import { world, system } from '@minecraft/server';
import { MenuForm } from '../classes/MenuForm';
const ACTION_ITEM = 'minecraft:paper';
const structoolCmd = new Command({
name: 'structool',
description: { text: 'Opens the StrucTool Menu. Using a paper will also open the menu.' },
usage: 'structool',
callback: (sender) => new MenuForm(sender)
});
extension.addCommand(structoolCmd);
world.beforeEvents.itemUse.subscribe((event) => {
if (!event.source || event.itemStack?.typeId !== ACTION_ITEM) return;
event.cancel = true;
system.run(() => structoolCmd.getCallback()(event.source));
});