-
Notifications
You must be signed in to change notification settings - Fork 1
/
Hycraft
1020 lines (1020 loc) · 24.6 KB
/
Hycraft
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
2DTags Outline false
2DTags Mode Box
2DTags Health-Bar false
2DTags HBar-Mode Line
2DTags Render-Absorption false
2DTags Armor-bar false
2DTags ABar-Mode Total
2DTags HealthNumber false
2DTags HP-Mode Health
2DTags ItemArmorNumber false
2DTags ArmorItems false
2DTags ArmorDurability false
2DTags Details-HoverOnly false
2DTags Tags true
2DTags Tags-Background false
2DTags Item-Tags false
2DTags Use-Clear-Name false
2DTags Local-Player false
2DTags Dropped-Items false
2DTags Color Custom
2DTags Red 255
2DTags Green 255
2DTags Blue 255
2DTags Saturation 1.0
2DTags Brightness 1.0
2DTags Seconds 2
2DTags Font-Scale 1.0
2DTags Team false
2DTags toggle true
2DTags bind NONE
Aimbot Range 1000.0
Aimbot TurnSpeed 180.0
Aimbot FOV 180.0
Aimbot Center true
Aimbot Lock true
Aimbot OnClick false
Aimbot Jitter false
Aimbot toggle false
Aimbot bind NONE
Animals toggle true
Animals bind NONE
Annoy YawMove Spin
Annoy PitchMode Down
Annoy SilentRotate true
Annoy toggle false
Annoy bind NONE
AntiAFK Mode Random
AntiAFK SwingDelay 100
AntiAFK RotationDelay 100
AntiAFK RotationAngle 1.0
AntiAFK Jump true
AntiAFK Move true
AntiAFK Rotate true
AntiAFK Swing true
AntiAFK toggle false
AntiAFK bind NONE
AntiBot CzechMatrix false
AntiBot PingCheck true
AntiBot GamemodeCheck true
AntiBot Tab false
AntiBot TabMode Contains
AntiBot EntityID false
AntiBot Color false
AntiBot LivingTime false
AntiBot LivingTimeTicks 40
AntiBot Ground false
AntiBot Air false
AntiBot InvalidGround false
AntiBot Swing true
AntiBot Health false
AntiBot InvalidHealth false
AntiBot MinHealth 0.0
AntiBot MaxHealth 20.0
AntiBot Derp false
AntiBot WasInvisible false
AntiBot Armor false
AntiBot Ping false
AntiBot NeedHit false
AntiBot DuplicateInWorld false
AntiBot ReverseCheck true
AntiBot DuplicateInTab false
AntiBot ExperimentalNPCDetection false
AntiBot IllegalName false
AntiBot RemoveFromWorld false
AntiBot Remove-Interval 20
AntiBot Debug false
AntiBot toggle false
AntiBot bind NONE
AntiCactus toggle false
AntiCactus bind NONE
AntiFall Detect-Method Collision
AntiFall SetBack-Mode Teleport
AntiFall Predict-CheckFallDistance 255
AntiFall Predict-MaxFindRange 60
AntiFall Illegal-Dupe 1
AntiFall Max-FallDistance 5.0
AntiFall Reset-FallDistance false
AntiFall Render-Trace false
AntiFall AutoScaffold false
AntiFall NoFlight true
AntiFall toggle false
AntiFall bind NONE
AntiFireBall Swing Normal
AntiFireBall Rotation true
AntiFireBall toggle false
AntiFireBall bind NONE
AntiHunger toggle false
AntiHunger bind NONE
AntiNausea Confusion true
AntiNausea Pumpkin true
AntiNausea Fire true
AntiNausea Scoreboard false
AntiNausea Boss-Health false
AntiNausea toggle true
AntiNausea bind NONE
AntiObsidian toggle false
AntiObsidian bind NONE
AntiStaff toggle false
AntiStaff bind NONE
AntiVanish Notification-Seconds 2
AntiVanish toggle false
AntiVanish bind NONE
AntiWeb Mode AAC
AntiWeb HorizonSpeed 0.1
AntiWeb toggle true
AntiWeb bind NONE
AuthBypass Delay 100
AuthBypass toggle false
AuthBypass bind NONE
AutoArmor InvOpen true
AutoArmor SimulateInventory false
AutoArmor MaxDelay 356
AutoArmor NoMove false
AutoArmor ItemDelay 841
AutoArmor MinDelay 196
AutoArmor Hotbar false
AutoArmor toggle true
AutoArmor bind NONE
AutoBackstab Cobweb true
AutoBackstab Snow true
AutoBackstab toggle false
AutoBackstab bind NONE
AutoBow WaitForBowAimbot true
AutoBow toggle false
AutoBow bind NONE
AutoClicker MaxCPS 10
AutoClicker MinCPS 9
AutoClicker Right false
AutoClicker Left true
AutoClicker Jitter false
AutoClicker AutoBlock false
AutoClicker toggle true
AutoClicker bind NONE
AutoFish toggle false
AutoFish bind NONE
AutoHeal Mode Ground
AutoHeal Health 6.0
AutoHeal Delay 300
AutoHeal Heal true
AutoHeal Utility true
AutoHeal Smart true
AutoHeal SmartTimeout 500
AutoHeal InvSpoof false
AutoHeal InvDelay 500
AutoHeal NoCombat true
AutoHeal Custom-Pitch false
AutoHeal Angle 90.0
AutoHeal Debug false
AutoHeal toggle false
AutoHeal bind NONE
AutoJump toggle false
AutoJump bind NONE
AutoLogin Password Aspw95639535
AutoLogin Register-Regex /register
AutoLogin Login-Regex /login
AutoLogin Register-Cmd /register Aspw95639535 Aspw95639535
AutoLogin Login-Cmd /login Aspw95639535
AutoLogin Delay 100
AutoLogin toggle false
AutoLogin bind NONE
AutoMine toggle false
AutoMine bind NONE
AutoPlay Server Hypixel
AutoPlay Mode 4v4v4v4
AutoPlay AutoStartAtLobby true
AutoPlay ReplayWhenKicked true
AutoPlay ShowGuiWhenFailed true
AutoPlay JoinDelay 3
AutoPlay toggle false
AutoPlay bind NONE
AutoRespawn Instant true
AutoRespawn toggle false
AutoRespawn bind NONE
AutoSoup Health 15.0
AutoSoup Delay 150
AutoSoup OpenInv false
AutoSoup SimulateInventory true
AutoSoup Bowl Drop
AutoSoup toggle false
AutoSoup bind NONE
AutoSword SpoofItem false
AutoSword SpoofTicks 1
AutoSword toggle true
AutoSword bind NONE
AutoTool toggle true
AutoTool bind NONE
AutoWalk toggle false
AutoWalk bind NONE
BanNotifier Alert true
BanNotifier ServerCheck true
BanNotifier Alert-Time 10
BanNotifier toggle false
BanNotifier bind NONE
Bhop toggle false
Bhop bind NONE
Blink Pulse false
Blink C0FCancel true
Blink PulseDelay 400
Blink toggle false
Blink bind NONE
BowAimbot Silent true
BowAimbot Predict true
BowAimbot ThroughWalls true
BowAimbot PredictSize 5.0
BowAimbot Priority Distance
BowAimbot Mark false
BowAimbot toggle false
BowAimbot bind NONE
BowLongJump Boost 0.96
BowLongJump Height 0.58
BowLongJump Timer 1.0
BowLongJump DelayBeforeArrowLaunch 1
BowLongJump AutoDisable true
BowLongJump Bobbing true
BowLongJump BobbingAmount 0.07
BowLongJump RenderStatus false
BowLongJump toggle false
BowLongJump bind NONE
Brightness toggle true
Brightness bind NONE
Bypass MaxDelay 220
Bypass MinDelay 220
Bypass toggle false
Bypass bind NONE
CSDisabler Presets Ghostly
CSDisabler CancelTransactions false
CSDisabler CancelKeepAlive false
CSDisabler Transactions false
CSDisabler KeepAlive true
CSDisabler Riding None
CSDisabler Spectate None
CSDisabler Riding-Priority true
CSDisabler Transactions-DelayMode Dynamic
CSDisabler KeepAlive-DelayMode Dynamic
CSDisabler Transactions-SendMethod PollFirst
CSDisabler KeepAlive-SendMethod PollFirst
CSDisabler Transactions-PlayerTick-Delay 1
CSDisabler Transactions-SystemTick-MinDelay 0
CSDisabler Transactions-SystemTick-MaxDelay 0
CSDisabler KeepAlive-PlayerTick-Delay 1
CSDisabler KeepAlive-SystemTick-MinDelay 0
CSDisabler KeepAlive-SystemTick-MaxDelay 0
CSDisabler Transactions-Poll-MinAmount 1
CSDisabler Transactions-Poll-MaxAmount 1
CSDisabler KeepAlive-Poll-MinAmount 1
CSDisabler KeepAlive-Poll-MaxAmount 1
CSDisabler Transactions-MinBusSize 0
CSDisabler KeepAlive-MinBusSize 0
CSDisabler Transactions-DupeAmount 1
CSDisabler KeepAlive-DupeAmount 1
CSDisabler Clear-Transactions-After-Send false
CSDisabler Clear-Alive-After-Send false
CSDisabler Flush-When-Disable false
CSDisabler Debug true
CSDisabler toggle false
CSDisabler bind NONE
Chams Targets true
Chams Chests false
Chams Items false
Chams LocalPlayer true
Chams Legacy-Mode false
Chams Textured false
Chams Color Rainbow
Chams Behind-Color Opposite
Chams Red 0
Chams Green 200
Chams Blue 0
Chams Alpha 255
Chams Saturation 1.0
Chams Brightness 1.0
Chams Seconds 2
Chams toggle false
Chams bind NONE
CivBreak Range 5.0
CivBreak Break-Speed 0
CivBreak Rotations true
CivBreak VisualSwing false
CivBreak Air-Reset false
CivBreak Range-Reset false
CivBreak R 255
CivBreak G 255
CivBreak B 255
CivBreak Outline true
CivBreak toggle false
CivBreak bind NONE
ClientSpoof Mode Lunar
ClientSpoof toggle false
ClientSpoof bind NONE
ConsoleSpammer Mode Payload
ConsoleSpammer Delay 0
ConsoleSpammer toggle false
ConsoleSpammer bind NONE
Crasher Mode MassiveChunkLoading
Crasher PacketAmount 1000
Crasher Log4jMode Chat
Crasher toggle false
Crasher bind NONE
Criticals Mode VerusSmart
Criticals Delay 100
Criticals JumpHeight 0.42
Criticals DownY 0.0
Criticals HurtTime 10
Criticals OnlyAura false
Criticals toggle false
Criticals bind NONE
Damage Mode NCP
Damage Damage 1
Damage toggle false
Damage bind NONE
Dead toggle false
Dead bind NONE
Disabler Mode Funcraft-Staff
Disabler PingSpoof-MinDelay 853
Disabler PingSpoof-MaxDelay 1225
Disabler PingSpoof-StartSendMode First
Disabler PingSpoof-SendMode First
Disabler PingSpoof-WorldDelay 3863
Disabler Flag-Mode Edit
Disabler Flag-TickDelay 25
Disabler Flag-SilentMode true
Disabler Matrix-NoModuleCheck false
Disabler Matrix-MoveFix true
Disabler Matrix-MoveOnly false
Disabler Matrix-NoMovePacket true
Disabler Matrix-HotbarChange true
Disabler LobbyCheck true
Disabler Verus-Flag true
Disabler Verus-SlientFlagApply false
Disabler Verus-QueueActiveSize 300
Disabler Verus-PurseDelay 490
Disabler Verus-FlagDelay 60
Disabler Verus-AntiFlight true
Disabler Verus-FakeInput true
Disabler Verus-ValidPosition true
Disabler Waiting-Display Top
Disabler Render-ServerSide false
Disabler BanAlert false
Disabler RotationModifier false
Disabler Tifality false
Disabler NoMoveKeepRot true
Disabler NoC03s true
Disabler PingSpoof true
Disabler Delay 400
Disabler InvValidate true
Disabler RotationDisabler true
Disabler KeepAliveDisabler false
Disabler C0BDisabler true
Disabler LessFlag false
Disabler NoC03Packet true
Disabler StrafeDisabler true
Disabler StrafeDisablerPacketAmount 70
Disabler Timer1 true
Disabler Timer2 false
Disabler TestBlink false
Disabler AntiStaff true
Disabler Debug false
Disabler toggle true
Disabler bind NONE
DoubleJump toggle false
DoubleJump bind NONE
EntityDesync toggle false
EntityDesync bind NONE
FakeLag Mode All
FakeLag MoveOnly false
FakeLag MinDelay 20000
FakeLag MaxDelay 20000
FakeLag Include false
FakeLag Exclude false
FakeLag IncludeClass c0f,confirmtransaction,packetplayer,c17
FakeLag ExcludeClass c0f,confirmtransaction,packetplayer,c17
FakeLag Debug false
FakeLag toggle false
FakeLag bind NONE
FakePlayer toggle false
FakePlayer bind NONE
FastBow Packets 20
FastBow Delay 0
FastBow toggle false
FastBow bind NONE
FastBridge Place-Speed 0
FastBridge toggle false
FastBridge bind NONE
FastEat Mode NCP
FastEat NoMove false
FastEat CustomDelay 0
FastEat CustomSpeed 2
FastEat CustomTimer 1.1
FastEat toggle false
FastEat bind NONE
FastMine Speed 1.5
FastMine toggle false
FastMine bind NONE
FastPlace Speed 2
FastPlace toggle true
FastPlace bind NONE
Flight Mode Jump
Flight Speed 1.0
Flight V-Speed 0.6
Flight Y-Motion 0.0
Flight AntiKick false
Flight SpoofGround false
Flight NCPMotion 0.16
Flight Verus-DamageMode Instant
Flight Verus-BoostMode Gradual
Flight Verus-ReDamage true
Flight Verus-ReDamage-Ticks 20
Flight Verus-Speed 5.0
Flight Verus-Timer 0.15
Flight Verus-Ticks 200
Flight Verus-VisualPos true
Flight Verus-VisualHeight 0.3
Flight Verus-SpoofGround true
Flight AAC5-NoFall true
Flight AAC5-UseC04 true
Flight AAC5-Packet Original
Flight AAC5-Purse 7
Flight Clip-DelayTick 25
Flight Clip-Horizontal 7.9
Flight Clip-Vertical 1.75
Flight Clip-MotionY 0.0
Flight Clip-Timer 1.0
Flight Clip-GroundSpoof true
Flight Clip-CollisionCheck true
Flight Clip-NoMove true
Flight PearlActiveCheck Teleport
Flight AAC1.9.10-Speed 0.3
Flight AAC3.0.5-Fast true
Flight AAC3.3.12-Motion 10.0
Flight AAC3.3.13-Motion 10.0
Flight BoostHypixel-Mode Default
Flight BoostHypixel-VisualY true
Flight BoostHypixel-MoreC04s false
Flight Hypixel-Boost true
Flight Hypixel-BoostDelay 1200
Flight Hypixel-BoostTimer 1.0
Flight MineplexSpeed 1.0
Flight NeruxVace-Ticks 6
Flight FakeSprinting false
Flight FakeNoMove false
Flight FakeDamage false
Flight Bobbing true
Flight BobbingAmount 0.07
Flight Mark false
Flight toggle false
Flight bind F
Fucker Block 26
Fucker IgnoreFirstDetection false
Fucker ResetOnWorldChange false
Fucker Render-Mode Box
Fucker ThroughWalls Around
Fucker Range 5.0
Fucker Action Destroy
Fucker Instant false
Fucker SwitchDelay 5
Fucker Cooldown-Seconds 0
Fucker Swing false
Fucker Rotations true
Fucker Surroundings false
Fucker NoAura false
Fucker ResetCoolDownWhenToggled false
Fucker toggle false
Fucker bind N
Gapple Mode Auto
Gapple Health 10.0
Gapple Delay 150
Gapple NoAbsorption true
Gapple toggle false
Gapple bind NONE
GodMode toggle false
GodMode bind NONE
HighJump Height 5.0
HighJump Mode Vanilla
HighJump OnlyGlassPane false
HighJump toggle false
HighJump bind NONE
Hitboxes Size 0.2
Hitboxes toggle true
Hitboxes bind NONE
HorseJump toggle false
HorseJump bind NONE
HycraftAutoLogin toggle false
HycraftAutoLogin bind NONE
IceSpeed Mode NCP
IceSpeed toggle false
IceSpeed bind NONE
Inventory Mode Silent
Inventory InvSprint Keep
Inventory NoDetectable false
Inventory NoMoveClicks false
Inventory toggle false
Inventory bind NONE
InventoryManager MaxDelay 200
InventoryManager MinDelay 167
InventoryManager OnEvent MotionPost
InventoryManager InvOpen true
InventoryManager InvSpoof false
InventoryManager InvSpoof-Old false
InventoryManager NoMove false
InventoryManager NoScaffold true
InventoryManager Hotbar false
InventoryManager RandomSlot false
InventoryManager Sort true
InventoryManager CleanGarbage true
InventoryManager ItemDelay 100
InventoryManager IgnoreVehicles true
InventoryManager OnlyPositivePotion true
InventoryManager NBTGoal NONE
InventoryManager NBTItemNotGarbage false
InventoryManager NBTArmorPriority 0.0
InventoryManager NBTWeaponPriority 0.0
InventoryManager SortSlot-1 Sword
InventoryManager SortSlot-2 Pickaxe
InventoryManager SortSlot-3 Axe
InventoryManager SortSlot-4 None
InventoryManager SortSlot-5 Gapple
InventoryManager SortSlot-6 None
InventoryManager SortSlot-7 Bow
InventoryManager SortSlot-8 Block
InventoryManager SortSlot-9 Potion
InventoryManager toggle false
InventoryManager bind J
Invisible toggle true
Invisible bind NONE
Jesus Mode NCP
Jesus AACFlyMotion 0.5
Jesus NoJump false
Jesus toggle false
Jesus bind NONE
KeepSprint toggle true
KeepSprint bind NONE
KillAura MaxCPS 11
KillAura MinCPS 8
KillAura HurtTime 10
KillAura Range 3.2
KillAura ThroughWallsRange 0.0
KillAura RangeSprintReducement 0.02
KillAura RotationMode None
KillAura Spin-HitHurtTime 10
KillAura MaxSpinSpeed 80.0
KillAura MinSpinSpeed 80.0
KillAura MaxTurnSpeed 43.12
KillAura MinTurnSpeed 21.27
KillAura RoundAngle false
KillAura RoundAngle-Directions 15
KillAura NoSendRotation true
KillAura NoHitCheck false
KillAura BlinkCheck false
KillAura Priority Direction
KillAura TargetMode Single
KillAura SwitchDelay 1000
KillAura Swing true
KillAura NoKeepSprint false
KillAura AutoBlock None
KillAura Open true
KillAura InteractAutoBlock false
KillAura UnBlock-Exploit false
KillAura ThroughAutoBlock true
KillAura SmartAutoBlock false
KillAura SmartAutoBlock-ItemCheck true
KillAura SmartAutoBlock-FacingCheck true
KillAura SmartAB-Range 3.5
KillAura SmartAB-Toleration 0.0
KillAura AfterTickPatch true
KillAura BlockRate 100
KillAura PostAttack false
KillAura RayCastIgnored false
KillAura LivingRayCast true
KillAura AAC false
KillAura SilentRotation true
KillAura Strafe Off
KillAura FOV 61.63
KillAura Predict false
KillAura MaxPredictSize 1.5
KillAura MinPredictSize 1.0
KillAura RandomCenter false
KillAura NewCalc true
KillAura MinMultiply 0.8
KillAura MaxMultiply 0.8
KillAura Outborder false
KillAura FailRate 0.0
KillAura NoInvAttack false
KillAura NoInvDelay 0
KillAura LimitedMultiTargets 0
KillAura NoScaffold true
KillAura Debug false
KillAura Circle false
KillAura Accuracy 0
KillAura Red 255
KillAura Green 0
KillAura Blue 255
KillAura Alpha 200
KillAura toggle false
KillAura bind R
KillSults Language English
KillSults toggle false
KillSults bind NONE
Knockback toggle false
Knockback bind NONE
LiquidInteract toggle false
LiquidInteract bind NONE
LongJump Mode VerusDmg
LongJump NCPBoost 2.4
LongJump MatrixFlag-Boost 1.95
LongJump MatrixFlag-Height 5.0
LongJump MatrixFlag-Silent true
LongJump MatrixFlag-BypassMode Clip
LongJump MatrixFlag-Debug true
LongJump Redesky-TimerBoost false
LongJump Redesky-TimerBoostStart 1.85
LongJump Redesky-TimerBoostEnd 1.0
LongJump Redesky-TimerBoost-SlowDownSpeed 2
LongJump Redesky-GlideAfterTicks false
LongJump Redesky-Ticks 21
LongJump Redesky-YMultiplier 0.77
LongJump Redesky-XZMultiplier 0.9
LongJump VerusDmg-DamageMode InstantC06
LongJump VerusDmg-Boost 1.16
LongJump VerusDmg-Height 0.7
LongJump VerusDmg-Timer 1.0
LongJump Pearl-Boost 4.25
LongJump Pearl-Height 0.42
LongJump Pearl-Timer 1.0
LongJump Damage-Boost 4.25
LongJump Damage-Height 0.42
LongJump Damage-Timer 1.0
LongJump Damage-NoMove false
LongJump Damage-AutoReset false
LongJump AutoDisable true
LongJump FakeDamage true
LongJump Bobbing true
LongJump BobbingAmount 0.07
LongJump toggle false
LongJump bind NONE
LookTP Button Middle
LookTP toggle false
LookTP bind NONE
Mobs toggle true
Mobs bind NONE
MurderDetector toggle false
MurderDetector bind NONE
NoC0Fs toggle false
NoC0Fs bind NONE
NoClip toggle false
NoClip bind NONE
NoFall Type Packet
NoFall Edit-Mode Always
NoFall Packet-Mode Default
NoFall AAC-Mode Default
NoFall Hypixel-Mode Default
NoFall Matrix-Mode Old
NoFall PhaseOffset 1
NoFall MinMLGHeight 5.0
NoFall MotionSpeed -0.01
NoFall Void-Check false
NoFall toggle false
NoFall bind NONE
NoHurt toggle true
NoHurt bind NONE
NoMouseIntersect Block 54
NoMouseIntersect toggle false
NoMouseIntersect bind NONE
NoRotate Confirm true
NoRotate ConfirmIllegalRotation true
NoRotate NoZero true
NoRotate toggle false
NoRotate bind NONE
NoSlow Mode Watchdog
NoSlow BlockForwardMultiplier 1.0
NoSlow BlockStrafeMultiplier 1.0
NoSlow ConsumeForwardMultiplier 1.0
NoSlow ConsumeStrafeMultiplier 1.0
NoSlow BowForwardMultiplier 1.0
NoSlow BowStrafeMultiplier 1.0
NoSlow SneakForwardMultiplier 0.3
NoSlow SneakStrafeMultiplier 0.3
NoSlow CustomReleasePacket false
NoSlow CustomPlacePacket false
NoSlow CustomOnGround false
NoSlow CustomDelay 60
NoSlow SendPacket false
NoSlow CheckInUseCount true
NoSlow PacketTrigger PostRelease
NoSlow Debug false
NoSlow Soulsand true
NoSlow LiquidPush false
NoSlow toggle true
NoSlow bind NONE
Nuker Radius 4.2
Nuker ThroughWalls false
Nuker Priority Distance
Nuker Rotations true
Nuker Layer false
Nuker HitDelay 4
Nuker Nuke 1
Nuker NukeDelay 1
Nuker toggle false
Nuker bind NONE
PackSpoofer toggle false
PackSpoofer bind NONE
PacketFixer BlinkFreeCam3Y true
PacketFixer Timer3A true
PacketFixer Scaffold14D true
PacketFixer Scaffold14E false
PacketFixer Flight4I false
PacketFixer Flight4C false
PacketFixer toggle true
PacketFixer bind NONE
Parkour toggle false
Parkour bind NONE
Phase Mode Packetless
Phase toggle false
Phase bind NONE
Players toggle true
Players bind NONE
PluginsChecker toggle false
PluginsChecker bind NONE
PortalMenu toggle false
PortalMenu bind NONE
PotionSpoof Speed false
PotionSpoof Slowness false
PotionSpoof Haste false
PotionSpoof MiningFatigue false
PotionSpoof Blindness false
PotionSpoof Strength false
PotionSpoof JumpBoost false
PotionSpoof Weakness false
PotionSpoof Regeneration false
PotionSpoof Wither false
PotionSpoof Resistance false
PotionSpoof FireResistance false
PotionSpoof Absorption false
PotionSpoof HealthBoost false
PotionSpoof Poison false
PotionSpoof Saturation false
PotionSpoof WaterBreathing false
PotionSpoof toggle false
PotionSpoof bind NONE
Reach CombatReach 6.0
Reach BuildReach 6.0
Reach toggle false
Reach bind NONE
Regen Mode Vanilla
Regen Health 18
Regen Food 18
Regen Speed 25
Regen NoAir false
Regen PotionEffect false
Regen toggle false
Regen bind NONE
ResetVL toggle false
ResetVL bind NONE
SafeWalk AirSafe false
SafeWalk toggle false
SafeWalk bind NONE
Scaffold EnableTower false
Scaffold TowerMode StableMotion
Scaffold Tower-PlaceTiming Post
Scaffold StopWhenBlockAbove true
Scaffold OnJump true
Scaffold NoMove true
Scaffold NoMoveFreezePlayer true
Scaffold TowerTimer 1.0
Scaffold JumpMotion 0.42
Scaffold JumpDelay 0
Scaffold StableMotion 0.41982
Scaffold StableFakeJump false
Scaffold StableStop false
Scaffold StableStopDelay 1500
Scaffold ConstantMotion 0.42
Scaffold ConstantMotionJumpGround 0.79
Scaffold TeleportHeight 1.15
Scaffold TeleportDelay 0
Scaffold TeleportGround true
Scaffold TeleportNoMotion false
Scaffold Mode Normal
Scaffold PlaceableDelay false
Scaffold MaxDelay 0
Scaffold MinDelay 0
Scaffold SpeedModifier 0.8
Scaffold SprintMode Off
Scaffold Swing true
Scaffold Down false
Scaffold Search true
Scaffold PlaceTiming Pre
Scaffold Eagle false
Scaffold EagleSilent false
Scaffold BlocksToEagle 1
Scaffold EagleEdgeDistance 20.0
Scaffold OmniDirectionalExpand true
Scaffold ExpandLength 2
Scaffold Rotations true
Scaffold NoHitCheck false
Scaffold RotationMode Normal
Scaffold RotationLookup Normal
Scaffold MaxTurnSpeed 103.46
Scaffold MinTurnSpeed 55.28
Scaffold Static-Pitch 86.0
Scaffold Custom-Yaw 135.0
Scaffold Custom-Pitch 86.0
Scaffold Spin-Speed 5.0
Scaffold Spin-Pitch 90.0
Scaffold KeepRotOnJump true
Scaffold KeepRotation true
Scaffold KeepRotationLength 0
Scaffold Place-Condition Always
Scaffold RotationStrafe false
Scaffold Zitter false
Scaffold ZitterMode Smooth
Scaffold ZitterSpeed 0.042
Scaffold ZitterStrength 0.06
Scaffold ZitterDelay 100
Scaffold Timer 1.0
Scaffold AutoBlock Switch
Scaffold XZ-Multiplier 1.0
Scaffold CustomSpeed false
Scaffold CustomMoveSpeed 0.26
Scaffold KeepY false
Scaffold AutoJump false
Scaffold SpeedKeepY true
Scaffold SafeWalk false
Scaffold AirSafe false
Scaffold AutoDisable-Speed false
Scaffold NoSpeedPot false
Scaffold Counter NightX
Scaffold Mark false
Scaffold Red 255
Scaffold Green 255
Scaffold Blue 255
Scaffold Alpha 120
Scaffold Blur-Advanced false
Scaffold Blur-Strength 1.0
Scaffold toggle false
Scaffold bind V
Sneak Mode Normal
Sneak StopMove false
Sneak toggle false
Sneak bind NONE
Speed Type Other
Speed NCP-Mode Hop
Speed AAC-Mode 4Hop
Speed Watchdog-Mode Stable
Speed Spectre-Mode BHop
Speed Other-Mode VulcanYPort
Speed Verus-Mode Hop
Speed UseTimer true
Speed SmoothStrafe true
Speed Strafing true
Speed StrSpeed 0.42
Speed MotionY 0.42
Speed Verus-Timer 1.0
Speed CustomSpeed 0.2
Speed CustomLaunchSpeed 0.43
Speed CustomAddYMotion 0.0
Speed CustomY 0.42
Speed CustomUpTimer 1.01
Speed CustomDownTimer 0.99
Speed CustomStrafe Non-Strafe
Speed CustomGroundStay 0
Speed CustomGroundResetXZ false
Speed CustomResetXZ false
Speed CustomResetY false
Speed CustomDoLaunchSpeed true
Speed JumpStrafe false
Speed SendJump true
Speed ReCalculate true
Speed GlideStrength 0.03
Speed MoveSpeed 1.47
Speed JumpY 0.42
Speed BaseMultiplier 1.0
Speed BaseTimer 1.5
Speed BaseMultiplierTimer 1.0
Speed AAC-PortLength 1.0
Speed AACGround-Timer 3.0
Speed CubeCraft-PortLength 1.0
Speed MineplexGround-Speed 0.6
Speed NoBob false
Speed toggle false
Speed bind G
Spider Mode Simple
Spider ClipMode Fast
Spider CheckerClimbMotion 0.0
Spider VerusClimbSpeed 0.0
Spider toggle false
Spider bind NONE
Sprint Multi false
Sprint Silent false
Sprint toggle true
Sprint bind NONE
StealAura Range 4.0
StealAura Delay 50
StealAura ThroughWalls true
StealAura VisualSwing true
StealAura Chest 54
StealAura Rotations true
StealAura toggle false
StealAura bind NONE
Stealer MaxDelay 171
Stealer MinDelay 115
Stealer OnEvent Update
Stealer TakeRandomized true
Stealer OnlyItems false
Stealer NoCompass false
Stealer NoDuplicateNonStackable false
Stealer AutoClose false
Stealer SilentMode false
Stealer Silent-ShowString true
Stealer Silent-StillDisplay true
Stealer AutoCloseMaxDelay 184
Stealer AutoCloseMinDelay 184
Stealer CloseOnFull true
Stealer ChestTitle false
Stealer toggle false
Stealer bind J
Step Mode Vanilla
Step Height 1.5
Step JumpHeight 0.42
Step Delay 150
Step UseTimer true
Step toggle false
Step bind NONE
Strafe Strength 1.0
Strafe NoMoveStop false
Strafe OnGroundStrafe true
Strafe AllDirectionsJump false
Strafe toggle false
Strafe bind NONE
TPAura APS 2
TPAura MaxTargets 3
TPAura Range 50
TPAura FOV 180.0
TPAura Swing Normal
TPAura NoStandingPackets false
TPAura NoKillAura false
TPAura Render Lines
TPAura Priority Distance
TPAura toggle false
TPAura bind NONE
TargetStrafe KeyMode Jump
TargetStrafe SafeWalk true
TargetStrafe Behind false
TargetStrafe ThirdPerson false
TargetStrafe toggle false
TargetStrafe bind NONE
Teams ScoreboardTeam true
Teams Color false
Teams GommeSW false
Teams ArmorColor false
Teams ArmorIndex 3
Teams toggle false
Teams bind NONE
Terrain Mode Vanilla
Terrain UpSpeed 0.3
Terrain DownSpeed 0.15
Terrain Timer 1.0
Terrain SpartanTimerBoost false
Terrain toggle false
Terrain bind NONE
TickTimer Speed 3.0
TickTimer toggle false
TickTimer bind NONE
Timer Speed 0.15
Timer OnMove false
Timer AutoDisable false
Timer toggle false
Timer bind NONE
TriggerBot MaxCPS 12
TriggerBot MinCPS 10
TriggerBot toggle false
TriggerBot bind NONE
Tweaks Sneak-Speed 0
Tweaks toggle false
Tweaks bind NONE
VanillaFlight toggle false
VanillaFlight bind NONE
Velocity Horizontal 0.0
Velocity Vertical 0.0
Velocity HorizontalExplosion 0.0
Velocity VerticalExplosion 0.0
Velocity Mode AAC5.2.0
Velocity AAC5.2.0-Attack-Only true