-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresponse.lua
More file actions
42 lines (29 loc) · 769 Bytes
/
response.lua
File metadata and controls
42 lines (29 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
local response = {}
local nativeCommands = {
-- Elev
id = "/id",
kick = "/kick",
kban = "/kban",
ban = "/ban",
version = "/version",
-- User
countdown = "/countdown",
dm = "/dm"
}
-- Only modify from here down --
local motd = ""
local chatCommands = {
motd = "/motd",
example = "/example"
}
local elevChatCommands = {
example = "/elevExample"
}
local chatMessages = {
motd = motd,
example = "Lorem ipsum"
}
local elevChatMessages = {
elevExample = "Elevated lorem ipsum"
}
return {nativeCommands = nativeCommands, motd = motd, nativeFunctions = nativeFunctions, chatCommands = chatCommands, chatMessages = chatMessages, elevChatCommands = elevChatCommands, elevChatMessages = elevChatMessages}