-
Notifications
You must be signed in to change notification settings - Fork 10
/
⚡๖ۣۜƤr𐍉𝔍EcT G𐍉𝔇𝒵⚡~[𝕋ℍ𝔼 𝕃𝔼𝔸𝔻𝕀ℕ𝔾 𝕄𝕆𝔻 𝔽𝕆ℝ 𝕄𝕆𝕆𝕄𝕆𝕆.𝕀𝕆 GoDZ]~
22974 lines (22275 loc) · 760 KB
/
⚡๖ۣۜƤr𐍉𝔍EcT G𐍉𝔇𝒵⚡~[𝕋ℍ𝔼 𝕃𝔼𝔸𝔻𝕀ℕ𝔾 𝕄𝕆𝔻 𝔽𝕆ℝ 𝕄𝕆𝕆𝕄𝕆𝕆.𝕀𝕆 GoDZ]~
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ==UserScript==
// @name ⚡๖ۣۜƤr𐍉𝔍EcT G𐍉𝔇𝒵⚡~[𝕋ℍ𝔼 𝕃𝔼𝔸𝔻𝕀ℕ𝔾 𝕄𝕆𝔻 𝔽𝕆ℝ 𝕄𝕆𝕆𝕄𝕆𝕆.𝕀𝕆 GoDZ]~
// @namespace ⛔GoDMoDE ON⛔
// @version ✅Last_Version✅
// @users ~UNKNOWN~
// @icon https://media1.giphy.com/media/13USt1URETlUFG/giphy.gif?cid=ecf05e47fec98fc399846e7261e8567efd31260a81d73891&rid=giphy.gif
// @description ⚡BE A GOD⚡
// @authors Instakiller Squad AND AFK
// @match *://moomoo.io/*
// @match *://dev.moomoo.io/*
// @match *://sandbox.moomoo.io/*
// @grant none
// @require https://greasyfork.org/scripts/368273-msgpack/code/msgpack.js?version=598723
// @require http://code.jquery.com/jquery-3.3.1.min.js
// @require https://code.jquery.com/ui/1.12.0/jquery-ui.min.js
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.0/jquery-confirm.min.js
// @downloadURL none
// ==/UserScript==
var YouName = window.prompt("⚡UR A GOD SOO GO KILL SOMEONE BY UR CHOICE!⚡.","");
let message = document.createElement
var autoreloadloop;
var autoreloadenough = 0;
autoreloadloop = setInterval(function () {
if (autoreloadenough < 200) {
if (document.getElementById("loadingText").innerHTML == `disconnected<a href="javascript:window.location.href=window.location.href" class="ytLink">reload</a>`) {
clearInterval(autoreloadloop);
setTimeout(function () {document.title = "Moo Moo";}, 1000)
location.reload();
}
autoreloadenough++;
}
else if (autoreloadenough >= 300) {
clearInterval(autoreloadloop);
setTimeout(function () {document.title = "Moo Moo";}, 1000)
}
}, 50);
(() => {
try {
class Collection {
constructor(array = []) {
this.__array = array;
}
fromID(id) {
return this.__array.filter(thing => thing.id === id);
}
get(id) {
return this.fromID(id)[0];
}
has(id) {
return this.fromID(id).length > 0;
}
forEach(callback) {
this.__array.forEach(callback);
}
}
const canvas = document.getElementById("gameCanvas");
const ctx = canvas.getContext("2d");
const players = {};
let currentID = null;
let ws;
function randInt(min, max) {
const mini = Math.ceil(min);
return Math.floor(Math.random() * (Math.floor(max) - mini + 1)) + mini;
}
function randItem(array) {
return array[randInt(0, array.length - 1)];
}
const modules = new Collection([{
id: "core",
name: "Core",
description: "This mod New And Op. Made By Instakiller Squad And AFK. Enjoy :D!",
required: true,
init: () => {
const example = $($("#linksContainer2").children()[0]);
const mesLink = example.clone();
mesLink.text(`MES v${GM_info.script.version}`);
mesLink.attr("href", "https://github.com/Nebula-Developers/Moomoo-Enhancement-Suite");
example.after(" | ", mesLink);
}
}, {
id: "tracers",
name: "Tracers",
settings: [{
id: "line_color",
type: "color",
name: "Line Color",
description: "The color of the tracers.",
default: "#FF0000"
}],
init: () => {
function drawTracers() {
Object.values(players).forEach(player => {
if (currentID === null || players[currentID] === undefined || players[currentID].longID === undefined) return;
ctx.strokeStyle = color;
ctx.lineWidth = 3;
const player2 = players[currentID];
ctx.beginPath();
ctx.moveTo(player2.x, player2.y);
ctx.lineTo(player.x, player.y);
ctx.stroke();
});
window.requestAnimationFrame(drawTracers);
}
drawTracers();
},
}, {
id: "auto_chat",
name: "Automatic Chat",
description: "Automatically chats certain messages.",
settings: [{
id: "messages",
name: "Message List",
hover: "You can insert multiple messages with a comma; if you want to say both '1' and '2', put '1,2'.",
default: "Hello!,Git gud!",
type: "text",
}, {
id: "randomize_messages",
name: "Randomize Messages",
default: true,
type: "checkbox",
}],
init: () => {
let index = 0;
const messages = config.auto_chat.messages.split(",");
setInterval(() => {
if (ws) {
const toSend = config.auto_chat.randomize_messages ? randItem(messages) : messages[index];
ws.emit("ch", [
toSend,
]);
index += 1;
if (index >= messages.length) {
index = 0;
}
}
}, 3000);
}
}, {
id: "smart_hat",
name: "Smart Hats",
description: "This module allows you to equip certain hats at certain times to get the most out of those actions.",
}, {
id: "heal",
name: "Autoheal",
description: "With this module, you can automatically heal when you get damaged.",
}, {
id: "object_map",
name: "Object Mapper",
description: "Maps the position of objects to your minimap.",
}, {
id: "projectile_blocker",
name: "Arrow Blocking",
description: "When you have a shield, this module will prevent arrows from hitting you by equipping it and blocking the arrow.",
}, {
id: "coordinates",
name: "Coordinates",
description: "Shows your coordinates.",
}, {
id: "minimap_biomes",
name: "Biomes on Minimap",
description: "Shows the different biomes on the minimap by coloring each region.",
init: () => {
$("#mapDisplay").css("background", "url('https://cdn.discordapp.com/attachments/652521766555746325/683639971101278260/dragon.png')");
},
deinit: () => {
$("#mapDisplay").css("background", "rgba(0, 0, 0, 0.25)");
},
}, {
id: "custom_text",
name: "Custom Text",
description: "This module lets you change the text of many things.",
settings: [{
id: "death",
name: "Death",
default: "YOU DIED",
type: "text",
}, {
id: "title",
name: "Title",
default: "Moo Moo",
type: "text",
}],
init: () => {
$("#diedText").text(config.custom_text.death);
document.title = config.custom_text.title;
},
}, {
id: "ping_display",
name: "Show Ping",
description: "Adds the ping counter in-game.",
init: () => {
const pingDisplay = $("#pingDisplay");
pingDisplay.css("top", "3px");
pingDisplay.css("display", "block");
$("body").append(pingDisplay);
}
}]);
const config = JSON.parse(localStorage.getItem("mes_config")) || {};
function setConfig(moduleID, key, value) {
if (!config[moduleID]) {
config[moduleID] = {};
}
if (!(key === undefined || value === undefined)) {
config[moduleID][key] = value;
}
return localStorage.setItem("mes_config", JSON.stringify(config));
}
modules.forEach(module => {
setConfig(module.id);
});
WebSocket = class extends WebSocket {
constructor(...arg) {
super(...arg);
ws = this;
this.addEventListener("message", event => {
const data = msgpack.decode(event.data);
switch (data[0]) {
case "1":
currentID = data[1][0];
case "2":
players[data[1][0][1]] = {
longID: data[1][0][0],
name: data[1][0][2],
x: data[1][0][3],
y: data[1][0][4],
angle: data[1][0][5],
lastUpdated: Date.now(),
};
break;
case "3":
for (let i = 0, len = data[1][0].length / 13; i < len; i++) {
if (!players[data[1][0][0 + i * 13]]) {
players[data[1][0][0 + i * 13]] = {
x: data[1][0][1 + i * 13],
y: data[1][0][2 + i * 13],
angle: data[1][0][3 + i * 13],
lastUpdated: Date.now(),
};
} else {
const p = players[data[1][0][0 + i * 13]];
p.x = data[1][0][1 + i * 13];
p.y = data[1][0][2 + i * 13],
p.angle = data[1][0][3 + i * 13],
p.lastUpdated = Date.now();
}
}
break;
case "4":
for (const k in players) {
if (players[k].longID == data[1][0]) delete players[k];
}
}
});
this._send = this.send;
this.send = function () {
this._send.apply(this, arguments);
};
this.emit = function () {
const input = msgpack.encode(arguments);
this.send(input);
}
}
};
let menuOpen = false;
const gameUI = $("#gameUI");
const menuButton = $("#allianceButton").clone(false);
menuButton.children()[0].innerText = "touch_app";
menuButton.css("right", "450px");
menuButton.attr("title", `Moomoo Enhancement Script v${GM_info.script.version}`);
menuButton.on("click", toggleMenu);
gameUI.append(menuButton);
const menuWrapper = $("<div/>");
menuWrapper.css("display", "none");
menuWrapper.css("width", "100%");
menuWrapper.css("position", "absolute");
menuWrapper.css("top", "50%");
menuWrapper.css("transform", "translateY(-50%)");
menuWrapper.css("text-align", "center");
menuWrapper.css("pointer-events", "initial");
const hackMenu = $("<div/>");
hackMenu.attr("id", "hackMenu");
const settingsBox = $("<div/>");
settingsBox.attr("id", "settingsBox");
const categoryChoose = $("<select/>");
categoryChoose.css("width", "30%");
categoryChoose.append("<option disabled>Choose Category</option>");
// Add all modules to the module options select...
modules.forEach(module => {
const moduleOpt = $("<option/>");
moduleOpt.attr("value", module.id);
moduleOpt.text(module.name)
categoryChoose.append(moduleOpt);
});
function makeInput(setting, configVal) {
const input = $(`<input/>`);
input.attr("type", setting.type);
input.attr("name", setting.id);
input.css("margin", "5px");
input.css("max-width", "25px");
const label = $(`<label class="settingRadio" />`);
label.text(setting.name);
input.attr("title", setting.hover);
switch (setting.type) {
case "text":
input.css("width", "170px");
input.css("max-width", "170px");
input.attr("placeholder", `Default: ${setting.default}`);
input.val(configVal);
label.text(setting.name + ":");
break;
case "checkbox":
input.prop("checked", configVal);
break;
default:
input.val(configVal);
}
if (setting.type === "text") {
label.append(input);
} else {
label.prepend(input);
}
return label;
}
categoryChoose.on("change", event => {
const newmod = modules.get(event.target.value);
settingsBox.empty();
const desc = $("<p/>");
desc.text(newmod.description || `You can change settings for the ${newmod.name} module here.`);
settingsBox.append(desc);
if (!newmod.required) {
const enabledToggle = makeInput({
type: "checkbox",
id: "enabled",
name: "Enable Module",
hover: "Toggles all functionality in this module.",
}, config[newmod.id].enabled);
settingsBox.append(enabledToggle);
}
// Append module-provided settings.
if (newmod.settings) {
newmod.settings.forEach(setting => {
settingsBox.append("<br/>");
settingsBox.append(makeInput(setting, config[newmod.id][setting.id]));
});
}
});
settingsBox.on("change", event => {
const target = $(event.target);
switch (target.attr("type")) {
case "checkbox":
return setConfig(categoryChoose.val(), target.attr("name"), target.prop("checked"));
default:
return setConfig(categoryChoose.val(), target.attr("name"), target.val());
}
});
categoryChoose.val("core").change();
hackMenu.append("<h1>Options</h2>");
hackMenu.append(categoryChoose);
hackMenu.append(settingsBox);
menuWrapper.append(hackMenu);
gameUI.append(menuWrapper);
$("head").append(`
<style>
#hackMenu {
background-color: rgb(119, 0, 1, 0.75);
width: 400px;
height: 400px;
color: white;
max-height: calc(100vh - 400px);
overflow-y: hidden;
display: inline-block;
border-radius: 4px;
}
#settingsBox {
height: 300px;
overflow-y: scroll;
padding: 25px;
text-align: left;
font-size: 18px;
}
h1 {
font-size: 26px;
text-transform: uppercase;
}
</style>
`);
function toggleMenu() {
menuOpen = !menuOpen;
menuWrapper.css("display", menuOpen ? "block" : "none");
}
modules.forEach(module => {
if (config[module.id].enabled || module.required) {
if (module.init) {
module.init();
} else {
console.warn(`Module ${module.id} has no initialization.`);
}
}
});
} catch (e) {
console.warn(e)
}
})();
$("#consentBlock").css({display: "none"});
$("#ytLink").css({display: "none"});
let newImg = document.createElement("img");
newImg.src = "https://upload.wikimedia.org/wikipedia/commons/6/6d/Windows_Settings_app_icon.png";
newImg.style = `position: absolute; top: 100px; left: 80%; z-index: 100000; width: 100px; height: 100px; cursor: pointer;`;
document.body.prepend(newImg);
newImg.addEventListener("click", () => {
let w = window.open("https://www.youtube.com/channel/UC9yLmO2eqc8BQH5IRtmMZAQ", null, `height=650, width=1199, status=yes, toolbar=no, menubar=no, location=no`);
});
$("#gameCanvas").css('cursor', 'url(http://cur.cursors-4u.net/user/use-1/use153.cur), default');
$("#consentBlock").css({display: "none"});
//$("#youtuberOf").css({display: "none"});
$("#mapDisplay").css({background: `url('https://cdn.discordapp.com/attachments/652521766555746325/683639971101278260/dragon.png')`});
$("#mapDisplay").css({
'border-radious':'300px',
'border':'3px solid #AC0E0E'
});
$("#menuButton").css({background: `url('https://cdn.discordapp.com/attachments/632465085855563776/682964309478866994/download_32.jpg')`});
$("#allianceButton").css({background: `url('https://cdn.discordapp.com/attachments/632465085855563776/682964309478866994/download_32.jpg')`});
$("#storeButton").css({background: `url('https://cdn.discordapp.com/attachments/632465085855563776/682964309478866994/download_32.jpg')`});
$("#chatButton").css({background: `url('https://cdn.discordapp.com/attachments/632465085855563776/682964309478866994/download_32.jpg')`});
const pingDisplay = $("#pingDisplay");
pingDisplay.css("top", "3px");
pingDisplay.css("display", "block");
$("body").append(pingDisplay);
document.getElementById("moomooio_728x90_home").style.display = "none";
$("#moomooio_728x90_home").parent().css({display: "none"});
(function() {
var můjVar;
var můjVar2;
var můjVar3;
var můjVar4;
var můjVar5;
var můjVar6;
var můjVar7;
var můjVar8;
var můjVar9;
var můjVar10;
var můjVar11;
var můjVar12;
var můjVar13;
var můjVar14;
var můjVar15;
var můjVar16;
var můjVar17;
var můjVar18;
var můjVar19;
var můjVar20;
var můjVar21;
var můjVar22;
var můjVar23;
var můjVar24;
var můjVar25;
var můjVar26;
var můjVar27;
var můjVar28;
var můjVar29;
var můjVar30;
var můjVar31;
var můjVar32;
var můjVar33;
var můjVar34;
var můjVar35;
var můjVar36;
var můjVar37;
var můjVar38;
var můjVar39;
var můjVar40;
var můjVar41;
var změna = true;
var ID_FΔZΣ = 45;
var ID_Moo_Head = 28;
var ID_Moo_Cap = 51;
var ID_Apple_Cap = 50;
var ID_Pig_Head = 29;
var ID_Fluff_Head = 30;
var ID_Pandou_Head = 36;
var ID_Bear_Head = 37;
var ID_Monkey_Head = 38;
var ID_Polar_Head = 44;
var ID_Fez_Hat = 35;
var ID_Enigma_Hat = 42;
var ID_Blitz_Hat = 43;
var ID_Bob_XIII_Hat = 49;
var ID_Bummle_Hat = 8;
var ID_Straw_Hat = 2;
var ID_Winter_Cap = 15;
var ID_Cowboy_Hat = 5;
var ID_Ranger_Hat = 4;
var ID_Explorer_Hat = 18;
var ID_Flipper_Hat = 31;
var ID_Marksman_Cap = 1;
var ID_Bush_Gear = 10;
var ID_Halo = 48;
var ID_Soldier_Helmet = 6;
var ID_Anti_Venom_Gear = 23;
var ID_Medic_Gear = 13;
var ID_Miners_Helmet = 9;
var ID_Musketeer_Hat = 32;
var ID_Bull_Helmet = 7;
var ID_Emp_Helmet = 22;
var ID_Booster_Hat = 12;
var ID_Barbarian_Armor = 26;
var ID_Plague_Mask = 21;
var ID_Bull_Mask = 46;
var ID_Windmill_Hat = 14;
var ID_Spike_Gear = 11;
var ID_Samurai_Armor = 20;
var ID_Bushido_Armor = 16;
var ID_Scavenger_Gear = 27;
var ID_Tank_Gear = 40;
document.addEventListener('keydown', function (e) {
if (e.keyCode == 118) {
e.preventDefault();
if (změna) {
storeEquip(ID_FΔZΣ);
můjVar = setTimeout(function(){ h1(); }, 75);
} else {
clearTimeout(můjVar);
clearTimeout(můjVar2);
clearTimeout(můjVar3);
clearTimeout(můjVar4);
clearTimeout(můjVar5);
clearTimeout(můjVar6);
clearTimeout(můjVar7);
clearTimeout(můjVar8);
clearTimeout(můjVar9);
clearTimeout(můjVar10);
clearTimeout(můjVar11);
clearTimeout(můjVar12);
clearTimeout(můjVar13);
clearTimeout(můjVar14);
clearTimeout(můjVar15);
clearTimeout(můjVar16);
clearTimeout(můjVar17);
clearTimeout(můjVar18);
clearTimeout(můjVar19);
clearTimeout(můjVar20);
clearTimeout(můjVar21);
clearTimeout(můjVar22);
clearTimeout(můjVar23);
clearTimeout(můjVar24);
clearTimeout(můjVar25);
clearTimeout(můjVar26);
clearTimeout(můjVar27);
clearTimeout(můjVar28);
clearTimeout(můjVar29);
clearTimeout(můjVar30);
clearTimeout(můjVar31);
clearTimeout(můjVar32);
clearTimeout(můjVar33);
clearTimeout(můjVar34);
clearTimeout(můjVar35);
clearTimeout(můjVar36);
clearTimeout(můjVar37);
clearTimeout(můjVar38);
clearTimeout(můjVar39);
clearTimeout(můjVar40);
clearTimeout(můjVar41);
storeEquip(ID_FΔZΣ);
}
změna = !změna;
}
});
function h1() {
storeEquip(ID_FΔZΣ);
clearTimeout(můjVar);
můjVar2 = setTimeout(function(){ h2(); }, 75);
}
function h2() {
storeEquip(ID_Moo_Head);
clearTimeout(můjVar2);
můjVar3 = setTimeout(function(){ h3(); }, 75);
}
function h3() {
storeEquip(ID_Pig_Head);
clearTimeout(můjVar3);
můjVar4 = setTimeout(function(){ h4(); }, 75);
}
function h4() {
storeEquip(ID_Fluff_Head);
clearTimeout(můjVar4);
můjVar5 = setTimeout(function(){ h5(); }, 75);
}
function h5() {
storeEquip(ID_Pandou_Head);
clearTimeout(můjVar5);
můjVar6 = setTimeout(function(){ h6(); }, 75);
}
function h6() {
storeEquip(ID_Bear_Head);
clearTimeout(můjVar6);
můjVar7 = setTimeout(function(){ h7(); }, 75);
}
function h7() {
storeEquip(ID_Monkey_Head);
clearTimeout(můjVar7);
můjVar8 = setTimeout(function(){ h8(); }, 75);
}
function h8() {
storeEquip(ID_Polar_Head);
clearTimeout(můjVar8);
můjVar9 = setTimeout(function(){ h9(); }, 75);
}
function h9() {
storeEquip(ID_Fez_Hat);
clearTimeout(můjVar9);
můjVar10 = setTimeout(function(){ h10(); }, 75);
}
function h10() {
storeEquip(ID_Enigma_Hat);
clearTimeout(můjVar10);
můjVar11 = setTimeout(function(){ h11(); }, 75);
}
function h11() {
storeEquip(ID_Blitz_Hat);
clearTimeout(můjVar11);
můjVar12 = setTimeout(function(){ h12(); }, 75);
}
function h12() {
storeEquip(ID_Bob_XIII_Hat);
clearTimeout(můjVar12);
můjVar13 = setTimeout(function(){ h13(); }, 75);
}
function h13() {
storeEquip(ID_Moo_Cap);
clearTimeout(můjVar12);
můjVar14 = setTimeout(function(){ h14(); }, 75);
}
function h14() {
storeEquip(ID_Apple_Cap);
clearTimeout(můjVar12);
můjVar = setTimeout(function(){ h1(); }, 75);
}
})();
(function() {
var můjVar;
var můjVar2;
var můjVar3;
var můjVar4;
var můjVar5;
var můjVar6;
var můjVar7;
var můjVar8;
var můjVar9;
var můjVar10;
var můjVar11;
var můjVar12;
var můjVar13;
var můjVar14;
var můjVar15;
var můjVar16;
var můjVar17;
var můjVar18;
var můjVar19;
var můjVar20;
var můjVar21;
var můjVar22;
var můjVar23;
var můjVar24;
var můjVar25;
var můjVar26;
var můjVar27;
var můjVar28;
var můjVar29;
var můjVar30;
var můjVar31;
var můjVar32;
var můjVar33;
var můjVar34;
var můjVar35;
var můjVar36;
var můjVar37;
var můjVar38;
var můjVar39;
var můjVar40;
var můjVar41;
var změna = true;
var ID_FΔZΣ = 45;
var ID_Moo_Head = 28;
var ID_Pig_Head = 29;
var ID_Fluff_Head = 30;
var ID_Pandou_Head = 36;
var ID_Bear_Head = 37;
var ID_Monkey_Head = 38;
var ID_Polar_Head = 44;
var ID_Fez_Hat = 35;
var ID_Enigma_Hat = 42;
var ID_Blitz_Hat = 43;
var ID_Bob_XIII_Hat = 49;
var ID_Bummle_Hat = 8;
var ID_Straw_Hat = 2;
var ID_Winter_Cap = 15;
var ID_Cowboy_Hat = 5;
var ID_Ranger_Hat = 4;
var ID_Explorer_Hat = 18;
var ID_Flipper_Hat = 31;
var ID_Marksman_Cap = 1;
var ID_Bush_Gear = 10;
var ID_Halo = 48;
var ID_Soldier_Helmet = 6;
var ID_Anti_Venom_Gear = 23;
var ID_Medic_Gear = 13;
var ID_Miners_Helmet = 9;
var ID_Musketeer_Hat = 32;
var ID_Bull_Helmet = 7;
var ID_Emp_Helmet = 22;
var ID_Booster_Hat = 12;
var ID_Barbarian_Armor = 26;
var ID_Plague_Mask = 21;
var ID_Bull_Mask = 46;
var ID_Windmill_Hat = 14;
var ID_Spike_Gear = 11;
var ID_Samurai_Armor = 20;
var ID_Bushido_Armor = 16;
var ID_Scavenger_Gear = 27;
var ID_Tank_Gear = 40;
var ID_Moo_Cap = 51;
var ID_Apple_Cap = 50;
document.addEventListener('keydown', function (e) {
if (e.keyCode == 117) {
e.preventDefault();
if (změna) {
storeEquip(ID_FΔZΣ);
můjVar = setTimeout(function(){ h1(); }, 75);
} else {
clearTimeout(můjVar);
clearTimeout(můjVar2);
clearTimeout(můjVar3);
clearTimeout(můjVar4);
clearTimeout(můjVar5);
clearTimeout(můjVar6);
clearTimeout(můjVar7);
clearTimeout(můjVar8);
clearTimeout(můjVar9);
clearTimeout(můjVar10);
clearTimeout(můjVar11);
clearTimeout(můjVar12);
clearTimeout(můjVar13);
clearTimeout(můjVar14);
clearTimeout(můjVar15);
clearTimeout(můjVar16);
clearTimeout(můjVar17);
clearTimeout(můjVar18);
clearTimeout(můjVar19);
clearTimeout(můjVar20);
clearTimeout(můjVar21);
clearTimeout(můjVar22);
clearTimeout(můjVar23);
clearTimeout(můjVar24);
clearTimeout(můjVar25);
clearTimeout(můjVar26);
clearTimeout(můjVar27);
clearTimeout(můjVar28);
clearTimeout(můjVar29);
clearTimeout(můjVar30);
clearTimeout(můjVar31);
clearTimeout(můjVar32);
clearTimeout(můjVar33);
clearTimeout(můjVar34);
clearTimeout(můjVar35);
clearTimeout(můjVar36);
clearTimeout(můjVar37);
clearTimeout(můjVar38);
clearTimeout(můjVar39);
clearTimeout(můjVar40);
clearTimeout(můjVar41);
storeEquip(ID_FΔZΣ);
}
změna = !změna;
}
});
function h1() {
storeEquip(ID_FΔZΣ);
clearTimeout(můjVar);
můjVar2 = setTimeout(function(){ h2(); }, 75);
}
function h2() {
storeEquip(ID_Moo_Head);
clearTimeout(můjVar2);
můjVar3 = setTimeout(function(){ h3(); }, 75);
}
function h3() {
storeEquip(ID_Pig_Head);
clearTimeout(můjVar3);
můjVar4 = setTimeout(function(){ h4(); }, 75);
}
function h4() {
storeEquip(ID_Fluff_Head);
clearTimeout(můjVar4);
můjVar5 = setTimeout(function(){ h5(); }, 75);
}
function h5() {
storeEquip(ID_Pandou_Head);
clearTimeout(můjVar5);
můjVar6 = setTimeout(function(){ h6(); }, 75);
}
function h6() {
storeEquip(ID_Bear_Head);
clearTimeout(můjVar6);
můjVar7 = setTimeout(function(){ h7(); }, 75);
}
function h7() {
storeEquip(ID_Monkey_Head);
clearTimeout(můjVar7);
můjVar8 = setTimeout(function(){ h8(); }, 75);
}
function h8() {
storeEquip(ID_Polar_Head);
clearTimeout(můjVar8);
můjVar9 = setTimeout(function(){ h9(); }, 75);
}
function h9() {
storeEquip(ID_Fez_Hat);
clearTimeout(můjVar9);
můjVar10 = setTimeout(function(){ h10(); }, 75);
}
function h10() {
storeEquip(ID_Enigma_Hat);
clearTimeout(můjVar10);
můjVar11 = setTimeout(function(){ h11(); }, 75);
}
function h11() {
storeEquip(ID_Blitz_Hat);
clearTimeout(můjVar11);
můjVar12 = setTimeout(function(){ h12(); }, 75);
}
function h12() {
storeEquip(ID_Bob_XIII_Hat);
clearTimeout(můjVar12);
můjVar13 = setTimeout(function(){ h13(); }, 75);
}
function h13() {
storeEquip(ID_Bummle_Hat);
clearTimeout(můjVar13);
můjVar14 = setTimeout(function(){ h14(); }, 75);
}
function h14() {
storeEquip(ID_Straw_Hat);
clearTimeout(můjVar14);
můjVar15 = setTimeout(function(){ h15(); }, 75);
}
function h15() {
storeEquip(ID_Winter_Cap);
clearTimeout(můjVar15);
můjVar16 = setTimeout(function(){ h16(); }, 75);
}
function h16() {
storeEquip(ID_Cowboy_Hat);
clearTimeout(můjVar16);
můjVar17 = setTimeout(function(){ h17(); }, 75);
}
function h17() {
storeEquip(ID_Ranger_Hat);
clearTimeout(můjVar17);
můjVar18 = setTimeout(function(){ h18(); }, 75);
}
function h18() {
storeEquip(ID_Explorer_Hat);
clearTimeout(můjVar18);
můjVar19 = setTimeout(function(){ h19(); }, 75);
}
function h19() {
storeEquip(ID_Flipper_Hat);
clearTimeout(můjVar19);
můjVar20 = setTimeout(function(){ h20(); }, 75);
}
function h20() {
storeEquip(ID_Marksman_Cap);
clearTimeout(můjVar20);
můjVar21 = setTimeout(function(){ h21(); }, 75);
}
function h21() {
storeEquip(ID_Bush_Gear);
clearTimeout(můjVar21);
můjVar22 = setTimeout(function(){ h22(); }, 75);
}
function h22() {
storeEquip(ID_Halo);
clearTimeout(můjVar22);
můjVar23 = setTimeout(function(){ h23(); }, 75);
}
function h23() {
storeEquip(ID_Soldier_Helmet);
clearTimeout(můjVar23);
můjVar24 = setTimeout(function(){ h24(); }, 75);
}
function h24() {
storeEquip(ID_Anti_Venom_Gear);
clearTimeout(můjVar24);
můjVar25 = setTimeout(function(){ h25(); }, 75);
}
function h25() {
storeEquip(ID_Medic_Gear);
clearTimeout(můjVar25);
můjVar26 = setTimeout(function(){ h26(); }, 75);
}
function h26() {
storeEquip(ID_Miners_Helmet);
clearTimeout(můjVar26);
můjVar27 = setTimeout(function(){ h27(); }, 75);
}
function h27() {
storeEquip(ID_Musketeer_Hat);
clearTimeout(můjVar27);
můjVar28 = setTimeout(function(){ h28(); }, 75);
}
function h28() {
storeEquip(ID_Bull_Helmet);
clearTimeout(můjVar28);
můjVar29 = setTimeout(function(){ h29(); }, 75);
}
function h29() {
storeEquip(ID_Emp_Helmet);
clearTimeout(můjVar29);
můjVar30 = setTimeout(function(){ h30(); }, 75);
}
function h30() {
storeEquip(ID_Booster_Hat);
clearTimeout(můjVar30);
můjVar31 = setTimeout(function(){ h31(); }, 75);