Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/der-fruhling/what-the-pack
Minecraft: Bedrock Edition nonsense
https://github.com/der-fruhling/what-the-pack
behavior-pack minecraft minecraft-bedrock
Last synced: about 21 hours ago
JSON representation
Minecraft: Bedrock Edition nonsense
- Host: GitHub
- URL: https://github.com/der-fruhling/what-the-pack
- Owner: der-fruhling
- License: mit
- Created: 2022-09-10T04:59:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-05T06:00:22.000Z (about 2 years ago)
- Last Synced: 2023-11-10T22:28:16.477Z (about 1 year ago)
- Topics: behavior-pack, minecraft, minecraft-bedrock
- Language: PowerShell
- Homepage:
- Size: 944 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# What the Pack!?
This is a Bedrock behavior pack, resource pack, and world template that
intentionally don't make much sense.## Installing
Check out the releases page for precompressed addon files, which you can
import directly into your game (can't be done on consoles).Or, if you want, generate it from a branch or tag of your choice by running
`Package.ps1` (you may need to allow scripts to run on your machine first):```pwsh
# Generate the default configuration (everything)
.\Package.ps1
# => what.mcaddon
# |- => resource pack
# |- => behavior pack
# \- => world template# Generate with only the specified components
# (this command is equivilent to the above command)
.\Package.ps1 -Build Resources,Behavior,WorldTemplate
# => what.mcaddon
# |- => resource pack (Resources)
# |- => behavior pack (Behavior; depends on Resources)
# \- => world template (WorldTemplate; depends on Behavior and Resources)# Generate individual pack files (can be combined with -Build)
.\Package.ps1 -Individual
# => what-behavior.mcpack => behavior pack
# => what-resources.mcpack => resource pack
# => what-world-template.mctemplate => world template
```