-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gadgets_group.json
6002 lines (6002 loc) · 128 KB
/
Gadgets_group.json
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
[
{
"userId": 1,
"text": "ikr"
},
{
"userId": 1,
"text": "xD"
},
{
"userId": 2,
"text": "what is this server?"
},
{
"userId": 2,
"text": "what is ProtoTech"
},
{
"userId": 3,
"text": "@Pingu Whitelisted SMP"
},
{
"userId": 2,
"text": "o. so y is there a public discord server"
},
{
"userId": 3,
"text": "Same as choruscrowd's public discord"
},
{
"userId": 2,
"text": "what is techincal mincraft for u?"
},
{
"userId": 4,
"text": "#welcome"
},
{
"userId": 3,
"text": "https://m.youtube.com/watch?v=9ndlONpIQ5c"
},
{
"userId": 3,
"text": "Its outdated"
},
{
"userId": 2,
"text": "ok. ill put it on the watch later playlist and never look at it again"
},
{
"userId": 2,
"text": "wew ive only played for 3 years..."
},
{
"userId": 5,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 6,
"text": "psst"
},
{
"userId": 3,
"text": "Lol"
},
{
"userId": 2,
"text": "i thought u wasnt added to that server."
},
{
"userId": 5,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 7,
"text": "hi"
},
{
"userId": 8,
"text": "Hello! ^^"
},
{
"userId": 3,
"text": "Ayyy"
},
{
"userId": 1,
"text": "@RaysWorks now u see what everyone can see"
},
{
"userId": 4,
"text": "i can see apps..."
},
{
"userId": 1,
"text": "that's b/c you're added as someone who can talk in there"
},
{
"userId": 1,
"text": "not a role"
},
{
"userId": 1,
"text": "other members can see it but not talk"
},
{
"userId": 1,
"text": "except frog"
},
{
"userId": 4,
"text": "ah ok"
},
{
"userId": 4,
"text": "random is minecraft"
},
{
"userId": 7,
"text": "Minecraft is random*"
},
{
"userId": 7,
"text": "Minecraft is random*"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 10,
"text": "@Disabled User Im guessing the twitter bot was by you"
},
{
"userId": 1,
"text": "Well"
},
{
"userId": 1,
"text": "I was also wondering why it's down"
},
{
"userId": 1,
"text": "maintenance maybe? idk"
},
{
"userId": 1,
"text": "the bot website is also down"
},
{
"userId": 1,
"text": "seems odd that they'd shut down the bot"
},
{
"userId": 1,
"text": "it was on quite a lot of servers"
},
{
"userId": 1,
"text": "I guess we will have to wait and see if it comes back up"
},
{
"userId": 1,
"text": "if not I will find another bot or something"
},
{
"userId": 1,
"text": "https://twitter.com/nndevblog/status/886942934897221633"
},
{
"userId": 1,
"text": "https://twitter.com/nndevblog/status/886581821391163393"
},
{
"userId": 1,
"text": "couldn't find much on the twitter bot status"
},
{
"userId": 1,
"text": "If it doesn't come online soon I'll find a new bot"
},
{
"userId": 11,
"text": "@Deleted User: Do you have a \"\"smart trick\"\" to powering the piston rows in the wither skeleton farm?"
},
{
"userId": 12,
"text": "What do ypu mean? @nessie❦"
},
{
"userId": 11,
"text": "You showed off this at some point. https://cdn.discordapp.com/attachments/311176775189135360/332368340741783552/2017-07-05_21.52.35.png"
},
{
"userId": 12,
"text": "What's wrong with it?"
},
{
"userId": 11,
"text": "Nothing. =) I'm wondering if that's what you eventually went with"
},
{
"userId": 11,
"text": "And if so"
},
{
"userId": 12,
"text": "I will get a better pic for you"
},
{
"userId": 11,
"text": "Nice"
},
{
"userId": 12,
"text": "Crap."
},
{
"userId": 12,
"text": "Sorry I can't right now. Since my laptop broke down I have had to use my mom's laptop and she took hers to work"
},
{
"userId": 12,
"text": "☹ ☹"
},
{
"userId": 11,
"text": "Shame"
},
{
"userId": 12,
"text": "Maybe in like 8 hours. Is that okay for you?"
},
{
"userId": 11,
"text": "That's fine"
},
{
"userId": 12,
"text": "@nessie❦ if you want i could describe that picture to you"
},
{
"userId": 11,
"text": "sure =)"
},
{
"userId": 12,
"text": "Do you have the conveyor belt built?"
},
{
"userId": 12,
"text": "You see that some Pistons get powered through a solid block right?"
},
{
"userId": 11,
"text": "I have the conveyor yes"
},
{
"userId": 12,
"text": "Well in the first Piston that has a solid block powering it you place a powered rail above the observer that powers that block"
},
{
"userId": 12,
"text": "Then you place a second powered rail next to it. Now on the other side where the rest of the Pistons go"
},
{
"userId": 12,
"text": "Got an idea"
},
{
"userId": 12,
"text": "Let me download PE and take a screenshot"
},
{
"userId": 12,
"text": "@nessie❦ better?"
},
{
"userId": 12,
"text": "@nessie❦ did you get it working?"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 1,
"text": "@OreoLamp added a new twitter bot"
},
{
"userId": 10,
"text": "Nice"
},
{
"userId": 10,
"text": "Lol i like the Rorschach on its profile pic"
},
{
"userId": 11,
"text": "@Deleted User: No I ended up converting the rest of my island to mycelium [instead]."
},
{
"userId": 11,
"text": "@Disabled User nice one"
},
{
"userId": 1,
"text": "thanks 👊"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 3,
"text": "TDL!"
},
{
"userId": 13,
"text": "And me ?"
},
{
"userId": 13,
"text": "You are not happy to see me ?"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 14,
"text": "hello guys"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 15,
"text": "hello..."
},
{
"userId": 4,
"text": "Hey"
},
{
"userId": 15,
"text": "omg"
},
{
"userId": 15,
"text": "I cant believe it"
},
{
"userId": 15,
"text": "IS THIS..."
},
{
"userId": 15,
"text": "THE ALL FAMOUS?"
},
{
"userId": 15,
"text": "RAY GAY?"
},
{
"userId": 15,
"text": "im sorry"
},
{
"userId": 15,
"text": "xD"
},
{
"userId": 15,
"text": "Craft and CreeperPhysics are here with me"
},
{
"userId": 15,
"text": "we're on vacation so they cant play"
},
{
"userId": 4,
"text": "What a fitting name"
},
{
"userId": 2,
"text": "umg hi kitty"
},
{
"userId": 15,
"text": "hmm utlise my god?"
},
{
"userId": 15,
"text": "under my god?"
},
{
"userId": 15,
"text": "unicorn my god?"
},
{
"userId": 15,
"text": "unite my god?"
},
{
"userId": 15,
"text": "maybe..."
},
{
"userId": 11,
"text": "What."
},
{
"userId": 10,
"text": "Are you high?"
},
{
"userId": 16,
"text": "Maybe"
},
{
"userId": 11,
"text": "The new emerald block texture looks shit. http://i.imgur.com/bTslxSb.png"
},
{
"userId": 17,
"text": "ikr"
},
{
"userId": 16,
"text": "Can everyone just calm their tits and just use an resource pack if you don't like it"
},
{
"userId": 16,
"text": "It's not hard"
},
{
"userId": 17,
"text": "WHY would they change it tho?"
},
{
"userId": 16,
"text": "It's because of glazed terracotta"
},
{
"userId": 7,
"text": "why are they ruining the default textures tho"
},
{
"userId": 17,
"text": "@NexL this doesnt make ANY sense"
},
{
"userId": 17,
"text": "why would they change all textures because of one block????"
},
{
"userId": 16,
"text": "Mojang liked the art style that was for the glazed terracotta"
},
{
"userId": 16,
"text": "So they made it look more like that art style"
},
{
"userId": 17,
"text": "the community didnt"
},
{
"userId": 16,
"text": "But here is where we Java edition users can change the texture our self to what we like"
},
{
"userId": 16,
"text": "And not pay for resource packs"
},
{
"userId": 17,
"text": "GREAT"
},
{
"userId": 16,
"text": "Probably Microsoft maybe wanted to change the textures to so they could sell the old resource pack"
},
{
"userId": 16,
"text": "Microsoft is not a good company"
},
{
"userId": 17,
"text": "and in multiplayer you can ensure that everyone uses your ressource pack"
},
{
"userId": 7,
"text": "lol yeah"
},
{
"userId": 16,
"text": "They are greedy af. Just look at ex. Xbox live or now with resource packs on like the Xbox edition"
},
{
"userId": 17,
"text": "microsoft sucks af"
},
{
"userId": 16,
"text": "Yea"
},
{
"userId": 17,
"text": "this seems to be the only point where we both can agree with"
},
{
"userId": 16,
"text": "And it's nice to see that in Windows they have so many spyware and key loggers"
},
{
"userId": 16,
"text": "But you can turn it off but when you restart your PC they turn back on"
},
{
"userId": 16,
"text": "We need to see how it will look when everything is done. It's \"\"maybe\"\" better when every block is texture same style. But that's something we need to wait and see"
},
{
"userId": 16,
"text": "Still likes the old textures"
},
{
"userId": 16,
"text": "And yea I know some builds maybe will not look as good as it was before but yea. It's not like we can do much more then just use resource packs and tell mojang to change it back"
},
{
"userId": 17,
"text": "but e.g. the wool textures suck as well"
},
{
"userId": 17,
"text": "it messed up so much stuff already"
},
{
"userId": 16,
"text": "Like I see what they're trying to do with like diamond and emeralds to make them look more like gems but it doesn't work as good in MC"
},
{
"userId": 11,
"text": "@Deleted User: I got it now"
},
{
"userId": 11,
"text": "Took a few minutes to wrap my head around the direction the picture was taken from."
},
{
"userId": 11,
"text": "Might use the design in a record farm"
},
{
"userId": 16,
"text": "I am legit trying to open my door with my window so my dog can go out and I don't want to stand up and walk and open the door. My life is complete kek"
},
{
"userId": 16,
"text": "Btw it worked"
},
{
"userId": 3,
"text": "ElBozo!"
},
{
"userId": 13,
"text": ":KKomrade:"
},
{
"userId": 6,
"text": "New survival video 😮 Please share with your friends! https://www.youtube.com/watch?v=RuiE_ZM_i10&feature=youtu.be"
},
{
"userId": 10,
"text": "https://discord.gg/Ng3aTf"
},
{
"userId": 1,
"text": "https://youtu.be/S8nhs6ztyCg"
},
{
"userId": 7,
"text": "i bet this is going viral"
},
{
"userId": 18,
"text": "ikr"
},
{
"userId": 19,
"text": "lol"
},
{
"userId": 19,
"text": "omg"
},
{
"userId": 6,
"text": "xd"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 20,
"text": "hi"
},
{
"userId": 3,
"text": "Ayyy"
},
{
"userId": 9,
"text": "10chrisrulz left the discord server."
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 3,
"text": "Ayyy"
},
{
"userId": 4,
"text": "Hey"
},
{
"userId": 6,
"text": "hey ray"
},
{
"userId": 6,
"text": "still in the process of finishing watching the new ptototech server tour 😛"
},
{
"userId": 4,
"text": "😛"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 3,
"text": "Ayyy"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 3,
"text": "Ayyy"
},
{
"userId": 12,
"text": "ayyy"
},
{
"userId": 12,
"text": "couch!"
},
{
"userId": 12,
"text": "😄"
},
{
"userId": 1,
"text": "//couch"
},
{
"userId": 9,
"text": ":mooning: :couch_lp: :mooning2:"
},
{
"userId": 17,
"text": "Hello acheroni macaroni!!!"
},
{
"userId": 17,
"text": "How are ya?"
},
{
"userId": 12,
"text": "im doing well!"
},
{
"userId": 12,
"text": "gather more quartz"
},
{
"userId": 12,
"text": "gathering"
},
{
"userId": 12,
"text": "i mean to say"
},
{
"userId": 12,
"text": "excited"
},
{
"userId": 12,
"text": "//mood"
},
{
"userId": 9,
"text": "sorry"
},
{
"userId": 12,
"text": "//mood"
},
{
"userId": 9,
"text": "suspicious"
},
{
"userId": 12,
"text": "//mood"
},
{
"userId": 9,
"text": "environmental"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 3,
"text": "Ayyy"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 21,
"text": "hello"
},
{
"userId": 17,
"text": "o/"
},
{
"userId": 22,
"text": "o/"
},
{
"userId": 21,
"text": "so what do i need to do to join the server?"
},
{
"userId": 23,
"text": "https://www.jotform.com/71345031389152"
},
{
"userId": 21,
"text": "i heard from bruno that i got accepted"
},
{
"userId": 4,
"text": "Great"
},
{
"userId": 22,
"text": "are u mr axel?"
},
{
"userId": 21,
"text": "oke thank you"
},
{
"userId": 21,
"text": "no i am GB_gaming100"
},
{
"userId": 22,
"text": "ah ok 😃 welcome to the crew ^^"
},
{
"userId": 21,
"text": "thanks"
},
{
"userId": 24,
"text": "Hey gb"
},
{
"userId": 3,
"text": "Ayyy"
},
{
"userId": 19,
"text": "Ayyy"
},
{
"userId": 12,
"text": "I'm bored and prototech is sleeping so they can't read my progges anyone wanna join me at hypixel?"
},
{
"userId": 17,
"text": "Yep in around 5 minutes"
},
{
"userId": 12,
"text": "sure"
},
{
"userId": 17,
"text": "vc?"
},
{
"userId": 12,
"text": "I'm laggin rn ..."
},
{
"userId": 12,
"text": "I still can hear you here :V"
},
{
"userId": 12,
"text": "no longe"
},
{
"userId": 17,
"text": "D:"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 9,
"text": "Terrorrite left the discord server."
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 25,
"text": "@RaysWorks so how stable is that 1.8 obsidian farm?"
},
{
"userId": 4,
"text": "Stable as long as you follow the rules. It's for 1.8 only too."
},
{
"userId": 25,
"text": "running in 1.8 but keeps breaking..."
},
{
"userId": 25,
"text": "end island is completely spawn proof"
},
{
"userId": 25,
"text": "just seems that after some hours it breaks"
},
{
"userId": 4,
"text": "Compare yours to the WDL"
},
{
"userId": 17,
"text": "obsidian farms based on the obsidian platform in the end are always unstable"
},
{
"userId": 4,
"text": "incorrect"
},
{
"userId": 17,
"text": "target based ones are in fact unstable"
},
{
"userId": 17,
"text": "at least under laggy conditions"
},
{
"userId": 4,
"text": "You can read the discussions we had on the videos comment"
},
{
"userId": 3,
"text": "Ayyy"
},
{
"userId": 3,
"text": "I see Ray#1502 trying to aquire all of these \"\"secret\"\" mobs/items how do yoj guys find out about this kind of stuff?"
},
{
"userId": 4,
"text": "Paying attention to changes per version. sometimes you dont find them all until it's too late. 😦"
},
{
"userId": 8,
"text": "Hey @RaysWorks do you have any video on mob traps? If you do"
},
{
"userId": 4,
"text": "What type of mob traps?"
},
{
"userId": 8,
"text": "I mean hostile mob traps"
},
{
"userId": 4,
"text": "traps as in they keep the mob alive?"
},
{
"userId": 8,
"text": "No I mean the mob spawns"
},
{
"userId": 8,
"text": "A friend of mine made a really big one on my personal server"
},
{
"userId": 26,
"text": "A hostile mob farm u mean?"
},
{
"userId": 10,
"text": "No one that keeps the mobs alive"
},
{
"userId": 18,
"text": "jest remove killing floor and place it in first sub chunk xD"
},
{
"userId": 10,
"text": "XD"
},
{
"userId": 7,
"text": "who changed the prototech logo to this thing XDD?"
},
{
"userId": 4,
"text": "@Jolly Kiz3r This video shows some ideas for a mob farm. https://youtu.be/6KI-O1We2cM"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 22,
"text": "o/"
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 9,
"text": "Isaac__600 left the discord server."
},
{
"userId": 9,
"text": "Welcome to the ProtoTech Discord Server"
},
{
"userId": 2,
"text": "welcome"
},
{
"userId": 27,
"text": "Hello! I'am Germany!😀"
},
{
"userId": 22,
"text": "hello i am europe"
},
{
"userId": 2,
"text": "i am murica"
},
{
"userId": 27,
"text": "I'll send today my applicition"
},
{
"userId": 27,
"text": "@Zeit ja wir kennen uns ja"