LuaBlocks

97 Downloads

LuaBlocks

This plugin allows for speedy small utility plugins to be developed in lua. This is partially a stub, although the plugin is in development as you read. It will allow a special plugins folder that contains single lua file plugins. I.E.

The full wiki on its use will be on the Github Page

plugins
    LuaBlocks.jar
    LuaBlocks
        plugins
            myplugin.lua

myplugin.lua:

require 'io.github.zacklukem.bukkit.bukkit'
myplugin = {}
function myplugin.onEnable ()
    bukkit.logger.info("Test onEnable")
    bukkit.block.placeBlock(5,5,5,"stone")
end
function myplugin.onDisable ()
    bukkit.logger.info("Test onDisable")
end