-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPastebinData.yml
More file actions
1459 lines (1459 loc) · 39 KB
/
PastebinData.yml
File metadata and controls
1459 lines (1459 loc) · 39 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
# 隐藏Url的名称
hiddenUrl: []
# 仅限群聊运行的名称
groupOnly:
- 溜冰棋
- 陨落双子星
- Nerduel
- wordle
# 待审核列表
censorList: []
# 别名
alias:
comb: 拼装毁灭者
ncmr: 名字竞技:神话篇
rob: robb
靶心计算者: 靶心计算器
es: ExtremeSkydiving
latex: LaTeX
fiveofakind: 五条时刻
hm: hangman
oas: OASIS
# pastebin代码数据
pastebin:
死神之门:
author: 管家
userID: 3507807523
language: python
url: 'https://pastebin.ubuntu.com/p/XHRKFR89cs/'
stdin: 100
讨喜抽奖:
author: 黑桃3
userID: 806707508
language: python
url: 'https://pastebin.ubuntu.com/p/fKNwN5gr4g/'
stdin: 喜欢 8 1
牌运:
author: 管家
userID: 3507807523
language: python
url: 'https://pastebin.ubuntu.com/p/wKybVnNSfB/'
stdin: ''
起手:
author: 丩卩夂忄
userID: 2661463334
language: javascript
url: 'https://pastebin.ubuntu.com/p/bMNtbyVbrk/'
stdin: ''
拼装毁灭者:
author: 宽容
userID: 877367792
language: cpp
url: 'https://pastebin.ubuntu.com/p/Kh4HpZp4rj/'
stdin: card any 896 896 892 892 857 856 852 817 816 497 496 492 452 396 392 357 356 316 312
博饼:
author: Li2CO3
userID: 295820878
language: python
url: 'https://pastebin.ubuntu.com/p/DNrwVJ4CQh/'
stdin: 1
印加宝藏:
author: 群友
userID: 2717802973
language: python
url: 'https://pastebin.ubuntu.com/p/w87sMrVDzS/'
stdin: ''
电子四驱车:
author: 宽容
userID: 877367792
language: python
url: 'https://pastebin.ubuntu.com/p/KYfWnJNpQh/'
stdin: A
发牌:
author: 宽容
userID: 877367792
language: python
url: 'https://pastebin.ubuntu.com/p/Sqw8ZN9rm3/'
stdin: ''
听牌:
author: 宽容
userID: 877367792
language: python
url: 'https://pastebin.ubuntu.com/p/mMHCXYGYs3/'
stdin: 1112345678999
陨落双子星:
author: dva
userID: 2446629225
language: cpp
url: 'https://pastebin.ubuntu.com/p/skpWcgypj7/'
stdin: 100 100
溜冰棋:
author: Li2CO3
userID: 295820878
language: cpp
url: 'https://pastebin.ubuntu.com/p/h2HqHxQ2RS/'
stdin: 12 14 43 52 54 23
roll:
author: 隐身鱼
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/fgKHZxHJdG/'
stdin: '--help'
舌尖上的周期表:
author: H3PO4
userID: 1904867790
language: python
url: 'https://pastebin.ubuntu.com/p/bpT74zRdfq/'
stdin: ''
LIE:
author: Li2CO3
userID: 295820878
language: cpp
url: 'https://pastebin.ubuntu.com/p/MQPhRp36gq/'
stdin: 111000 210210 4(最后一位为问题,默认为0即提问模式)
迷宫:
author: 隐身鱼
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/JgKkTN87Bk/'
stdin: 20 20
format: markdown
width: 20
脱裤子放屁:
author: InvFish
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/5JQFGXdk4c/'
stdin: '-- print(1)'
完美骰子:
author: 三月七
userID: 1710445426
language: Python
url: 'https://pastebin.ubuntu.com/p/26gMrbf62z/'
stdin: 111999222222
靶心毁灭者:
author: 三月七&群友
userID: 1710445426
language: Python
url: 'https://pastebin.ubuntu.com/p/BJkFpsYYTz/'
stdin: 0507081315
数阵计算器:
author: 三月七
userID: 1710445426
language: Python
url: 'https://pastebin.ubuntu.com/p/dHDKXdn5gz/'
stdin: '[37,111,3,7]'
签到:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/wx7425THHG/'
stdin: ''
遛鸟胜率:
author: 黑桃3
userID: 806707508
language: python
url: 'https://pastebin.ubuntu.com/p/7jznYxvKBt/'
stdin: '一哥·雄鹰+4/二哥·乌鸦5-6/三哥·瘟疫鸟/四哥·鹌鹑/五哥·无足鸟0-21 1000'
遛鸟:
author: 黑桃3
userID: 806707508
language: python
url: 'https://pastebin.ubuntu.com/p/djDnWRkY4j/'
stdin: '黑桃3·鹈鹕/黑桃4·燕子'
缤纷毁灭者:
author: 三月七
userID: 1710445426
language: Python
url: 'https://pastebin.ubuntu.com/p/3jQqprfVbn/'
stdin: '[-5,4,7,3,-2,-1,3,1,2,-5]#在列表内依次输入第一行数字和第二行数字 +-*/=依次用-1~-5表示'
数拆计算器:
author: 三月七
userID: 1710445426
language: Python
url: 'https://pastebin.ubuntu.com/p/6CJJHbsTcC/'
stdin: '[0,-5,1,2,1,2,0,-5,1,2,0]#首位表格式,0为默认1为仅输出现在2为仅输出原本。之后每两位表示一次提问和回答,前一位表示提问内容,减X输入-X,除X输入X,后一位表示对方回答,0为失败1为成功'
心跳水立方:
author: Change
userID: 3357982517
language: python
url: 'https://pastebin.ubuntu.com/p/gxqjjGPYw2/'
stdin: ''
魔女计算器1:
author: 三月七
userID: 1710445426
language: Python
url: 'https://pastebin.ubuntu.com/p/Y4sXRvRjJB/'
stdin: '1076#输入xxx表示投入这个数值的战力,输入1xxx表示到达这个战力需要的投入'
魔女计算器2:
author: 三月七
userID: 1710445426
language: Python
url: 'https://pastebin.ubuntu.com/p/CxbHxvzyKt/'
stdin: '[[[5,100],[3,120]],[[4,100]]]#总格式[(左玩家出战),(右玩家出战)]。出战格式[[第一门序号,第一门战力]《,[第二门(如有,没有则去掉书名号范围内所有内容)序号,第二门战力]》]。门派序号0~7依次表示 塑能,咒法,防护,预言,附魔,幻术,死灵,变化。双门默认80%,仅能计算基础胜负,不能计算有关各门派首次使用产生的技能效果,投入类技能请使用魔女计算器1算出战力后输入,其他效果需裁判自行判断是否触发,幻影魔杖的使用请拆分成两个单门运行两次后由裁判判断胜负'
色即是空:
author: Anidlebrain
userID: 1219185633
language: python
url: 'https://pastebin.ubuntu.com/p/wbfZykdkxN/'
stdin: ''
Nerduel:
author: Li2CO3
userID: 295820878
language: cpp
url: 'https://pastebin.ubuntu.com/p/zBQS8GyH5R/'
stdin: "3\n46-5=41 1 2\n3-2*1=1 0 5\n8*12=96 1 2"
极限跳伞:
author: Anidlebrain
userID: 1219185633
language: python
url: 'https://pastebin.ubuntu.com/p/h6N2dDFTTW/'
stdin: ''
format: json
storage: true
wordle:
author: 铁蛋
userID: 2295824927
language: python
url: 'https://pastebin.ubuntu.com/p/mXmG9yKfNC/'
stdin: "-- 5 1\napple\nerror 12000\nbrave 02002\n-1 0"
怪物手册:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/XB9dzF5wRD/'
stdin: '10(勇士攻击)/5(勇士防御) 20(怪物血量)/10(怪物攻击)/3(怪物防御)[/(怪物特性)]'
石之塔:
author: Change
userID: 3357982517
language: python
url: 'https://pastebin.ubuntu.com/p/YXcjy9BGmt/'
stdin: '#run 石之塔 名字 攻击 防御 运气 闪避 战斗概率 挑战boss 例:#run 石之塔 C 20 20 20 20 36 2 (前四项数字的和小于等于100,第五个数字大于等于30,小于等于100,第六个为1-3) 其余见https://pastebin.ubuntu.com/p/7mTqyZhBjr/'
抽数:
author: Change
userID: 3357982517
language: python
url: 'https://pastebin.ubuntu.com/p/5m8hpxkFVK/'
stdin: '#run 抽数 1000 1 1000 (第一个数字为范围,第二个为要抽的数字,第三个为抽的次数)'
矩阵得分:
author: Li2CO3
userID: 295820878
language: python
url: 'https://pastebin.ubuntu.com/p/QJCcv5Mr3q/'
stdin: 'm|/ k a sasksqstsj cac8c7cjc5 dah2d4h3s5 hadjh4dth5 s4s6s7s3c4'
联合计算器:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/cwwwzQGWqx/'
stdin: 111 112 113 121 122 123 131 132 133
合成台:
author: 三月七
userID: 1710445426
language: Python
url: 'https://pastebin.ubuntu.com/p/PTpzbDqCZT/'
stdin: '3037003007037103.50#3/037/003/007/037/1/03.50 依据上述分段方式,依次表示:需要材料稀有度(139绿蓝紫)/需要材料个数/持有紫个数/持有蓝个数/持有绿个数/是否允许分解(0否1是,例如原神为0绝区零为1)/每次刷本或消耗一定量体力所期望获得的绿色材料数(蓝/紫需要计入,分别按3/9个绿计算)。小数点后须补足两位。期望根据获取材料平均值计算(例:崩铁每消耗10开拓力刷行迹材料可期望获得0.15*9+1*3+1.4*1=5.75个绿),对于期望未公示的游戏可以尝试通过此前数据大致估算'
刺杀海豚:
author: Change
userID: 3357982517
language: python
url: 'https://pastebin.ubuntu.com/p/XbYvKZYJ2Y/'
stdin: 10 20 (前者为炸弹安放数字,后者为炸弹范围)
彩虹生成器:
author: 三月七
userID: 1710445426
language: Python
url: 'https://pastebin.ubuntu.com/p/y5GjHHCqkq/'
stdin: 红橙黄绿青蓝紫
24点计算:
author: ChatGPT
userID: 3357982517
language: python
url: 'https://pastebin.ubuntu.com/p/mRxmB9YDVP/'
stdin: 2 5 9 6
抽牌:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/dgdvcXqgR2/'
stdin: 玩家1 玩家2 玩家3 玩家4 玩家5
远征军:
author: Anidlebrain
userID: 1219185633
language: cpp
url: 'https://pastebin.ubuntu.com/p/RM2WW5CDfr/'
stdin: 624531798
大海战查分:
author: Li2CO3
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/htthrN45qm/'
stdin: 2 1 1 1 0
大海战查配置:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/Xxvhv9h6N2/'
stdin: '<所查分数/所查分数下限> [所查分数上限](输入两项及以上时输出最后一列为该配置对应分数) [boss] [是否重叠] [要害] [连发数] [侦查点数](这5项为查询具体配置的限制,可输入-1表示跳过)'
相性:
author: 桌游小黄鸭
userID: 550838367
language: Python
url: 'https://pastebin.ubuntu.com/p/nsz2CMG5hj/'
stdin: 张三 张四
猜数字:
author: InvFish
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/NVW8HbfGh6/'
stdin: 1 100
猜数字改:
author: InvFish
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/47XtTS9j86/'
stdin: ''
三轮车:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/wVPtN84DKY/'
stdin: h
三轮:
author: InvFish
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/rDyxnH9nMr/'
stdin: 10
福袋不放回:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/T35zfQKjjh/'
stdin: h
随机:
author: ChatGPT
userID: 3357982517
language: python
url: 'https://pastebin.ubuntu.com/p/tdF2qD4qFP/'
stdin: (上界,下界,个数(大于240则用个数表示),是否可以重复(1为可以))
《追光者》游戏抽卡:
author: 纤光_
userID: 2648379526
language: c
url: 'https://pastebin.ubuntu.com/p/bhHkGvGJWP/'
stdin: 1~32 抽卡 0 查看程序信息
德州扑克:
author: 西二旗四惠东
userID: 2691677959
language: python
url: 'https://pastebin.ubuntu.com/p/s8N4xYkJHz/'
stdin: 3
神秘符号旧版:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/gWzQtHzdfZ/'
stdin: h
神秘符号:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/rmM7TWYMwn/'
stdin: h
storage: true
format: json
麻将发牌:
author: 铁蛋
userID: 2295824927
language: python
url: 'https://pastebin.ubuntu.com/p/5dtJ6pjhTq/'
stdin: ''
跳连环:
author: 桌游小黄鸭
userID: 550838367
language: Python
url: 'https://pastebin.ubuntu.com/p/Btp3trdNdn/'
stdin: '棋子名(马/车/象/卒/王/后)'
刷连环:
author: Ya
userID: 3415521417
language: python
url: 'https://pastebin.ubuntu.com/p/3GPDSG3SbX/'
stdin: 车
扩散捕捉:
author: saiwei
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/qfjxGsV4tQ/'
stdin: 1000
赛博斗蛐蛐:
author: 鱼头
userID: 3354678595
language: cpp
url: 'https://pastebin.ubuntu.com/p/Jshkpt3Cdf/'
stdin: 'GAB-铁蛋 D-鱼头'
名字竞技场:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/4Gpvxd2XKc/'
stdin: info
名字竞技场内战:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/xy2FtDJS7n/'
stdin: '<bot数量> <bot前缀> <额外添加的人名> 只有人名无bot则不需要输入bot数量和前缀 第一个人名前可以加seed_来修改种子'
低俗辱骂不合规:
author: 齐齐
userID: 416390650
language: Python
url: 'https://pastebin.ubuntu.com/p/vz56SFd4Wz/'
stdin: ''
两两相性:
author: 桌游小黄鸭
userID: 550838367
language: Python
url: 'https://pastebin.ubuntu.com/p/RZSM32fmMB/'
stdin: 张三 张四 张五 张六
占卜:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/mdr3zpvvKW/'
stdin: 齐齐
掷骰利息:
author: 桌游小黄鸭
userID: 550838367
language: Python
url: 'https://pastebin.ubuntu.com/p/CKzQbCRBWJ/'
stdin: ''
摊子测试:
author: 隐身鱼
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/Jz4TZQdMDK/'
stdin: "--\n#《猜数字》 (@隐身鱼) 测试 By @隐身鱼\n\n# 摊子游戏规则:玩家在0,1,2中选定一个数字(记为N),然后随机从这三个数里抽一个,\n# 抽中玩家选的数N,玩家赢得(100*N)积分,否则裁判赢,玩家支付裁判100积分\n\nfrom random import randint\n\ndef play(number=0):\n num = randint(0, 2)\n if num == number:\n return (True, 100 * number)\n else:\n return (False, -100)\n\nCONFIG = {\n 'total': 300000, # 自定义测试次数三十万次\n 'args': {\n 'number': range(0, 3) # 可用策略:选0、选1、选2\n }\n}"
storage: true
format: json
bf:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/WgGBGCcChs/'
stdin: help
format: json
storage: true
一言:
author: 隐身鱼
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/8wGHkX2YQz/'
stdin: ''
storage: true
format: json
斐波那契数列:
author: 桌游小黄鸭
userID: 550838367
language: Python
url: 'https://pastebin.ubuntu.com/p/fwM9KWJtKQ/'
stdin: 13
我想:
author: 隐身鱼
userID: 3293762834
language: pytHon
url: 'https://pastebin.ubuntu.com/p/qxF5v8pgHk/'
stdin: 巢
绝命登山:
author: 铁蛋
userID: 2295824927
language: java
url: 'https://pastebin.ubuntu.com/p/3CN7JYVYSd/'
stdin: ''
规则:
author: 铁蛋
userID: 2295824927
language: python
url: 'https://pastebin.com/raw/7ZHHNMCs'
stdin: '<游戏名称>'
format: json
完美战斗:
author: spade3
userID: 806707508
language: python
url: 'https://pastebin.ubuntu.com/p/wx8DzVNW2c/'
stdin: 蓄重挡重 轻重轻挡
重复登山:
author: 鱼头
userID: 3354678595
language: cpp
url: 'https://pastebin.ubuntu.com/p/GWJd7fPd8n/'
stdin: 次数
龟兔赛跑:
author: 桌游小黄鸭
userID: 550838367
language: Python
url: 'https://pastebin.ubuntu.com/p/9tX2qNDGVt/'
stdin: ''
storage: true
format: json
描述:
author: Change
userID: 3357982517
language: python
url: 'https://pastebin.ubuntu.com/p/4KbBkthBMW/'
stdin: 3 2
句子生成:
author: xiaogt
userID: 551156721
language: python
url: 'https://pastebin.ubuntu.com/p/qx2RSr4YdG/'
stdin: 5
Nerduel比较:
author: 鱼头
userID: 3354678595
language: cpp
url: 'https://pastebin.ubuntu.com/p/gvkCBrWSWh/'
stdin: '96/12=8 9/1-7=2'
上山容易下山难:
author: saiwei
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/D4TgM8gPqT/'
stdin: ''
魔方墙:
author: 隐身鱼
userID: 3293762834
language: Python
url: 'https://pastebin.ubuntu.com/p/3rm2jqf39F/'
stdin: ''
format: json
md:
author: 隐身鱼
userID: 3293762834
language: Python
url: 'https://pastebin.ubuntu.com/p/n98JSd7Ypk/'
stdin: "-- \n# 一级标题\n## 二级标题\r---\r\n### 三级标题\n - 内容<br>换行内容\n - 二级内容\n - 第二段内容 \n 1. **加粗部分(双星号)**\n 2. *斜体部分(单星号)*\n 3. <del>删除线部分</del>"
format: markdown
width: 750
ForwardMessage:
author: 铁蛋
userID: 2295824927
language: text
url: 'https://pastebin.ubuntu.com/p/gxykmRrsF8/'
stdin: ''
format: ForwardMessage
帮助文档:
author: 铁蛋
userID: 2295824927
language: text
url: 'https://gist.githubusercontent.com/tiedanGH/75087dcb03c1426a5457eaca96306f94/raw/73357b302a3adbb64b981501e8bb378a0260e624/pb_help.json'
stdin: 'markdown格式文档查看链接https://github.com/tiedanGH/mirai-compiler-framework/blob/main/doc/pastebin.md'
format: ForwardMessage
base64:
author: 铁蛋
userID: 2295824927
language: text
url: 'https://pastebin.ubuntu.com/p/3yRmWnXdGV/'
stdin: ''
format: base64
storage:
author: 铁蛋
userID: 2295824927
language: python
url: 'https://pastebin.ubuntu.com/p/8dBPp9KJkj/'
stdin: '测试输入/clear(测试清除数据)'
storage: true
format: json
限界比大小:
author: 桌游小黄鸭
userID: 550838367
language: Python
url: 'https://pastebin.ubuntu.com/p/p2nrRZw9Kd/'
stdin: 0.5
format: json
storage: true
MessageChain:
author: 铁蛋
userID: 2295824927
language: text
url: 'https://pastebin.ubuntu.com/p/Xgp2dYPvRp/'
stdin: ''
format: json
全地形遛鸟:
author: 黑桃3
userID: 806707508
language: python
url: 'https://pastebin.com/raw/zCK1TG5g'
stdin: '[鸟类/地形/指令]'
storage: true
format: json
看图:
author: 隐身鱼
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/Jr6FJSP3yZ/'
stdin: help
storage: true
format: json
有没有:
author: 纤光_
userID: 2648379526
language: cpp
url: 'https://pastebin.ubuntu.com/p/rhhT2GK2Wb/'
stdin: 巢
2048:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/nkfTQ4Pnty/'
stdin: ''
storage: true
format: json
2048测试:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/ggZNXrkFwT/'
stdin: ''
storage: true
format: json
靶心计算器:
author: 三月七
userID: 1710445426
language: Python
url: 'https://pastebin.ubuntu.com/p/VCdzNrZ2FB/'
stdin: 0370507081315
json:
author: 铁蛋
userID: 2295824927
language: python
url: 'https://pastebin.ubuntu.com/p/BkfSYXswyT/'
stdin: '-- {"content":"测试输入"}'
format: json
storage: true
color:
author: 隐身鱼
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/vs4P9pcNsn/'
stdin: 给你点颜色看看
format: markdown
width: 1000
sign:
author: 隐身鱼
userID: 3293762834
language: text
url: 'https://pastebin.ubuntu.com/p/z28b2hKX5b/'
stdin: ''
format: markdown
botsign:
author: 隐身鱼
userID: 3293762834
language: python
url: 'https://pastebin.ubuntu.com/p/wWtRZXP4DT/'
stdin: ''
format: json
storage: true
办公软件:
author: 纤光_
userID: 2648379526
language: cpp
url: 'https://pastebin.ubuntu.com/p/bsXHB5VmKn/'
stdin: ''
2048疯狂版:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/kQ9FV2x8Qv/'
stdin: ''
storage: true
format: json
大数库:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/94SYzc6KWn/'
stdin: 自编大数库,不可运行但可以使用
质因数分解:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/b7fJ3SG4Mf/'
stdin: 114514
扫雷:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/7HMVpSzfcH/'
stdin: help
storage: true
format: json
幸运:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/ttzrNbf4S7/'
stdin: h
storage: true
format: json
井字棋:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/7hjm9KHzfg/'
stdin: 000000000 左上
记事本:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/zGQrWXRpdf/'
stdin: ''
storage: true
format: json
幸运对决:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/MFVdR6Hjkh/'
stdin: h
cppStorage:
author: 铁蛋
userID: 2295824927
language: cpp
url: 'https://pastebin.ubuntu.com/p/qXMJcBdGFt/'
stdin: ''
util: json.h
storage: true
format: json
字符串工具:
author: 铁蛋
userID: 2295824927
language: python
url: 'https://pastebin.ubuntu.com/p/BZK84N5MWf/'
stdin: '<模式> <输入>'
猜数:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/f3tZbhj8xM/'
stdin: ''
format: json
storage: true
数字炸弹2:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/b9SdB7sCky/'
stdin: ''
format: json
storage: true
数字炸弹3:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/s8DPydh9vH/'
stdin: ''
storage: true
format: json
猜拳:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/7v6xnTqHWb/'
stdin: ''
format: json
storage: true
差值投标:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/s4mV7J9swg/'
stdin: ''
storage: true
format: json
重炮发球机:
author: saiwei
userID: 3507807523
language: python
url: 'https://pastebin.ubuntu.com/p/zdfX3JT6dQ/'
stdin: ''
出题:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/Zxn8MFtY87/'
stdin: ''
storage: true
format: json
选项个数:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/Zxn8MFtY87/'
stdin: ''
format: json
storage: true
A选项:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/Zxn8MFtY87/'
stdin: ''
format: json
storage: true
B选项:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/Zxn8MFtY87/'
stdin: ''
format: json
storage: true
C选项:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/Zxn8MFtY87/'
stdin: ''
format: json
storage: true
D选项:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/Zxn8MFtY87/'
stdin: ''
format: json
storage: true
htmlSample:
author: 铁蛋
userID: 2295824927
language: python
url: 'https://pastebin.ubuntu.com/p/mfBGHbyS6T/'
stdin: ''
format: markdown
width: 300
util: htmlTools.py
心有灵犀:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/gwXMq3P6RV/'
stdin: help
format: json
storage: true
短语生成器:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/dw6nGMkSxv/'
stdin: h
大神币系统:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/cN6mBDMnW4/'
stdin: 帮助
format: json
storage: true
加密:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/JJq9FRzVc2/'
stdin: '<加密内容或密文> <密钥>'
HP杀谜题:
author: spade3
userID: 806707508
language: python
url: 'https://pastebin.ubuntu.com/p/sTMX7XBQZx/'
stdin: ''
format: markdown
width: 400
LaTeX:
author: 铁蛋
userID: 2295824927
language: python
url: 'https://pastebin.ubuntu.com/p/Pv7JBk5sn5/'
stdin: "--\n\\int^{\\pi\\over 2}_0\\sin(x)\\mathrm{d}x"
format: LaTeX
latexSample:
author: 铁蛋
userID: 2295824927
language: text
url: 'https://pastebin.ubuntu.com/p/3s3rS6ktDK/'
stdin: ''
format: LaTeX
新游戏HP杀:
author: 铁蛋
userID: 2295824927
language: python
url: 'https://pastebin.ubuntu.com/p/BW8z3BFvqt/'
stdin: ''
HP杀:
author: spade3
userID: 806707508
language: python
url: 'https://pastebin.ubuntu.com/p/XrZYnH6BgR/'
stdin: ''
format: json
storage: true
Logint:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/22S7jB8mc2/'
stdin: '存对数的大数库,范围±e1.79e308,精度13~14位,可直接输入调试'
三国杀:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/srXRttmw5W/'
stdin: ''
名人守擂赛:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/McQ5mbtWWR/'
stdin: ''
摊子:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/9JQ5qFVjQr/'
stdin: h
storage: true
format: json
表格:
author: 铁蛋
userID: 2295824927
language: python
url: 'https://pastebin.ubuntu.com/p/YM6VzH6cZd/'
stdin: 2 3 第一项为长度 第二项为高度 内容不足会用空格补齐
util: htmlTools.py
format: markdown
width: 500
开放蜂巢:
author: 铁蛋
userID: 2295824927
language: cpp
url: 'https://pastebin.ubuntu.com/p/9CYXPs5crQ/'
stdin: 混乱 3589873865637145146
util: json.h
format: json
位置计算器:
author: 鱼头
userID: 3354678595
language: cpp
url: 'https://pastebin.ubuntu.com/p/8CyJFNcg7k/'
stdin: 1 1 1 1
大不六:
author: Mithril
userID: 2984304052
language: python
url: 'https://pastebin.ubuntu.com/p/FHJ6nqkCvY/'
stdin: ''
零和计算:
author: 九九归一
userID: 1956607464
language: python
url: 'https://pastebin.ubuntu.com/p/ds7wFSN4DT/'
stdin: '<倍率> <分数1> <分数2> [分数3] [分数4] [……]'
银行:
author: 齐齐
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/QSvH7dhkm9/'
stdin: ''
storage: true
format: json
日志:
author: 齐齐
userID: 416390650
language: Python
url: 'https://pastebin.ubuntu.com/p/zGQrWXRpdf/'
stdin: ''
storage: true
format: json
相加的数字:
author: 月影
userID: 1273300377
language: python
url: 'https://pastebin.com/raw/uMivqswk'
stdin: ''
云顶之巢:
author: 星星
userID: 2295824927
language: java
url: 'https://pastebin.ubuntu.com/p/cksVpgT52B/'
stdin: '<种子> [人数]'
format: markdown
width: 400
狼币系统:
author: 西海
userID: 416390650
language: python
url: 'https://pastebin.ubuntu.com/p/tqYfsxFsQp/'
stdin: ''
format: json