BukkitPlugins: Difference between revisions

From JoBaPedia
Jump to navigation Jump to search
(New page: = Bukkit Plugins = Diese Plugins sind auf unseren Bukkit Servern installiert == CommandBook == == CommandHelper == == CraftBookCircuits == == CraftBookCommon == == CraftBookMechanisms ==...)
 
No edit summary
 
(19 intermediate revisions by one other user not shown)
Line 4: Line 4:


== CommandBook ==
== CommandBook ==
[http://dev.bukkit.org/server-mods/commandbook/ BukkitDev CommandBook ]
== CommandHelper ==
== CommandHelper ==
== CraftBookCircuits ==
 
== CraftBookCommon ==
[http://dev.bukkit.org/server-mods/commandhelper/ BukkitDev CommandHelper ]
== CraftBookMechanisms ==
 
== CraftBookVehicles ==
== CraftBook ==
 
[http://dev.bukkit.org/server-mods/craftbook/ BukkitDev CraftBook ]
 
* CraftBookCircuits
* CraftBookCommon
* CraftBookMechanisms
* CraftBookVehicles
 
== dynmap ==
== 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: [http://www.minecraftforum.net/topic/1543523-dynmap-dynamic-web-based-maps-for-minecraft Minecraft Forum Dynmap ]
alt: [http://dev.bukkit.org/server-mods/dynmap/ 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 ==
== LWC ==
[http://dev.bukkit.org/server-mods/lwc/ BukkitDev LWC ]
Build bleeding edge development version
git clone git://github.com/Hidendra/LWC.git
== Simple-AutoSave ==
== Simple-AutoSave ==
[http://dev.bukkit.org/server-mods/simple-autosave/ BukkitDev Simple-AutoSave]
== SimpleBackup ==
== SimpleBackup ==
[http://dev.bukkit.org/server-mods/simplebackup/ BukkitDev SimpleBackup ]
== WorldEdit ==
== WorldEdit ==
[http://dev.bukkit.org/server-mods/worldedit/ BukkitDev WorldEdit ]
Build bleeding edge development version
git clone git://github.com/sk89q/worldedit.git
== WorldGuard ==
== WorldGuard ==
[http://dev.bukkit.org/server-mods/worldguard/ BukkitDev WorldGuard ]
== Stats ==
[http://dev.bukkit.org/server-mods/lolmewnstats/ 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]]

Latest revision as of 13:32, 11 January 2023

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