Added folders.
parent
fff859f750
commit
7327f94fd9
@ -1,5 +1,5 @@
|
|||||||
local rng = {}
|
local rng = {}
|
||||||
local tools = dofile("./tools.lua")
|
local tools = dofile("./API/tools.lua")
|
||||||
|
|
||||||
--Rolls a d20, if output is 1, Critical miss(or Shit), if output is 20, critical hit.
|
--Rolls a d20, if output is 1, Critical miss(or Shit), if output is 20, critical hit.
|
||||||
function rng.d20()
|
function rng.d20()
|
@ -1,8 +1,8 @@
|
|||||||
local tools = dofile("./tools.lua")
|
local tools = dofile("./API/tools.lua")
|
||||||
local rng = dofile("./rng.lua")
|
local rng = dofile("./API/rng.lua")
|
||||||
local complexCommands = {}
|
local complexCommands = {}
|
||||||
|
|
||||||
local prefix = dofile("./settings.lua")
|
local prefix = dofile("./docs/settings.lua")
|
||||||
|
|
||||||
local commands = { -- Define commands its a table that will contain our commands
|
local commands = { -- Define commands its a table that will contain our commands
|
||||||
[prefix..'helpme'] = { -- Dumps docs/help to chat, took me forever to figure out.
|
[prefix..'helpme'] = { -- Dumps docs/help to chat, took me forever to figure out.
|
@ -1,5 +1,5 @@
|
|||||||
local basicCommands = {}
|
local basicCommands = {}
|
||||||
local prefix = dofile("./settings.lua")
|
local prefix = dofile("./docs/settings.lua")
|
||||||
|
|
||||||
local commands = { -- Define commands its a table that will contain our commands
|
local commands = { -- Define commands its a table that will contain our commands
|
||||||
[prefix..'lenny'] = { -- Creates a lenny face
|
[prefix..'lenny'] = { -- Creates a lenny face
|
Loading…
Reference in New Issue