-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathprometheus.lua
More file actions
26 lines (26 loc) · 903 Bytes
/
prometheus.lua
File metadata and controls
26 lines (26 loc) · 903 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
return {
-- The default LuaVersion is Lua51
LuaVersion = "Lua51", -- or "LuaU"
-- All Variables will start with this prefix
VarNamePrefix = "",
-- Name Generator for Variables that look like this: b, a, c, D, t, G
NameGenerator = "MangledShuffled",
-- No pretty printing
PrettyPrint = false,
-- Seed is generated based on current time
-- When specifying a seed that is not 0, you will get the same output every time
Seed = 0,
-- Obfuscation steps
Steps = {
{
-- This obfuscation step puts all constants into an array at the beginning of the code
Name = "ConstantArray",
Settings = {
-- Apply to Strings only
StringsOnly = true,
-- Apply to all Constants, 0.5 would only affect 50% of strings
Treshold = 1,
},
},
}
}