Minecraft Server Plugins

Plugins für Spigot/Bukkit/Paper Minecraft Server v1.19.2

BlueMap

Essential

Befehle
  • /gc
    • zeigt ausführliche Auswertung vom Server
    • chunks: Werte von 500 sind völlig in Ordnung
    • entities: ….
    • tiles: Tile entities are blocks that tick, such as furnaces, chests, signs, stuff like that.
      Quelle: SpigotMC.org
  • /entities – lists the top 10 chunks with high entity counts
  • /tileentities – lists the top 10 chunks with high tileentity counts
  • /redclock 200 – listens for 200 ticks, and produces a report highlighting where redstone lag is
  • Essentials Commands

GSit

InteractionVisualizer

LuckyPerms

  • was ist xxx:
  • Download @ xxx
  • Kosten (Stand: xx.xx.2023):
Befehle
  • /lp group default permission set essenstials.gamemode.creative
  • /lp group default permission set essentials.home true
  • /lp group default permission set essentials.sethome true
  • /lp group default permission set essentials.delhome true
  • /lp group default permission set plots.home true
  • /lp group default permission set plots.info true
  • /lp group default permission set plots.set.flag.gamemode.survival
  • /lp group default permission set plots.set.flag.gamemode.creative
  • /lp group default permission set essentials.enderchest true
  • /lp group default setprefix „[Gast]“

MultiVerse

  • was ist xxx:
  • Download @ xxx
  • Kosten (Stand: xx.xx.2023):
Befehle
  • /mvm set mode creative
  • /mvdelete city_future
  • /mvconfirm
  • /mvm set portalform none
Quellen

PlaceholderAPI

PlotSquared

  • was ist xxx:
  • Download
    • Gratis-Version @ xxx
      • Kosten (Stand: 27.12.2022): gratis
    • Premium-Version @ xxx
      • Kosten (Stand xx.xx.2023):

RoseStacker

Simple Elevators

ViaBackwards

ViaVersion

PluginNameVorlage

  • was ist xxx:
  • Download @ xxx
  • Kosten (Stand: xx.xx.2023):

 

2 check

mal nach den Plugins suchen und schauen, ob sie von Nutzen sind

  • ProtocolStringReplacer
  • Message Editor

 


diverse Notizen

Essentials

Quelle: reddit.com

/entitites & /tileentities

for each world {
for each chunk {
count chunk entities
add coordinate and count to map
}
}
sort map by count
list top 10 results in map

/redclock <ticks>

set timer to trigger report in <ticks>
register 'redclock' listener to listen to BlockPhysicsEvent

on BPE {
find coordinates, find middle point of chunk slice
if coordinates exist in map increase count
else add coordinates to map
}

on timer finish {
unregister ‚redclock‘ listener to reduce lag when command isn’t running
sort map by counts
list top 10 results in map
}