quectocraft/plugins/example_plugin/main.lua

24 lines
506 B
Lua
Raw Normal View History

2022-12-02 23:27:53 +00:00
local plugin = {
id = "example_plugin",
name = "Example Plugin",
version = "0.1.0",
}
function plugin.init()
print("PLUGIN init")
end
function plugin.playerJoin(name, uuid)
print("PLUGIN player joined: " .. name .. " uuid " .. uuid)
end
function plugin.playerLeave(name, uuid)
print("PLUGIN player left: " .. name .. " uuid " .. uuid)
end
function plugin.chatMessage(message, author, authorUuid)
print("PLUGIN message from " .. author .. ": " .. message)
end
return plugin