Ako funguje MCDoctor.ai

MCDoctor používa pokročilú AI diagnostiku na presné čítanie, interpretáciu a vysvetľovanie chýb, pádov a konfliktov pluginov Minecraft serverov. Namiesto prechádzania tisícov riadkov v latest.log MCDoctor automaticky extrahuje hlavnú príčinu a vygeneruje jasný, štruktúrovaný report, ktorému okamžite porozumiete.

Inteligentné spracovanie protokolov

MCDoctor automaticky vyčistí váš protokol, odstráni zbytočný šum, extrahuje chyby, varovania, signatúry pádov, problémy pluginov a konflikty verzií a pripraví ho na hĺbkovú AI analýzu.

Hlboké porozumenie AI

Pomocou špecializovanej AI pipeline trénovanej na Minecrafte číta MCDoctor protokol, akoby sa naň pozeral expertný moderátor alebo serverový inžinier, a deteguje vzory, zlyhania modov/pluginov, chybné konfigurácie, chýbajúce závislosti a ďalšie.

Jasné, zrozumiteľné vysvetlenia

Dostanete prehľadný HTML report: Príčina → Opravy → Poznámky. Žiadny žargón. Žiadne dohady. MCDoctor vysvetlí každý problém v jednoduchých krokoch, ktoré môžete nasledovať.

Vytvorené pre každý Minecraft server

Či už prevádzkujete Paper, Purpur, Fabric, Forge, NeoForge, Spigot alebo modpacky, MCDoctor prispôsobí analýzu vašej platforme a vyrieši problémy špecifické pre každý ekosystém.

Poďme teraz nižšie preskúmať, ako v skutočnosti prebieha sekvencia nahrávania a analýzy.

Čo sa deje v zákulisí?

Keď nahráte protokol, MCDoctor spustí rýchlu viackrokovú diagnostickú pipeline. Tu je jasný prehľad, ako je váš protokol spracovaný.

1/ Čítanie a čistenie protokolu

MCDoctor načíta váš latest.log, odstráni šum, reštrukturalizuje súbor a pripraví ho na analýzu.

2/ Detekcia platformy

Systém identifikuje, či prevádzkujete Paper, Purpur, Spigot, Fabric, Forge alebo NeoForge, a prispôsobí analýzu typu vášho servera.

3/ Analýza chýb a pluginov

MCDoctor extrahuje pády, varovania, chyby pluginov, chýbajúce závislosti a konflikty verzií, aby izoloval skutočný problém.

4/ Pochopenie hlavnej príčiny

Pomocou AI trénovanej na Minecrafte MCDoctor porovná vaše chyby so známymi vzormi, aby identifikoval skutočnú príčinu.

5/ Jasný, zrozumiteľný report

Dostanete štruktúrovaný HTML report s: Príčina, Opravy a Poznámky. Jednoduché, jasné a rýchle.

2 režimy analýzy

Vyberte, ako hlboko má MCDoctor skúmať vaše protokoly

Rýchla diagnostika

Štandardný

Ideálne pre Vanilla, Paper/Spigot zostavy a ľahké konfigurácie.

  • Pády serverov Vanilla a Spigot/Paper
  • Bežné konflikty pluginov a výnimky
  • Nesúlad verzií Javy a základné problémy s nedostatkom pamäte
  • Chyby sieťového pripojenia a prihlasovacej rutiny
  • Okamžité vybavenie štandardných zlyhaní infraštruktúry

Povedzte MCDoctor, čo je zle

Výber príznakov vášho servera pred nahraním nasmeruje AI k správnemu diagnostickému pohľadu, takže sa zameria na to, čo vo vašom protokole skutočne záleží, nie na všetko naraz.

Štandardný

Všeobecné skenovanie

Číta celý protokol naslepo, bez kontextu, bez zamerania. Získate široký prehľad, ale AI môže prehliadnuť hlavnú príčinu pochovanú v protokoloch.

  • Kompletný prechod protokolom
  • Žiadny kontext problému
  • Všeobecné opravy
VS
Pokročilé + príznaky

Cielená diagnóza

Poviete MCDoctor, čo je zle, AI sa zameria na správne časti protokolu a poskytne ostrejšie, rýchlejšie a použiteľnejšie výsledky.

  • Zamerané filtrovanie protokolu
  • AI vedomá si príznakov
  • Presné opravy
Čo váš server zažíva? Kliknite na zvýraznenie — tu čisto ilustratívne
Cielená hlavná príčina

AI preskočí irelevantný šum a zameria sa na časti protokolu zodpovedajúce typu vášho príznaku.

Rýchlejšia diagnóza

Menšia nejednoznačnosť znamená, že model vyrieši príčinu v menej krokoch uvažovania a vytvorí ostrejší report.

Inteligentnejšie opravy

Riešenia sú prispôsobené vášmu skutočnému problému — opravy pádov, keď padáte, opravy výkonu, keď máte lag.

Príklad výsledku AI

Toto je realistický report MCDoctor Advanced, vytvorený naším pokročilým renderovacím enginom.

Príčina

Your server is running several plugins that are not compatible with your current Paper/Minecraft version (1.21.5), or are missing required dependencies. Because of this, some plugins fail to start correctly and then throw a lot of “NullPointerException” errors (which basically means “this thing the plugin expected to exist is actually empty / not loaded”).

  • Multiverse suite (Core, Inventories, Portals, NetherPortals)
    • Multiverse-Core fails with “VerifyError” and config loading errors. That means the version you’re using is not built for your server version, or its files are broken.
    • Because Multiverse-Core never initializes, the other Multiverse plugins (Inventories, Portals, NetherPortals) also fail and throw errors like:
      • “MultiverseCore has not been initialized!”
      • “Cannot invoke ... InventoriesDupingPatch.disable() because this.dupingPatch is null”
  • PhoenixDuels
    • PhoenixDuels crashes on startup with “ExceptionInInitializerError”.
    • After that, its internal helpers are never set up, so you see:
      • “ServerVersion.CURRENT_VERSION is null”
      • “Utilities.ASYNC_SERVICE is null”
      These are just the plugin trying to use things that never got initialized because it failed to start.
  • Database / stats plugin (ResultSet is null)
    • Repeated errors like “Cannot invoke ResultSet.next() because resultSet is null” mean a plugin that talks to a database (MySQL/SQLite) is failing to get data.
    • Most likely:
      • Database connection is not set up correctly (wrong host, user, password, or database name), or
      • The plugin is not handling failed queries properly.
  • Other plugin issues
    • BanAnnouncer cannot load because it is missing the required plugin “Spicord”.
    • Essentials says you are on an unsupported server version, so that version of Essentials is not meant for 1.21.5.
    • ItemsAdder is missing a bunch of images for “betterranks” (admin.png, mod.png, etc.), so those custom rank icons won’t show up.
    • Some plugins log “VerifyError: Bad type on operand stack” – this is another strong sign they are compiled for a different Minecraft/Java version than what you are running.

Opravy

  • Update or remove incompatible plugins
    • Check each of these plugins and make sure you are using a version that explicitly supports Paper / Minecraft 1.21.5:
      • Multiverse-Core, Multiverse-Inventories, Multiverse-Portals, Multiverse-NetherPortals
      • PhoenixDuels
      • Essentials (or switch to EssentialsX with a version that supports 1.21.5)
    • If there is no 1.21.5-compatible version of a plugin, you have two options:
      • Temporarily remove that plugin from the plugins folder, or
      • Downgrade your server to a Minecraft version that the plugin officially supports.
  • Fix Multiverse specifically
    • Download the latest Multiverse plugins that support your server version from their official pages.
    • Delete or move aside old Multiverse config files if they are very old or corrupted:
      • Stop the server.
      • Backup the plugins/Multiverse-* folders.
      • Optionally remove the configs (so they regenerate) if you suspect they are broken.
      • Start the server and let new configs generate, then reconfigure worlds/portals as needed.
  • Fix PhoenixDuels errors
    • Get a PhoenixDuels version that supports your exact Minecraft/Paper version.
    • If none exists yet:
      • Remove PhoenixDuels from the plugins folder, or
      • Use a different duels plugin that is updated for 1.21.5.
  • Fix database / ResultSet null errors
    • Identify which plugin is logging “ResultSet.next() because resultSet is null” (look just above those lines in the full log for the plugin name).
    • Then:
      • Open that plugin’s config file (usually in plugins/PluginName/config.yml).
      • Check the database settings:
        • Host (IP / domain)
        • Port
        • Database name
        • Username and password
      • Make sure the database actually exists and the user has permission to access it.
      • Restart the server after fixing the config.
  • Install missing dependencies
    • For BanAnnouncer:
      • Download and install Spicord (the dependency it complains about).
      • Make sure you use versions of BanAnnouncer and Spicord that support 1.21.5.
  • Fix ItemsAdder missing images
    • Go to your ItemsAdder pack folder (usually plugins/ItemsAdder/data/resource_pack/assets/betterranks/textures/).
    • Add or restore the missing PNG files:
      • admin.png, mod.png, helper.png, player.png, builder.png, youtube.png, patreon.png, patreon2.png, java.png, skript.png, developer.png, dev.png, vip.png, vipplus.png
    • Run ItemsAdder’s command to rebuild the resource pack (check its documentation, usually something like /iazip or similar).
  • General cleanup steps
    • After making changes:
      • Stop the server completely.
      • Remove any obviously broken or outdated jars from plugins.
      • Start the server and watch the console for new errors.
    • Fix errors one plugin at a time so you can clearly see what changed.

Poznámky

  • Most of these errors are not caused by your world or your server hardware, but by plugin versions not matching your Minecraft/Paper version or missing dependencies.
  • If you are unsure which plugin is causing a specific error, you can temporarily:
    • Move all plugins out of the plugins folder,
    • Add them back one by one, restarting each time,
    • And see when the error returns. That tells you exactly which plugin is responsible.
  • Always back up your world and plugin folders before removing or changing plugins, especially big ones like Multiverse or ItemsAdder.