-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1140 lines (675 loc) · 39.7 KB
/
index.html
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Hexo Theme Redefine">
<meta name="author" content="TYHH10">
<!-- preconnect -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!--- Seo Part-->
<link rel="canonical" href="https://blog.tyhh10.xyz/"/>
<meta name="robots" content="index,follow">
<meta name="googlebot" content="index,follow">
<meta name="revisit-after" content="1 days">
<meta name="description" content="你好呀(*´ω`*)">
<meta property="og:type" content="website">
<meta property="og:title" content="摸鱼馆">
<meta property="og:url" content="https://blog.tyhh10.xyz/index.html">
<meta property="og:site_name" content="摸鱼馆">
<meta property="og:description" content="你好呀(*´ω`*)">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="TYHH10">
<meta name="twitter:card" content="summary">
<!--- Icon Part-->
<link rel="icon" type="image/png" href="/images/favicon.ico" sizes="192x192">
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicon.ico">
<meta name="theme-color" content="#A31F34">
<link rel="shortcut icon" href="/images/favicon.ico">
<!--- Page Info-->
<title>
摸鱼馆
</title>
<link rel="stylesheet" href="/fonts/Chillax/chillax.css">
<!--- Inject Part-->
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/assets/build/styles.css">
<link rel="stylesheet" href="/fonts/GeistMono/geist-mono.css">
<link rel="stylesheet" href="/fonts/Geist/geist.css">
<!--- Font Part-->
<script id="hexo-configurations">
window.config = {"hostname":"blog.tyhh10.xyz","root":"/","language":"zh-CN"};
window.theme = {"articles":{"style":{"font_size":"16px","line_height":1.5,"image_border_radius":"14px","image_alignment":"center","image_caption":false,"link_icon":true,"title_alignment":"left","headings_top_spacing":{"h1":"3.2rem","h2":"2.4rem","h3":"1.9rem","h4":"1.6rem","h5":"1.4rem","h6":"1.3rem"}},"word_count":{"enable":true,"count":true,"min2read":true},"author_label":{"enable":true,"auto":false,"list":[]},"code_block":{"copy":true,"style":"mac","highlight_theme":{"light":"github","dark":"vs2015"},"font":{"enable":false,"family":null,"url":null}},"toc":{"enable":true,"max_depth":6,"number":false,"expand":true,"init_open":true},"copyright":{"enable":true,"default":"cc_by_nc_sa"},"lazyload":true,"recommendation":{"enable":false,"title":"推荐阅读","limit":3,"mobile_limit":2,"placeholder":"/images/wallhaven-wqery6-light.webp","skip_dirs":[]}},"colors":{"primary":"#A31F34","secondary":null,"default_mode":"light"},"global":{"fonts":{"chinese":{"enable":false,"family":null,"url":null},"english":{"enable":false,"family":null,"url":null},"title":{"enable":false,"family":null,"url":null}},"content_max_width":"1000px","sidebar_width":"210px","hover":{"shadow":true,"scale":false},"scroll_progress":{"bar":false,"percentage":true},"website_counter":{"url":"https://cn.vercount.one/js","enable":true,"site_pv":true,"site_uv":true,"post_pv":true},"single_page":true,"preloader":{"enable":false,"custom_message":null},"open_graph":true,"google_analytics":{"enable":false,"id":null}},"home_banner":{"enable":true,"style":"fixed","image":{"light":"/images/wallhaven-wqery6-light.webp","dark":"/images/wallhaven-wqery6-dark.webp"},"title":"你好呀(*´ω`*)","subtitle":{"text":["Hi"],"hitokoto":{"enable":true,"show_author":true,"api":"https://v1.hitokoto.cn"},"typing_speed":100,"backing_speed":80,"starting_delay":500,"backing_delay":1500,"loop":true,"smart_backspace":true},"text_color":{"light":"#fff","dark":"#d1d1b6"},"text_style":{"title_size":"2.8rem","subtitle_size":"1.5rem","line_height":1.2},"custom_font":{"enable":false,"family":null,"url":null},"social_links":{"enable":false,"style":"default","links":{"github":null,"instagram":null,"zhihu":null,"twitter":null,"email":null},"qrs":{"weixin":null}}},"plugins":{"feed":{"enable":false},"aplayer":{"enable":false,"type":"fixed","audios":[{"name":null,"artist":null,"url":null,"cover":null,"lrc":null}]},"mermaid":{"enable":false,"version":"9.3.0"}},"version":"2.7.0","navbar":{"auto_hide":false,"color":{"left":"#f78736","right":"#367df7","transparency":35},"width":{"home":"1200px","pages":"1000px"},"links":{"Home":{"path":"/","icon":"fa-regular fa-house"}},"search":{"enable":false,"preload":true}},"page_templates":{"friends_column":2,"tags_style":"blur"},"home":{"sidebar":{"enable":true,"position":"left","first_item":"menu","announcement":null,"show_on_mobile":true,"links":null},"article_date_format":"auto","excerpt_length":200,"categories":{"enable":true,"limit":3},"tags":{"enable":true,"limit":3}},"footerStart":"2023/07/08 11:45:14"};
window.lang_ago = {"second":"%s 秒前","minute":"%s 分钟前","hour":"%s 小时前","day":"%s 天前","week":"%s 周前","month":"%s 个月前","year":"%s 年前"};
window.data = {"masonry":false};
</script>
<!--- Fontawesome Part-->
<link rel="stylesheet" href="/fontawesome/fontawesome.min.css">
<link rel="stylesheet" href="/fontawesome/brands.min.css">
<link rel="stylesheet" href="/fontawesome/solid.min.css">
<link rel="stylesheet" href="/fontawesome/regular.min.css">
<meta name="generator" content="Hexo 7.3.0"></head>
<body>
<div class="progress-bar-container">
<span class="pjax-progress-bar"></span>
<!-- <span class="swup-progress-icon">-->
<!-- <i class="fa-solid fa-circle-notch fa-spin"></i>-->
<!-- </span>-->
</div>
<main class="page-container" id="swup">
<style>
.home-banner-container {
background: none !important;
}
.home-article-item,
.sidebar-links,
.sidebar-content,
a.page-number,
a.extend,
.sidebar-links .links:hover,
.right-bottom-tools,
footer.footer {
background-color: var(--background-color-transparent-80) !important;
}
.right-bottom-tools:hover,
a.page-number:hover,
a.extend:hover {
background-color: var(--primary-color) !important;
}
.site-info,
.home-article-sticky-label {
background-color: var(--background-color-transparent-15) !important;
}
.home-article-sticky-label {
backdrop-filter: none !important;
}
</style>
<div class="home-banner-background transition-fade fixed top-0 left-0 w-screen h-screen scale-125 sm:scale-110 box-border will-change-transform bg-cover">
<img src="/images/wallhaven-wqery6-light.webp" alt="home-banner-background" class="w-full h-full object-cover dark:hidden">
<img src="/images/wallhaven-wqery6-dark.webp" alt="home-banner-background" class="w-full h-full object-cover hidden dark:block">
</div>
<div class="home-banner-container flex justify-center items-center transition-fade relative">
<div class="content mt-8 flex flex-col justify-center items-center">
<div class="description flex flex-col justify-center items-center w-screen font-medium text-center"
>
你好呀(*´ω`*)
<p><i id="subtitle"></i></p>
</div>
</div>
<script>
const scrollToMain = ()=> {
console.log('scroll');
const target = document.querySelector('.main-content-container');
target.scrollIntoView({ behavior: 'smooth'});
}
</script>
</div>
<div class="main-content-container">
<div class="main-content-header">
<header class="navbar-container px-6 md:px-12">
<div class="navbar-content has-home-banner">
<div class="left">
<a class="logo-title" href="/">
<h1>
摸鱼馆
</h1>
</a>
</div>
<div class="right">
<!-- PC -->
<div class="desktop">
<ul class="navbar-list">
<li class="navbar-item">
<!-- Menu -->
<a class="active"
href="/"
>
<i class="fa-regular fa-house fa-fw"></i>
首页
</a>
<!-- Submenu -->
</li>
</ul>
</div>
<!-- Mobile -->
<div class="mobile">
<div class="icon-item navbar-bar">
<div class="navbar-bar-middle"></div>
</div>
</div>
</div>
</div>
<!-- Mobile sheet -->
<div class="navbar-drawer h-screen w-full absolute top-0 left-0 bg-background-color flex flex-col justify-between">
<ul class="drawer-navbar-list flex flex-col px-4 justify-center items-start">
<li class="drawer-navbar-item text-base my-1.5 flex flex-col w-full">
<a class="py-1.5 px-2 flex flex-row items-center justify-between gap-1 hover:!text-primary active:!text-primary text-2xl font-semibold group border-b border-border-color hover:border-primary w-full active"
href="/"
>
<span>
首页
</span>
<i class="fa-regular fa-house fa-sm fa-fw"></i>
</a>
</li>
</ul>
<div class="statistics flex justify-around my-2.5">
<a class="item tag-count-item flex flex-col justify-center items-center w-20" href="/tags">
<div class="number text-2xl sm:text-xl text-second-text-color font-semibold">8</div>
<div class="label text-third-text-color text-sm">标签</div>
</a>
<a class="item tag-count-item flex flex-col justify-center items-center w-20" href="/categories">
<div class="number text-2xl sm:text-xl text-second-text-color font-semibold">1</div>
<div class="label text-third-text-color text-sm">分类</div>
</a>
<a class="item tag-count-item flex flex-col justify-center items-center w-20" href="/archives">
<div class="number text-2xl sm:text-xl text-second-text-color font-semibold">7</div>
<div class="label text-third-text-color text-sm">文章</div>
</a>
</div>
</div>
<div class="window-mask"></div>
</header>
</div>
<div class="main-content-body">
<div class="home-sidebar-container">
<div class="sticky-container sticky">
<div class="sidebar-content" >
<div class="avatar flex justify-center">
<img src="/images/favicon.ico">
</div>
<div class="author flex flex-col justify-center my-2.5 mx-0">
<div class="name">TYHH10</div>
<div class="label">Lv1</div>
</div>
<div class="statistics flex justify-around my-2.5">
<a class="item tag-count-item flex flex-col justify-center items-center w-20" href="/tags">
<div class="number text-2xl sm:text-xl text-second-text-color font-semibold">8</div>
<div class="label text-third-text-color text-sm">标签</div>
</a>
<a class="item tag-count-item flex flex-col justify-center items-center w-20" href="/categories">
<div class="number text-2xl sm:text-xl text-second-text-color font-semibold">1</div>
<div class="label text-third-text-color text-sm">分类</div>
</a>
<a class="item tag-count-item flex flex-col justify-center items-center w-20" href="/archives">
<div class="number text-2xl sm:text-xl text-second-text-color font-semibold">7</div>
<div class="label text-third-text-color text-sm">文章</div>
</a>
</div>
</div>
</div>
</div>
<div class="main-content">
<div class="home-content-container">
<ul class="home-article-list">
<li class="home-article-item">
<div class="flex flex-col gap-5 px-7 pb-7 pt-7">
<h3 class="home-article-title">
<a href="/2024/09/02/hello-world/">
Hello World
</a>
</h3>
<div class="home-article-content markdown-body">
Welcome to Hexo ! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub ...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span><i class="fa-solid fa-calendars"></i>
<span class="home-article-date" data-date="Mon Sep 02 2024 11:27:38 GMT+0800">
2024-09-02
</span>
</span>
</div>
<a href="/2024/09/02/hello-world/">阅读全文<span class="seo-reader-text">Hello World</span> <i class="fa-solid fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-article-item">
<div id="home-article-thumbnail" class="home-article-thumbnail relative h-[150px] overflow-hidden rounded-t-large">
<a href="/2024/07/30/bt_server_setup_tutorial/">
<img src="/images/server_setup_tutorial/bt_server_setup_tutorial.jpg" alt="BT服务器搭建教程(等待编写)" class="w-full h-full object-cover dark:brightness-75 transition-all" />
</a>
</div>
<div class="flex flex-col gap-5 px-7 pb-7 pt-5">
<h3 class="home-article-title">
<a href="/2024/07/30/bt_server_setup_tutorial/">
BT服务器搭建教程(等待编写)
</a>
</h3>
<div class="home-article-content markdown-body">
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span><i class="fa-solid fa-calendars"></i>
<span class="home-article-date" data-date="Tue Jul 30 2024 13:29:01 GMT+0800">
2024-07-30
</span>
</span>
<span class="home-article-category">
<i class="fa-solid fa-folders"></i>
<ul>
<li>
<a href="/categories/%E6%B8%B8%E6%88%8F%E6%9C%8D%E5%8A%A1%E5%99%A8%E9%83%A8%E7%BD%B2%E6%95%99%E7%A8%8B/">游戏服务器部署教程</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fa-solid fa-tags"></i>
<ul>
<li>
<a href="/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/">服务器</a>
</li>
<li>
|
<a href="/tags/%E6%95%99%E7%A8%8B/">教程</a>
</li>
<li>
|
<a href="/tags/BT/">BT</a>
</li>
</ul>
</span>
</div>
<a href="/2024/07/30/bt_server_setup_tutorial/">阅读全文<span class="seo-reader-text">BT服务器搭建教程(等待编写)</span> <i class="fa-solid fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-article-item">
<div id="home-article-thumbnail" class="home-article-thumbnail relative h-[150px] overflow-hidden rounded-t-large">
<a href="/2024/07/30/sc_server_setup_tutorial/">
<img src="/images/server_setup_tutorial/sc_server_setup_tutorial.jpg" alt="SC服务器搭建教程" class="w-full h-full object-cover dark:brightness-75 transition-all" />
</a>
</div>
<div class="flex flex-col gap-5 px-7 pb-7 pt-5">
<h3 class="home-article-title">
<a href="/2024/07/30/sc_server_setup_tutorial/">
SC服务器搭建教程
</a>
</h3>
<div class="home-article-content markdown-body">
目录
安装SC服务器
Windows
使用软件部署服务器
Linux
Ubuntu
使用脚本部署服务器
server.cfg
装MM和AMXX
安装SC服务器Windows在C盘或者桌面,新建一个steamcmd目录然后到这个网站下载steamcmdhttps://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip 下载完...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span><i class="fa-solid fa-calendars"></i>
<span class="home-article-date" data-date="Tue Jul 30 2024 13:28:10 GMT+0800">
2024-07-30
</span>
</span>
<span class="home-article-category">
<i class="fa-solid fa-folders"></i>
<ul>
<li>
<a href="/categories/%E6%B8%B8%E6%88%8F%E6%9C%8D%E5%8A%A1%E5%99%A8%E9%83%A8%E7%BD%B2%E6%95%99%E7%A8%8B/">游戏服务器部署教程</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fa-solid fa-tags"></i>
<ul>
<li>
<a href="/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/">服务器</a>
</li>
<li>
|
<a href="/tags/%E6%95%99%E7%A8%8B/">教程</a>
</li>
<li>
|
<a href="/tags/SC/">SC</a>
</li>
</ul>
</span>
</div>
<a href="/2024/07/30/sc_server_setup_tutorial/">阅读全文<span class="seo-reader-text">SC服务器搭建教程</span> <i class="fa-solid fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-article-item">
<div id="home-article-thumbnail" class="home-article-thumbnail relative h-[150px] overflow-hidden rounded-t-large">
<a href="/2024/04/11/tf2_server_setup_tutorial/">
<img src="/images/server_setup_tutorial/tf2_server_setup_tutorial.webp" alt="TF2服务器搭建教程" class="w-full h-full object-cover dark:brightness-75 transition-all" />
</a>
</div>
<div class="flex flex-col gap-5 px-7 pb-7 pt-5">
<h3 class="home-article-title">
<a href="/2024/04/11/tf2_server_setup_tutorial/">
TF2服务器搭建教程
</a>
</h3>
<div class="home-article-content markdown-body">
!!!事先说明随便写着玩的!!!
⚠️️注意⚠️
TF2在国内非常冷门,而且结合当前环境来看也不适合搭设服务器,在看之前一定要考虑好,不要脑子一热就搞了
(假如你只是想跟你的好友或朋友之间玩一玩,建议查看这篇教程:
Enabling connections to your server [without ...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span><i class="fa-solid fa-calendars"></i>
<span class="home-article-date" data-date="Thu Apr 11 2024 12:49:43 GMT+0800">
2024-04-11
</span>
</span>
<span class="home-article-category">
<i class="fa-solid fa-folders"></i>
<ul>
<li>
<a href="/categories/%E6%B8%B8%E6%88%8F%E6%9C%8D%E5%8A%A1%E5%99%A8%E9%83%A8%E7%BD%B2%E6%95%99%E7%A8%8B/">游戏服务器部署教程</a>
</li>
</ul>
</span>
<span class="home-article-tag">
<i class="fa-solid fa-tags"></i>
<ul>
<li>
<a href="/tags/TF2/">TF2</a>
</li>
<li>
|
<a href="/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/">服务器</a>
</li>
<li>
|
<a href="/tags/%E6%95%99%E7%A8%8B/">教程</a>
</li>
</ul>
</span>
</div>
<a href="/2024/04/11/tf2_server_setup_tutorial/">阅读全文<span class="seo-reader-text">TF2服务器搭建教程</span> <i class="fa-solid fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-article-item">
<div id="home-article-thumbnail" class="home-article-thumbnail relative h-[150px] overflow-hidden rounded-t-large">
<a href="/2024/02/29/guo-nei-tf2-fu-wu-qi/">
<img src="/images/guo-nei-tf2-fu-wu-qi.jpg" alt="国内TF2服务器" class="w-full h-full object-cover dark:brightness-75 transition-all" />
</a>
</div>
<div class="flex flex-col gap-5 px-7 pb-7 pt-5">
<h3 class="home-article-title">
<a href="/2024/02/29/guo-nei-tf2-fu-wu-qi/">
国内TF2服务器
</a>
</h3>
<div class="home-article-content markdown-body">
点击IP可以直接连接服务器浏览器会弹出个对话,点击打开就行
好时光124.221.61.195:27015 全称:[好时光服务器] 2-6-10人纯净MVM 0/6
番茄服112.74.39.153:54701 全称:《番茄》9v9怀旧服务器正在预热-混斗模式
日常服110.42.213.207:27015 全称:【CN】日常服务器1服-经典X10橘子|速生|
摸鱼馆117.72....
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span><i class="fa-solid fa-calendars"></i>
<span class="home-article-date" data-date="Thu Feb 29 2024 16:26:48 GMT+0800">
2024-02-29
</span>
</span>
<span class="home-article-tag">
<i class="fa-solid fa-tags"></i>
<ul>
<li>
<a href="/tags/TF2/">TF2</a>
</li>
<li>
|
<a href="/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/">服务器</a>
</li>
<li>
|
<a href="/tags/%E5%9B%BD%E5%86%85/">国内</a>
</li>
</ul>
</span>
</div>
<a href="/2024/02/29/guo-nei-tf2-fu-wu-qi/">阅读全文<span class="seo-reader-text">国内TF2服务器</span> <i class="fa-solid fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-article-item">
<div id="home-article-thumbnail" class="home-article-thumbnail relative h-[150px] overflow-hidden rounded-t-large">
<a href="/2023/08/30/fortwarsoryao-sai-zhan-zheng/">
<img src="/images/fortwarsoryao-sai-zhan-zheng.webp" alt="FortWars|要塞战争" class="w-full h-full object-cover dark:brightness-75 transition-all" />
</a>
</div>
<div class="flex flex-col gap-5 px-7 pb-7 pt-5">
<h3 class="home-article-title">
<a href="/2023/08/30/fortwarsoryao-sai-zhan-zheng/">
FortWars|要塞战争
</a>
</h3>
<div class="home-article-content markdown-body">
类似于“起源要塞”以及 gmod 中的“城堡战争”模式,这段出处TF2wiki
你要用你手头的现金,构建防御或者节约/存起来进行兵种购买,默认初始所有人只能用Scout,在聊天框输入!fwmenu打开FW主菜单里面可以看到购买兵种的选项
获得胜利条件类型:
1.站点,类似于对称性控制点 ,只不过这边就三个点 中心点为中立其他两个点都为双方控制,有一方控制所有点就会获得胜利
2.情报,地...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span><i class="fa-solid fa-calendars"></i>
<span class="home-article-date" data-date="Wed Aug 30 2023 13:08:26 GMT+0800">
2023-08-30
</span>
</span>
<span class="home-article-tag">
<i class="fa-solid fa-tags"></i>
<ul>
<li>
<a href="/tags/TF2/">TF2</a>
</li>
<li>
|
<a href="/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/">服务器</a>
</li>
<li>
|
<a href="/tags/%E6%B8%B8%E6%88%8F%E7%8E%A9%E6%B3%95/">游戏玩法</a>
</li>
</ul>
</span>
</div>
<a href="/2023/08/30/fortwarsoryao-sai-zhan-zheng/">阅读全文<span class="seo-reader-text">FortWars|要塞战争</span> <i class="fa-solid fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-article-item">
<div id="home-article-thumbnail" class="home-article-thumbnail relative h-[150px] overflow-hidden rounded-t-large">
<a href="/2023/07/08/scp_secret_fortress/">
<img src="/images/scpmi-mi-yao-sai-ji-ben-wan-fa.webp" alt="SCP:秘密要塞" class="w-full h-full object-cover dark:brightness-75 transition-all" />
</a>
</div>
<div class="flex flex-col gap-5 px-7 pb-7 pt-5">
<h3 class="home-article-title">
<a href="/2023/07/08/scp_secret_fortress/">
SCP:秘密要塞
</a>
</h3>
<div class="home-article-content markdown-body">
主编写:先帝扩充编写:35
为了让各位有充分的游戏体验,下面我先来简单介绍一下游戏背景
SCP是一个有关于各种超自然现象、个体等等事件,我们把它们称为SCP项目。SCP基金会成立的目的是为了收容或者控制这些异常,保护世人免遭灾害。
但是,有些SCP项目会试图突破收容或者趁机突破收容,这些SCP项目大多数都是怀有敌意的,所以SCP基金会要尽快重收容这些SCP项目。
接下来介绍一下游戏的几种...
</div>
<div class="home-article-meta-info-container">
<div class="home-article-meta-info">
<span><i class="fa-solid fa-calendars"></i>
<span class="home-article-date" data-date="Sat Jul 08 2023 11:56:29 GMT+0800">
2023-07-08
</span>
</span>
<span class="home-article-tag">
<i class="fa-solid fa-tags"></i>
<ul>
<li>
<a href="/tags/TF2/">TF2</a>
</li>
<li>
|
<a href="/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/">服务器</a>
</li>
<li>
|
<a href="/tags/%E6%B8%B8%E6%88%8F%E7%8E%A9%E6%B3%95/">游戏玩法</a>
</li>
</ul>
</span>
</div>
<a href="/2023/07/08/scp_secret_fortress/">阅读全文<span class="seo-reader-text">SCP:秘密要塞</span> <i class="fa-solid fa-angle-right"></i></a>
</div>
</div>
</li>
</ul>
<div class="home-paginator px-7 py-5">
<div class="paginator">
<span class="page-number current">1</span>
</div>
</div>
</div>
<div class="comment-container pjax"></div>
</div>
</div>
<div class="main-content-footer">
<footer class="footer mt-5 py-5 h-auto text-base text-third-text-color relative border-t-2 border-t-border-color">
<div class="info-container py-3 text-center">
<div class="text-center">
©
<span>2023</span>
-
2024 <i class="fa-solid fa-heart fa-beat" style="--fa-animation-duration: 0.5s; color: #f54545"></i> <a href="/">TYHH10</a>
<p class="post-count space-x-0.5">
<span>
共撰写了 7 篇文章
</span>
</p>
</div>
<script data-swup-reload-script src="https://cn.vercount.one/js"></script>
<div class="relative text-center lg:absolute lg:right-[20px] lg:top-1/2 lg:-translate-y-1/2 lg:text-right">
<span id="busuanzi_container_site_uv" class="lg:!block">
<span class="text-sm">访问人数</span>
<span id="busuanzi_value_site_uv"></span>
</span>
<span id="busuanzi_container_site_pv" class="lg:!block">
<span class="text-sm">总访问量</span>
<span id="busuanzi_value_site_pv"></span>
</span>
</div>
<div class="relative text-center lg:absolute lg:left-[20px] lg:top-1/2 lg:-translate-y-1/2 lg:text-left">
<span class="lg:block text-sm">由 <?xml version="1.0" encoding="utf-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="relative top-[2px] inline-block align-baseline" version="1.1" id="圖層_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1rem" height="1rem" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve"><path fill="#0E83CD" d="M256.4,25.8l-200,115.5L56,371.5l199.6,114.7l200-115.5l0.4-230.2L256.4,25.8z M349,354.6l-18.4,10.7l-18.6-11V275H200v79.6l-18.4,10.7l-18.6-11v-197l18.5-10.6l18.5,10.8V237h112v-79.6l18.5-10.6l18.5,10.8V354.6z"/></svg><a target="_blank" class="text-base" href="https://hexo.io">Hexo</a> 驱动</span>
<span class="text-sm lg:block">主题 <a class="text-base" target="_blank" href="https://github.com/EvanNotFound/hexo-theme-redefine">Redefine v2.7.0</a></span>
</div>
<div class="icp-info my-1"><a target="_blank" rel="nofollow" href="
https://beian.miit.gov.cn/#/Integrated/index
">浙ICP备2023025002号-1</a></div>
<div>
博客已运行 <span class="odometer" id="runtime_days" ></span> 天 <span class="odometer" id="runtime_hours"></span> 小时 <span class="odometer" id="runtime_minutes"></span> 分钟 <span class="odometer" id="runtime_seconds"></span> 秒
</div>
<script data-swup-reload-script>
try {
function odometer_init() {
const elements = document.querySelectorAll('.odometer');
elements.forEach(el => {
new Odometer({
el,
format: '( ddd).dd',
duration: 200
});
});
}
odometer_init();
} catch (error) {}
</script>
</div>
</footer>
</div>
</div>
<div class="right-side-tools-container">
<div class="side-tools-container">
<ul class="hidden-tools-list">
<li class="right-bottom-tools tool-font-adjust-plus flex justify-center items-center">
<i class="fa-regular fa-magnifying-glass-plus"></i>
</li>
<li class="right-bottom-tools tool-font-adjust-minus flex justify-center items-center">
<i class="fa-regular fa-magnifying-glass-minus"></i>
</li>
<li class="right-bottom-tools tool-dark-light-toggle flex justify-center items-center">
<i class="fa-regular fa-moon"></i>
</li>
<!-- rss -->
<li class="right-bottom-tools tool-scroll-to-bottom flex justify-center items-center">
<i class="fa-regular fa-arrow-down"></i>
</li>
</ul>