BukkitPlugins: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(17 intermediate revisions by one other user not shown) | |||
Line 9: | Line 9: | ||
== CommandHelper == | == CommandHelper == | ||
[http://dev.bukkit.org/server-mods/commandhelper/] | [http://dev.bukkit.org/server-mods/commandhelper/ BukkitDev CommandHelper ] | ||
== CraftBook == | == CraftBook == | ||
[http://dev.bukkit.org/server-mods/craftbook/] | [http://dev.bukkit.org/server-mods/craftbook/ BukkitDev CraftBook ] | ||
* CraftBookCircuits | * CraftBookCircuits | ||
Line 22: | Line 22: | ||
== 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/] | [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/] | [http://dev.bukkit.org/server-mods/simple-autosave/ BukkitDev Simple-AutoSave] | ||
== SimpleBackup == | == SimpleBackup == | ||
[http://dev.bukkit.org/server-mods/simplebackup/] | [http://dev.bukkit.org/server-mods/simplebackup/ BukkitDev SimpleBackup ] | ||
== WorldEdit == | == WorldEdit == | ||
[http://dev.bukkit.org/server-mods/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/] | [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
CommandHelper
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
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
Build bleeding edge development version
git clone git://github.com/Hidendra/LWC.git
Simple-AutoSave
SimpleBackup
WorldEdit
Build bleeding edge development version
git clone git://github.com/sk89q/worldedit.git
WorldGuard
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.