BukkitPlugins

From JoBaPedia
Revision as of 13:32, 11 January 2023 by 192.168.1.4 (talk)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Bukkit Plugins

Diese Plugins sind auf unseren Bukkit Servern installiert

CommandBook

BukkitDev CommandBook

CommandHelper

BukkitDev CommandHelper

CraftBook

BukkitDev CraftBook

  • CraftBookCircuits
  • CraftBookCommon
  • CraftBookMechanisms
  • CraftBookVehicles

dynmap

note: just dl and use jar version 3.5 beta 1 from https://www.spigotmc.org/resources/dynmap%C2%AE.274/ works fine with 1.19.3

neu: Minecraft Forum Dynmap

alt: BukkitDev Dynmap

Zum selbst bauen (von https://github.com/webbukkit/dynmap/wiki/How-to-compile-Dynmap):

First time

cd /your/workspace
git clone git://github.com/webbukkit/DynmapCoreAPI.git && (cd DynmapCoreAPI && mvn install)
git clone git://github.com/webbukkit/DynmapCore.git && (cd DynmapCore && mvn install)
git clone git://github.com/Bukkit/Bukkit.git && (cd Bukkit && mvn install)
git clone git://github.com/webbukkit/dynmap-api.git && (cd dynmap-api && mvn install)
git clone git://github.com/webbukkit/dynmap.git && (cd dynmap && mvn install)

Next time

cd /your/workspace
cd DynmapCoreAPI && git pull && mvn install
cd ../DynmapCore && git pull && mvn install
cd ../Bukkit && git pull && mvn install
cd ../dynmap-api && git pull && mvn install
cd ../dynmap && git pull && mvn install

LWC

BukkitDev LWC

Build bleeding edge development version

git clone git://github.com/Hidendra/LWC.git

Simple-AutoSave

BukkitDev Simple-AutoSave

SimpleBackup

BukkitDev SimpleBackup

WorldEdit

BukkitDev WorldEdit

Build bleeding edge development version

git clone git://github.com/sk89q/worldedit.git

WorldGuard

BukkitDev WorldGuard

Stats

BukkitDev Stats

Stats uses a mysql database and a web browser. I wrote install instructions here:

https://bitbucket.org/Lolmewn/stats/wiki/Home

SQL to create a user for a mysql database (needed for Stats plugin if an external database is used)

CREATE USER 'joachim'@'%' IDENTIFIED BY '***';
GRANT USAGE ON * . * TO 'joachim'@'%' IDENTIFIED BY '***' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ;
GRANT ALL PRIVILEGES ON `job1bukkit` . * TO 'joachim'@'%';

Build

Hier hab ich beschrieben wie ich den Bukkit Server selbst baue, wenn es nach Minecraft Updates keine Recommended Builds zum runterladen gibt.

Make Developer CraftBukkit