-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTech_group.json
More file actions
6002 lines (6002 loc) · 127 KB
/
Copy pathTech_group.json
File metadata and controls
6002 lines (6002 loc) · 127 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
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": "line"
},
{
"userId": 2,
"text": "new guest channel"
},
{
"userId": 2,
"text": "everyone can chat here right"
},
{
"userId": 3,
"text": "Why 2 of them?"
},
{
"userId": 4,
"text": "cuz why not?"
},
{
"userId": 5,
"text": "cuz one would feel lonly"
},
{
"userId": 5,
"text": "lonely"
},
{
"userId": 6,
"text": "I think the other guest channel will be deleted?"
},
{
"userId": 3,
"text": "so strange"
},
{
"userId": 3,
"text": "my discord sound just died"
},
{
"userId": 3,
"text": "Why did you muted me?"
},
{
"userId": 3,
"text": "That's rude"
},
{
"userId": 3,
"text": "Again?"
},
{
"userId": 3,
"text": "Please"
},
{
"userId": 4,
"text": "hey @JeWe37"
},
{
"userId": 4,
"text": "what?"
},
{
"userId": 4,
"text": "smokey"
},
{
"userId": 4,
"text": "I love that River is always so excited about simple things"
},
{
"userId": 2,
"text": "lol"
},
{
"userId": 7,
"text": "ikr."
},
{
"userId": 7,
"text": "the problem is that i cant take his praise for my ideas sireously. xD"
},
{
"userId": 8,
"text": "Hosenscheißer"
},
{
"userId": 4,
"text": "i can hear russian xD"
},
{
"userId": 8,
"text": "yea xD"
},
{
"userId": 9,
"text": "**Hermitcraft V 608 Xisuma Declares Neutrality** will now play."
},
{
"userId": 10,
"text": "Howdy."
},
{
"userId": 4,
"text": "discord is a lot better then ts"
},
{
"userId": 4,
"text": "cya"
},
{
"userId": 8,
"text": "*than"
},
{
"userId": 4,
"text": "oops"
},
{
"userId": 8,
"text": "ooops"
},
{
"userId": 4,
"text": "OO00оо..ps"
},
{
"userId": 8,
"text": "oooops"
},
{
"userId": 8,
"text": "ooooops"
},
{
"userId": 2,
"text": "ooooooooops"
},
{
"userId": 6,
"text": "o/"
},
{
"userId": 11,
"text": "@Disabled User can you set my nickname to Pineapplecake?"
},
{
"userId": 12,
"text": "test"
},
{
"userId": 6,
"text": "o/"
},
{
"userId": 12,
"text": "why cant i view message history"
},
{
"userId": 6,
"text": "mmh"
},
{
"userId": 6,
"text": "I think you'll be able to view everything after you've joined"
},
{
"userId": 12,
"text": "joined?"
},
{
"userId": 6,
"text": "I mean"
},
{
"userId": 12,
"text": "oh"
},
{
"userId": 12,
"text": "yeah"
},
{
"userId": 6,
"text": "you can see the history from when you joined"
},
{
"userId": 12,
"text": "yay"
},
{
"userId": 12,
"text": "lol"
},
{
"userId": 6,
"text": "not sure if you'll be able to see messages that get sent while you're offine"
},
{
"userId": 6,
"text": "but still"
},
{
"userId": 2,
"text": "currently guests viewing chat history is disabled but I might change that"
},
{
"userId": 12,
"text": "ok"
},
{
"userId": 13,
"text": "hej"
},
{
"userId": 6,
"text": "hello!"
},
{
"userId": 14,
"text": "Hello"
},
{
"userId": 6,
"text": "o/"
},
{
"userId": 4,
"text": "bye"
},
{
"userId": 15,
"text": "hey"
},
{
"userId": 13,
"text": "\\o"
},
{
"userId": 8,
"text": "Hey"
},
{
"userId": 3,
"text": "\\o"
},
{
"userId": 6,
"text": "This chat room is just for saying hi"
},
{
"userId": 4,
"text": "for the next decade..."
},
{
"userId": 13,
"text": "Hmrpf. Thinking about applying but I don't really want to leave the server I'm currently on. :<"
},
{
"userId": 3,
"text": "I suspect there would be a wave of applications after this tour"
},
{
"userId": 13,
"text": "I bet"
},
{
"userId": 14,
"text": "Im just here because @ISean"
},
{
"userId": 6,
"text": "aha"
},
{
"userId": 6,
"text": "I played UHC with you once"
},
{
"userId": 14,
"text": "Could have"
},
{
"userId": 6,
"text": "hehe"
},
{
"userId": 6,
"text": "on the existence uch server"
},
{
"userId": 6,
"text": "with peach"
},
{
"userId": 14,
"text": "Yep"
},
{
"userId": 6,
"text": "got killed by the world border every time 😛"
},
{
"userId": 14,
"text": "The worldborder is merciless"
},
{
"userId": 6,
"text": "yeah"
},
{
"userId": 3,
"text": "Let's make a ProtoTech UHC event!"
},
{
"userId": 4,
"text": "I WILL BEAT UR ASS! 😄"
},
{
"userId": 3,
"text": "You can't beat my 10CPS jiterclick!"
},
{
"userId": 15,
"text": "you cant beat my 1000 cps auto click"
},
{
"userId": 6,
"text": "combat update 😛"
},
{
"userId": 3,
"text": "Well... actually my CPS is much worse 😭"
},
{
"userId": 6,
"text": "you can't beat my 1 CPS"
},
{
"userId": 3,
"text": "https://en.wikipedia.org/wiki/Jan_Kochanowski"
},
{
"userId": 15,
"text": "?"
},
{
"userId": 4,
"text": "that's my dad!"
},
{
"userId": 4,
"text": "xD"
},
{
"userId": 6,
"text": "lol"
},
{
"userId": 4,
"text": "(nope)"
},
{
"userId": 6,
"text": "looks like you"
},
{
"userId": 8,
"text": "@CraftMechanics one of my friends can jitter click up to like 17 cps"
},
{
"userId": 4,
"text": "10CPS? that's slow"
},
{
"userId": 4,
"text": "i can ~12"
},
{
"userId": 3,
"text": "My CPS is only 8 😦"
},
{
"userId": 3,
"text": "but my mice is shit"
},
{
"userId": 16,
"text": "@Kyle KSores rar"
},
{
"userId": 16,
"text": "Wouldn't matter @CraftMechanics"
},
{
"userId": 6,
"text": "but I already said 😦"
},
{
"userId": 16,
"text": "Ye ik"
},
{
"userId": 6,
"text": "lol 😛"
},
{
"userId": 3,
"text": "xD Checked out KKs youtube channel. In his description he says: \"\"I am not going to do videos regularly"
},
{
"userId": 13,
"text": ">instant classic"
},
{
"userId": 4,
"text": "that's my first vid xD"
},
{
"userId": 4,
"text": "also my 2 vid is bad"
},
{
"userId": 4,
"text": "sorry"
},
{
"userId": 13,
"text": "Hey everybody!"
},
{
"userId": 4,
"text": "all other vids are in 1080p60fps 😉"
},
{
"userId": 13,
"text": "This guy's a big fat phony!"
},
{
"userId": 3,
"text": "1080p60fps nice!"
},
{
"userId": 3,
"text": "Good quality!"
},
{
"userId": 13,
"text": "Why not 16K240fps"
},
{
"userId": 13,
"text": ":("
},
{
"userId": 3,
"text": "because no monitor can support 16K"
},
{
"userId": 4,
"text": "+ it will be 100000G"
},
{
"userId": 5,
"text": "nessi you dont need to quit playing on other servers if u want to be a part of prototech"
},
{
"userId": 5,
"text": "there are other guys like rid who are member here and also on other technical servers like dugged smp"
},
{
"userId": 13,
"text": "I know"
},
{
"userId": 5,
"text": "ya thats propably right"
},
{
"userId": 13,
"text": "Maybe I'll write up an application and see how shit it is"
},
{
"userId": 6,
"text": "how good it is*"
},
{
"userId": 13,
"text": "potato potato"
},
{
"userId": 5,
"text": "😄"
},
{
"userId": 6,
"text": "lol"
},
{
"userId": 6,
"text": "but it's hilarious to write it in text"
},
{
"userId": 13,
"text": "I had a teacher one who'd say \"\"potato tomato"
},
{
"userId": 13,
"text": "Oh"
},
{
"userId": 6,
"text": "i've usually heard 'tomatoe"
},
{
"userId": 13,
"text": "His was more like potayhto tomæhto"
},
{
"userId": 6,
"text": "hehe"
},
{
"userId": 5,
"text": "as a non nativ english spearker ... should i get what you guys are talking about? xD"
},
{
"userId": 13,
"text": "Oh no"
},
{
"userId": 5,
"text": "making salad huh?"
},
{
"userId": 13,
"text": "I'm not a native English speaker either"
},
{
"userId": 6,
"text": "Heinz when people want to say two things are basically the same"
},
{
"userId": 6,
"text": "to-may-toe"
},
{
"userId": 13,
"text": "https://en.wiktionary.org/wiki/tomayto"
},
{
"userId": 6,
"text": "oh snap"
},
{
"userId": 13,
"text": "It's like the \"\"glass is half full/half empty\"\" debate"
},
{
"userId": 12,
"text": "so im thinking of applying..."
},
{
"userId": 12,
"text": "but"
},
{
"userId": 12,
"text": "i only have 1 tech build to show off..."
},
{
"userId": 5,
"text": "overall or just in survival"
},
{
"userId": 12,
"text": "overall"
},
{
"userId": 5,
"text": "hmmm what is it?"
},
{
"userId": 12,
"text": "i do have tons of stuff in modded tho"
},
{
"userId": 8,
"text": "bat farm"
},
{
"userId": 8,
"text": "ofc"
},
{
"userId": 5,
"text": "i mean if it is one realy crazy farm we can still see that you are good enough"
},
{
"userId": 12,
"text": "its a simple shulker box swapper"
},
{
"userId": 6,
"text": "lol a bat farm would be kind of cool actually"
},
{
"userId": 8,
"text": "Sheen has a decent design"
},
{
"userId": 17,
"text": "What is couch doing in here"
},
{
"userId": 12,
"text": "bats dont drop anthying whats the point lol"
},
{
"userId": 8,
"text": "@TT idk xDDD"
},
{
"userId": 12,
"text": "well it is a good april fools thin"
},
{
"userId": 12,
"text": "*g"
},
{
"userId": 8,
"text": "@TT what are you even doing in here? xD"
},
{
"userId": 5,
"text": "both of you obviously trying to be with the cool guys right? 😄"
},
{
"userId": 17,
"text": "I m a friend of prototech ofc"
},
{
"userId": 8,
"text": "<irony>Yes ofc we love ProtoTech</irony>"
},
{
"userId": 6,
"text": "Youc ould collect the bats and have some way of putting them in peoples bases"
},
{
"userId": 6,
"text": ":"
},
{
"userId": 5,
"text": "sorry as a non programmer i dont get this"
},
{
"userId": 5,
"text": "<irony>"
},
{
"userId": 5,
"text": "😛 😄"
},
{
"userId": 12,
"text": "another thing is that all the servers i played on had a limt to what you could build and if you could afk..."
},
{
"userId": 5,
"text": "ya i feel ya nodnam ... hated it"
},
{
"userId": 6,
"text": "I played mostly on a realms server before this (that I owned) and you couldn't really AFK there either"
},
{
"userId": 8,
"text": "ewwww realms"
},
{
"userId": 6,
"text": "ended up installing a mod that allowed you to trick the server into thinking you werent' really AFK"
},
{
"userId": 12,
"text": "i hate not being able to afk..."
},
{
"userId": 5,
"text": "and they even had no idea of lagsources ... some allowed everything exept lots of entitys ... whilst some redstone stuff is lot laggyer"
},
{
"userId": 6,
"text": "@Couch it's actually a pretty pleasant experience. Relatively cheap"
},
{
"userId": 6,
"text": "annoying to not be able to configure things"
},
{
"userId": 12,
"text": "yeah and on one server only 16 hoppers per chunk"
},
{
"userId": 8,
"text": "we have a bot account running on our server 24/7 xD"
},
{
"userId": 5,
"text": "cheaters"
},
{
"userId": 5,
"text": "what who said that 😮"
},
{
"userId": 17,
"text": "HAX"
},
{
"userId": 6,
"text": "hax0rs"
},
{
"userId": 5,
"text": "😄"
},
{
"userId": 6,
"text": "|-|@><05z"
},
{
"userId": 8,
"text": "@TT says the guy who uses like 24 bot accs to push up the mobcap for a wither skelly farm xDDDDDDDDDDD"
},
{
"userId": 12,
"text": "i really want to apply but i have nothing"
},
{
"userId": 12,
"text": "so"
},
{
"userId": 12,
"text": "i guess its no"
},
{
"userId": 5,
"text": "oh man that is actually pretty cheaty hah"
},
{
"userId": 17,
"text": "You run it on your server?"
},
{
"userId": 17,
"text": "The bot"
},
{
"userId": 8,
"text": "yes"
},
{
"userId": 5,
"text": "nodnam send me a screenshot if u dont want to make it public"
},
{
"userId": 17,
"text": "...."
},
{
"userId": 8,
"text": "?"
},
{
"userId": 17,
"text": "Well"
},
{
"userId": 17,
"text": "Idc since it saves on energy costs"
},
{
"userId": 17,
"text": "Not like me running my pc 24/7"
},
{
"userId": 5,
"text": "good point tho"
},
{
"userId": 5,
"text": "be back in 5 min"
},
{
"userId": 8,
"text": "and the bot has a ping of 0ms bc of that xD"
},
{
"userId": 8,
"text": "2OP4ME"
},
{
"userId": 8,
"text": "Hello SCHMÖÖÖÖKY @Disabled User"
},
{
"userId": 5,
"text": "well nevermind have to go for today nodnam you can still apply for the server the worst thing scenario is that we say no ^^"
},
{
"userId": 6,
"text": "bye Heinz"
},
{
"userId": 6,
"text": "you will be missed 😢"
},
{
"userId": 2,
"text": "Hello"
},
{
"userId": 2,
"text": "😄"
},
{
"userId": 8,
"text": "🛋"
},
{
"userId": 2,
"text": "@TT congratulations on your promotion 😳"
},
{
"userId": 8,
"text": "?"
},
{
"userId": 2,
"text": "he didn't have a role xD"
},
{
"userId": 12,
"text": "to apply or not to apply that is the question"
},
{
"userId": 12,
"text": "lol"
},
{
"userId": 12,
"text": "im bored"
},
{
"userId": 8,
"text": "or do it like schrödinger's cat: apply and not apply at the same time xD"
},
{
"userId": 12,
"text": "oh"
},
{
"userId": 12,
"text": "yeah"
},
{
"userId": 12,
"text": "quantum stuffs"
},
{
"userId": 17,
"text": "@Disabled User ??"
},
{
"userId": 2,
"text": "you were roleless"
},
{
"userId": 6,
"text": "@Nodnam in the time you've spent wondering whether to apply or not"
},
{
"userId": 12,
"text": "lol"
},
{
"userId": 12,
"text": "im bored"
},
{
"userId": 6,
"text": "you've said that twice in an hour 😛"
},
{
"userId": 12,
"text": "so are u guys going to skip 1.11 and go to 1.12?"
},
{
"userId": 12,
"text": "yes yes i did"
},
{
"userId": 6,
"text": "depends on whether there are things we'd miss out on by doing so"
},
{
"userId": 12,
"text": "ok"
},
{
"userId": 5,
"text": "i called my cat \"\"Schrödinger\"\" 😄"
},
{
"userId": 8,
"text": "Really? xD"
},
{
"userId": 5,
"text": "ya haha"
},
{
"userId": 5,
"text": "took a while for my parents to accept that name once they heared the story behind it but well 😄 my mom just calls him schrödi"
},
{
"userId": 8,
"text": "Why not Schrödli? xDD"
},
{
"userId": 5,
"text": "^^"
},
{
"userId": 12,
"text": "hey"
},
{
"userId": 5,
"text": "hey"
},
{
"userId": 12,
"text": "i have made a 1 wide shulker box swapper"
},
{
"userId": 5,
"text": "nice 😃"
},
{
"userId": 12,
"text": "thats it"
},
{
"userId": 5,
"text": "we are getting close to 1.12 and i am still not realy using observers haha"
},
{
"userId": 5,
"text": "well done 😃"
},
{
"userId": 12,
"text": "lol"
},
{
"userId": 5,
"text": "i mean they make some stuff way easier but ... u know not used to it haha"
},
{
"userId": 12,
"text": "its also tileable"
},
{
"userId": 5,
"text": "that might actually be a pretty usefull thing if u make like a collum for different sorts of items ... like one building blocks one food etc"
},
{
"userId": 12,
"text": "yeah"
},
{
"userId": 12,
"text": "hmm i just noticed a flaw...."
},
{
"userId": 12,
"text": "the hopper pulls items out..."
},
{
"userId": 12,
"text": "so i need to lock the hopper...."