Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hello, I've created some .nbt files using a structure block and I use

public class StructureGenHelper extends WorldGenerator implements IStructure {
	public String structureName;

	public StructureGenHelper(String name) {
		structureName = name;
	}

	@Override
	public boolean generate(World worldIn, Random rand, BlockPos position) {
		generateStructure(worldIn, position);
		return true;
	}

	public boolean generateStructure(World world, BlockPos pos) {
		MinecraftServer mcServer = world.getMinecraftServer();
		TemplateManager manager = worldServer.getStructureTemplateManager();
		ResourceLocation location = new ResourceLocation(Main.MODID, structureName);
		Template template = manager.get(mcServer, location);

		if (template == null) {
			Messages.serverLog(Main.logger, "The structure " + structureName + " doesn't exist!", 3);
		}

		if (template != null) {
			IBlockState state = world.getBlockState(pos);
 			world.notifyBlockUpdate(pos, state, state, 3);
            template.addBlocksToWorldChunk(world, pos, settings);
			return true;
		}
		return false;
	}
}

to generate a structure but I have a problem to rotate the structure based where the player is facing, can someone help me or point me to the right direction? Thanks

Guest
This topic is now closed to further replies.

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.