This repository has been archived by the owner on Dec 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Report.lua
304 lines (266 loc) · 8.37 KB
/
Report.lua
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
--// Script Setting Constants
local Settings = {
Game = {
[4744058827] = {
Message = "[QSERF_DEV]: ";
Icon = "https://t4.rbxcdn.com/fe02d1771cedc063f52ec14fbb6d6255"
};
[3039795291] = {
Message = "[QSERF_PUBLIC]: ";
Icon = "https://t2.rbxcdn.com/2845f9fb08505e22f623e6f96b7e1f0d"
};
["Other"] = {
Message = "[" .. tostring(game.PlaceId) .. "]: ";
Icon = "https://t3.rbxcdn.com/0f36ed1f5cfed2afaad99722639762c2";
};
};
Data = {
["LOG"] = {
URL = "https://discordapp.com/api/webhooks/738477343827558440/fALujUIG3snL-dxD2GpZ5rklE6FjKCkCA_RgKAxWIwI08AortxgSLRLJtLnoFvL-5q9O";
Message = "LOG | ";
Color = 1752220;
};
["MINOR"] = {
URL = "https://discordapp.com/api/webhooks/738477201103650846/b9c6spAHoZqo72wLz2xdHO7Bco4SnnwUTE295u97wo535cuijbS8j8-A5_NCCHZPhO9w";
Message = "MINOR | ";
Color = 15105570;
};
["ERROR"] = {
URL = "https://discordapp.com/api/webhooks/738476884752466000/8SNDWbaiJBUEAc8PdAyZKeAtEjOgtYaLMCaP67A1Rz2nFHQMjqwq8Zx0vPlVqijVIMf5";
Message = "ERROR | ";
Color = 15158332;
};
["EMERGENCY"] = {
URL = "https://discordapp.com/api/webhooks/738475978434805810/EAn-n7u5BEgc1YQTaOPpiN0BWs6pzjQvBwViPI-liDQhqrgnPNHP9ubi6g8lL0nk2R3m";
Message = "**EMERGENCY!!!** | ";
Color = 10038562;
};
["EXPLOIT"] = {
URL = "https://discordapp.com/api/webhooks/738714611947405382/HO0XFSZQKAsgEXprAq3aoPV0Q6eQhpZEaVueQcE0bwqOstxy6AAeEz68QcDw68RvR5xw";
Message = "Exploit Log | ";
Color = 10038562;
};
["LOAD"] = {
URL = "https://discordapp.com/api/webhooks/738477343827558440/fALujUIG3snL-dxD2GpZ5rklE6FjKCkCA_RgKAxWIwI08AortxgSLRLJtLnoFvL-5q9O";
Message = "N/A";
Color = 3066993;
};
["CLOSE"] = {
URL = "https://discordapp.com/api/webhooks/738477343827558440/fALujUIG3snL-dxD2GpZ5rklE6FjKCkCA_RgKAxWIwI08AortxgSLRLJtLnoFvL-5q9O";
Message = "N/A";
Color = 10038562;
};
};
}
--// Get Game INFO
local Header = nil
if Settings.Game[game.PlaceId] then
Header = Settings.Game[game.PlaceId]
else
Header = Settings.Game["Other"].Message
end
local Job = tostring(game.JobId)
if Job == "" or Job == " " or Job == nil then
Job = "Studio"
end
local Icon = nil
if Settings.Game[game.PlaceId] then
Icon = Settings.Game[game.PlaceId].Icon
else
Icon = Settings.Game["Other"].Icon
end
local Version = "UNKNOWN" -- _G.Version for any game with Server_Compiler
--// End
return {
Push = {
Load = function(IncomingVersion)
Version = IncomingVersion
wait(1)
local Tab = Settings.Data["LOAD"]
local Data = {
["embeds"] = {{
["title"] = "Load Report",
["description"] = "[[Game]](https://www.roblox.com/games/".. tostring(game.PlaceId).."/) - ".. tostring(game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name),
["type"] = "rich",
["color"] = tonumber(Tab.Color) or 0,
["thumbnail"] = {
["url"] = Icon
},
["fields"] = {
{
["name"] = "Message",
["value"] = "Server has loaded",
},
{
["name"] = "JobID;",
["value"] = tostring(Job),
},
{
["name"] = "Number of Players;";
["value"] = tostring(#game:GetService("Players"):GetChildren()),
},
{
["name"] = "Server Version",
["value"] = tostring(Version),
}
},
["footer"] = {
["icon_url"] = "https://t0.rbxcdn.com/0d00f60ee01d1d375e192b1cc9572fd5",
["text"] = "Phoenix's Game Logger™",
}
}},
}
RequestAsync(Tab.URL, "POST", Data, false)
end;
Close = function()
local Tab = Settings.Data["LOAD"]
local Data = {
["embeds"] = {{
["title"] = "Load Report",
["description"] = "[[Game]](https://www.roblox.com/games/".. tostring(game.PlaceId).."/) - ".. tostring(game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name),
["type"] = "rich",
["color"] = tonumber(Tab.Color) or 0,
["thumbnail"] = {
["url"] = Icon
},
["fields"] = {
{
["name"] = "Message",
["value"] = "Server has closed",
},
{
["name"] = "JobID;",
["value"] = tostring(Job),
},
{
["name"] = "Number of Players;";
["value"] = tostring(#game:GetService("Players"):GetChildren()),
},
{
["name"] = "Server Version",
["value"] = tostring(Version),
}
},
["footer"] = {
["icon_url"] = "https://t0.rbxcdn.com/0d00f60ee01d1d375e192b1cc9572fd5",
["text"] = "Phoenix's Game Logger™",
}
}},
}
RequestAsync(Tab.URL, "POST", Data, false)
end;
Message = function(SCRIPT, TYPE, MESSAGE)
if game:GetService("RunService"):IsStudio() then
return
end
local URL = nil
local Start = nil
local Color = nil
local Reporting
--// Get the script Stack Ooo
if SCRIPT ~= nil then
Reporting = SCRIPT:GetFullName()
else
Reporting = "Unknown"
end
if Settings.Data[string.upper(TYPE)] then
URL = Settings.Data[string.upper(TYPE)].URL
Start = Settings.Data[string.upper(TYPE)].Message
Color = Settings.Data[string.upper(TYPE)].Color
else
error("Did not give correct argument: "..tostring(string.upper(TYPE)))
end
local Data = {
["embeds"] = {{
["title"] = tostring(Header.. string.upper(TYPE)) or "ERROR",
["description"] = "[[Game]](https://www.roblox.com/games/".. tostring(game.PlaceId).."/) - ".. tostring(game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name),
["type"] = "rich",
["color"] = tonumber(Color) or 0,
["thumbnail"] = {
["url"] = Icon
},
["fields"] = {
{
["name"] = "MESSAGE",
["value"] = Start .. MESSAGE,
},
{
["name"] = "Stack",
["value"] = tostring(Reporting),
},
{
["name"] = "JobID;",
["value"] = tostring(Job),
},
{
["name"] = "Number of Players;";
["value"] = tostring(#game:GetService("Players"):GetChildren()),
},
{
["name"] = "Server Version",
["value"] = tostring(Version),
}
},
["footer"] = {
["icon_url"] = "https://t0.rbxcdn.com/0d00f60ee01d1d375e192b1cc9572fd5",
["text"] = "Phoenix's Game Logger™",
}
}},
}
RequestAsync(URL, "POST", Data, false)
end;
ExploitLog = function(Player, MESSAGE)
local Tab = Settings.Data["EXPLOIT"]
local Stack = getfenv(2)
local Reporting
--// Get the script Stack Ooo
if Stack.script ~= nil then
Reporting = Stack.script:GetFullName()
else
Reporting = "Unknown"
end
local Data = {
["embeds"] = {{
["title"] = "Exploit Log",
["description"] = "[[Game]](https://www.roblox.com/games/".. tostring(game.PlaceId).."/) - ".. tostring(game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name),
["type"] = "rich",
["color"] = tonumber(Tab.Color) or 0,
["thumbnail"] = {
["url"] = Icon
},
["fields"] = {
{
["name"] = "Report",
["value"] = MESSAGE,
},
{
["name"] = "Reported Player",
["value"] = tostring(Player.Name) .." (".. tostring(Player.UserId)..")",
},
{
["name"] = "Stack",
["value"] = tostring(Reporting),
},
{
["name"] = "JobID;",
["value"] = tostring(Job),
},
{
["name"] = "Number of Players;";
["value"] = tostring(#game:GetService("Players"):GetChildren()),
},
{
["name"] = "Server Version",
["value"] = tostring(Version),
}
},
["footer"] = {
["icon_url"] = "https://t0.rbxcdn.com/0d00f60ee01d1d375e192b1cc9572fd5",
["text"] = "Phoenix's Game Logger™",
}
}},
}
RequestAsync(Tab.URL, "POST", Data, false)
end;
};
}