Minecraft MooLib mod 2026 download
logo
minecraft mod MooLib

MooLib

Game Version: CB 1.7.9-R0.2
Total Downloads: 851
Updated: Aug 2, 2014
Created: Jun 6, 2014
Download MooLibDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
MooLib 1.0.2 release 7.98 KB Aug 2, 2014 CB 1.7.9-R0.2 603 download MooLib MooLib 1.0.2 releaseDownload
MooLib 1.0 release 7.94 KB Jun 6, 2014 1.7.2 248 download MooLib MooLib 1.0 releaseDownload

Screenshots

Description

Share this:

MooLib

No, no, no. MooLib, not MooLimb! Who would serve raw steak anyway?

Description

MooLib is a library that will be a dependency for all my plugins. MooLib only uses methods that I (or @cadox8) have tested externally. That means MooLib will never break, unless bukkit has a huge update or something.

FOR SERVER OWNERS

MooLib is a dependency. If you have any plugins that say:

NoClassDefFoundError: com.otabi.firestar.moolib.MooLibPlugin

You will need to download this dependency.

FOR DEVELOPERS

Just add ML.jar to your build path, and you're done!
Useful methods:

  • Extending MooLibPlugin if you are lazy about your enables/disables.
  • Using TextUtils.chatToConsole makes chat code transform to console code. No more Control+Escape!
Oh no! What did I do?
  • Did you use TextUtils.spamChatForever?

Example of using code:

public void onPlayerMove(PlayerMoveEvent evt){

    Player player = evt.getPlayer();
    // The event's player

    String displayName = player.getDisplayName();
    // Display name of player (e.g. Notch)

    String consoleMsg = TextUtils.chatToConsole(ChatColor.RED+"Player "
            +ChatColor.GREEN+displayName+ChatColor.RED+" moved."
    // Changes chat colors to console colors

    MooLibPlugin.infoLog(consoleMsg);
    // Prints out consoleMsg

}

Will print:

  • [MooLib] [RED]Player [GREEN](display name) [RED]moved.

Plugins using MooLib

  • FireworkProjectiles
  • LeashedPlayers
  • Give me a shout to add yours!

Donate

I have no donate button, but you can comment with your happiness. Do I even need a donate button?

Comments

Add a comment