This repository has been archived by the owner on Oct 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmusickitspoofer.js
87 lines (82 loc) · 2.53 KB
/
musickitspoofer.js
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
// https://github.com/sotakoira/otcv3-scripts
// https://github.com/TheRatCode/RatPoison/blob/beta/settings/Data/MusicKits.txt
UI.AddDropdown("Music kit", [
"none",
"CS:GO",
"musickit_valve_csgo_02",
"Daniel Sadowski, Crimson Assault",
"Noisia, Sharpened",
"Robert Allaire, Insurgency",
"Sean Murray, A*D*8",
"Feed Me, High Moon",
"Dren, Death's Head Demolition",
"Austin Wintory, Desert Fire",
"Sasha, LNOE",
"Skog, Metal",
"Midnight Riders, All I Want for Christmas",
"Matt Lange, IsoRhythm",
"Mateo Messina, For No Mankind",
"Various Artists, Hotline Miami",
"Daniel Sadowski, Total Domination",
"Damjan Mravunac, The Talos Principle",
"Proxy, Battlepack",
"Ki:Theory, MOLOTOV",
"Troels Folmann, Uber Blasto Phone",
"Kelly Bailey, Hazardous Environments",
"Skog, II-Headshot",
"Daniel Sadowski, The 8-Bit Kit",
"AWOLNATION, I Am",
"Mord Fustang, Diamonds",
"Michael Bross, Invasion!",
"Ian Hultquist, Lion's Mouth",
"New Beat Fund, Sponge Fingerz",
"Beartooth, Disgusting",
"Lennie Moore, Java Havana Funkaloo",
"Darude, Moments CSGO",
"Beartooth, Aggressive",
"Blitz Kids, The Good Youth",
"Hundredth, FREE",
"Neck Deep, Life's Not Out to Get You",
"Roam, Backbone",
"Twin Atlantic, GLA",
"Skog, III-Arena",
"The Verkkars, EZ4ENCE",
"Halo, The Master Chief Collection",
"Scarlxrd: King, Scar",
"Half-Life: Alyx, Anti-Citizen",
"Austin Wintory, Bachram",
"Dren, Gunman Taco Truck",
"Daniel Sadowski, Eye of the Dragon",
"Tree Adams and Ben Bromfield, M.U.D.D. FORCE",
"Tim Huling, Neo Noir",
"Sam Marshall, Bodacious",
"Matt Levine, Drifter",
"Amon Tobin, All for Dust",
"Darren Korb, Hades Music Kit",
"Neck Deep, The Lowlife Pack",
"Scarlxrd, CHAIN$AW.LXADXUT.",
"Austin Wintory, Mocha Petal",
"Chipzel, ~Yellow Magic~",
"Freaky DNA, Vici",
"Jesse Harlin, Astro Bellum",
"Laura Shigihara: Work Hard, Play Hard",
"Sarah Schachner, KOLIBRI"
]);
var original = Entity.GetProp(Entity.GetLocalPlayer(), "CCSPlayerResource", "m_nMusicID");
function main() {
if (Cheat.FrameStage() != 1) {
return;
}
var current = Entity.GetProp(Entity.GetLocalPlayer(), "CCSPlayerResource", "m_nMusicID");
var musickit = UI.GetValue("Music kit");
if (musickit == 0) {// none
if (current !== original) {
Entity.SetProp(Entity.GetLocalPlayer(), "CCSPlayerResource", "m_nMusicID", original);
}
return;
}
else if (current !== musickit) {
Entity.SetProp(Entity.GetLocalPlayer(), "CCSPlayerResource", "m_nMusicID", musickit);
}
}
Global.RegisterCallback("FrameStageNotify", "main");