diff --git a/_site/allprojects/index.html b/_site/allprojects/index.html deleted file mode 100644 index 855814e..0000000 --- a/_site/allprojects/index.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - - - neoBeta - - -
- - -
- - - - -
-
- - \ No newline at end of file diff --git a/_site/android-chrome-192x192.png b/_site/android-chrome-192x192.png deleted file mode 100644 index d3b612d..0000000 Binary files a/_site/android-chrome-192x192.png and /dev/null differ diff --git a/_site/android-chrome-512x512.png b/_site/android-chrome-512x512.png deleted file mode 100644 index b816eaa..0000000 Binary files a/_site/android-chrome-512x512.png and /dev/null differ diff --git a/_site/apple-touch-icon.png b/_site/apple-touch-icon.png deleted file mode 100644 index cabf8ac..0000000 Binary files a/_site/apple-touch-icon.png and /dev/null differ diff --git a/_site/assets/MinecraftRegular-Bmg3.otf b/_site/assets/MinecraftRegular-Bmg3.otf deleted file mode 100644 index 54f08ad..0000000 Binary files a/_site/assets/MinecraftRegular-Bmg3.otf and /dev/null differ diff --git a/_site/assets/logo.png b/_site/assets/logo.png deleted file mode 100644 index 337a46b..0000000 Binary files a/_site/assets/logo.png and /dev/null differ diff --git a/_site/assets/mod-placeholder.png b/_site/assets/mod-placeholder.png deleted file mode 100644 index e91cc2e..0000000 Binary files a/_site/assets/mod-placeholder.png and /dev/null differ diff --git a/_site/assets/search.js b/_site/assets/search.js deleted file mode 100644 index fe6d015..0000000 --- a/_site/assets/search.js +++ /dev/null @@ -1,52 +0,0 @@ -fetch('/search_index.json') - .then(r => r.json()) - .then(data => { - const idx = elasticlunr.Index.load(data); - const docs = idx.documentStore.docs; - const searchInput = document.getElementById('search'); - const out = document.getElementById('searchResults'); - const filterSelect = document.getElementById('searchMode'); - - function runSearch(q, tags = 'all') { - let result = idx.search(q, { expand: true }).map(r => docs[r.ref] ) - if (tags === 'all') { - return result; - } - - result = result.filter(d => tags === 'all' || d.tags.includes(tags)); - - return result; - } - - function render(doc) { - console.log(doc.imageq) - let tagsHTML = ""; - console.log(doc.tags) - - doc.tags.forEach(tag => { - tagsHTML += `
${tag}
` - }); - - return `
-

${doc.image ? `` : ''} ${doc.title}${doc.author ? ` by ${doc.author}` : ''}

-

${doc.subtitle}

-
- ${tagsHTML} -
-
`; - } - - function update() { - const q = searchInput.value.trim(); - if (!q) { - out.innerHTML = ''; - return; - } - - const results = runSearch(q, filterSelect.value); - out.innerHTML = results.map(render).join(''); - } - - searchInput.addEventListener('input', update); - filterSelect.addEventListener('change', update); - }); \ No newline at end of file diff --git a/_site/assets/stylesheets/home.css b/_site/assets/stylesheets/home.css deleted file mode 100644 index 11f9251..0000000 --- a/_site/assets/stylesheets/home.css +++ /dev/null @@ -1,28 +0,0 @@ -#homeUpdates { - background-color: var(--accent-secondary); - border: thick solid var(--accent-color); - width: 50%; - margin: 0px 2em 2em 2em; - padding: 1em; - height: fit-content; - border-radius: 4px; -} - -#featureAndUpdates { - display: flex; - flex-direction: row; - margin-top: 1em; -} - -@media only screen and (max-width: 1280px) { - #featureAndUpdates { - flex-direction: column; - gap: 1em; - flex-flow: column-reverse; - } - - #homeUpdates { - width: 100%; - margin: 0; - } -} \ No newline at end of file diff --git a/_site/assets/stylesheets/project.css b/_site/assets/stylesheets/project.css deleted file mode 100644 index 7a8f9ae..0000000 --- a/_site/assets/stylesheets/project.css +++ /dev/null @@ -1,121 +0,0 @@ -#projectTitle { - font-size: xx-large; -} - -#projectTitleSubtitle { - margin-top: auto; - margin-bottom: auto; -} - -#projectTitleSubtitle h1 { - margin-bottom: 0; -} - -#projectHeader { - padding-top: 20px; - gap: 20px; - display: flex; -} - -#project { - display: flex; - flex-direction: column; - gap: var(--box-gap); - width: 100%; -} - -#downloadLink { - color: gray; - height: fit-content; - margin-top: auto; - margin-bottom: auto; - margin-left: auto; - text-align: right; - /* text-shadow: 2px 2px black; */ -} - -#downloadButton:hover { - cursor: pointer; -} - -#projectHeader img { - outline: 2px solid gray; - height: 5em; - image-rendering: pixelated; -} - -#projectTitleAuthor { - display: flex; -} - -#projectAuthor { - margin-left: .6em; - margin-top: auto; - /* margin-bottom: .4em; */ -} - -#projectImageCarrousel { - outline: 2px solid gray; - padding: 1rem; - display: flex; - flex-direction: column; - width: 50%; -} - -#projectCarrouselImageHolder { - height: 100%; - gap: 1em; - overflow: auto; - scroll-margin-left: 10px; - overflow-x: scroll; - white-space: nowrap; -} - -.projectImage { - transition: .4s; - height: 95%; - max-width: 10em; - object-fit: cover; - /* filter: grayscale(); */ -} - -/* .projectImage:hover { - filter: none; - opacity: .8; - max-width: 100%; - object-fit: unset; -} */ - -#projectImagesAndInfo { - display: flex; - gap: 2em; - height: 12em; -} - -#projectInfo { - outline: 2px solid var(--accent-color); - background-color: var(--accent-background); - flex-grow: 1; - padding: 1em; - overflow-y: auto; -} - -@media only screen and (max-width: 1280px) { - #projectImagesAndInfo { - flex-direction: column; - flex-grow: unset; - } - - #projectImagesAndInfo { - height: unset; - } - - #projectInfo { - height: 13em; - } - - #projectImageCarrousel { - height: 13em; - width: unset; - } -} \ No newline at end of file diff --git a/_site/assets/stylesheets/search.css b/_site/assets/stylesheets/search.css deleted file mode 100644 index dcd4558..0000000 --- a/_site/assets/stylesheets/search.css +++ /dev/null @@ -1,18 +0,0 @@ -.searchItemImage { - height: 1em; -} - -.searchItemTagHolder { - display: flex; - padding-top: .2em; - gap: .4em; -} - -.searchItemTagHolder div { - border: thin solid greenyellow; - padding: .1em .2em .1em .2em; -} - -.searchItemDescription { - margin-bottom: 0px; -} diff --git a/_site/assets/stylesheets/styles.css b/_site/assets/stylesheets/styles.css deleted file mode 100644 index 61730e9..0000000 --- a/_site/assets/stylesheets/styles.css +++ /dev/null @@ -1,272 +0,0 @@ -:root { - --text-color: white; - --accent-color: greenyellow; - --accent-secondary: green; - --box-gap: 2rem; - --accent-background: rgb(0, 30, 0); -} - -* { - margin: 0; - padding: 0; - box-sizing: border-box; - scrollbar-color: var(--accent-color) var(--accent-background); -} - -@font-face { - font-family: Minecraft; - src: url("/assets/MinecraftRegular-Bmg3.otf") format("opentype"); -} - -body { - font-family: Minecraft, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; - background-color: black; - color:white; - font-size : clamp(1.2rem, .2vw, 2rem); -} - -header { - display: flex; - text-align: center; -} - -aside { - width: min-content; - user-select: none; -} - -a { - text-decoration: none; - color: var(--accent-color); -} - -main { - outline: 2px solid gray; - padding: 1em; - background-color: black; - height: fit-content; - border-radius: 0 0 4px 4px; - width: 100%; -} - -/* main:last-child { - margin-bottom: 0px; - padding-bottom: 0px; -} */ - -button { - padding: 10px; - border: medium solid var(--accent-color); - background: linear-gradient(var(--accent-color), var(--accent-secondary)); - border-radius: 2px; - color: white; -} - -code { - background-color: darkslategray; - color: var(--accent-color); - padding-left: .2em; - padding-right: .2em; - font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; - border-radius: 2px; - display: inline-block; -} - -input, select { - padding: .4em; - background-color: black; - color: white; - border: medium solid var(--accent-color); -} - -p, ul { - padding-bottom: .6em; -} - -img { - image-rendering: pixelated; -} - -hr { - margin-bottom: 1em; -} - -#linksBox { - padding: 2em; - display: flex; - justify-content: center; - align-items: center; - flex-direction: column; - width: 100%; - background-color: black; - outline: 2px solid var(--accent-color); - border-radius: 0 0 4px 4px; - height: fit-content; - gap: 1em; - background-color: rgb(0, 30, 0); -} - -#headerLinks a { - margin-top: auto; - margin-bottom: auto; - padding: 0; - padding-left: 0; -} - -#everythingHelper { - max-width: 80%; - margin: auto; - transform: .2s; - display: flex; - gap: var(--box-gap); -} - -#headerLinks { - padding: 0; - text-align: left; - width: 100%; -} - -#headerLinksAndTitle { - display: flex; - flex-direction: column; - gap: 1em; -} - -#logoTitle { - display: flex; - flex-direction: column; - gap: .5em; -} - -#title { - margin: auto; - text-align: center; -} - -#logo { - height: 8em; -} - -#featured { - display: flex; - flex-direction: column; -} - -#featuredHelper { - display: flex; - flex-direction: column; -} - - -.featuredProject { - gap: 1em; - display: flex; - transition: .2s; - font-size: smaller; - padding: 4px; - overflow: hidden; -} - -.featuredProjectName { - margin-top: auto; - padding: 0; -} - -.featuredProjectSubtitle { -overflow: hidden; - width: 100%; - display: -webkit-box; - -webkit-line-clamp: 2; - -webkit-box-orient: vertical -} - -.featuredProjectSubtitle { - padding-bottom: 0px; -} - -.featuredProject img { - height: 5em; - border: medium solid var(--accent-color); -} - -.featuredProject p { - margin-right: auto; - margin-left: auto; - text-overflow:clip; -} - -#featured h2 { - font-size: medium; - font-weight: 100; - margin-bottom: 10px; -} - -#featuredHelper { - gap: 10px; - flex-wrap: wrap; -} - -li { - margin-left: 20px; - list-style-type: "> "; - margin-bottom: .4em; -} - -h1, h2, h3 { - margin-bottom: .4em; -} - -.errorQuote { - color: gray; -} - -.dimText { - opacity: .6; -} - -.rainbowText { - background: linear-gradient(to right, var(--text-color), var(--accent-color), var(--accent-secondary)); - -webkit-background-clip: text; - background-clip: text; - color: transparent; - animation: rainbow_animation 6s ease-in-out infinite; - background-size: 400% 100%; -} - -@keyframes rainbow_animation { - 0%,100% { - background-position: 0 0; - } - - 50% { - background-position: 100% 0; - } -} - -@media only screen and (max-width: 1280px) { - #everythingHelper { - flex-direction: column; - } - - aside { - width: 100%; - } - - #projectTitle { - font-size: larger; - } - - #headerLinksAndTitle { - flex-direction: row; - } - - #headerLinks { - margin-left: 2em; - } - -} - -@media only screen and (max-width: 300px) { - -} \ No newline at end of file diff --git a/_site/authors/tenkuma/index.html b/_site/authors/tenkuma/index.html deleted file mode 100644 index 04161e8..0000000 --- a/_site/authors/tenkuma/index.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - tenkuma - neoBeta - - -
- -
-
- -
-
-

tenkuma

-
-

A bear doing things on the internet.

-
-
- -
-

Images

-
- - - - - -
-
- -
-

I'm tenkuma. A bear, dreamer and sometimes developer.

-

You can find more about me on my website.

- -
-
-
- - \ No newline at end of file diff --git a/_site/authors/tenkuma/logo.png b/_site/authors/tenkuma/logo.png deleted file mode 100644 index 312682a..0000000 Binary files a/_site/authors/tenkuma/logo.png and /dev/null differ diff --git a/_site/authors/tenkuma/tenkuma-mrnando-enderdragon.jpg b/_site/authors/tenkuma/tenkuma-mrnando-enderdragon.jpg deleted file mode 100644 index 77eef4a..0000000 Binary files a/_site/authors/tenkuma/tenkuma-mrnando-enderdragon.jpg and /dev/null differ diff --git a/_site/authors/tenkuma/tenkuma-silverfish.jpg b/_site/authors/tenkuma/tenkuma-silverfish.jpg deleted file mode 100644 index e4a8f0d..0000000 Binary files a/_site/authors/tenkuma/tenkuma-silverfish.jpg and /dev/null differ diff --git a/_site/contribute/index.html b/_site/contribute/index.html deleted file mode 100644 index 2c05fd6..0000000 --- a/_site/contribute/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - neoBeta - - -
- - -
-

How can I get my project here?

-

neoBeta is an open-source content management system. There are various ways you can put your plugin/mod on our catalog:

- -

Required metadata fields

- -

Optional metadata fields

-

Please fill as many fields as possible.

- -

Config file example

-
{
-    "name": "Ghosts 'n Stuff",
-    "subtitle": "Miscellaneous additions to your server.",
-    "author": "tenkuma",
-    "downloadLink": "https://example.com",
-    "images": "["image1.png", "image2.png", "image3.png"]",
-    "logo": "logo.png",
-    "tags": ["plugin", "mod"]
-}
-
- -
-
- - \ No newline at end of file diff --git a/_site/error/404/index.html b/_site/error/404/index.html deleted file mode 100644 index a903e80..0000000 --- a/_site/error/404/index.html +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - neoBeta - - -
- - -
-

404 - Ouch! We hit a wall.

-

We didn't find what you are looking for...

- -

"If only the clockworks could speak
I wouldn't be so alone"

- - -
-
- - \ No newline at end of file diff --git a/_site/favicon-16x16.png b/_site/favicon-16x16.png deleted file mode 100644 index cc32a0b..0000000 Binary files a/_site/favicon-16x16.png and /dev/null differ diff --git a/_site/favicon-32x32.png b/_site/favicon-32x32.png deleted file mode 100644 index e9a0548..0000000 Binary files a/_site/favicon-32x32.png and /dev/null differ diff --git a/_site/favicon.ico b/_site/favicon.ico deleted file mode 100644 index 85cffca..0000000 Binary files a/_site/favicon.ico and /dev/null differ diff --git a/_site/index.html b/_site/index.html deleted file mode 100644 index c9021d0..0000000 --- a/_site/index.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - - - neoBeta - - -
- - -
- - - -

Howdy, traveler.

-

This website is the place for Minecraft plugins, made with users and developers in mind. neobeta is open-source, you can find out how the website is made in our GitHub repository (spoiler: there's some real magic going on).

-

Our catalog is made by developers and community, you can get involved by following the tutorial linked here.

-
-
-

Featured projects

- - - -
-
-

Latest updates

-

2025-10-27: Website redesign!
Yaaay! neoBeta got a stylish redesign.

-
-
-
-
- - \ No newline at end of file diff --git a/_site/projects/aboukkit/index.html b/_site/projects/aboukkit/index.html deleted file mode 100644 index aeb8892..0000000 --- a/_site/projects/aboukkit/index.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - Aboukkit - neoBeta - - -
- -
-
- - - -
-
-

Aboukkit

-

by tenkuma

-
-

A simple way to add custom commands with custom responses to your server.

-
- -
- -
- -

Aboukkit logo, abboukit written in a Minecraft's logo like font painted in red.

-

This plugin adds a simple way to add custom commands that will respond users with predefined messages from config.yml. It supports Minecraft's color coding (use & instead of ยง) and placeholders for player/server info (TODO).

-

Default Commands

-
    -
  • About
  • -
  • Aboukkit
  • -
-

These default commands need to be configured.

-

Adding new commands

-

First of all: run the server with the plugin for the first time, so config.yml is generated.

-

Follow the structure that the template shows in your config.yml. Then use a file explorer to open the plugin's JAR file and edit plugin.yml, you can copy a command entry and fill all the fields (be careful with indentation, YML does not support TAB).

-

Why?

-

I made this plugin because I have a server for version b1.7.3 and I wanted to add a /about command to give credit to the server founders and link to our website. So I made this that I will use every time I need a simple 'wall of text' command.

-

Newer versions

-

I don't see why I would build this for latest versions, I guess there are already better solutions. I made this just because of the lack of plugins for Minecraft beta.

- - -
-
-
- - \ No newline at end of file diff --git a/_site/projects/aboukkit/logo.png b/_site/projects/aboukkit/logo.png deleted file mode 100644 index afb395b..0000000 Binary files a/_site/projects/aboukkit/logo.png and /dev/null differ diff --git a/_site/projects/devilwithin/index.html b/_site/projects/devilwithin/index.html deleted file mode 100644 index d0c2923..0000000 --- a/_site/projects/devilwithin/index.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - The Devil Within - neoBeta - - -
- -
-
- - - -
-
-

The Devil Within

-

by tenkuma

-
-

Adds enchanting to Minecraft Beta. Supports balancing through curses.

-
- -
- -
- -

This plugin is a remake of GoldEnchant. -This plugin depends on tenkumaLib.

-

Have you ever wanted to have enchantments in your beta server? This is the plugin you want.

-

Enchanting

-

To enchant a armor piece you need to interact to a diamond block with a diamond armor piece in your hand.

-

Enchantments and Curses

-

All of those enchantments will not take effect if the damage exceeds the player's HP. An armor get cursed if it's durability is below 30%. Spooky bad stuff will happen if your armor is cursed :D

-

Helmet

-
    -
  • Prevents the player from drowning.
  • -
  • The player cannot sleep. If the player try to sleep a entity will tell the player the text set in the config.
  • -
-

Chestplate

-
    -
  • Prevents fire damage. Does not prevent lava damage.
  • -
  • Protects the player from fire damage only half of the time, also has a 25% chance to ignite the player every time it takes damage.
  • -
-

Leggings

-
    -
  • Nothing for now. Only useful for the full-set perks.
  • -
  • Makes player run slower 50% of the time a PlayerMoveEvent happens. The speed is randomly generated.
  • -
-

Boots

-

Prevents fall damage.

-

Full-set perks

-

If the player has a full-set of enchanted armor the condition of the damage being taken if it's greater than the player's HP is ignored, also the player gets immune to contact damage (cactus), lava damage and lava damage.

-

Config

-

Everything is explained in the config file's comments, in case it changes.

- - -
-
-
- - \ No newline at end of file diff --git a/_site/projects/devilwithin/logo.png b/_site/projects/devilwithin/logo.png deleted file mode 100644 index c45713c..0000000 Binary files a/_site/projects/devilwithin/logo.png and /dev/null differ diff --git a/_site/projects/ghostsandstuff/anti-spam.png b/_site/projects/ghostsandstuff/anti-spam.png deleted file mode 100644 index 0b0c38a..0000000 Binary files a/_site/projects/ghostsandstuff/anti-spam.png and /dev/null differ diff --git a/_site/projects/ghostsandstuff/docs/example_documentation/index.html b/_site/projects/ghostsandstuff/docs/example_documentation/index.html deleted file mode 100644 index 12a522e..0000000 --- a/_site/projects/ghostsandstuff/docs/example_documentation/index.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - neoBeta - - -
- -
-

You are seeing the documentation for:

-
-
-

Installation instructions for GhostsAndStuff

-
    -
  • Download the plugin JAR
  • -
  • Download the dependency JAR (tenkumaLib)
  • -
  • Move both to your server's plugin folder.
  • -
-

After following these steps the plugin should appear in the plugin list when you turn the server on.

- -
-
-
- - \ No newline at end of file diff --git a/_site/projects/ghostsandstuff/index.html b/_site/projects/ghostsandstuff/index.html deleted file mode 100644 index ed3d45a..0000000 --- a/_site/projects/ghostsandstuff/index.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - Ghosts 'n Stuff - neoBeta - - -
- -
-
- - - -
-
-

Ghosts 'n Stuff

-

by tenkuma

-
-

Miscellaneous additions to your Minecraft server.

-
- -
- -
- -
-

Images

-
- - - - - - - -
-
- -
-

Here's what we found:

- -

2 links.

- - - -

1 documentaion files.

- - -
-
- -
- -

This plugins was made to use stuff from my library that would not fit into any plugin (or not in the way presented here) that has a lot (WIP) of random stuff. Everything should be togglable in the config.

-

Features

-
    -
  • RainbowChat: Rainbow color code (&z by default).
  • -
  • SkibidiBlocker: Strike a lightning on players that say a word.
  • -
  • AntiSpam: Blocks repeated words in the chat. Optionally can strike a lightning to the player who is spamming.
  • -
- - -
-
-
- - \ No newline at end of file diff --git a/_site/projects/ghostsandstuff/logo.png b/_site/projects/ghostsandstuff/logo.png deleted file mode 100644 index 88dbaf5..0000000 Binary files a/_site/projects/ghostsandstuff/logo.png and /dev/null differ diff --git a/_site/projects/ghostsandstuff/rainbow-chat.png b/_site/projects/ghostsandstuff/rainbow-chat.png deleted file mode 100644 index 27a674a..0000000 Binary files a/_site/projects/ghostsandstuff/rainbow-chat.png and /dev/null differ diff --git a/_site/projects/ghostsandstuff/skibidi-blocker.png b/_site/projects/ghostsandstuff/skibidi-blocker.png deleted file mode 100644 index 01caef5..0000000 Binary files a/_site/projects/ghostsandstuff/skibidi-blocker.png and /dev/null differ diff --git a/_site/projects/hangglidere/index.html b/_site/projects/hangglidere/index.html deleted file mode 100644 index 2dc51c5..0000000 --- a/_site/projects/hangglidere/index.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - HangGlideRE - neoBeta - - -
- -
-
- -
-
-

HangGlideRE

-

by tenkuma

-
-

Fly with a chicken!

-
- -
- -
- -

Oopsie! :<

-

Seems like we don't have a description for this project.

-

"If only the clockworks could speak
I wouldn't be so alone"

- -
-
-
- - \ No newline at end of file diff --git a/_site/projects/tefreezer/index.html b/_site/projects/tefreezer/index.html deleted file mode 100644 index 9435dbc..0000000 --- a/_site/projects/tefreezer/index.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - teFreezer - neoBeta - - -
- -
-
- - - -
-
-

teFreezer

-

by tenkuma

-
-

Force your players to refrigerate their food by rotting food in unrefrigerated chests!

-
- -
- -
- -

Tefreezer written in Minecraft-like font in purple.

-

teFreezer is a fork of Freezer by outadoc, logo by malcolmriley.

-

This plugins purpose is to force people in your server to refrigerate their food by placing a cold block around their chest with the food. In case there is no cold block around the chest, it will turn the food into a rotted item.

-

Configuration

-

In the config.yml you can set these values:

-
    -
  • Cold blocks
  • -
  • Resulting itens
  • -
  • Itens that can rot
  • -
  • Message for when the user let food rot
  • -
-

Why fork?

-

I have forked this plugin because I was really anoyed by the original plugin that broadcasts the message to the whole server once anyone let food rot and the lack of a configuration file.

- - -
-
-
- - \ No newline at end of file diff --git a/_site/projects/tefreezer/logo.png b/_site/projects/tefreezer/logo.png deleted file mode 100644 index 6f2ccc6..0000000 Binary files a/_site/projects/tefreezer/logo.png and /dev/null differ diff --git a/_site/projects/tenkumalib/index.html b/_site/projects/tenkumalib/index.html deleted file mode 100644 index a1a83cc..0000000 --- a/_site/projects/tenkumalib/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - tenkuma's Library - neoBeta - - -
- -
-
- - - -
-
-

tenkuma's Library

-

by tenkuma

-
-

Library to support my other plugins. Does nothing on it's own.

-
- -
- -
- -

This is a dependency for my other projects. This does not do anything on it's own.

-

Why do I have to install this alongside your plugins?

-

You may think that installing two plugins instead of one is installing unecessary bloat that is useless. But it's not, libraries hold code that is common to more than one project, so you avoid having the same code repeated twice or more in your server. Also it's easier for the developer that has to improve only a single codebase to improve all the rest of the dependants.

- - -
-
-
- - \ No newline at end of file diff --git a/_site/projects/tenkumalib/logo.png b/_site/projects/tenkumalib/logo.png deleted file mode 100644 index 312682a..0000000 Binary files a/_site/projects/tenkumalib/logo.png and /dev/null differ diff --git a/_site/projects/timekeeper/index.html b/_site/projects/timekeeper/index.html deleted file mode 100644 index 4a40f6c..0000000 --- a/_site/projects/timekeeper/index.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - TimeKeeper - neoBeta - - -
- -
-
- - - -
-
-

TimeKeeper

-

by tenkuma

-
-

Syncs real world time with your Minecraft server time.

-
- -
- -
- -

This is a plugin for Minecraft beta that syncs the real world time with your in-game time. Logo by malcolmriley.

-

How it works

-

It will calculate and change the game time every second (that's 20 ticks and can be changed in the config), it will use your computer's timezone as default if the config timezone value does not exist.

-

Performance

-

I am not sure if this plugin has any significant performance hit, it runs code every few ticks (you can in/decrease the frequency in the config) and that is not the best approach for doing this, but it's the only that works in beta. Using it with ticksBetweenUpdate: 1 does not seem to change the performance in any way. The specifications for the computer used for the tests:

-
Host: 83AF IdeaPad 1 14IAU7
-CPU: 12th Gen Intel i5-1235U (12) @ 1.300GHz
-GPU: Intel Alder Lake-UP3 GT2 [Iris Xe Graphics]
-Memory: 10097MiB / 15709MiB
-
- - -
-
-
- - \ No newline at end of file diff --git a/_site/projects/timekeeper/logo.png b/_site/projects/timekeeper/logo.png deleted file mode 100644 index 92cbfce..0000000 Binary files a/_site/projects/timekeeper/logo.png and /dev/null differ diff --git a/_site/search/index.html b/_site/search/index.html deleted file mode 100644 index 4784089..0000000 --- a/_site/search/index.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - neoBeta - - -
- - -
- - - - - -

Welcome to neoBeta's search, here you can search through our whole database of plugins, mods and authors. You may want to filter out the results using the dropdown menu below. The search is done on your device using elasticlunr.

- -
- - -
-
-
-
- - \ No newline at end of file diff --git a/_site/search_index.json b/_site/search_index.json deleted file mode 100644 index 1e09803..0000000 --- a/_site/search_index.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"0.9.5","fields":["title","subtitle"],"ref":"url","documentStore":{"docs":{"/":{"subtitle":"","url":"/","image":""},"/search/":{"subtitle":"","url":"/search/","image":""},"/contribute/":{"subtitle":"","url":"/contribute/","image":""},"/authors/tenkuma/":{"title":"tenkuma","subtitle":"A bear doing things on the internet.","url":"/authors/tenkuma/","image":"/authors/tenkuma/logo.png","tags":["author"]},"/projects/ghostsandstuff/docs/example_documentation/":{"subtitle":"","url":"/projects/ghostsandstuff/docs/example_documentation/","image":""},"/projects/aboukkit/":{"title":"Aboukkit","subtitle":"A simple way to add custom commands with custom responses to your server.","author":"tenkuma","url":"/projects/aboukkit/","image":"","tags":["plugin"]},"/projects/devilwithin/":{"title":"The Devil Within","subtitle":"Adds enchanting to Minecraft Beta. Supports balancing through curses.","author":"tenkuma","url":"/projects/devilwithin/","image":"","tags":["plugin"]},"/projects/ghostsandstuff/":{"title":"Ghosts 'n Stuff","subtitle":"Miscellaneous additions to your Minecraft server.","author":"tenkuma","url":"/projects/ghostsandstuff/","image":"","tags":["plugin"]},"/projects/hangglidere/":{"title":"HangGlideRE","subtitle":"Fly with a chicken!","author":"tenkuma","url":"/projects/hangglidere/","image":"","tags":["plugin"]},"/projects/tefreezer/":{"title":"teFreezer","subtitle":"Force your players to refrigerate their food by rotting food in unrefrigerated chests!","author":"tenkuma","url":"/projects/tefreezer/","image":"","tags":["plugin"]},"/projects/tenkumalib/":{"title":"tenkuma's Library","subtitle":"Library to support my other plugins. Does nothing on it's own.","author":"tenkuma","url":"/projects/tenkumalib/","image":"","tags":["plugin"]},"/projects/timekeeper/":{"title":"TimeKeeper","subtitle":"Syncs real world time with your Minecraft server time.","author":"tenkuma","url":"/projects/timekeeper/","image":"","tags":["plugin"]},"/error/404/":{"subtitle":"","url":"/error/404/","image":""},"/allprojects/":{"subtitle":"","url":"/allprojects/","image":""}},"docInfo":{"/":{"title":0,"subtitle":0},"/search/":{"title":0,"subtitle":0},"/contribute/":{"title":0,"subtitle":0},"/authors/tenkuma/":{"title":1,"subtitle":4},"/projects/ghostsandstuff/docs/example_documentation/":{"title":0,"subtitle":0},"/projects/aboukkit/":{"title":1,"subtitle":8},"/projects/devilwithin/":{"title":2,"subtitle":8},"/projects/ghostsandstuff/":{"title":3,"subtitle":4},"/projects/hangglidere/":{"title":1,"subtitle":2},"/projects/tefreezer/":{"title":1,"subtitle":8},"/projects/tenkumalib/":{"title":2,"subtitle":5},"/projects/timekeeper/":{"title":1,"subtitle":7},"/error/404/":{"title":0,"subtitle":0},"/allprojects/":{"title":0,"subtitle":0}},"length":14,"save":true},"index":{"title":{"root":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"/authors/tenkuma/":{"tf":1}},"df":1,"'":{"docs":{"/projects/tenkumalib/":{"tf":1}},"df":1}}}}}},"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"z":{"docs":{"/projects/tefreezer/":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"/projects/timekeeper/":{"tf":1}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"/projects/aboukkit/":{"tf":1}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"/projects/devilwithin/":{"tf":1}},"df":1}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"/projects/devilwithin/":{"tf":1}},"df":1}}}}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"/projects/ghostsandstuff/":{"tf":1}},"df":1}}}}},"n":{"docs":{"/projects/ghostsandstuff/":{"tf":1}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{"/projects/ghostsandstuff/":{"tf":1}},"df":1}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"/projects/hangglidere/":{"tf":1}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"/projects/tenkumalib/":{"tf":1}},"df":1}}}}}}}}},"subtitle":{"root":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"/authors/tenkuma/":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"a":{"docs":{"/projects/devilwithin/":{"tf":1}},"df":1}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"/projects/devilwithin/":{"tf":1}},"df":1}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{"/authors/tenkuma/":{"tf":1}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"/authors/tenkuma/":{"tf":1}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"/projects/devilwithin/":{"tf":1}},"df":1}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"/projects/timekeeper/":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"/authors/tenkuma/":{"tf":1}},"df":1}}}}}}},"t":{"docs":{},"df":0,"'":{"docs":{"/projects/tenkumalib/":{"tf":1}},"df":1}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"/projects/aboukkit/":{"tf":1}},"df":1}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"/projects/aboukkit/":{"tf":1},"/projects/ghostsandstuff/":{"tf":1},"/projects/timekeeper/":{"tf":1}},"df":3}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"/projects/devilwithin/":{"tf":1},"/projects/tenkumalib/":{"tf":1}},"df":2}}}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"/projects/timekeeper/":{"tf":1}},"df":1}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"/projects/aboukkit/":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"/projects/timekeeper/":{"tf":1}},"df":1}}}}},"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"/projects/aboukkit/":{"tf":1},"/projects/devilwithin/":{"tf":1}},"df":2,"i":{"docs":{},"df":0,"t":{"docs":{"/projects/ghostsandstuff/":{"tf":1}},"df":1}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"/projects/aboukkit/":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{},"df":0,"s":{"docs":{"/projects/devilwithin/":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"/projects/aboukkit/":{"tf":1}},"df":1}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"/projects/hangglidere/":{"tf":1}},"df":1}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"/projects/tefreezer/":{"tf":1}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"/projects/aboukkit/":{"tf":1}},"df":1}}}}},"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"/projects/tefreezer/":{"tf":1}},"df":1}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{"/projects/timekeeper/":{"tf":1}},"df":1}}},"o":{"docs":{},"df":0,"t":{"docs":{"/projects/tefreezer/":{"tf":1}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"/projects/devilwithin/":{"tf":1}},"df":1}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"/projects/devilwithin/":{"tf":1},"/projects/ghostsandstuff/":{"tf":1},"/projects/timekeeper/":{"tf":1}},"df":3}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"/projects/ghostsandstuff/":{"tf":1}},"df":1}}}}}}}}},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"/projects/hangglidere/":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"/projects/tefreezer/":{"tf":1}},"df":1}},"o":{"docs":{},"df":0,"d":{"docs":{"/projects/tefreezer/":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"/projects/tefreezer/":{"tf":1}},"df":1}}}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"/projects/tenkumalib/":{"tf":1}},"df":1}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"/projects/tefreezer/":{"tf":1}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"/projects/tenkumalib/":{"tf":1}},"df":1}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"/projects/tenkumalib/":{"tf":1}},"df":1}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"]} \ No newline at end of file diff --git a/_site/site.webmanifest b/_site/site.webmanifest deleted file mode 100644 index 45dc8a2..0000000 --- a/_site/site.webmanifest +++ /dev/null @@ -1 +0,0 @@ -{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} \ No newline at end of file