-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata-final-fixes.lua
More file actions
65 lines (63 loc) · 1.2 KB
/
Copy pathdata-final-fixes.lua
File metadata and controls
65 lines (63 loc) · 1.2 KB
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
local BGMScan = true
local count = 1
while (BGMScan == true) do
if (data.raw.sticker["BGM"..count]) then
count = count+1
else
data:extend{(
{
type = "recipe",
name = "MLG_SickW0bs",
enabled = false,
hidden = true,
emissions_multiplier = count-1,
results = {
{type="item", name="infinity-chest", amount=1}
}
}
)}
BGMScan = false
end
end
local HYPEScan = true
local count = 1
while (HYPEScan == true) do
if (data.raw.sticker["HYPE"..count]) then
count = count+1
else
data:extend{(
{
type = "recipe",
name = "MLG_Euphoria",
enabled = false,
hidden = true,
emissions_multiplier = count-1,
results = {
{type="item", name="infinity-chest", amount=1}
}
}
)}
HYPEScan = false
end
end
local MEMEScan = true
local count = 1
while (MEMEScan == true) do
if (data.raw.sticker["MEME"..count]) then
count = count+1
else
data:extend{(
{
type = "recipe",
name = "MLG_Maymays",
enabled = false,
hidden = true,
emissions_multiplier = count-1,
results = {
{type="item", name="infinity-chest", amount=1}
}
}
)}
MEMEScan = false
end
end