-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathatom.xml
More file actions
1440 lines (1440 loc) · 78.7 KB
/
atom.xml
File metadata and controls
1440 lines (1440 loc) · 78.7 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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>https://ra2map.com/</id>
<title>RA2 现代地图教程</title>
<updated>2025-06-20T08:13:33.586Z</updated>
<generator>https://github.com/jpmonette/feed</generator>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<link rel="alternate" href="https://ra2map.com/"/>
<link rel="self" href="https://ra2map.com/atom.xml"/>
<subtitle>探索现代技术与 RA2 的融合</subtitle>
<logo>https://ra2map.com/avatar2.jpg</logo>
<icon>https://ra2map.com/favicon.svg</icon>
<rights>CC BY-NC-SA 4.0 2025 © 天雪酱</rights>
<entry>
<title type="html"><![CDATA[临时]]></title>
<id>https://ra2map.com/posts/temp/index</id>
<link href="https://ra2map.com/posts/temp/index"/>
<updated>2024-09-08T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>未完成</p>
</blockquote>
<h2>AI仇恨</h2>
<p><a href="https://bbs.ra2diy.com/forum.php?mod=viewthread&tid=23550">【教程】ai仇恨</a></p>
<h2>树木外形速查</h2>
<p>![</p>
<br/><p>访问 <a href="https://ra2map.com/posts/temp/index" target="_blank">https://ra2map.com/posts/temp/index</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-06-11T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[妖妖酱的FA2特级教程系列]]></title>
<id>https://ra2map.com/posts/yyj-fa2-tutorial</id>
<link href="https://ra2map.com/posts/yyj-fa2-tutorial"/>
<updated>2025-05-02T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p>此文是妖妖酱的红警最高难度级别的地编触发教程哦~ 包含使用编程技术来扩展平台功能、新增触发行为等内容</p>
<p><TxCard title="FA2特级教程系列 - 哔哩哔哩文集" size="large"</p>
<br/><p>访问 <a href="https://ra2map.com/posts/yyj-fa2-tutorial" target="_blank">https://ra2map.com/posts/yyj-fa2-tutorial</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-05-02T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[FA2工具脚本下载与词典]]></title>
<id>https://ra2map.com/posts/fa2-script</id>
<link href="https://ra2map.com/posts/fa2-script"/>
<updated>2024-04-01T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>简介</h2>
<p>FA2 工具脚本是一些<code>.fscript</code>类型的脚本文件,在 FA2 的<code>script</code>目录下。通过 FA2 菜单栏的工具 -- 工具脚本来使用。英文版语法说明在 FA2 的`/Help</p>
<br/><p>访问 <a href="https://ra2map.com/posts/fa2-script" target="_blank">https://ra2map.com/posts/fa2-script</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-03-04T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[地图全景图欣赏]]></title>
<id>https://ra2map.com/posts/map-image-appreciation</id>
<link href="https://ra2map.com/posts/map-image-appreciation"/>
<updated>2024-06-20T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>原版</h2>
<p><a href="https://tieba.baidu.com/p/2790512472">收集的各种地图的各种风景图_红警地图吧</a></p>
<p>原版和尤里官方地图:</p>
<p><TxDownload size='9.</p>
<br/><p>访问 <a href="https://ra2map.com/posts/map-image-appreciation" target="_blank">https://ra2map.com/posts/map-image-appreciation</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-02-22T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[WAE:新款地编]]></title>
<id>https://ra2map.com/posts/wae</id>
<link href="https://ra2map.com/posts/wae"/>
<updated>2024-03-06T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>The World-Altering Editor is a new map editor for the second-generation classic Command & Conquer</p>
</blockquote>
<br/><p>访问 <a href="https://ra2map.com/posts/wae" target="_blank">https://ra2map.com/posts/wae</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-02-22T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[地图 INI 简介]]></title>
<id>https://ra2map.com/posts/ini-in-map-hdm</id>
<link href="https://ra2map.com/posts/ini-in-map-hdm"/>
<updated>2025-02-11T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>RA2MAP:本文转载自 FA2SP HDM Edition 地编内教程附件</p>
<p>文章包括:</p>
</blockquote>
<pre><code>1注册表小节
1.1漂移与重复
1.2输出真实注册表
1.3特殊注册表
2ini覆盖
</code></pre>
<br/><p>访问 <a href="https://ra2map.com/posts/ini-in-map-hdm" target="_blank">https://ra2map.com/posts/ini-in-map-hdm</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-02-21T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[触发系统的组成和运行机制]]></title>
<id>https://ra2map.com/posts/trigger-system</id>
<link href="https://ra2map.com/posts/trigger-system"/>
<updated>2025-02-11T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>RA2MAP:本文转载自 FA2SP HDM Edition 地编内教程附件</p>
<p>本文是业内关于 RA2 地图触发的最新理论成果。作者通过对触发相关元素的分析,参考 EA 开源的相关源代码,</p>
</blockquote>
<br/><p>访问 <a href="https://ra2map.com/posts/trigger-system" target="_blank">https://ra2map.com/posts/trigger-system</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-02-21T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[需注册表触发如41动画&42爆炸解析]]></title>
<id>https://ra2map.com/posts/triggers-about-list</id>
<link href="https://ra2map.com/posts/triggers-about-list"/>
<updated>2024-02-21T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>获取正确的注册表</h2>
<p>在地图中,有很多触发条件/结果/脚本需要填入某个物件的 ID 号而非注册名,如</p>
<ul>
<li>19 建造特定类型的建筑...</li>
<li>41 播放动画</li>
<li>42 爆炸在</li>
<li>88 粒子动画</li>
</ul>
<br/><p>访问 <a href="https://ra2map.com/posts/triggers-about-list" target="_blank">https://ra2map.com/posts/triggers-about-list</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-02-21T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[武直部署教程]]></title>
<id>https://ra2map.com/posts/schp</id>
<link href="https://ra2map.com/posts/schp"/>
<updated>2025-01-25T00:00:00.000Z</updated>
<content type="html"><所对应的颜色,盟军阵营颜色为 DarkBlue,苏军阵营 DarkRed,第三阵营 DarkSky。颜色在 rulesmd 的<code>[Colors]</code> 中定</p>
<br/><p>访问 <a href="https://ra2map.com/posts/change-mission-text-color" target="_blank">https://ra2map.com/posts/change-mission-text-color</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-01-06T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[FA2基础教程收集]]></title>
<id>https://ra2map.com/posts/fa2-basic</id>
<link href="https://ra2map.com/posts/fa2-basic"/>
<updated>2024-03-10T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p>[[toc]]</p>
<h2>多关任务的命名</h2>
<p>YR1.001平台下,多关任务默认名称为</p>
<pre><code> 盟军 苏联
all01umd.map | sov01umd.map
all0</code></pre>
<br/><p>访问 <a href="https://ra2map.com/posts/fa2-basic" target="_blank">https://ra2map.com/posts/fa2-basic</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-01-06T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[MK的mod教程与代码词典与工具]]></title>
<id>https://ra2map.com/posts/mk-ini</id>
<link href="https://ra2map.com/posts/mk-ini"/>
<updated>2023-11-29T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>主要</h2>
<p>很基础的教程,建议所有新学<code>ini</code>代码修改的人从序章开始看。</p>
<p>基于 Ares ,Ares 是一款扩展平台,相当于对原版的功能增强,解除了很多修改限制。</p>
<p><TxCard title=</p>
<br/><p>访问 <a href="https://ra2map.com/posts/mk-ini" target="_blank">https://ra2map.com/posts/mk-ini</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2025-01-06T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[解决游戏无法运行等问题]]></title>
<id>https://ra2map.com/posts/repaire</id>
<link href="https://ra2map.com/posts/repaire"/>
<updated>2023-02-01T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>Ra2map:本文转载自<a href="https://docs.qq.com/doc/DQnd6T293d01kblVO">解决游戏无法运行等问题 - 腾讯文档</a></p>
</blockquote>
<p>::: info<br>
前排提示:</p>
<ul>
<li>若你玩</li>
</ul>
<br/><p>访问 <a href="https://ra2map.com/posts/repaire" target="_blank">https://ra2map.com/posts/repaire</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-12-21T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[地图设计]]></title>
<id>https://ra2map.com/posts/map-design</id>
<link href="https://ra2map.com/posts/map-design"/>
<updated>2024-09-09T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>本文援引软件工程中软件需求与设计的相关理论和方法,对 Ra2 地图的设计进行探索。</p>
</blockquote>
<h2>必要性</h2>
<p>一份地图的制作过程中,画地形和做触发虽然是主要工作,但并不是全部工作。前期的构思、设计同等重</p>
<br/><p>访问 <a href="https://ra2map.com/posts/map-design" target="_blank">https://ra2map.com/posts/map-design</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-11-30T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[任务难度控制]]></title>
<id>https://ra2map.com/posts/difficulty-control</id>
<link href="https://ra2map.com/posts/difficulty-control"/>
<updated>2024-02-21T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p>控制任务的整体难度,或者做难度分级。先讲方法后讲思想。</p>
<h2>任务的总体难度</h2>
<p>控制某一关卡的总体难度可以从以下角度入手:</p>
<p><strong>平衡性</strong>:确保玩家和敌对势力之间的平衡。一般来说,作者总是让玩家的</p>
<br/><p>访问 <a href="https://ra2map.com/posts/difficulty-control" target="_blank">https://ra2map.com/posts/difficulty-control</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-11-29T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[修改代码并内置进地图、部分示例]]></title>
<id>https://ra2map.com/posts/ini-in-map</id>
<link href="https://ra2map.com/posts/ini-in-map"/>
<updated>2023-10-25T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>此文参考了 NOG 的帖子</p>
</blockquote>
<p>::: tip<br>
此文是关于 ini 的简单介绍,为地图服务,非正式教学。仅讨论<code>rulesmd.ini</code>。<br>
:::</p>
<p>代码(<code>rulesmd.ini</code>)规定了单位与全</p>
<br/><p>访问 <a href="https://ra2map.com/posts/ini-in-map" target="_blank">https://ra2map.com/posts/ini-in-map</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-11-24T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[地图测试理论]]></title>
<id>https://ra2map.com/posts/map-test</id>
<link href="https://ra2map.com/posts/map-test"/>
<updated>2024-09-11T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p>一份好的地图,尤其是任务图,必须经过充分测试才能发布。而地图测试在绝大多数时候都是对<strong>地图触发</strong>(包括 AI 触发)的测试。目前,地图测试的重要性虽然常被提起,但一直罕有具体的理论指导,总体处于</p>
<br/><p>访问 <a href="https://ra2map.com/posts/map-test" target="_blank">https://ra2map.com/posts/map-test</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-11-22T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[Hallow, Valaxy!]]></title>
<id>https://ra2map.com/posts/hallow</id>
<link href="https://ra2map.com/posts/hallow"/>
<updated>2023-09-01T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>Valaxy</h2>
<p>Next Generation Static Blog Framework.</p>
<p>Write your first post!</p>
<h2>Usage</h2>
<p>Modify `valaxy</p>
<br/><p>访问 <a href="https://ra2map.com/posts/hallow" target="_blank">https://ra2map.com/posts/hallow</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-09-22T03:40:50.677Z</published>
</entry>
<entry>
<title type="html"><![CDATA[调试FA2与游戏]]></title>
<id>https://ra2map.com/posts/repaire-other</id>
<link href="https://ra2map.com/posts/repaire-other"/>
<updated>2023-02-01T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>解决地图编辑器问题</h2>
<p><strong>FA2非常卡,甚至出错无法运行?</strong></p>
<p>将下面附件 Final Alert ddraw fix.zip 解压后将文件放入地图编辑器根目录即可【 WIN10,WIN11</p>
<br/><p>访问 <a href="https://ra2map.com/posts/repaire-other" target="_blank">https://ra2map.com/posts/repaire-other</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-09-08T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[【未完成】多人地图相关]]></title>
<id>https://ra2map.com/posts/about-multiple-map</id>
<link href="https://ra2map.com/posts/about-multiple-map"/>
<updated>2011-07-09T00:00:00.000Z</updated>
<content type="html"><]]></title>
<id>https://ra2map.com/posts/multiple-mission</id>
<link href="https://ra2map.com/posts/multiple-mission"/>
<updated>2024-03-09T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>多关任务的命名</h2>
<p>YR1.001平台下,多关任务默认名称为</p>
<pre><code> 盟军 苏联
all01umd.map | sov01umd.map
all02umd.map</code></pre>
<br/><p>访问 <a href="https://ra2map.com/posts/multiple-mission" target="_blank">https://ra2map.com/posts/multiple-mission</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-03-09T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[几个封面制作器]]></title>
<id>https://ra2map.com/posts/cover</id>
<link href="https://ra2map.com/posts/cover"/>
<updated>2019-08-28T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p>制作任务载入图和游戏载入图。</p>
<h2>任务封面制作器改良版</h2>
<p>坊间广为流传的任务封面制作器,由永恒叶改良:增加了不同方向的箭头贴图及超武图标</p>
<p><TxDownload size='2.0MB' net</p>
<br/><p>访问 <a href="https://ra2map.com/posts/cover" target="_blank">https://ra2map.com/posts/cover</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-03-07T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[语言编辑器]]></title>
<id>https://ra2map.com/posts/csf</id>
<link href="https://ra2map.com/posts/csf"/>
<updated>2018-10-01T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p>游戏中出现的几乎所有文字,包括单位名称,任务剧情,任务名称等,都需要使用 RA2 语音编辑器编辑。</p>
<p><TxDownload size='1.22MB' netdisk='' direct='语言编辑</p>
<br/><p>访问 <a href="https://ra2map.com/posts/csf" target="_blank">https://ra2map.com/posts/csf</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-03-06T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[XCC:提取 MIX 中的文件]]></title>
<id>https://ra2map.com/posts/xcc</id>
<link href="https://ra2map.com/posts/xcc"/>
<updated>2020-02-21T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p>可提取 mix 文件内的内容,比如 ini,地图,素材(被加密的无法提取),或是打包生成新的 mix 文件,在封装地图自带素材时会用到</p>
<p><TxDownload size='1.04MB' netdi</p>
<br/><p>访问 <a href="https://ra2map.com/posts/xcc" target="_blank">https://ra2map.com/posts/xcc</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-03-06T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[(重要)关于地图内部数据解析]]></title>
<id>https://ra2map.com/posts/about-map-internal-data-analysis</id>
<link href="https://ra2map.com/posts/about-map-internal-data-analysis"/>
<updated>2023-09-24T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p>含金量很高的一篇教程,全文上万字,非常详细地解析了地图的内部文本数据,解析了每个小节(如所属方、<code>[Basic]、[Structures]</code>)的键值的含义、作用以及注意事项。</p>
<p>::: info<br>
由于</p>
<br/><p>访问 <a href="https://ra2map.com/posts/about-map-internal-data-analysis" target="_blank">https://ra2map.com/posts/about-map-internal-data-analysis</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-02-29T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[心灵终结任务相关]]></title>
<id>https://ra2map.com/posts/about-mo</id>
<link href="https://ra2map.com/posts/about-mo"/>
<updated>2024-02-21T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>即使不做MO地图,也值得一看</p>
</blockquote>
<p><TxCard title="[教程向]浅谈MO任务制作" url="<a href="https://www.bilibili.com/read/cv1018359">https://www.bilibili.com/read/cv1018359</a>" author</p>
<br/><p>访问 <a href="https://ra2map.com/posts/about-mo" target="_blank">https://ra2map.com/posts/about-mo</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-02-21T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[一些其他触发条目说明]]></title>
<id>https://ra2map.com/posts/some-other-triggers</id>
<link href="https://ra2map.com/posts/some-other-triggers"/>
<updated>2024-02-21T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>触发重复类型 1</h2>
<blockquote>
<p>作者:a351650226</p>
</blockquote>
<p>关于触发类型 1(摘录自任务核心内容制作手册,感谢Pzy 爱国者之热血 蜘蛛星云三位大师)</p>
<p>触发类型有三种,人们所了解的大都只是两种,一个</p>
<br/><p>访问 <a href="https://ra2map.com/posts/some-other-triggers" target="_blank">https://ra2map.com/posts/some-other-triggers</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2024-02-21T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[常用的音效与语音]]></title>
<id>https://ra2map.com/posts/sound-and-speech</id>
<link href="https://ra2map.com/posts/sound-and-speech"/>
<updated>2024-02-21T00:00:00.000Z</updated>
<content type="html"><;“光照等级”为地形高度每增加 1 级时</p>
<br/><p>访问 <a href="https://ra2map.com/posts/map-lighting-and-lamp/index" target="_blank">https://ra2map.com/posts/map-lighting-and-lamp/index</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-12-01T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[地图制作入门引导]]></title>
<id>https://ra2map.com/posts/map-making-get-started/index</id>
<link href="https://ra2map.com/posts/map-making-get-started/index"/>
<updated>2021-03-05T00:00:00.000Z</updated>
<content type="html"><![CDATA[<center>——我该如何入坑地图制作?</center>
<p>能点开阅读这篇文章,说明你对 RA2 地图制作有一定的兴趣,那么你该怎样开始地图制作呢<AFace face="nacho:31"/>?</p>
<br/><p>访问 <a href="https://ra2map.com/posts/map-making-get-started/index" target="_blank">https://ra2map.com/posts/map-making-get-started/index</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-12-01T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[电脑相关配置]]></title>
<id>https://ra2map.com/posts/pc-operating-skills/index</id>
<link href="https://ra2map.com/posts/pc-operating-skills/index"/>
<updated>2023-12-01T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p>此文章不讲RA2相关内容,而是讲电脑上的一些操作,帮你更顺畅、高效地使用电脑,也有助于RA2相关创作。</p>
<p>这里都是简要说说,更多自己去了解,知乎B站用起来。</p>
<p>::: danger<br>
此文章内有不少我个</p>
<br/><p>访问 <a href="https://ra2map.com/posts/pc-operating-skills/index" target="_blank">https://ra2map.com/posts/pc-operating-skills/index</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-12-01T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[其他代码相关工具与教程]]></title>
<id>https://ra2map.com/posts/other-ini-etc</id>
<link href="https://ra2map.com/posts/other-ini-etc"/>
<updated>2023-11-29T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>宝典</h2>
<p>2个宝典,包含许多教程和代码实例,很多内容已经过时。</p>
<p><img src="https://ra2map.com/img/dict1.png" alt=""><img src="/img/dict2.png" alt=""></p>
<p><TxDownload size='58.5MB'</p>
<br/><p>访问 <a href="https://ra2map.com/posts/other-ini-etc" target="_blank">https://ra2map.com/posts/other-ini-etc</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-11-29T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[修改地形,地形对象,覆盖图等]]></title>
<id>https://ra2map.com/posts/edit-terrain-etc</id>
<link href="https://ra2map.com/posts/edit-terrain-etc"/>
<updated>2023-11-28T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p>制作地形需要 TMP Builder,具体看以下教程(主要前两个),注意新的地形只有放入 mix 文件(expandmd**.mix)中才能被地图编辑器和地图渲染器读取!</p>
<ul>
<li>[[注释]地形ini说</li>
</ul>
<br/><p>访问 <a href="https://ra2map.com/posts/edit-terrain-etc" target="_blank">https://ra2map.com/posts/edit-terrain-etc</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-11-28T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[使用 TX 地形拓展包]]></title>
<id>https://ra2map.com/posts/tx-terrain</id>
<link href="https://ra2map.com/posts/tx-terrain"/>
<updated>2023-11-10T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>介绍</h2>
<p>TX (TerraineXpansion) 地形拓展包来自国外,给原版增加了很多新的地形,比如雪地城市,城市瀑布,各种悬崖,停机坪,火车道等。使用 TX 地形扩展包制作的地图绚丽无比。</p>
<br/><p>访问 <a href="https://ra2map.com/posts/tx-terrain" target="_blank">https://ra2map.com/posts/tx-terrain</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-11-10T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[ChaleB文集:RA2美工设计入门指引]]></title>
<id>https://ra2map.com/posts/chaleb-art-designing-basic-tutorial</id>
<link href="https://ra2map.com/posts/chaleb-art-designing-basic-tutorial"/>
<updated>2023-11-02T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>Ra2map:本文为轻稚天雪对以下专栏内文章的简要概括,详情请看原文。Ra2map 不打算将专栏全文转载到这里。因为 B 站阅读足够好,转载只是无意义的重复劳动。</p>
</blockquote>
<p><TxCard title="</p>
<br/><p>访问 <a href="https://ra2map.com/posts/chaleb-art-designing-basic-tutorial" target="_blank">https://ra2map.com/posts/chaleb-art-designing-basic-tutorial</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-11-02T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[卡片测试]]></title>
<id>https://ra2map.com/posts/cs</id>
<link href="https://ra2map.com/posts/cs"/>
<updated>2023-11-01T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>卡片</h2>
<!---->
<p>这一篇文章<br>
<TxCard title="星空下的动员兵星空下的动员兵" url="<a href="https://www.bilibili.com/read/readlist/rl441">https://www.bilibili.com/read/readlist/rl441</a></p>
<br/><p>访问 <a href="https://ra2map.com/posts/cs" target="_blank">https://ra2map.com/posts/cs</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-11-01T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[其他地图思想与忠告]]></title>
<id>https://ra2map.com/posts/other-thinking-and-advice-about-map</id>
<link href="https://ra2map.com/posts/other-thinking-and-advice-about-map"/>
<updated>2023-11-01T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>地图基本要求</h2>
<ol>
<li>
<p>地形无明显错误</p>
<p>一切任务地图或者说地图最基本的要求,不要出现诸如大片错海岸、多处地表白块等错误。</p>
</li>
<li>
<p>不要轻易崩溃</p>
<p>游戏出错往往让人沮丧,可以想象玩</p>
</li>
</ol>
<br/><p>访问 <a href="https://ra2map.com/posts/other-thinking-and-advice-about-map" target="_blank">https://ra2map.com/posts/other-thinking-and-advice-about-map</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-11-01T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[ChaleB文集:FA2入门基础教程]]></title>
<id>https://ra2map.com/posts/chaleb-fa2-basic-tutorial</id>
<link href="https://ra2map.com/posts/chaleb-fa2-basic-tutorial"/>
<updated>2023-10-31T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>Ra2map:本文为轻稚天雪对以下专栏内文章的简要概括,详情请看原文。Ra2map 不打算将专栏全文转载到这里。因为 B 站阅读足够好,转载只是无意义的重复劳动。</p>
</blockquote>
<p><TxCard title="</p>
<br/><p>访问 <a href="https://ra2map.com/posts/chaleb-fa2-basic-tutorial" target="_blank">https://ra2map.com/posts/chaleb-fa2-basic-tutorial</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-10-31T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[ChaleB视频集:触发与事件]]></title>
<id>https://ra2map.com/posts/chaleb-trigger-tutorial</id>
<link href="https://ra2map.com/posts/chaleb-trigger-tutorial"/>
<updated>2023-10-31T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>Ra2map:本文为轻稚天雪对以下专栏内文章的简要概括,详情请看原文。Ra2map 不打算将专栏全文转载到这里。因为 B 站阅读足够好,转载只是无意义的重复劳动。</p>
</blockquote>
<p>此为 ChaleB 录制的触发</p>
<br/><p>访问 <a href="https://ra2map.com/posts/chaleb-trigger-tutorial" target="_blank">https://ra2map.com/posts/chaleb-trigger-tutorial</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-10-31T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[不会游泳的企鹅:MO地编教程]]></title>
<id>https://ra2map.com/posts/qie-fa2-tutorial-based-mo</id>
<link href="https://ra2map.com/posts/qie-fa2-tutorial-based-mo"/>
<updated>2023-10-31T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>心灵终结3.3.6地图编辑器萌新教程,讲解 FA2 除地形以外的内容。杂谈系列会更注重于处理一些比较具体的问题</p>
</blockquote>
<p><TxCard title="不会游泳的企鹅24专栏文章" url="https:</p>
<br/><p>访问 <a href="https://ra2map.com/posts/qie-fa2-tutorial-based-mo" target="_blank">https://ra2map.com/posts/qie-fa2-tutorial-based-mo</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-10-31T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[叶墨冷泉文集:MO地编教程]]></title>
<id>https://ra2map.com/posts/ymlq-fa2-tutorial-based-mo</id>
<link href="https://ra2map.com/posts/ymlq-fa2-tutorial-based-mo"/>
<updated>2023-10-31T00:00:00.000Z</updated>
<content type="html"><![CDATA[<blockquote>
<p>Ra2map:本文为轻稚天雪对以下专栏内文章的简要概括和节选,详情请看原文。不做MO也值得一看,专栏后面触发相关的内容案例很多,比较有深度,含金量很高。</p>
</blockquote>
<p><TxCard title="335-3</p>
<br/><p>访问 <a href="https://ra2map.com/posts/ymlq-fa2-tutorial-based-mo" target="_blank">https://ra2map.com/posts/ymlq-fa2-tutorial-based-mo</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-10-31T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[FA2sp:增强版地编]]></title>
<id>https://ra2map.com/posts/fa2sp</id>
<link href="https://ra2map.com/posts/fa2sp"/>
<updated>2023-10-25T00:00:00.000Z</updated>
<content type="html"><![CDATA[<h2>介绍</h2>
<blockquote>
<p>FA2sp 是 secsome 发起的一个引擎扩展项目,旨在为 FinalAlert2 提供一组基于 FA2pp 和 Syringe 的<strong>新功能和修复程序</strong>,以允许注入代码。虽然</p>
</blockquote>
<br/><p>访问 <a href="https://ra2map.com/posts/fa2sp" target="_blank">https://ra2map.com/posts/fa2sp</a> 阅读全文。</p>]]></content>
<author>
<name>天雪酱</name>
<email>i@valaxy.site</email>
<uri>https://valaxy.site</uri>
</author>
<published>2023-10-25T00:00:00.000Z</published>
</entry>
<entry>
<title type="html"><![CDATA[关于PVP地图创作的一点小建议]]></title>
<id>https://ra2map.com/posts/some-suggestions-for-pvp-maps</id>
<link href="https://ra2map.com/posts/some-suggestions-for-pvp-maps"/>
<updated>2023-02-13T00:00:00.000Z</updated>
<content type="html"><![CDATA[<p><TxCard title="关于PVP地图的创作给Modder们的一点小建议" url="<a href="https://www.bilibili.com/read/cv21830793/">https://www.bilibili.com/read/cv21830793/</a>" author="一只不</p>