-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfeed.xml
More file actions
1020 lines (1020 loc) · 68.3 KB
/
feed.xml
File metadata and controls
1020 lines (1020 loc) · 68.3 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"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>RA2 现代地图教程</title>
<link>https://ra2map.com/</link>
<description>探索现代技术与 RA2 的融合</description>
<lastBuildDate>Fri, 20 Jun 2025 08:13:33 GMT</lastBuildDate>
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
<generator>https://github.com/jpmonette/feed</generator>
<image>
<title>RA2 现代地图教程</title>
<url>https://ra2map.com/avatar2.jpg</url>
<link>https://ra2map.com/</link>
</image>
<copyright>CC BY-NC-SA 4.0 2025 © 天雪酱</copyright>
<atom:link href="https://ra2map.com/feed.xml" rel="self" type="application/rss+xml"/>
<item>
<title><![CDATA[临时]]></title>
<link>https://ra2map.com/posts/temp/index</link>
<guid>https://ra2map.com/posts/temp/index</guid>
<pubDate>Wed, 11 Jun 2025 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[妖妖酱的FA2特级教程系列]]></title>
<link>https://ra2map.com/posts/yyj-fa2-tutorial</link>
<guid>https://ra2map.com/posts/yyj-fa2-tutorial</guid>
<pubDate>Fri, 02 May 2025 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[FA2工具脚本下载与词典]]></title>
<link>https://ra2map.com/posts/fa2-script</link>
<guid>https://ra2map.com/posts/fa2-script</guid>
<pubDate>Tue, 04 Mar 2025 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[地图全景图欣赏]]></title>
<link>https://ra2map.com/posts/map-image-appreciation</link>
<guid>https://ra2map.com/posts/map-image-appreciation</guid>
<pubDate>Sat, 22 Feb 2025 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[WAE:新款地编]]></title>
<link>https://ra2map.com/posts/wae</link>
<guid>https://ra2map.com/posts/wae</guid>
<pubDate>Sat, 22 Feb 2025 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[地图 INI 简介]]></title>
<link>https://ra2map.com/posts/ini-in-map-hdm</link>
<guid>https://ra2map.com/posts/ini-in-map-hdm</guid>
<pubDate>Fri, 21 Feb 2025 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[触发系统的组成和运行机制]]></title>
<link>https://ra2map.com/posts/trigger-system</link>
<guid>https://ra2map.com/posts/trigger-system</guid>
<pubDate>Fri, 21 Feb 2025 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[需注册表触发如41动画&42爆炸解析]]></title>
<link>https://ra2map.com/posts/triggers-about-list</link>
<guid>https://ra2map.com/posts/triggers-about-list</guid>
<pubDate>Fri, 21 Feb 2025 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[武直部署教程]]></title>
<link>https://ra2map.com/posts/schp</link>
<guid>https://ra2map.com/posts/schp</guid>
<pubDate>Mon, 17 Feb 2025 00:00:00 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[FA2SP HDM Edition 地编]]></title>
<link>https://ra2map.com/posts/fa2-hdm</link>
<guid>https://ra2map.com/posts/fa2-hdm</guid>
<pubDate>Tue, 11 Feb 2025 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<h2>简介</h2>
<p>FA2SP HDM Edition 简称 FA2SPHE,是 Handama 基于 FA2sp 开发的<strong>新版地图编辑器</strong>,通过注入代码的方式深度扩展了官方 FinalAlert2 的</p>
<br/><p>访问 <a href="https://ra2map.com/posts/fa2-hdm" target="_blank">https://ra2map.com/posts/fa2-hdm</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[其他工具]]></title>
<link>https://ra2map.com/posts/other-tool</link>
<guid>https://ra2map.com/posts/other-tool</guid>
<pubDate>Tue, 11 Feb 2025 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p>其他工具软件推荐<!--2018-10-01--></p>
<h2>通用</h2>
<h3>Notepad3</h3>
<p>它是记事本的全面加强版,有语法高亮、高级搜索等重要功能。可用来替代系统自带的记事本来使用(文件--右键-</p>
<br/><p>访问 <a href="https://ra2map.com/posts/other-tool" target="_blank">https://ra2map.com/posts/other-tool</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[改变任务文本信息的颜色]]></title>
<link>https://ra2map.com/posts/change-mission-text-color</link>
<guid>https://ra2map.com/posts/change-mission-text-color</guid>
<pubDate>Mon, 06 Jan 2025 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p>任务文本信息的颜色使用<strong>固定的</strong>颜色名(号)所对应的颜色,盟军阵营颜色为 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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[FA2基础教程收集]]></title>
<link>https://ra2map.com/posts/fa2-basic</link>
<guid>https://ra2map.com/posts/fa2-basic</guid>
<pubDate>Mon, 06 Jan 2025 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[MK的mod教程与代码词典与工具]]></title>
<link>https://ra2map.com/posts/mk-ini</link>
<guid>https://ra2map.com/posts/mk-ini</guid>
<pubDate>Mon, 06 Jan 2025 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[解决游戏无法运行等问题]]></title>
<link>https://ra2map.com/posts/repaire</link>
<guid>https://ra2map.com/posts/repaire</guid>
<pubDate>Sat, 21 Dec 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[地图设计]]></title>
<link>https://ra2map.com/posts/map-design</link>
<guid>https://ra2map.com/posts/map-design</guid>
<pubDate>Sat, 30 Nov 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[任务难度控制]]></title>
<link>https://ra2map.com/posts/difficulty-control</link>
<guid>https://ra2map.com/posts/difficulty-control</guid>
<pubDate>Fri, 29 Nov 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[修改代码并内置进地图、部分示例]]></title>
<link>https://ra2map.com/posts/ini-in-map</link>
<guid>https://ra2map.com/posts/ini-in-map</guid>
<pubDate>Sun, 24 Nov 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[地图测试理论]]></title>
<link>https://ra2map.com/posts/map-test</link>
<guid>https://ra2map.com/posts/map-test</guid>
<pubDate>Fri, 22 Nov 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[Hallow, Valaxy!]]></title>
<link>https://ra2map.com/posts/hallow</link>
<guid>https://ra2map.com/posts/hallow</guid>
<pubDate>Sun, 22 Sep 2024 03:40:50 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[调试FA2与游戏]]></title>
<link>https://ra2map.com/posts/repaire-other</link>
<guid>https://ra2map.com/posts/repaire-other</guid>
<pubDate>Sun, 08 Sep 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[【未完成】多人地图相关]]></title>
<link>https://ra2map.com/posts/about-multiple-map</link>
<guid>https://ra2map.com/posts/about-multiple-map</guid>
<pubDate>Sat, 31 Aug 2024 00:00:00 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[地图调试与出错补救]]></title>
<link>https://ra2map.com/posts/map-debug</link>
<guid>https://ra2map.com/posts/map-debug</guid>
<pubDate>Fri, 30 Aug 2024 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p>::: tip<br>
做地图时一定要<strong>经常备份</strong>吖<AFace face="nacho:16"/>,免得地图报废追悔莫及。把地图文件按住<code>Ctrl</code>拖一份就行了。<br>
:::</p>
<p>值得注意的是,并非地图崩溃弹</p>
<br/><p>访问 <a href="https://ra2map.com/posts/map-debug" target="_blank">https://ra2map.com/posts/map-debug</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[其他教程、零碎内容]]></title>
<link>https://ra2map.com/posts/other-map-tutorial</link>
<guid>https://ra2map.com/posts/other-map-tutorial</guid>
<pubDate>Fri, 30 Aug 2024 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<h2>第一部分</h2>
<p><TxCard title="高级触发系统设计-入门导引.zip" url="/attach/高级触发系统设计-入门导引.zip" author="邵利仁" date="2021-0</p>
<br/><p>访问 <a href="https://ra2map.com/posts/other-map-tutorial" target="_blank">https://ra2map.com/posts/other-map-tutorial</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[地图渲染器及其用法]]></title>
<link>https://ra2map.com/posts/map-renderer-guide/index</link>
<guid>https://ra2map.com/posts/map-renderer-guide/index</guid>
<pubDate>Mon, 22 Jul 2024 00:00:00 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[几种随机刷兵方式解析]]></title>
<link>https://ra2map.com/posts/random-attack/index</link>
<guid>https://ra2map.com/posts/random-attack/index</guid>
<pubDate>Thu, 27 Jun 2024 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p>在原版 YR 中,能直接实现随机的触发只有条件<code>51 随机延时</code>,现在咱将依此实现随机刷兵。虽说是刷兵,换成随机刷小木箱,设置核弹目标点之类的同理。</p>
<p>根据需求的不同,随机刷兵也有多种方式,比如,固定</p>
<br/><p>访问 <a href="https://ra2map.com/posts/random-attack/index" target="_blank">https://ra2map.com/posts/random-attack/index</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[一些FA2视频教程收集]]></title>
<link>https://ra2map.com/posts/some-fa2-video-tutorial</link>
<guid>https://ra2map.com/posts/some-fa2-video-tutorial</guid>
<pubDate>Mon, 17 Jun 2024 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p><TxCard title="硬核教程:手把手教你如何在两个小时内做一张好看的红警地图" url="<a href="https://www.bilibili.com/video/av55809332">https://www.bilibili.com/video/av55809332</a>" author</p>
<br/><p>访问 <a href="https://ra2map.com/posts/some-fa2-video-tutorial" target="_blank">https://ra2map.com/posts/some-fa2-video-tutorial</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[相关组织与网站]]></title>
<link>https://ra2map.com/posts/organizations</link>
<guid>https://ra2map.com/posts/organizations</guid>
<pubDate>Sun, 31 Mar 2024 00:00:00 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[背景音乐的使用与添加]]></title>
<link>https://ra2map.com/posts/music</link>
<guid>https://ra2map.com/posts/music</guid>
<pubDate>Sun, 10 Mar 2024 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<h2>使用</h2>
<p>触发结果<code>20 播放音乐</code>可以播放指定音乐,填注册名,只要你有这首音乐就可以。重复与否取决于 ini 设置。如果你想停止播放,可以新建一个静音音乐,并用代码指定它重复播放,最后用触发调用</p>
<br/><p>访问 <a href="https://ra2map.com/posts/music" target="_blank">https://ra2map.com/posts/music</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[多关任务的命名和自定义(含DTA)]]></title>
<link>https://ra2map.com/posts/multiple-mission</link>
<guid>https://ra2map.com/posts/multiple-mission</guid>
<pubDate>Sat, 09 Mar 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[几个封面制作器]]></title>
<link>https://ra2map.com/posts/cover</link>
<guid>https://ra2map.com/posts/cover</guid>
<pubDate>Thu, 07 Mar 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[语言编辑器]]></title>
<link>https://ra2map.com/posts/csf</link>
<guid>https://ra2map.com/posts/csf</guid>
<pubDate>Wed, 06 Mar 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[XCC:提取 MIX 中的文件]]></title>
<link>https://ra2map.com/posts/xcc</link>
<guid>https://ra2map.com/posts/xcc</guid>
<pubDate>Wed, 06 Mar 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[(重要)关于地图内部数据解析]]></title>
<link>https://ra2map.com/posts/about-map-internal-data-analysis</link>
<guid>https://ra2map.com/posts/about-map-internal-data-analysis</guid>
<pubDate>Thu, 29 Feb 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[心灵终结任务相关]]></title>
<link>https://ra2map.com/posts/about-mo</link>
<guid>https://ra2map.com/posts/about-mo</guid>
<pubDate>Wed, 21 Feb 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[一些其他触发条目说明]]></title>
<link>https://ra2map.com/posts/some-other-triggers</link>
<guid>https://ra2map.com/posts/some-other-triggers</guid>
<pubDate>Wed, 21 Feb 2024 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[常用的音效与语音]]></title>
<link>https://ra2map.com/posts/sound-and-speech</link>
<guid>https://ra2map.com/posts/sound-and-speech</guid>
<pubDate>Wed, 21 Feb 2024 00:00:00 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[一些小队实例]]></title>
<link>https://ra2map.com/posts/some-team-instance</link>
<guid>https://ra2map.com/posts/some-team-instance</guid>
<pubDate>Mon, 19 Feb 2024 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<h2>触发刷的载具内成员开火</h2>
<blockquote>
<p>由轻稚天雪提供</p>
</blockquote>
<p>直接刷出带兵的 IFV 或者战斗要塞时,里面的兵不会开火,你可以让它先不装载,走到蓝线内,再装载,再进攻。<!--todo--></p>
<h2>让地图上</h2>
<br/><p>访问 <a href="https://ra2map.com/posts/some-team-instance" target="_blank">https://ra2map.com/posts/some-team-instance</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[一些触发实例]]></title>
<link>https://ra2map.com/posts/some-trigger-instance</link>
<guid>https://ra2map.com/posts/some-trigger-instance</guid>
<pubDate>Mon, 19 Feb 2024 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<h2>关于设置科技等级的触发组应用</h2>
<blockquote>
<p>作者:a351650226</p>
</blockquote>
<p>玩过YR原版盟军第5关的同志都知道开局是造不出黑鹰的,只有当棒子的飞机炸了尤里的船厂后才能造,这里就是用到了这个触发。</p>
<p>`1</p>
<br/><p>访问 <a href="https://ra2map.com/posts/some-trigger-instance" target="_blank">https://ra2map.com/posts/some-trigger-instance</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[如何关联触发]]></title>
<link>https://ra2map.com/posts/how-to-associate-triggers/index</link>
<guid>https://ra2map.com/posts/how-to-associate-triggers/index</guid>
<pubDate>Sun, 18 Feb 2024 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p>关联触发可以<strong>给同一个物体挂上多个触发</strong>,比如,可以做到让同一个物体在 <em>41 初次受损</em>,<em>42 一半生命值</em>,<em>43 红血</em> 时,都发出警告信息(这仨事件都需要关联物体,而物体的关联框里只能填</p>
<br/><p>访问 <a href="https://ra2map.com/posts/how-to-associate-triggers/index" target="_blank">https://ra2map.com/posts/how-to-associate-triggers/index</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[悬崖基础画法]]></title>
<link>https://ra2map.com/posts/cliff-drawing-easy/index</link>
<guid>https://ra2map.com/posts/cliff-drawing-easy/index</guid>
<pubDate>Fri, 01 Dec 2023 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:取自 SpiderNebula 的地图编辑器悬崖花式画法教程</p>
</blockquote>
<p>FA2 里面画悬崖是个很重要的技能……如果悬崖画得太直往往就给人一直瞎眼的感觉,所以现在来说说我画悬崖的一些技巧</p>
<p>在</p>
<br/><p>访问 <a href="https://ra2map.com/posts/cliff-drawing-easy/index" target="_blank">https://ra2map.com/posts/cliff-drawing-easy/index</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[任务简明制作教程-入门篇]]></title>
<link>https://ra2map.com/posts/easy-mission-creation-1/index</link>
<guid>https://ra2map.com/posts/easy-mission-creation-1/index</guid>
<pubDate>Fri, 01 Dec 2023 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:转载自 绝对_孤独 搬运的红警任务之家 pkarea 的文章</p>
</blockquote>
<p>前言:这套教程出自任务之家 pkarea 之手,也是咱的启蒙教程,私以为很通俗易懂,适合初学者,尤其是从零开始的新人.</p>
<br/><p>访问 <a href="https://ra2map.com/posts/easy-mission-creation-1/index" target="_blank">https://ra2map.com/posts/easy-mission-creation-1/index</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[任务简明制作教程-进阶篇]]></title>
<link>https://ra2map.com/posts/easy-mission-creation-2/index</link>
<guid>https://ra2map.com/posts/easy-mission-creation-2/index</guid>
<pubDate>Fri, 01 Dec 2023 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:转载自 绝对_孤独 搬运的红警任务之家 pkarea 的文章</p>
</blockquote>
<p>前言:这套教程出自任务之家 pkarea 之手,也是咱的启蒙教程,私以为很通俗易懂,适合初学者,尤其是从零开始的新人.</p>
<br/><p>访问 <a href="https://ra2map.com/posts/easy-mission-creation-2/index" target="_blank">https://ra2map.com/posts/easy-mission-creation-2/index</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[【未完成】地图的光照与灯光控制附示例]]></title>
<link>https://ra2map.com/posts/map-lighting-and-lamp/index</link>
<guid>https://ra2map.com/posts/map-lighting-and-lamp/index</guid>
<pubDate>Fri, 01 Dec 2023 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<h2>全局</h2>
<blockquote>
<p>AuY</p>
</blockquote>
<p>FA2 -> 编辑 -> 光照设置 [Lighting]</p>
<p>【图片】</p>
<p>看第一栏,“环境照明”即为地图整体亮度,默认<code>1</code>(比较亮);“光照等级”为地形高度每增加 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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[地图制作入门引导]]></title>
<link>https://ra2map.com/posts/map-making-get-started/index</link>
<guid>https://ra2map.com/posts/map-making-get-started/index</guid>
<pubDate>Fri, 01 Dec 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[电脑相关配置]]></title>
<link>https://ra2map.com/posts/pc-operating-skills/index</link>
<guid>https://ra2map.com/posts/pc-operating-skills/index</guid>
<pubDate>Fri, 01 Dec 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[其他代码相关工具与教程]]></title>
<link>https://ra2map.com/posts/other-ini-etc</link>
<guid>https://ra2map.com/posts/other-ini-etc</guid>
<pubDate>Wed, 29 Nov 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[修改地形,地形对象,覆盖图等]]></title>
<link>https://ra2map.com/posts/edit-terrain-etc</link>
<guid>https://ra2map.com/posts/edit-terrain-etc</guid>
<pubDate>Tue, 28 Nov 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[使用 TX 地形拓展包]]></title>
<link>https://ra2map.com/posts/tx-terrain</link>
<guid>https://ra2map.com/posts/tx-terrain</guid>
<pubDate>Fri, 10 Nov 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[ChaleB文集:RA2美工设计入门指引]]></title>
<link>https://ra2map.com/posts/chaleb-art-designing-basic-tutorial</link>
<guid>https://ra2map.com/posts/chaleb-art-designing-basic-tutorial</guid>
<pubDate>Thu, 02 Nov 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[卡片测试]]></title>
<link>https://ra2map.com/posts/cs</link>
<guid>https://ra2map.com/posts/cs</guid>
<pubDate>Wed, 01 Nov 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[其他地图思想与忠告]]></title>
<link>https://ra2map.com/posts/other-thinking-and-advice-about-map</link>
<guid>https://ra2map.com/posts/other-thinking-and-advice-about-map</guid>
<pubDate>Wed, 01 Nov 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[ChaleB文集:FA2入门基础教程]]></title>
<link>https://ra2map.com/posts/chaleb-fa2-basic-tutorial</link>
<guid>https://ra2map.com/posts/chaleb-fa2-basic-tutorial</guid>
<pubDate>Tue, 31 Oct 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[ChaleB视频集:触发与事件]]></title>
<link>https://ra2map.com/posts/chaleb-trigger-tutorial</link>
<guid>https://ra2map.com/posts/chaleb-trigger-tutorial</guid>
<pubDate>Tue, 31 Oct 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[不会游泳的企鹅:MO地编教程]]></title>
<link>https://ra2map.com/posts/qie-fa2-tutorial-based-mo</link>
<guid>https://ra2map.com/posts/qie-fa2-tutorial-based-mo</guid>
<pubDate>Tue, 31 Oct 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[叶墨冷泉文集:MO地编教程]]></title>
<link>https://ra2map.com/posts/ymlq-fa2-tutorial-based-mo</link>
<guid>https://ra2map.com/posts/ymlq-fa2-tutorial-based-mo</guid>
<pubDate>Tue, 31 Oct 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[FA2sp:增强版地编]]></title>
<link>https://ra2map.com/posts/fa2sp</link>
<guid>https://ra2map.com/posts/fa2sp</guid>
<pubDate>Wed, 25 Oct 2023 00:00:00 GMT</pubDate>
<content:encoded><![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:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[关于PVP地图创作的一点小建议]]></title>
<link>https://ra2map.com/posts/some-suggestions-for-pvp-maps</link>
<guid>https://ra2map.com/posts/some-suggestions-for-pvp-maps</guid>
<pubDate>Tue, 14 Feb 2023 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p><TxCard title="关于PVP地图的创作给Modder们的一点小建议" url="<a href="https://www.bilibili.com/read/cv21830793/">https://www.bilibili.com/read/cv21830793/</a>" author="一只不</p>
<br/><p>访问 <a href="https://ra2map.com/posts/some-suggestions-for-pvp-maps" target="_blank">https://ra2map.com/posts/some-suggestions-for-pvp-maps</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[复制粘贴地形的几种运用]]></title>
<link>https://ra2map.com/posts/copy-and-paste-terrain/index</link>
<guid>https://ra2map.com/posts/copy-and-paste-terrain/index</guid>
<pubDate>Wed, 31 Aug 2022 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<h2>介绍</h2>
<p>复制粘贴地形是我们提高作图效率的好方法,通过它,我们可以快速铺设地表,或是发明许多“新地形”,实现很多地形块的兼容。</p>
<p><img src="./easy.webp" alt=""></p>
<p>按Ctrl+C开始复制,根据</p>
<br/><p>访问 <a href="https://ra2map.com/posts/copy-and-paste-terrain/index" target="_blank">https://ra2map.com/posts/copy-and-paste-terrain/index</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[RA2Modder工具箱]]></title>
<link>https://ra2map.com/posts/ra2-modder-toolbox</link>
<guid>https://ra2map.com/posts/ra2-modder-toolbox</guid>
<pubDate>Tue, 16 Aug 2022 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p>内含很多新兴的MOD工具和教程,持续更新,推荐使用,与此网站互补。视频介绍:红警2 modder工具箱 正式版!发布![<a href="https://www.bilibili.com/video/bv1rV4y1j">https://www.bilibili.com/video/bv1rV4y1j</a></p>
<br/><p>访问 <a href="https://ra2map.com/posts/ra2-modder-toolbox" target="_blank">https://ra2map.com/posts/ra2-modder-toolbox</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[FA2:联盟版地编]]></title>
<link>https://ra2map.com/posts/fa2</link>
<guid>https://ra2map.com/posts/fa2</guid>
<pubDate>Thu, 04 Aug 2022 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p><strong>★瑞雪(20210417)★</strong></p>
<p><TxDownload size='1.87MB' netdisk='' direct='FinalAlert2联盟版-瑞雪(20210417).7z' nam</p>
<br/><p>访问 <a href="https://ra2map.com/posts/fa2" target="_blank">https://ra2map.com/posts/fa2</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[Hello, Valaxy!]]></title>
<link>https://ra2map.com/posts/hello-valaxy</link>
<guid>https://ra2map.com/posts/hello-valaxy</guid>
<pubDate>Fri, 01 Apr 2022 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<h2>Valaxy</h2>
<p><AFace face="nacho:0"/>Next Generation Static Blog Framework.<AFace face="nacho:29"/> ww</p>
<br/><p>访问 <a href="https://ra2map.com/posts/hello-valaxy" target="_blank">https://ra2map.com/posts/hello-valaxy</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[AI基地车防卡]]></title>
<link>https://ra2map.com/posts/ai-mcv-anti-jamming</link>
<guid>https://ra2map.com/posts/ai-mcv-anti-jamming</guid>
<pubDate>Mon, 10 Jan 2022 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:本文转载自<a href="http://pkuit.com/forum.php?mod=viewthread&tid=204850">【教程】AI基地车防卡(含样例地图) - 红警任务之家</a></p>
</blockquote>
<p>本</p>
<br/><p>访问 <a href="https://ra2map.com/posts/ai-mcv-anti-jamming" target="_blank">https://ra2map.com/posts/ai-mcv-anti-jamming</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[马王神系列AI教程]]></title>
<link>https://ra2map.com/posts/madman-ai-tutorial</link>
<guid>https://ra2map.com/posts/madman-ai-tutorial</guid>
<pubDate>Tue, 14 Dec 2021 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p><TxCard title="MammamiaMadman专栏文章-文集-哔哩哔哩" url="<a href="https://space.bilibili.com/29975164/article">https://space.bilibili.com/29975164/article</a>" author=</p>
<br/><p>访问 <a href="https://ra2map.com/posts/madman-ai-tutorial" target="_blank">https://ra2map.com/posts/madman-ai-tutorial</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[局部变量教程1.0]]></title>
<link>https://ra2map.com/posts/local-variables-tutorial</link>
<guid>https://ra2map.com/posts/local-variables-tutorial</guid>
<pubDate>Sun, 05 Dec 2021 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:本文转载自<a href="http://pkuit.com/forum.php?mod=viewthread&tid=204793">【教程】局部变量教程1.0 - 红警任务之家</a></p>
</blockquote>
<h2>前言</h2>
<br/><p>访问 <a href="https://ra2map.com/posts/local-variables-tutorial" target="_blank">https://ra2map.com/posts/local-variables-tutorial</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[TS平台AI(MD).ini教程(修订版)]]></title>
<link>https://ra2map.com/posts/ts-platform-ai-tutorial</link>
<guid>https://ra2map.com/posts/ts-platform-ai-tutorial</guid>
<pubDate>Sun, 05 Sep 2021 00:00:00 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[平台bug:注册号漂移]]></title>
<link>https://ra2map.com/posts/platform-bug-registration-number-shift</link>
<guid>https://ra2map.com/posts/platform-bug-registration-number-shift</guid>
<pubDate>Sun, 23 May 2021 00:00:00 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[基地节点指南1.1]]></title>
<link>https://ra2map.com/posts/base-node-guide/index</link>
<guid>https://ra2map.com/posts/base-node-guide/index</guid>
<pubDate>Thu, 28 Jan 2021 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:本文转载自<a href="http://pkuit.com/forum.php?mod=viewthread&tid=204443">【教程】基地节点指南1.0 - 红警任务之家</a>,1.1新增了总</p>
</blockquote>
<br/><p>访问 <a href="https://ra2map.com/posts/base-node-guide/index" target="_blank">https://ra2map.com/posts/base-node-guide/index</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[高级触发教程:电力连锁]]></title>
<link>https://ra2map.com/posts/advanced-trigger-tutorial-power-interlock</link>
<guid>https://ra2map.com/posts/advanced-trigger-tutorial-power-interlock</guid>
<pubDate>Sat, 23 Jan 2021 00:00:00 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[新人地图制作者要有的几项觉悟]]></title>
<link>https://ra2map.com/posts/new-mapper-needs-several-awareness</link>
<guid>https://ra2map.com/posts/new-mapper-needs-several-awareness</guid>
<pubDate>Thu, 14 Jan 2021 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p><TxCard title="红警2新人地图制作者需要有的几项觉悟" url="<a href="https://www.bilibili.com/read/cv9263799">https://www.bilibili.com/read/cv9263799</a>" author="晓星残月" date=</p>
<br/><p>访问 <a href="https://ra2map.com/posts/new-mapper-needs-several-awareness" target="_blank">https://ra2map.com/posts/new-mapper-needs-several-awareness</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[高级触发教程:字幕队列]]></title>
<link>https://ra2map.com/posts/advanced-trigger-tutorial-subtitle-queue</link>
<guid>https://ra2map.com/posts/advanced-trigger-tutorial-subtitle-queue</guid>
<pubDate>Sun, 02 Aug 2020 05:21:48 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[高级触发教程:帧计时]]></title>
<link>https://ra2map.com/posts/advanced-trigger-tutorial-frame-timing</link>
<guid>https://ra2map.com/posts/advanced-trigger-tutorial-frame-timing</guid>
<pubDate>Sun, 02 Aug 2020 03:59:50 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:本文转载自<a href="http://pkuit.com/forum.php?mod=viewthread&tid=204170">【教程】高级触发教程:帧计时 - 红警任务之家</a></p>
</blockquote>
<p>**警告:</p>
<br/><p>访问 <a href="https://ra2map.com/posts/advanced-trigger-tutorial-frame-timing" target="_blank">https://ra2map.com/posts/advanced-trigger-tutorial-frame-timing</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[(重要)特遣脚本小队AI触发全教程]]></title>
<link>https://ra2map.com/posts/team-complete-tutorial</link>
<guid>https://ra2map.com/posts/team-complete-tutorial</guid>
<pubDate>Thu, 16 Apr 2020 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p><TxDownload size='56.4KB' netdisk='' direct='特遣脚本小队AI触发全教程(by prry).docx' name='特遣脚本小队AI触发全教程(by prr</p>
<br/><p>访问 <a href="https://ra2map.com/posts/team-complete-tutorial" target="_blank">https://ra2map.com/posts/team-complete-tutorial</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[一些任务地图思想]]></title>
<link>https://ra2map.com/posts/some-mission-thinking</link>
<guid>https://ra2map.com/posts/some-mission-thinking</guid>
<pubDate>Wed, 28 Aug 2019 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:本文转载自作者:贴吧@a351650226的文章</p>
</blockquote>
<h2>地形</h2>
<p>这个东西我想已经是被讨论烂了的东西了,贴吧的一些观点我也看过,事实上就我个人经验而言,地形在任务中的确或多或少的是一</p>
<br/><p>访问 <a href="https://ra2map.com/posts/some-mission-thinking" target="_blank">https://ra2map.com/posts/some-mission-thinking</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[战略任务设计四原则]]></title>
<link>https://ra2map.com/posts/the-four-principles-of-strategic-mission-design</link>
<guid>https://ra2map.com/posts/the-four-principles-of-strategic-mission-design</guid>
<pubDate>Mon, 20 May 2019 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:本文转载自<a href="http://www.pkuit.com/forum.php?mod=viewthread&tid=203415">【教程】战略任务设计四原则 - 红警任务之家</a></p>
</blockquote>
<p>首先</p>
<br/><p>访问 <a href="https://ra2map.com/posts/the-four-principles-of-strategic-mission-design" target="_blank">https://ra2map.com/posts/the-four-principles-of-strategic-mission-design</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[任务制作细节经验]]></title>
<link>https://ra2map.com/posts/mission-tips</link>
<guid>https://ra2map.com/posts/mission-tips</guid>
<pubDate>Thu, 17 Jan 2019 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p>::: danger<br>
本文很多内容未经测试,可能是错误或过时的<br>
:::</p>
<h2>任务制作细节 1</h2>
<blockquote>
<p>作者:未知</p>
</blockquote>
<p><strong>如何改变单位和建筑的属性</strong>:使用ini编辑器,新建要改变属性的单位和建筑的s</p>
<br/><p>访问 <a href="https://ra2map.com/posts/mission-tips" target="_blank">https://ra2map.com/posts/mission-tips</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[一些常见错误与bug]]></title>
<link>https://ra2map.com/posts/some-mistake-and-bug</link>
<guid>https://ra2map.com/posts/some-mistake-and-bug</guid>
<pubDate>Sun, 16 Sep 2018 00:00:00 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[红警任务变量论]]></title>
<link>https://ra2map.com/posts/the-theory-of-ra2-mission-variables</link>
<guid>https://ra2map.com/posts/the-theory-of-ra2-mission-variables</guid>
<pubDate>Thu, 12 Jul 2018 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<h2>1</h2>
<ol>
<li>红警地图编辑器并不存在抽象数字变量的直接表达方式,均只能以抽象方式存在。</li>
<li>抽象变量之间可以比较大小,但必须通过一定的过程进行抽象的信息转化。</li>
<li>抽象变量可以以抽象的方式进行</li>
</ol>
<br/><p>访问 <a href="https://ra2map.com/posts/the-theory-of-ra2-mission-variables" target="_blank">https://ra2map.com/posts/the-theory-of-ra2-mission-variables</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[mapper核心思维指导]]></title>
<link>https://ra2map.com/posts/mapper-core-thinking-guide/index</link>
<guid>https://ra2map.com/posts/mapper-core-thinking-guide/index</guid>
<pubDate>Thu, 01 Mar 2018 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<p><em>By:MorgensternHXD</em></p>
<p>自2000年Westwood发布RA2至今已有17载的光华春秋,在这漫漫的17年中,与其相关的DIY技术也在广大爱好者的不断研究和探索中取得了巨大的发展,优秀</p>
<br/><p>访问 <a href="https://ra2map.com/posts/mapper-core-thinking-guide/index" target="_blank">https://ra2map.com/posts/mapper-core-thinking-guide/index</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[平台差异:载具离开地图时乘员的被摧毁判定]]></title>
<link>https://ra2map.com/posts/platform-difference-about-vehicle-leaves-map</link>
<guid>https://ra2map.com/posts/platform-difference-about-vehicle-leaves-map</guid>
<pubDate>Thu, 27 Jul 2017 00:00:00 GMT</pubDate>
<content:encoded><</author>
</item>
<item>
<title><![CDATA[城市地图的详细制作教程]]></title>
<link>https://ra2map.com/posts/city-maps-creating/index</link>
<guid>https://ra2map.com/posts/city-maps-creating/index</guid>
<pubDate>Mon, 08 Sep 2014 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:本文转载自贴吧<a href="http://tieba.baidu.com/p/3295120644">城市地图的详细制作教程</a>,原帖作者:无敌和谐弹</p>
</blockquote>
<p>我接触地图制作的时间也不短了,一直想写点能</p>
<br/><p>访问 <a href="https://ra2map.com/posts/city-maps-creating/index" target="_blank">https://ra2map.com/posts/city-maps-creating/index</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[地图美化细化基础教程]]></title>
<link>https://ra2map.com/posts/map-beautification-and-refinement/index</link>
<guid>https://ra2map.com/posts/map-beautification-and-refinement/index</guid>
<pubDate>Mon, 14 Jul 2014 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:本文转载自贴吧<a href="https://tieba.baidu.com/p/3165093077">【红警地图美化细化基础教程】By:0402yjl</a>,原帖作者:零肆酱</p>
</blockquote>
<p>本教程仅为新手美化</p>
<br/><p>访问 <a href="https://ra2map.com/posts/map-beautification-and-refinement/index" target="_blank">https://ra2map.com/posts/map-beautification-and-refinement/index</a> 阅读全文。</p>]]></content:encoded>
<author>i@valaxy.site (天雪酱)</author>
</item>
<item>
<title><![CDATA[某斯内克的城市图经验谈]]></title>
<link>https://ra2map.com/posts/snake-city-maps-experience/index</link>
<guid>https://ra2map.com/posts/snake-city-maps-experience/index</guid>
<pubDate>Tue, 23 Jul 2013 00:00:00 GMT</pubDate>
<content:encoded><![CDATA[<blockquote>
<p>Ra2map:本文转载自贴吧,原帖作者:格林·斯内克</p>
</blockquote>
<h2>【制作城市图城区部分的基本流程】</h2>
<p>地形→大路→小路→红色水泥→草地→细节物品</p>
<h2>【道路是基础】</h2>
<p>道路不仅是地表装饰,**更是</p>