-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathscript.js
More file actions
46 lines (28 loc) · 1.27 KB
/
script.js
File metadata and controls
46 lines (28 loc) · 1.27 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
const { PLUGIN } = require("hecklib/util/enums");
const { log } = require("hecklib/util/logs");
const { Difficulty } = require("hecklib/v3");
const START = performance.now();
const Diff = new Difficulty(
Difficulty.STANDARD.ExpertPlus,
Difficulty.LAWLESS.ExpertPlus,
{
NoLogo: true,
Logs: "Info"
}
);
Diff.DifficultyInfo.CustomData.Requirements = [
PLUGIN.NoodleExtensions,
PLUGIN.Chroma,
PLUGIN.Vivify
]
const { ColorNotes: notes, BombNotes: bombs, Obstacles: walls, Sliders: arcs, BurstSliders: chains, BasicBeatmapEvents: events } = Diff.Map;
const { FakeColorNotes: fakeNotes, FakeBombNotes: fakeBombs, FakeObstacles: fakeWalls, FakeSliders: fakeArcs, FakeBurstSliders: fakeChains, CustomEvents: customEvents, PointDefinitions: pointDefinitions, Materials: materials, Environment: environment } = Diff.Map.CustomData;
//#region =============== Functions Below ===============
//#endregion =============== Functions Above ===============
//#region =============== Map Script Below ===============
//#endregion =============== Map Script Above ===============
Diff.Push({
format: true // Change this to true to indent the JSON output
});
log.success("HeckLib ran", { StartTime: START });
log.printLogBuffer();