Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Scriptirc
PluginApache-2.0

Scriptirc

AI write plugins for Bukkit/Spigot/Paper servers. Just put .java file in the folders to load.

545
Downloads
7
Followers
5 months ago
Updated
📦
6
Versions
game-mechanicstechnologyutilitybukkitfoliapaperpurpurspigot
Download Latestv1.4.5-SNAPSHOTView on Modrinth

📖About Scriptirc

Scriptirc - script compiler, compiles java source code directly into a server plugin and loads it.

This plugin is recommended for test servers or servers under development because the compiled scripts do not need to rely on Scriptirc to load, you can put the compiled plugin scripts directly into plugins.

📚 Introduction

Scriptirc is a powerful Bukkit/Spigot plugin designed to simplify plugin management and on-the-fly development processes. If you've ever wanted to be able to compile and modify script plugins, load, unload or reload them without restarting the server, or want to quickly develop and test simple features, Scriptirc is for you.

✨ Key Features

🔄 Dynamic plugin management - load, unload or reload plugins without restarting the server

📝 On-the-fly script compilation - Compile Java scripts directly into fully functional Bukkit plugins

🛡️ Data Directory Segregation - Automatically creates separate data directories for plugin scripts

🔧 Seamless Integration - Compatible with existing Bukkit/Spigot/Paper environments

🔒 Resource Release - Uninstall plugin scripts to completely release plugin resources, unlock JAR files

🚀 Installation Instructions

Download the corresponding version of Scriptirc.jar

Place the JAR file in the plugins directory of the server

Restart the server or load the plugin using the plugin manager

The plugin will automatically create the necessary directory structure and configuration files

💡 Usage

Scriptirc provides an intuitive command system that allows you to easily manage plugins and scripts:

Basic commands (all commands can be abbreviated as /si)

Command Description

/scriptirc help	
/scriptirc load <pulgin name>	
/scriptirc unload <pulgin name>
/scriptirc reload <pulgin name>
/scriptirc list	
/scriptirc compiler <pulgin name>	
/scriptirc sync
/scriptirc profile

Plugin management example

Load a plugin named TestPlugin.

/si load TestPlugin

Uninstall the plugin

/si unload TestPlugin

Reload the plugin (e.g. after an update)

/si reload TestPlugin

View list of loaded plugins

/si list

Example of script compilation

Compile the HelloWorld.java script located in the script_src directory.

/si compiler HelloWorld

Then load the compiled plugin.

/si load HelloWorld

📂 Directory structure

After installation, Scriptirc will create the following directory structure:

plugins/
  └── Scriptirc/
      ├── config.yml # Plugin configuration file
      ├── plugins/ # External plugin storage directory
      │ └── Data/ # Plugin data directory
      ├─ script_src/ # Script source code directory │ ├── script_src/ # Script source code directory
      │ ├── HelloWorld.java # Example scripts
      │ └── MathUtil.java # Example Scripts
      └─ script_build/ # Temporary script build directory

🛠️ Development Tutorial - Creating Your First Script Plugin

Scriptirc makes plugin development incredibly easy. All you need to do is create a Java source file, compile it and load it for use immediately. Here are the development steps:

1. Create the script file

Create a new Java file in the plugins/Scriptirc/script_src directory, e.g. MyFirstPlugin.java.

2. Write the plugin code

Below is a simple plugin template:

The package name is customizable (just try to make sense)

package your.package.name;

import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;

/**
* @pluginName <Plugin Name>
* @author <author>
* @version <version>
* @description <Description Complete all descriptions in this line only>
* (Commands and permissions are added optionally)
* [command]<command1>|description1[/command] 
* [command]<command2>|description2[/command]
* [Permission]<limit1>|description1[/Permission]
* [Permission]<limit2>|description2[/Permission]
*/

public class MyFirstPlugin extends JavaPlugin {
    
    @Override
    public void onEnable() {
        getLogger().info("Plugin enabled!");
        // Initializing Code
                //
    }
    
    @Override
    public void onDisable() {
        getLogger().info("Plugin disabled!");
        // The code for the unload / listener / command can be placed here.
    }
    
    @Override
    public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
        if (command.getName().equalsIgnoreCase("myfirstcmd")) {
            if (sender instanceof Player) {
                Player player = (Player) sender;
                player.sendMessage("§aHello, this is my first plugin command!");
            } else {
                sender.sendMessage("This command can only be executed by the player!");
            }
            return true;
        }
        return false;
    }
}

Official AI is recommended!!! Official Website

3. Compiling and loading your plugin

Use the following commands to compile and load your plugin:

/si compiler MyFirstPlugin
/si load MyFirstPlugin

It's as simple as that! Your plugin is now running on the server, no need to restart the server.

Important metadata fields
|Fields        |Required   |Description
|VERSION       |YES        |Plugin version number
|DESCRIPTION   |YES        |Plugin Description
|AUTHOR        |YES        |Plugin Author
|COMMANDS      |No         |Plugin command definitions in the form of “command name”.
|PERMISSIONS   |No         |Permission definitions in the form of “permission nodes”.

⚙️ Configuration file description

Scriptirc's configuration file (config.yml) allows you to customize the behavior of the plugin:

Plugin auto-reload configuration
auto-reload.

Whether to enable auto-reload
enabled: true

Check interval (seconds)
check-interval: 5

verbose-logging: false
verbose-logging: false

Plugin management settings
plugin-management.

External plugins directory, relative to the plugin data folder
external-plugins-directory: “plugins”

Whether to automatically load external plugins on server startup.
load-on-startup: true

Whether to redirect the data folder of external plugins to the Scriptirc directory.
redirect-data-folder: true

Permission settings
permissions.

Administrator permissions node
admin-permission: “scriptirc.admin”

Whether to allow OP use only
op-only: true

Logging settings

logging.
logging output level: VERBOSE (output all logs), NORMAL (standard output), MINIMAL (output only key information)

level: “MINIMAL”
(If you encounter a compilation failure, try switching the logging mode to VERBOSE)

🤔 Frequently Asked Questions

What if the player can't see the commands after loading the plugin? (There is a slight possibility of a bug that will be fixed later)

The server administrator can run the command /si sync to synchronize commands to all online players.
Or have players log back into the server.

What should I do if I get an error compiling the script?

Make sure:

Java code is syntactically correct

All required metadata fields (VERSION, DESCRIPTION, AUTHOR) are included.

The server is running on JDK and not JRE (JDK is required for compilation)

How to remove dynamically loaded plugin files?

When unloading a plugin using the /si unload command, Scriptirc tries to completely free the JAR file so that it can be deleted or replaced. If it still cannot be deleted, it may be necessary to restart the server.

Recognize

There is code related to plugin unload loading I refer to the PlugManX project

👥 Team & Contributors

Player975
Player975Owner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
bukkitfoliapaperpurpurspigot
Minecraft Versions
1.121.12.11.12.21.131.13.11.13.21.141.14.1+41 more

🔗 Links

Modrinth Page