BukkitPlugins: Difference between revisions
Jump to navigation
Jump to search
Line 73: | Line 73: | ||
[http://dev.bukkit.org/server-mods/worldguard/ BukkitDev 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. | |||
Install like this: | |||
zypper install mysql-community-server | |||
mysqladmin -u root password 'somepassword' | |||
echo 'create database minecraft;' | mysql -u root -p | |||
Put the password into the config.yml of the plugin | |||
== Build == | == Build == |
Revision as of 21:55, 11 April 2013
Bukkit Plugins
Diese Plugins sind auf unseren Bukkit Servern installiert
CommandBook
CommandHelper
CraftBook
- CraftBookCircuits
- CraftBookCommon
- CraftBookMechanisms
- CraftBookVehicles
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
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. Install like this:
zypper install mysql-community-server mysqladmin -u root password 'somepassword' echo 'create database minecraft;' | mysql -u root -p
Put the password into the config.yml of the plugin
Build
Hier hab ich beschrieben wie ich den Bukkit Server selbst baue, wenn es nach Minecraft Updates keine Recommended Builds zum runterladen gibt.