You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
local tools = dofile("./API/tools.lua")
|
|
|
|
local rng = dofile("./API/rng.lua")
|
|
|
|
local experimentalCommands = {}
|
|
|
|
local prefix = dofile("./docs/key.lua")
|
|
|
|
|
|
|
|
local commands = { -- Define commands its a table that will contain our commands
|
|
|
|
[prefix..'experiment'] = {
|
|
|
|
exec = function (message)
|
|
|
|
message.channel:send("Experimental mode works!")
|
|
|
|
end
|
|
|
|
};
|
|
|
|
--[[
|
|
|
|
[prefix..'fumo'] = { -- To be implemented later..
|
|
|
|
exec = function (message)
|
|
|
|
end
|
|
|
|
};
|
|
|
|
]]
|
|
|
|
}
|
|
|
|
|
|
|
|
function experimentalCommands.initialize()
|
|
|
|
return commands
|
|
|
|
end
|
|
|
|
return experimentalCommands
|
|
|
|
-- This project is libre, and licenced under the terms of the
|
|
|
|
-- DO WHAT THE FUCK YOU WANT TO PUBLIC LICENCE, version 3.1,
|
|
|
|
-- as published by dtf on July 2019. See the COPYING file or
|
|
|
|
-- https://ph.dtf.wtf/w/wtfpl/#version-3-1 for more details.
|