-
Notifications
You must be signed in to change notification settings - Fork 28
/
goto.tt
1377 lines (1322 loc) · 75.4 KB
/
goto.tt
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
#nop {==修改信息==;
210116 修复都城定位,增加节点:太和居dlbs、静修庵jxa、北京荣宝斋bjbs;
201031 增加路径: 苗岭西mlx <-> 苗岭东mld(小心!五毒教之外的人会中毒!);
增加路径: 苗岭东 <-> 五毒教wdj;
核心代码重排版 @lazywalker;
201006 修复天柱峰到武当路径,小心土匪;
200404 增加wait、waitfor、waitline功能;
增加节点观海石ghs;
191106 增加节点莲花生大士lh,武门比武bw;
190722 修改自动计算直连数目count表;
直连列表改为高级数据结构;
添加节点只需添加往返路径,双向直连地点即可;
190710 添加甲午海战基地jd少林鼓楼gl;
190709 添加春来茶馆cg,优化位置显示;
190629 添加太湖街蛇窟sk牧羊人myr;
190628 修改leadto函数自动计算直连路径偏移;
重写直连路径集合方便添加路径;
添加应天府ytf、正阳门zym男爵nj洪七公hq;
修改inquire list显示更多信息;
190627 修改forall为foreach兼容高版本tt++;
修正口岸地标特殊符号显示不正常;
添加回家别名,防止计算路径时灵时不灵;
190622 修复自身信息变量取值;
190617 添加扬州当铺dp;
修正因添加地点导致的直连路径错位。;
190616 添加hzbs jnqz路径,修正16个口岸定位;
190615 修正小镇xz到长安ca到汉中hanz路径;
190614 屏蔽unvar SUF,增加扬州钱庄bk;
修改下车触发防止换行;
201906 修改说明、隐藏版权by Xgg@pkuxkx;
dzp@pkuxkx 修改地名触发sethere;
20181016 北侠论坛dashu修改部分bug;
白驼去一次要1金币,慎去;
201703 修改 by Meirenzhi@pkuxkx;
201305 原作者 by Alucar@pkuxkx;
};
#nop 走路速度控制,分别为每秒上限步数、超限等待时间、正常行走间隔时间;
#var xiaoyao.accu 12;
#var xiaoyao.delay_long 0.5;
#var xiaoyao.delay_short 0.08;
#alias gt {
#if {"%1"==""} {
#echo {%c%h} {light green} {【欢迎使用北侠逍遥行v1.5h1(for tt++)】 };
#echo ;
#echo {%c%h} {light green} {【sethere [地名缩写]指定当前位置】};
#echo ;
#echo {%c%+2s命令格式:gt [Destination|here|list]} {light yellow};
#echo {%c%+2s说明:gt Destination:前往指定区域,可使用地区全名或缩写} {light yellow};
#echo {%c%+8sgt here:显示当前区域名称及地标房间} {light yellow};
#echo {%c%+8sgt list:显示所有可通行区域的名称} {light yellow};
#echo {%c%+8sgt:显示本说明} {light yellow};
#echo {%c%+8s查询各地区地标房间请使用inquire命令} {light yellow};
#echo ;
#echo {%c%h} {light green} {【最后修改20210116】};
};
#else {
#if {"%1"=="here"} {
#list AreaAbbr_list find $CurrentPosition i;
#if {$i>0} {
#list AreaNameCh_list get $i j;
#list AreaName_list get $i k;
#echo {%c%h} {light yellow};
#echo {%c 当前位置:$j($i,$k, $CurrentPosition)} {light yellow};
#var current_area $j($k,$CurrentPosition);
#list AreaPosition_list get $i j;
#echo {%c 当前地区地标房间为:$j} {light yellow};
#echo {%c%h} {light yellow};
};
#else {
#echo {%c%h} {light yellow};
#echo {%c 不能确定当前位置} {light yellow};
#echo {%c%h} {light yellow};
};
};
#else {
#if {"%1"=="list"} {
#echo {%c%h} {light yellow};
#foreach {*AreaName_list[]} {n} {
#list AreaNameCh_list get $n j;
#list AreaName_list get $n k;
#list AreaAbbr_list get $n l;
#echo {$n . $j ($k,$l)};
};
#echo {%c%h} {light yellow};
};
#else {
#list AreaName_list find %1 i;
#list AreaAbbr_list find %1 j;
#math AreaId {$i+$j};
#if {$AreaId>0} {
#list AreaAbbr_list find $CurrentPosition i;
#if {$i>0} {
#list AreaName_list find %1 i;
#list AreaAbbr_list get $i j;
#if {"$CurrentPosition"=="$j" | "$CurrentPosition"=="%1"} {
#echo {%c%h} {light yellow};
#echo {%c 你喜欢原地逛逛么?} {light yellow};
#echo {%c%h} {light yellow};
};
#else {
#if {$i>0} {#var Destination $j} {#var Destination %1};
#list AreaNameCh_list get $AreaId i;
#list AreaName_list get $AreaId j;
#list AreaAbbr_list get $AreaId k;
#echo {%c%h} {light yellow};
#echo {%c 你要前往的地区是:$i ($j, $k)} {light yellow};
#nop unload record;
#var critical_running 1;
routecreate;
};
};
#else {
#echo {%c%h} {light yellow};
#echo {%c 不能确定当前位置} {light yellow};
#echo {%c%h} {light yellow};
};
};
#else {
#echo {%c%h} {light yellow};
#echo {%c 没有%1这个地区} {light yellow};
#echo {%c%h} {light yellow};
};
};
};
};
};
#alias inquire {
#if {"%1"==""} {
#echo {%c%h} {light yellow};
#echo {%c 命令格式:inquire [areaname|list]} {lght yellow};
#echo {%c 说明:inquire areaname:查询指定区域的地标房间,可使用地区全名或缩写} {light yellow};
#echo {%c inquire list:显示所有地区的地标房间清单} {light yellow};
#echo {%c inquire:显示本说明} {light yellow};
#echo {%c%h} {light yellow};
};
#else {
#if {"%1"=="list"} {
#foreach {*AreaName_list[]} {n} {
#list AreaNameCh_list get $n i;
#list AreaName_list get $n j;
#list AreaAbbr_list get $n k;
#list RouteConnection_count get $n c;
#echo {$n . $i ($j,$k) --直连地区($c)个};
inquire $k;
};
};
#else {
#list AreaName_list find %1 i;
#list AreaAbbr_list find %1 j;
#math AreaId {$i+$j};
#if {$AreaId>0} {
#list AreaNameCh_list get $AreaId i;
#list AreaName_list get $AreaId j;
#list AreaAbbr_list get $AreaId k;
#showme 你要查询的地区是:$i($AreaId,$j,$k);
#list AreaPosition_list get $AreaId i;
#showme 该地区地标房间名为:$i;
#showme 与该地区直接相连的地区有:;
#list RouteConnection_count get $AreaId i;
#while {$i>0} {
#var j @leadto{$AreaId;$i};
#list AreaAbbr_list find $j k;
#list AreaNameCh_list get $k l;
#list AreaName_list get $k m;
#showme { $l($m,$j)};
#math i {$i-1};
};
};
#else {
#echo {%c%h} {light yellow};
#echo {%c 没有%1这个地区} {light yellow};
#echo {%c%h} {light yellow};
};
};
};
};
#alias {sethere} {
#var AreaId @ismember{%1;AreaAbbr_list};
#if {$AreaId>0} {
#var CurrentPosition %1;
#echo {%c%h} {light yellow};
#echo {%c 当前位置设定为@item{AreaNameCh_list;$AreaId} (@item{AreaName_list;$AreaId},@item{AreaAbbr_list;$AreaId})} {light yellow};
#echo {%c%h} {light yellow};
};
#else {
#echo {%c%h} {light yellow};
#echo {%c 没有%1这个地区} {light yellow};
#echo {%c%h} {light yellow};
};
};
#alias {stopwalk} {#class walk kill};
#nop ==自定函数==;
#function {leadto} {
#list tmp create $RouteConnection_list[%1];
#list tmp get %2 result;
};
#function {abbrivation} {
#list AreaName_list find %1 tmp;
#list AreaAbbr_list get $tmp result;
};
#function {fullname} {
#list AreaAbbr_list find %1 tmp;
#list AreaName_list get $tmp result;
};
#nop ==路径计算==;
#alias routecreate {
#echo {%c%h} {light yellow};
#echo {%c 开始计算从 @fullname{$CurrentPosition} 到 @fullname{$Destination} 路径...} {light yellow};
#nop ----------定义变量----------;
#var Route {};
#var Route_list {};
#var Route_list_from {};
#var AreaOpen_list {};
#var AreaOpen_list_from {};
#list AreaOpen_list_prev create {$CurrentPosition};
#list AreaClose_list create {$CurrentPosition};
#list AreaAbbr_list find $CurrentPosition AreaId;
#var Degree 1;
#while {@numitems{Route}==0} {
#nop //----------开始计算----------;
#nop #showme -$Degree-;
#math Degree {$Degree+1};
#nop //----------生成当前度数的路径列表----------;
#var AreaOpen_list {};
#var AreaOpen_list_from {};
#loop @numitems{AreaOpen_list_prev} 1 i {
#var AreaId @ismember{@item{AreaOpen_list_prev;$i};AreaAbbr_list};
#loop @item{RouteConnection_count;$AreaId} 1 j {
#if {@ismember{@leadto{$AreaId;$j};AreaClose_list}==0} {
#list AreaOpen_list add {@leadto{$AreaId;$j}};
#list AreaOpen_list_from add {@item{AreaAbbr_list;$AreaId}};
#list AreaClose_list add @leadto{$AreaId;$j};
};
};
};
#nop #showme Degree: $Degree;
#nop #showme AreaOpen_list: $AreaOpen_list[%*];
#nop #showme AreaOpen_list_from: $AreaOpen_list_from[%*];
#if {$Degree>100} {
#echo {%c 出错了!!} {light yellow};
#break;
};
#nop //----------搜索目的地----------;
#if {@ismember{$Destination;AreaOpen_list}>0} {
#nop //----------发现目的地----------;
#nop #showme =$Degree=;
#list Route create {$Destination};
#var i @ismember{$Destination;AreaOpen_list};
#var j @item{AreaOpen_list_from;$i};
#while {$Degree>1} {
#list Route add {$j};
#var i @ismember{$j;Route_list};
#var j @item{Route_list_from;$i};
#math Degree {$Degree-1};
};
#nop #list Route add {$CurrentPosition};
#break;
};
#else {
#nop //----------未发现目的地----------;
#var AreaOpen_list_prev $AreaOpen_list;
#loop @numitems{AreaOpen_list} 1 i {
#list Route_list add {@item{AreaOpen_list;$i}};
#list Route_list_from add {@item{AreaOpen_list_from;$i}};
};
};
};
#echo {%c 路径创建中 ...} {light yellow};
#nop //----------生成路径列表----------;
#var Route_list {};
#var RouteName {};
#var Route_list_short {};
#loop @numitems{Route} 1 i {
#var RouteName Route_@item{Route;$i}_@item{Route;@eval{$i-1}};
#var Route_list_short ${$RouteName};
#list Route_list add $Route_list_short[%*];
};
#nop //----------开始路径简化----------;
#showme {$Route[%*]};
#nop #showme $Route_list[%*];
#var i 1;
#var j @numitems{Route_list};
#while {$i<$j} {
#var k @ismember{@item{Route_list;$i};Directions};
#if {$k>0 & $k==@ismember{@item{Route_list;@eval{$i+1}};Directionsb}} {
#list Route_list delete $i 2;
#math j {$j-2};
#if {$i>1} {#math i {$i-1}};
};
#else {
#math i {$i+1};
};
};
#showme {$Route_list[%*]};
#echo {%c%h} {light yellow};
#echo ;
#showme <efa> 带你装B带你飞 ...;
#echo ;
#echo {%c%h} {light yellow};
};
#nop ==行走命令==;
#ali {wait}{
#switch {"%1"}{
#case {""}{
#var cmd {wait 2};
};
#default {
#var cmd {wait %1};
};
};
};
#alias {waitfor}{
#var cmd {waitfor %1};
};
#alias {waitline}{
#var cmd {waitline %1};
};
#action {^ 带你装B带你飞 ...$} {
#class walk open;
#alias walk {
#if {$step==$stepmax} {set brief 0};
#if {$step<=$stepmax} {
#switch {"$cmd"}{
#case {"wait%s%d"} {
#local time {$cmd};
#replace time {wait} {};
#replace time { } {};
#delay {$time} {walk};
#echo {%c%+2s等待「$time」s后行动。}{light yellow};
#var cmd {};
}; #case {"wait{for|line} %*"}{
#var matchline {false};
#if { "$cmd" == "waitline %*" } {
#format matchline {true};
};
#replace waitfor {waitfor } {};
#replace waitfor {waitline } {};
#if { "$matchline" == "true" } {
#format waitfor {^%p$} {$waitfor};
};
#else {
#format waitfor {%p} {$waitfor};
};
#var cmd {
#class xiaoyao-walk-tmp kill;
#class xiaoyao-walk-tmp open;
#echo {%c%+2s等待事件「$waitfor」出现。}{light yellow};
#action {$waitfor} {
#class xiaoyao-walk-tmp kill;
#delay 1 walk;
};
#class xiaoyao-walk-tmp close;
};
$cmd;
};
#default {
#var cmd @item{Route_list;$step};
#if {"$cmd"=="stop"}{
#math step {$step+1};
#var stepaccu 1;
}; #elseif {"$cmd"=="busy1"}{
#math step {$step+1};
#var stepaccu 1;
#delay {2} {walk};
}; #else {
$cmd;
#math stepaccu {$stepaccu+1};
#math step {$step+1};
#if {$stepaccu>=${xiaoyao.accu}} {
#delay {${xiaoyao.delay_long}} {walk};
#var stepaccu 1;
};
#else {
#delay {${xiaoyao.delay_short}} {walk};
};
};
};
};
};
#else {
#nop whisper;
#var CurrentPosition $Destination;
#class walk kill;
#var critical_running 0;
#echo {%c%h} {light yellow};
#showme <efa> 抵达目的地 ...;
#echo {%c%h} {light yellow};
};
};
#nop #action {^你要对谁耳语些什么?} {
#nop #var CurrentPosition $Destination;
#nop #class walk kill;
#nop #var critical_running 0;
#nop #showme <fff>==================抵达目的地!==================;
#nop };
#alias guojiang1 {ask shao gong about 过江};
#alias guohe1 {ask shao gong about 过河};
#alias gb_andao {enter shudong;say 天堂有路你不走呀;d;%%1;};
#alias gy_yinzhe {s;w;w;e;s};
#alias meizhuang_gate {knock gate 4;knock gate 2;knock gate 5;knock gate 3};
#alias mr_mantuo {w;n;w;s;s;e;e;w;w};
#alias mr_mantuob {e;s;n;w;n;n;e;s;e};
#alias tiandihui_andao {knock guancai 3;ed;s;s;s;w;e;n;n;n;n;e};
#alias tiandihui_andaob {w;#4 s;w;n;n;e;n;s;wu};
#alias guohe3s2n {#if {"$mymenpai"=="明教"} {sw;n;ban stone;you;#alias guohe3 {n;ne}} {guohe1}};
#alias guohe3n2s {#if {"$mymenpai"=="明教"} {sw;s;ban stone;you;#alias guohe3 {s;ne}} {guohe1}};
#alias guohe3 {n;ne};
#alias taohuadao {#if {"$mymenpai"=="桃花岛"} {ride diao} {enter boat}};
#alias baituofufei {#if {"$mymenpai"=="白驼山"} {give qian 30 silver} {give qian 1 gold}};
#alias murongboat {#if {"$mymenpai"=="姑苏慕容"} {find boat} {enter boat}};
#alias shenlongboat {#if {"$mymenpai"=="神龙教"} {find boat} {enter boat}};
#alias qytoyzw {#if {$mydodgelv>120} {e;cai yanziwu} {#3 n;tan qin;row yanziwu}};
#alias qytotx {#if {$mydodgelv>120} {e;cai tingxiang} {#3 n;tan qin;row tingxiang}};
#alias gotoqinyun {#if {$mydodgelv>120} {cai qinyun} {enter boat;row qinyun}};
#alias gototingxiang {#if {$mydodgelv>120} {cai tingxiang} {enter boat;row tingxiang}};
#alias gotoyanziwu {#if {$mydodgelv>120} {cai yanziwu} {enter boat;row yanziwu}};
#action {^你沿着踏板走了上去。} {walk};
#action {^{你小心翼翼往前挪动,遇到艰险难行处,只好放慢脚步。|你还在山中跋涉,一时半会恐怕走不出这藏边群山!|青海湖畔美不胜收,你不由停下脚步,欣赏起了风景。|你还在山中跋涉,一时半会恐怕走不出这西南地绵绵群山!|你还在山中跋涉,一时半会恐怕走不出这六盘山!|山路崎岖,你不得不停下来歇歇脚。}} {#math step {$step-2}};
#action {正等着你呢,上来吧。} {#class tmp kill;enter};
#action {艄公将一块踏脚板搭上堤岸,} {#class tmp kill;enter};
#action {^%*接过你递给的船资} {
#class tmp open;
#action {^只听得江面上隐隐传来:“别急嘛,这儿正忙着呐……”} {#class tmp kill;#delay {3} {yell boat}};
#class tmp close;
};
#action {^你的车船通账上还剩%S,这一趟的船资%S。} {
#class tmp open;
#action {^只听得江面上隐隐传来:“别急嘛,这儿正忙着呐……”} {#class tmp kill;#delay {3} {yell boat}};
#class tmp close;
};
#action {^你吸了口气,一声“船家”,声音中正平和地远远传了出去。$} {
#class tmp open;
#action {^只听得江面上隐隐传来:“别急嘛,这儿正忙着呐……”} {#class tmp kill;#delay {3} {yell boat}};
#class tmp close;
};
#action {^你使出吃奶的力气喊了一声:“船家”$} {
#class tmp open;
#action {^只听得江面上隐隐传来:“别急嘛,这儿正忙着呐……”} {#class tmp kill;#delay {3} {yell boat}};
#class tmp close;
};
#var in_boat 0;
#action {江心驶去。} {
#var in_boat 1;
};
#action {^艄公说“到啦,上岸吧”,随即把一块踏脚板搭上堤岸。} {
#if {${in_boat} == 1} {
#var in_boat 0;
#var stepaccu 1;
out;walk;
};
};
#action {^你刚要前行,忽然发现江水决堤,不由暗自庆幸,还好没过去。$} {
#0;
};
#action {^你反应迅速,急忙双手抱头,身体蜷曲。眼前昏天黑地,顺着山路直滚了下去。} {#class walk kill;#var CurrentPosition qbl};
#action {^你从山上滚了下来,只觉得浑身无处不疼,还受了几处伤。} {#class walk kill;#var CurrentPosition dzf};
#action {^不知过了多久,船终于靠岸了,你累得满头大汗。} {walk};
#action {^小舟终于划到近岸,你从船上走了出来。} {walk};
#action {^绿衣少女将小船系在树枝之上,你跨上岸去。} {walk};
#action {^你定了定神,走了出来。} {walk};
#action {^你身在半空,双手乱挥,只盼能抓到什么东西,这么乱挥一阵,又下堕下百馀丈。} {walk};
#action {^你终于一步步的终于挨到了桥头} {walk};
#action {^你朝船夫挥了挥手便跨上岸去。} {walk};
#action {^你终于来到了对面,心里的石头终于落地。} {walk};
#action {^%x道:你老人家快请上船。} {#delay {3} {yell boat}};
#action {^半晌,你终于游到了对岸,随手扔掉了石块。} {guohe3;walk};
#action {^你终于飞到了%*,白雕落了下来。} {walk};
#action {^不一会儿,你来到参合庄。} {walk};
#action {^不一会儿,小船划到了岸边。} {walk};
#action {^不一会儿就到了神龙岛,你纵身跃上码头。} {walk};
#action {^不一会儿就到了天津塘沽口,你走上码头。} {walk};
#action {^你健步如飞,不一会就走到} {walk};
#action {^六名雪山弟子一齐转动机关,吊桥便又升了起来。} {walk};
#action {^艄公把踏脚板收了起来,竹篙一点,扁舟向江心驶去。} {yell boat};
#action {^大车停稳了下来%*$} {walk};
#action {^你要进入哪间储物柜?$} {
score;
#delay 1 {
xy.home;
find;
#list Route_mz_hz create {open gate}{s}{ne}{ne}{ne}{ne}{n}{e}{e}{e}{se}{s}{s}{w}{n}{enter $myid}{store ouxue pu}{store xishan tu}{store shuaiyi tie}{store guangling san}{out}{s}{e}{n}{n}{nw};
};
};
#action {^%d%s《{广陵散|率意帖|溪山行旅图|呕血谱}》$} {#list sibao add {%%1}};
#action {^柜子里目前存放的物品有:$} {
#var sibao {};
#delay {1} {
#if {@numitems{sibao}==4} {
#loop 4 1 i {getout @item{sibao;$i}};
#delay 1 {walk};
};
#else {
#showme 你的柜子里四宝不齐或有多余,无法自动前往梅庄。;
set brief 2;
};
};
};
#nop #action {看起来土匪想杀死你!} {waitfor {土匪死了。};kill tufei};
#class mlwalk open;
#alias {mlx_to_mld} {
e;#delay mlstep {
eu; #delay mlstep {
ed; #delay mlstep {
mlx_to_mld
} 5;
} 5;
} 5;
};
#alias {mld_to_mlx} {
w;#delay mlstep {
wu; #delay mlstep {
wd; #delay mlstep {
mld_to_mlx
} 5;
} 5;
} 5;
};
#action {^在你筋疲力竭之际,终于找到了出路(out)。$} {#undelay mlstep;#class mlwalk kill;walk};
#class mlwalk close;
#class walk close;
#var step 1;
#var stepmax @numitems{Route_list};
#var stepaccu 1;
set brief 3;
walk;
};
#nop ==方向变量==;
#list Directions create {e} {eu} {ed} {s} {su} {sd} {w} {wu} {wd} {n} {nu} {nd} {ne} {nw} {se} {sw} {u} {d} {enter} {out};
#list Directionsb create {w} {wd} {wu} {n} {nd} {nu} {e} {ed} {eu} {s} {sd} {su} {sw} {se} {nw} {ne} {d} {u} {out} {enter};
#nop ==路径变量==;
#list Route_yz_sd create {enter shudong;say 天堂有路你不走呀};
#list Route_sd_yz create {out};
#list Route_hz_hzbs create {se} {s} {s} {w} {n} {xy.home};
#list Route_hzbs_hz create {out} {s} {e} {n} {n} {nw};
#list Route_hz_jnqz create {se} {e} {ne} {s};
#list Route_jnqz_hz create {n} {sw} {w} {nw};
#list Route_yz_bk create {n;w};
#list Route_bk_yz create {e;s};
#list Route_yz_dp create {s;e};
#list Route_dp_yz create {w;n};
#list Route_gy_lcf create {e;e};
#list Route_lcf_gy create {w;w};
#list Route_zjc_kf create {s} {s} {s} {w} {w} {w} {w} {n} {se} {s};
#list Route_kf_zjc create {n} {nw} {s} {e} {e} {e} {e} {n} {n} {n};
#list Route_sz_mrf create {s;ne};
#list Route_mrf_sz create {sw;n};
#list Route_zjc_bj create {s;s;s;s;s;s;s;s};
#list Route_bj_zjc create {n;n;n;n;n;n;n;n};
#list Route_lanz_huangz create {w;w;w;w;nw;nw;w;w;w;s;s};
#list Route_huangz_lanz create {n;n;e;e;e;se;se;e;e;e;e};
#list Route_huangz_xx create {n;n;nw;w;wd;wd};
#list Route_xx_huangz create {eu;eu;e;se;s;s};
#list Route_lanz_hb4 create {w;w;w;w;se;se};
#list Route_hb4_lanz create {nw;nw;e;e;e;e};
#list Route_scm_cym create {s} {se} {s} {s} {s} {e} {e} {e} {ne} {se} {se};
#list Route_cym_scm create {nw} {nw} {sw} {w} {w} {w} {n} {n} {n} {nw} {n};
#list Route_cym_jk create {nw;nw;sw;sw;w;w};
#list Route_jk_cym create {e;e;ne;ne;se;se};
#list Route_jk_scm create {n;n;n;n;n;nw;n};
#list Route_scm_jk create {s;se;s;s;s;s;s};
#list Route_sz_cym create {n} {n} {n} {n} {n} {n} {nw} {n} {nw} {nw} {nw} {nw} {wu} {w};
#list Route_cym_sz create {e} {ed} {se} {se} {se} {se} {s} {se} {s} {s} {s} {s} {s} {s};
#list Route_ct_zjk create {s} {s} {s} {s} {s} {s} {s} {w} {w} {w} {w} {n} {hire} {qu zhangjiakou} {stop} {xia} {e} {n} {n} {n} {n} {n};
#list Route_zjk_ct create {s} {s} {s} {s} {s} {w} {hire} {qu beijing} {stop} {xia} {s} {e} {e} {e} {e} {n} {n} {n} {n} {n} {n} {n};
#list Route_zjk_kf create {s} {s} {s} {s} {s} {w} {hire} {qu beijing} {stop} {xia} {s} {w} {w} {w} {n} {se} {s};
#list Route_kf_zjk create {n} {nw} {s} {e} {e} {e} {n} {hire} {qu zhangjiakou} {stop} {xia} {e} {n} {n} {n} {n} {n};
#list Route_jb1_qiu create {w} {u};
#list Route_qiu_jb1 create {d} {e};
#list Route_fzl_dmy create {n} {nu} {u};
#list Route_dmy_fzl create {d} {sd} {s};
#list Route_zuo_sz create {s} {s} {sw};
#list Route_sz_zuo create {ne} {n} {n};
#list Route_wys_fz create {n} {se} {se} {sd} {s} {s} {s} {e} {n};
#list Route_fz_wys create {s} {w} {n} {n} {n} {nu} {nw} {nw} {s};
#list Route_wys_jx create {n} {n} {n};
#list Route_jx_wys create {s} {s} {s};
#list Route_wys_nc create {nw} {n} {nw} {n} {n} {n} {n} {e} {n};
#list Route_nc_wys create {s} {w} {s} {s} {s} {s} {se} {s} {se};
#list Route_wys_qz create {s} {s} {e};
#list Route_qz_wys create {w} {n} {n};
#list Route_qz_fz create {ne} {ne} {ne} {n} {n} {ne} {ne} {e} {e} {e} {e} {n};
#list Route_fz_qz create {s} {w} {w} {w} {w} {sw} {sw} {s} {s} {sw} {sw} {sw};
#list Route_jx_sz create {n} {n} {n} {n} {n};
#list Route_sz_jx create {s} {s} {s} {s} {s};
#list Route_jx_ljz create {s} {sw} {sw} {s};
#list Route_ljz_jx create {n} {ne} {ne} {n};
#list Route_jx_ys create {e} {se} {ne} {e} {ne} {ne} {e} {e} {e} {e} {e} {e} {e};
#list Route_ys_jx create {w} {w} {w} {w} {w} {w} {w} {sw} {sw} {w} {sw} {nw} {w};
#list Route_jx_th create {e} {nd} {e} {e} {e} {e} {n} {taohuadao} {stop};
#list Route_th_jx create {taohuadao} {stop} {s} {w} {w} {w} {w} {su} {w};
#list Route_sz_mr create {nw} {w} {w} {w} {w} {w} {s};
#list Route_mr_sz create {n} {e} {e} {e} {e} {e} {se};
#list Route_sz_zj create {n} {n} {n} {n} {n} {n} {nw} {n} {ne} {ne} {n} {nw} {nw} {w} {w} {w} {n};
#list Route_zj_sz create {s} {e} {e} {e} {se} {se} {s} {sw} {sw} {s} {se} {s} {s} {s} {s} {s} {s};
#list Route_mr_taih create {n} {w} {nw} {ne} {se} {n} {w} {n} {e} {e} {e} {e} {e};
#list Route_taih_gy create {e} {e} {e} {e} {enter} {nu} {nu};
#list Route_gy_taih create {sd} {sd} {out} {w} {w} {w} {w};
#list Route_taih_mr create {w} {w} {w} {w} {w} {s} {e} {s} {nw} {sw} {se} {e} {s};
#list Route_zj_jn1 create {w} {s} {w} {w} {w} {w} {nw} {nw} {e};
#list Route_jn1_zj create {w} {se} {se} {e} {e} {e} {e} {n} {e};
#list Route_jn1_jn2 create {w} {w} {w} {w} {nw} {w} {w} {w};
#list Route_jn2_jn1 create {e} {e} {e} {se} {e} {e} {e} {e};
#list Route_jn2_jn3 create {w} {sw} {sw} {sw} {w} {nw} {nw};
#list Route_jn3_jn2 create {se} {se} {e} {ne} {ne} {ne} {e};
#list Route_jn3_jn4 create {nw} {w} {w} {sw} {sw} {sw} {sw} {w} {w};
#list Route_jn4_jn3 create {e} {e} {ne} {ne} {ne} {ne} {e} {e} {se};
#list Route_jn3_jz create {se} {se} {s} {sw} {sw} {sw} {sw} {s} {e} {e};
#list Route_jz_jn3 create {w} {w} {n} {ne} {ne} {ne} {ne} {n} {nw} {nw};
#list Route_jn4_yy create {e}{e}{s}{s}{s}{s};
#list Route_yy_jn4 create {n}{n}{n}{n}{w}{w};
#list Route_yy_ty create {n}{w}{w}{w}{s}{su}{sw};
#list Route_ty_yy create {ne}{nd}{n}{e}{e}{e}{s};
#list Route_yy_jz create {n}{e}{e}{e}{ed}{se}{ed}{e}{ne}{ne}{ne}{s}{e}{e};
#list Route_jz_yy create {w}{w}{n}{sw}{sw}{sw}{w}{wu}{nw}{wu}{w}{w}{w}{s};
#list Route_wys_ywm create {n} {e} {n} {e} {ne} {n};
#list Route_ywm_wys create {s} {sw} {w} {s} {w} {s};
#list Route_jn2_ytf create {e} {sw} {se} {e};
#list Route_ytf_jn2 create {w} {nw} {ne} {w};
#list Route_nc_jz create {s} {w} {n} {n} {n} {nw} {nd} {n} {n} {n} {n} {e} {e};
#list Route_jz_nc create {w} {w} {s} {s} {s} {s} {su} {se} {s} {s} {s} {e} {n};
#list Route_sdb_sdn create {sw} {busy1} {se} {busy1} {se} {busy1} {sw} {busy1} {sw} {busy1};
#list Route_sdn_sdb create {ne} {busy1} {ne} {busy1} {nw} {busy1} {nw} {busy1} {ne} {busy1};
#list Route_cd_em create {s} {s} {s} {s} {su} {su} {su} {w} {nw} {n} {nu} {unwield all} {nu} {wield all} {n} {e} {eu} {nu} {nu};
#list Route_em_cd create {sd} {sd} {wd} {w} {s} {sd} {sd} {s} {se} {e} {nd} {nd} {nd} {n} {n} {n} {n};
#list Route_cd_tls create {s} {s} {s} {s} {su} {sw} {sw} {s} {busy1} {sw} {busy1} {sw} {sw} {wu};
#list Route_tls_cd create {ed} {ne} {ne} {busy1} {ne} {busy1} {n} {busy1} {ne} {ne} {nd} {n} {n} {n} {n};
#list Route_cd_zp create {nw} {nw} {w} {w} {busy1} {wu} {busy1} {wu} {busy1} {wu} {busy1} {nw} {busy1} {nw} {busy1} {w} {n} {n} {n};
#list Route_zp_cd create {s} {s} {s} {e} {se} {busy1} {se} {busy1} {ed} {busy1} {ed} {busy1} {ed} {busy1} {e} {e} {se} {se};
#list Route_tls_wl create {ed} {nw} {nu} {nu} {nu} {climb cliff} {stop};
#list Route_wjg_tls create {s} {se} {wu};
#list Route_tls_dl create {ed} {ne} {s} {sw} {sw} {sw} {s} {s} {s} {s} {s} {s} {s};
#list Route_dl_km create {s} {s} {s} {e} {se} {e} {se} {e} {e} {n};
#list Route_dl_tls create {n} {n} {n} {n} {n} {n} {n} {ne} {ne} {ne} {n} {sw} {wu};
#list Route_km_dl create {s} {w} {w} {nw} {w} {nw} {w} {n} {n} {n};
#list Route_km_px create {s} {e} {n} {n} {n} {n} {n} {n} {n} {ask tou about 自立为王};
#list Route_px_km create {s} {s} {s} {s} {s} {s} {s} {w} {n};
#list Route_zp_xs create {n} {n} {n} {nu} {ne} {nu} {nu} {n} {w} {w};
#list Route_xs_zp create {e} {e} {s} {sd} {sd} {sw} {sd} {s} {s} {s};
#list Route_xs_dls create {e} {e} {s} {sd} {sd} {e} {s} {enter dong} {se} {sw} {out} {sw} {wu} {nw};
#list Route_dls_xs create {se} {ed} {ne} {enter dong} {ne} {nw} {out} {n} {w} {nu} {nu} {n} {w} {w};
#list Route_xs_yz create {e} {e} {s} {sd} {sd} {e} {s} {enter dong} {se} {ne} {ne} {n} {ne} {e} {u} {out};
#list Route_yz_xs create {gb_andao 9} {sw} {s} {sw} {sw} {nw} {out} {n} {w} {nu} {nu} {n} {w} {w};
#list Route_dls_yz create {se} {ed} {ne} {enter dong} {ne} {ne} {ne} {n} {ne} {e} {u} {out};
#list Route_yz_dls create {gb_andao 9} {sw} {s} {sw} {sw} {sw} {out} {sw} {wu} {nw};
#list Route_yz_hn1 create {gb_andao 7} {n} {ne} {ne} {n} {out} {e};
#list Route_hn1_yz create {w} {enter hole} {s} {sw} {sw} {s} {s} {u} {out};
#list Route_yz_xz create {gb_andao 4} {w} {w} {w} {nw};
#list Route_xz_ca create {se} {se} {busy1} {sd} {busy1} {e} {e} {e} {e} {e} {busy1} {s} {s} {e} {n};
#list Route_ca_xz create {s} {w} {n} {n} {w} {w} {busy1}{w} {w} {w} {nu} {busy1}{nw}{busy1} {nw};
#list Route_xz_lj create {nu} {n} {n} {nu} {nu};
#list Route_lj_xz create {sd} {sd} {s} {s} {sd};
#list Route_xz_lz create {nu} {n} {w} {w} {w} {w} {w} {n} {n};
#list Route_lz_xz create {s} {s} {e} {e} {e} {e} {e} {s} {sd};
#list Route_lj_lz create {sd} {sd} {s} {w} {w} {w} {w} {w} {n} {n};
#list Route_lz_lj create {s} {s} {e} {e} {e} {e} {e} {n} {nu} {nu};
#list Route_lz_hn3 create {s} {s} {w} {w} {nw} {nw};
#list Route_hn3_lz create {se} {se} {e} {e} {n} {n};
#list Route_ca_ly create {s} {e} {e} {e} {e} {e} {e} {n} {se} {e} {e} {e} {e} {e} {ed} {e} {e} {e};
#list Route_ly_ca create {w} {w} {w} {wu} {w} {w} {w} {w} {w} {nw} {s} {w} {w} {w} {w} {w} {w} {n};
#list Route_ca_gm create {s} {s} {s} {s} {s} {s} {s} {se} {su} {sw} {sw} {w};
#list Route_gm_ca create {e} {ne} {ne} {nd} {nw} {n} {n} {n} {n} {n} {n} {n};
#list Route_gm_qzh create {s} {s} {s} {wu} {eu} {su} {s} {s} {s} {s} {s} {s} {s} {s} {s} {s} {s};
#list Route_qzh_gm create {n} {n} {n} {n} {n} {n} {n} {n} {n} {n} {n} {nd} {wd} {ed} {n} {n} {n};
#list Route_ly_qlc create {e} {e} {e} {eu} {ed} {e} {e} {e} {e} {se} {ne} {n} {w} {s} {w};
#list Route_qlc_ly create {e} {n} {e} {s} {sw} {nw} {w} {w} {w} {w} {wu} {wd} {w} {w} {w};
#list Route_ly_rz create {e} {e} {e} {eu} {ed} {e} {e} {e} {e} {se} {sw} {sw};
#list Route_rz_ly create {ne} {ne} {nw} {w} {w} {w} {w} {wu} {wd} {w} {w} {w};
#list Route_ly_hn2 create {n} {n} {n} {nu} {nd} {n} {n} {nu};
#list Route_hn2_ly create {sd} {s} {s} {su} {sd} {s} {s} {s};
#list Route_rz_ny create {se} {se} {sw} {sw};
#list Route_ny_rz create {ne} {ne} {nw} {nw};
#list Route_qlc_rz create {e} {n} {e} {s} {sw} {sw} {sw};
#list Route_rz_qlc create {ne} {ne} {ne} {n} {w} {s} {w};
#list Route_rz_xch create {se} {se};
#list Route_xch_rz create {nw} {nw};
#list Route_rz_yz create {w} {w} {nu} {w} {ne} {enter dong} {sw} {sw} {sw} {u} {out};
#list Route_yz_rz create {gb_andao 3} {ne} {ne} {u} {sw} {e} {sd} {e} {e};
#list Route_ny_xch create {ne} {ne};
#list Route_xch_ny create {sw} {sw};
#list Route_xch_hb create {e} {se} {e};
#list Route_hb_xch create {w} {nw} {w};
#list Route_hb_yz create {se} {se} {se} {s} {s} {s} {s};
#list Route_yz_hb create {n} {n} {n} {n} {nw} {nw} {nw};
#list Route_hb_qf create {ne} {ne} {ne} {ne} {ne} {e} {e} {s} {e};
#list Route_qf_hb create {w} {n} {w} {w} {sw} {sw} {sw} {sw} {sw};
#list Route_qf_yz create {e} {s} {s} {s} {s} {s} {s} {s} {s} {s};
#list Route_yz_qf create {n} {n} {n} {n} {n} {n} {n} {n} {w} {n};
#list Route_yz_ssb create {s} {s} {s} {s} {su} {wu} {wu} {n} {n} {n} {ask liang about visit};
#list Route_ssb_yz create {s} {s} {s} {ed} {ed} {nd} {n} {n} {n} {n};
#list Route_ssb_jb1 create {s} {s} {s} {ed} {ed} {se} {su} {e};
#list Route_jb1_ssb create {w} {nd} {nw} {wu} {wu} {n} {n} {n} {ask liang about visit};
#list Route_jb1_yz create {w} {nd} {nw} {nd} {n} {n} {n} {n};
#list Route_yz_jb1 create {s} {s} {s} {s} {su} {se} {su} {e};
#list Route_yz_gb create {gb_andao 2} {ne} {ne} {u};
#list Route_gb_yz create {s} {s} {w} {w} {w} {w};
#list Route_yz_xiny create {w} {w} {w} {w} {nw} {w} {w} {w} {w} {w} {n};
#list Route_xiny_yz create {s} {e} {e} {e} {e} {e} {se} {e} {e} {e} {e};
#list Route_yz_xc create {gb_andao 1} {n} {n} {u};
#list Route_xc_ny create {s} {s} {s} {s} {s} {se};
#list Route_ny_xc create {nw} {n} {n} {n} {n} {n};
#list Route_xc_qzh create {nw} {nw} {w} {nw} {nw} {n} {nw} {nu} {nu} {n} {nu} {n} {n};
#list Route_qzh_xc create {s} {s} {sd} {s} {sd} {sd} {se} {s} {se} {se} {e} {se} {se};
#list Route_ny_xy create {sw} {s} {s} {s} {s} {s} {s} {w} {w} {n};
#list Route_xy_ny create {s} {e} {e} {n} {n} {n} {n} {n} {n} {bo xiaolu} {ne};
#list Route_xy_xiny create {s} {e} {e} {e} {e} {e} {e} {e} {se} {e} {e} {e} {n};
#list Route_xiny_xy create {s} {w} {w} {w} {nw} {w} {w} {w} {w} {w} {w} {w} {n};
#list Route_wdc_wd create {wu} {nu} {nu} {nu} {w} {nu} {nu} {eu} {eu} {nu} {nu};
#list Route_wd_wdc create {n} {ask song about 下山} {s} {sd} {sd} {wd} {wd} {sd} {sd} {e} {sd} {sd} {sd} {ed};
#list Route_yz_qlc create {gb_andao 1} {n} {nw} {nw} {nw} {n} {nw} {u} {e} {s} {w};
#list Route_qlc_yz create {e} {n} {w} {enter dong} {se} {s} {se} {se} {se} {s} {s} {u} {out};
#list Route_qf_hn1 create {e} {n} {n} {n} {n} {nw} {nw} {nw};
#list Route_hn1_qf create {se} {se} {se} {s} {s} {s} {s} {w};
#list Route_xiny_jb3 create {s} {s} {s} {s} {sd} {se} {s};
#list Route_jb3_xiny create {n} {nw} {nu} {n} {n} {n} {n};
#list Route_hb3_mj create {nw} {w} {w} {w} {n} {n} {w} {w} {w} {n} {n} {w} {w} {nw} {n} {nw} {nu};
#list Route_mj_ll create {sd} {se} {s} {se} {sw} {w} {se};
#list Route_ll_mj create {nw} {e} {ne} {nw} {n} {nw} {nu};
#list Route_mj_hb3 create {sd} {se} {s} {se} {e} {e} {e} {e} {s} {s} {s} {e} {e} {e} {e} {se};
#list Route_hb3_hb2 create {ne} {ne} {ne} {e} {se} {s} {sw} {s} {s} {se} {se} {se};
#list Route_hb2_hb3 create {nw} {nw} {nw} {n} {n} {ne} {n} {nw} {w} {sw} {sw} {sw};
#list Route_hb2_jy create {n} {ne} {ne} {ne} {e} {n} {n} {w};
#list Route_jy_hb2 create {e} {s} {s} {w} {sw} {sw} {sw} {s};
#list Route_jy_zjk create {e} {n} {n} {e} {n} {n} {nu} {nu} {ne} {n} {ne} {e} {e} {e} {n} {n};
#list Route_zjk_jy create {s} {s} {w} {w} {w} {sw} {s} {sw} {sd} {sd} {s} {s} {w} {s} {s} {w};
#list Route_jy_bj create {e} {ne} {e} {e} {e} {e} {e} {e} {e} {ne} {ne} {s} {s} {e} {e} {e} {e};
#list Route_bj_jy create {w} {w} {w} {w} {n} {n} {sw} {sw} {w} {w} {w} {w} {w} {w} {w} {sw} {w};
#list Route_jy_ry create {e} {ne} {e} {e} {e} {e} {e} {e} {e} {nu} {n} {ne} {nu} {nu};
#list Route_ry_jy create {sd} {sd} {sw} {s} {sd} {w} {w} {w} {w} {w} {w} {w} {sw} {w};
#list Route_ry_bj create {sd} {sd} {sw} {s} {sd} {ne} {ne} {s} {s} {e} {e} {e} {e};
#list Route_bj_ry create {w} {w} {w} {w} {n} {n} {sw} {sw} {nu} {n} {ne} {nu} {nu};
#list Route_bj_zjk create {w} {w} {w} {w} {n} {n} {n} {n} {n} {n} {n} {n} {n} {n} {n} {n} {n} {ne} {nw} {nw} {nw} {w} {w} {w} {n} {n};
#list Route_zjk_bj create {s} {s} {e} {e} {e} {se} {se} {se} {sw} {s} {s} {s} {s} {s} {s} {s} {s} {s} {s} {s} {s} {s} {e} {e} {e} {e};
#list Route_bj_tgk create {s} {se};
#list Route_tgk_bj create {nw} {n};
#list Route_bj_hyd create {s} {sw} {n};
#list Route_hyd_bj create {s} {ne} {n};
#list Route_hb2_hb1 create {s} {e} {se} {e};
#list Route_hb1_hb2 create {w} {nw} {w} {n};
#list Route_hn3_hn2 create {ne} {ne} {ne} {e} {se} {s} {sw} {s} {s} {se} {se} {se} {e};
#list Route_hn2_hn3 create {w} {nw} {nw} {nw} {n} {n} {ne} {n} {nw} {w} {sw} {sw} {sw};
#list Route_hn2_hn1 create {e} {se} {e};
#list Route_hn1_hn2 create {w} {nw} {w};
#list Route_jb1_jb2 create {w} {w} {w} {w} {nw} {w} {w} {w};
#list Route_jb2_jb1 create {e} {e} {e} {se} {e} {e} {e} {e};
#list Route_jb2_jb3 create {w} {sw} {sw} {sw} {w} {nw} {nw};
#list Route_jb3_jb2 create {se} {se} {e} {ne} {ne} {ne} {e};
#list Route_jb3_jb4 create {nw} {w} {w} {sw} {sw} {sw} {sw} {w} {w};
#list Route_jb4_jb3 create {e} {e} {ne} {ne} {ne} {ne} {e} {e} {se};
#list Route_bt_yz create {nw} {s} {ask zhang about 扬州} {e} {s};
#list Route_yz_bt create {n} {w} {ask qian about 白驼山} {baituofufei};
#list Route_jb1_jn1 create {guojiang1} {stop};
#list Route_jb2_jn2 create {guojiang1} {stop};
#list Route_jb3_jn3 create {guojiang1} {stop};
#list Route_jb4_jn4 create {guojiang1} {stop};
#list Route_jn1_jb1 create {guojiang1} {stop};
#list Route_jn2_jb2 create {guojiang1} {stop};
#list Route_jn3_jb3 create {guojiang1} {stop};
#list Route_jn4_jb4 create {guojiang1} {stop};
#list Route_hb1_hn1 create {guohe1} {stop};
#list Route_hb2_hn2 create {guohe1} {stop};
#list Route_hb3_hn3 create {guohe3n2s} {stop};
#list Route_hn1_hb1 create {guohe1} {stop};
#list Route_hn2_hb2 create {guohe1} {stop};
#list Route_hn3_hb3 create {guohe3s2n} {stop};
#list Route_yz_skf create {n} {n} {n} {e};
#list Route_skf_yz create {w} {s} {s} {s};
#list Route_ly_xf create {n} {w} {u};
#list Route_xf_ly create {d} {e} {s};
#list Route_ly_wat create {s} {s} {s} {w} {w} {w} {nw} {nw} {nw} {n} {n} {n} {n} {n} {nd} {nw} {nw};
#list Route_wat_ly create {se} {se} {su} {s} {s} {s} {s} {s} {se} {se} {se} {e} {e} {e} {n} {n} {n};
#list Route_ly_tdh create {s} {s} {s} {e} {e} {e} {n} {e} {e} {busy1} {tiandihui_andao};
#list Route_tdh_ly create {tiandihui_andaob} {busy1} {w} {w} {s} {w} {w} {w} {n} {n} {n};
#list Route_xz_lvz create {se} {sw} {nw} {nw} {sw} {se} {ne};
#list Route_lvz_xz create {ne} {nw};
#list Route_hn4_hn3 create {ne} {ne} {ne};
#list Route_hn3_hn4 create {sw} {sw} {sw};
#list Route_hn4_hb4 create {guohe1} {stop};
#list Route_hb4_hn4 create {guohe1} {stop};
#list Route_hb4_hb3 create {ne} {ne} {ne};
#list Route_hb3_hb4 create {sw} {sw} {sw};
#list Route_hb4_mgk create {sw} {w} {w} {nw} {climb mount} {w} {enter hole};
#list Route_mgk_hb4 create {n} {e} {ne} {se} {e} {e} {ne};
#list Route_bj_zf create {e} {e} {e} {e} {e} {n} {n} {n} {n} {n} {n} {n} {e} {ne} {n} {n};
#list Route_zf_bj create {s} {s} {sw} {w} {s} {s} {s} {s} {s} {s} {s} {w} {w} {w} {w} {w};
#list Route_qf_dzf create {e} {n} {n} {n} {n} {ne} {e} {ne} {n} {n};
#list Route_dzf_qf create {s} {s} {sw} {w} {sw} {s} {s} {s} {s} {w};
#list Route_hn1_dzf create {se} {se} {se} {ne} {e} {ne} {n} {n};
#list Route_dzf_hn1 create {s} {s} {sw} {w} {sw} {nw} {nw} {nw};
#list Route_dzf_tais create {nu} {nu} {nu} {eu} {nu} {nu} {nu} {nu} {nu} {nu};
#list Route_tais_dzf create {sd} {sd} {sd} {sd} {sd} {sd} {wd} {sd} {sd} {sd};
#list Route_zp_qbl create {w} {w} {w} {nw} {ne} {w} {nw};
#nop #list Route_qbl_dls create {wu} {wd} {goto.clear {bao}} {stop} {wu} {nu} {ne} {se} {eu} {nw};
#nop #list Route_dls_qbl create {se} {wd} {nw} {sw} {sd} {ed} {goto.clear {bao}} {stop} {eu} {ed};
#list Route_qbl_dls create {wu} {wd} {wu} {nu} {ne} {se} {eu} {nw};
#list Route_dls_qbl create {se} {wd} {nw} {sw} {sd} {ed} {eu} {ed};
#list Route_qbl_zp create {se} {e} {sw} {se} {e} {e} {e};
#list Route_wd_tyc create {ed} {e} {e} {ed} {sd} {ed} {sd} {ed} {e} {e};
#list Route_tyc_wd create {w} {w} {wu} {nu} {wu} {nu} {wu} {w} {w} {wu};
#nop #list Route_wd_tzf create {sd} {wu} {wu} {nu} {wu} {nu} {eu} {eu} {eu};
#nop #list Route_tzf_wd create {wd} {wd} {wd} {sd} {ed} {sd} {ed} {ed} {nu};
#list Route_wd_tzf create {n;{ask song about 下山};s;sd;eu;e;e;e;eu;eu;eu;e;e;e;eu;eu;eu;ne;nu;nw;nu;ne;eu;se;u;nu;eu;su;wu;u;eu;nu;eu;ne;nu;nw;nu;ne;eu;se;u;nu;eu;su;wu;u;nu;nu;wu;nu;nw;wu;sw;nu;eu;su;wu;u;nu;nw;wu;sw;nu;eu;su;wu;u;nu;nw;wu;sw;nu;eu;su;wu;u;wu;sw;nu;nu;nu;nu;nu;nu;nu;nu};
#list Route_tzf_wd create {sd;sd;sd;sd;sd;sd;sd;sd;ne;ed;d;ed;nd;wd;sd;ne;ed;se;sd;d;ed;nd;wd;sd;ne;ed;se;sd;d;ed;nd;wd;sd;ne;ed;se;sd;ed;sd;sd;d;ed;nd;wd;sd;d;nw;wd;sw;sd;se;sd;sw;wd;sd;wd;d;ed;nd;wd;sd;d;nw;wd;sw;sd;se;sd;sw;wd;wd;wd;w;w;w;wd;wd;wd;w;w;w;wd;nu};
#list Route_km_mlx create {s}{e}{e}{e}{e}{ne}{eu}{eu};
#list Route_mlx_km create {wd}{wd}{sw}{w}{w}{w}{w}{n};
#list Route_cd_sdn create {se} {se} {e} {e};
#list Route_sdn_cd create {w} {w} {nw} {nw};
#list Route_sdb_yy create {ed}{e}{n}{e}{e}{e}{s};
#list Route_yy_sdb create {n}{w}{w}{w}{s}{w}{wu};
#list Route_ty_tz create {sw} {s} {sw} {w} {nw} {nu} {nu} {nu} {nu};
#list Route_tz_ty create {sd} {sd} {sd} {sd} {se} {e} {ne} {n} {ne};
#list Route_ty_yg create {e} {sw} {s} {e} {n} {w} {s} {s} {w};
#list Route_yg_ty create {out} {ne} {w};
#list Route_yy_mlb create {s}{s}{su}{su}{su};
#list Route_mlb_nc create {ed} {ed} {ed} {e} {e} {e} {e} {n};
#list Route_nc_mlb create {s} {w} {w} {w} {w} {wu} {wu} {wu};
#list Route_mlb_yy create {nd}{nd}{nd}{n}{n};
#list Route_nc_llx create {s} {e} {e} {eu} {eu};
#list Route_llx_nc create {wd} {wd} {w} {w} {n};
#list Route_jz_pyh create {w} {w} {s} {s} {s} {s} {e};
#list Route_pyh_jz create {w} {n} {n} {n} {n} {e} {e};
#list Route_jx_gjc create {e} {nd} {ask chou diao about 独孤求败} {nu} {se};
#list Route_gjc_jx create {nw} {sd} {sd} {su} {w};
#list Route_cz_yz create {u} {w} {n} {n};
#list Route_yz_cz create {s} {s} {e} {d};
#list Route_yz_bxs create {n} {n} {e} {u};
#list Route_bxs_yz create {d} {w} {s} {s};
#list Route_qy_yzw create {n} {e} {e} {qytoyzw} {stop} {w} {n} {n} {n} {n};
#list Route_yzw_qy create {s} {s} {s} {s} {e} {gotoqinyun} {stop} {w} {w} {w} {s};
#list Route_qy_tx create {n} {e} {e} {qytotx} {stop} {w} {n} {w} {nw} {n} {n} {w};
#list Route_tx_qy create {e} {s} {s} {se} {e} {s} {e} {gotoqinyun} {stop} {w} {w} {w} {s};
#list Route_yzw_tx create {s} {s} {s} {s} {e} {gototingxiang} {stop} {w} {n} {w} {nw} {n} {n} {w};
#list Route_tx_yzw create {e} {s} {s} {se} {e} {s} {e} {gotoyanziwu} {stop} {w} {n} {n} {n} {n};
#list Route_qy_mt create {n} {e} {e} {n} {n} {n} {play qin} {row mantuo} {stop} {mr_mantuo} {w};
#list Route_mt_qy create {e} {e} {mr_mantuob} {enter boat} {stop} {w} {w} {w} {s};
#list Route_qy_mr create {n} {e} {e} {e} {murongboat} {stop};
#list Route_mr_qy create {ask girl about 拜庄} {murongboat} {stop} {w} {w} {w} {s};
#list Route_yz_rbz create {s} {e} {s};
#list Route_rbz_yz create {n} {w} {n};
#list Route_yz_bs create {s} {s} {s} {w} {xy.home};
#list Route_bs_yz create {out} {e} {n} {n} {n};
#list Route_zp_qhn create {n} {n} {ne} {e} {nd} {n} {n} {e};
#list Route_qhn_zp create {s} {w} {s} {su} {w} {sw} {s} {s};
#list Route_lz_qhb create {s} {s} {s} {s} {s} {s} {s};
#list Route_qhb_lz create {n} {n} {n} {n} {n} {n} {n};
#list Route_qhb_qhn create {sw} {busy1} {s} {busy1} {sw} {busy1};
#list Route_qhn_qhb create {ne} {busy1} {n} {busy1} {ne} {busy1};
#list Route_yinz_taih create {n} {n} {n} {n} {n} {n};
#list Route_taih_yinz create {s} {gy_yinzhe};
#list Route_hmy_ry create {s} {out} {s} {enter lou} {stop} {s} {s} {s} {s};
#list Route_ry_hmy create {n} {n} {n} {n} {enter lou} {stop} {n} {enter} {n};
#list Route_wl_gd create {climb yafeng};
#list Route_gd_yb create {s} {s} {sw} {sw} {sw} {s} {e} {n} {w} {n};
#list Route_yb_gd create {s} {ne} {ne} {ne} {n} {n};
#list Route_gd_fd create {s} {s} {s} {push stone} {s} {e} {ed} {ed} {push men} {e} {e};
#list Route_fd_wjg create {w} {s} {out} {guo qiao} {stop};
#list Route_tls_wjg create {ed} {nw} {n};
#list Route_sy_fengd create {s} {nw} {busy1} {nu} {n} {n} {nu} {eu} {n} {nu} {nu} {nu} {wu} {nu};
#list Route_fengd_sy create {sd} {ed} {sd} {sd} {sd} {s} {wd} {sd} {s} {s} {sd} {se} {n};
#list Route_sy_sld create {s} {nw} {s} {wd} {sd} {sd} {busy1} {w} {w} {w} {w} {w} {w};
#list Route_sld_sy create {e} {e} {e} {e} {e} {e} {e} {e} {e} {e} {e} {nu} {nu} {eu} {n} {se} {n};
#list Route_sld_tgk create {s} {shenlongboat} {stop};
#list Route_tgk_sld create {ask chuan fu about 出海} {shenlongboat} {stop} {n};
#list Route_fds_yz create {enter} {u};
#list Route_yz_fds create {d} {out};
#list Route_lj_dzt create {zou tiesuo} {stop} {nw} {ne} {nu} {nu} {n} {n};
#list Route_dzt_lj create {s} {s} {sd} {sd} {sw} {se} {zou tiesuo} {stop};
#list Route_ddj_ly create {out} {s} {e};
#list Route_ly_ddj create {w} {n} {enter};
#list Route_wm_yz create {e} {s} {s};
#list Route_yz_wm create {n} {n} {w};
#list Route_ny_ly create {n} {n} {n} {n} {n} {n} {n};
#list Route_ly_ny create {s} {s} {s} {s} {s} {s} {s};
#list Route_gw_shg create {s} {s} {s} {s} {s} {s} {sw} {s} {sw} {sw} {sw} {sw} {ask jiang about 入关};
#list Route_shg_bj create {se} {sw} {sw} {sw} {sw} {s} {s} {s} {e} {e} {s} {s} {s} {s} {s} {s} {s} {s} {s} {s} {s} {w} {w} {w} {w} {w};
#list Route_bj_shg create {e} {e} {e} {e} {e} {n} {n} {n} {n} {n} {n} {n} {n} {n} {n} {n} {w} {w} {n} {n} {n} {ne} {ne} {ne} {ne} {nw};
#list Route_shg_gw create {ask jiang about 出关} {ne} {ne} {ne} {ne} {n} {ne} {n} {n} {n} {n} {n} {n};
#list Route_xc_cll create {e} {e} {e} {e} {e} {se} {su} {eu} {su} {eu} {su} {su};
#list Route_cll_xc create {nd} {nd} {wd} {nd} {wd} {nd} {nw} {w} {w} {w} {w} {w};
#list Route_cll_hs create {sd} {su} {s} {s} {s} {w} {w};
#list Route_hs_cll create {e} {e} {n} {n} {n} {nd} {nu};
#list Route_cll_ly create {n} {nd} {nd} {nd} {nd} {n} {n} {se} {e} {e} {e} {e} {e} {ed} {e} {e} {e};
#list Route_ly_cll create {w} {w} {w} {wu} {w} {w} {w} {w} {w} {nw} {s} {s} {su} {su} {su} {su} {s};
#list Route_cll_ca create {n} {nd} {nd} {nd} {nd} {n} {w} {w} {w} {w} {w} {w} {n};
#list Route_ca_cll create {s} {e} {e} {e} {e} {e} {e} {s} {su} {su} {su} {su} {s};
#list Route_xx_txg create {n} {nd} {n} {n} {juan zhulian} {e} {eu} {ed} {e} {ne} {e} {s};
#list Route_txg_xx create {n} {w} {sw} {w} {wu} {wd} {w} {s} {s} {s} {su} {s};
#list Route_hb1_py create {w} {ne} {nw};
#list Route_py_hb1 create {se} {sw} {e};
#list Route_py_bj create {n} {ne} {ne} {n};
#list Route_bj_py create {s} {sw} {sw} {s};
#list Route_py_hyd create {n} {ne} {n};
#list Route_hyd_py create {s} {sw} {s};
#list Route_qfa_em create {s} {s} {sd} {ed} {sd} {sd} {sd} {s} {wd};
#list Route_em_qfa create {eu} {n} {nu} {nu} {nu} {wu} {nu} {n} {n};
#list Route_dls_xkt create {knock gate} {busy1} {nu} {nu} {n} {n} {nd};
#list Route_xkt_dls create {su} {s} {s} {sd} {pull gate} {sd};
#list Route_rz_sl create {w} {nu} {nu} {wu} {nu} {nu} {nu} {e};
#list Route_sl_rz create {w} {sd} {sd} {sd} {ed} {sd} {sd} {e};
#list Route_xy_jzh create {s} {e} {e} {s} {s} {s} {s} {s} {s} {s} {s} {s} {s} {s};
#list Route_jzh_jb4 create {s} {se} {s} {w};
#list Route_jb4_jzh create {e} {n} {nw} {n};
#list Route_jzh_xy create {n} {n} {n} {n} {n} {n} {n} {n} {n} {n} {n} {w} {w} {n};
#list Route_xs_lxc create {yell bridge} {n} {sheng bridge} {stop} {n} {n} {n} {n} {nu} {n};
#list Route_lxc_xs create {s} {sd} {s} {s} {s} {s} {jiang bridge} {s};
#list Route_sl_fzl create {unwield all} {eu} {wield all} {nu} {nu} {nu} {n} {knock gate} {n} {n} {nu} {n} {n} {n} {nu} {n} {n};
#list Route_fzl_sl create {s} {s} {sd} {s} {s} {s} {sd} {s} {open gate} {s} {s} {sd} {sd} {sd} {wd};
#list Route_gm_ha create {e} {ne} {ne} {e} {swim river} {n} {n} {e} {n} {n} {w} {w} {n} {n};
#list Route_ha_gm create {s} {s} {s} {s} {out} {w} {sw} {sw} {w};
#list Route_ms_xt create {u} {out} {juan picture} {s} {s} {e} {n} {n} {n} {n};
#list Route_xt_gm create {s} {s} {s} {s} {s} {ban stone} {s};
#list Route_ha_ms create {e} {n} {w} {ban stone} {w} {w};
#list Route_jyg_hb4 create {se} {e} {se} {e} {e} {ne};
#list Route_hb4_jyg create {sw} {w} {w} {nw} {w} {nw};
#list Route_xz_txg create {nw} {zuan} {nw} {w} {n};
#list Route_txg_xz create {s} {jump well} {se} {se} {se};
#list Route_jmg_cd create {sd} {s} {s} {s} {s};
#list Route_cd_jmg create {n} {n} {n} {n} {nu};
#list Route_hanz_xz create {nw} {nu} {nd} {ne} {nu} {ne} {busy1} {nw} {busy1}{nw};
#list Route_xz_hanz create {se} {se} {busy1} {sw} {busy1} {sd} {sw} {su} {sd} {se};
#list Route_hanz_ca create {e} {e} {ne} {ne} {ne} {ne} {n} {n} {n} {n} {n} {n} {n};
#list Route_ca_hanz create {s} {s} {s} {s} {s} {s} {s} {sw} {sw} {sw} {sw} {w} {w};
#list Route_hn2_ca create {w} {nw} {sw} {s} {e} {e} {e} {s} {s} {s} {s} {w} {w} {w} {s} {s} {w} {w} {n};
#list Route_ca_hn2 create {s} {e} {e} {n} {n} {e} {e} {e} {n} {n} {n} {n} {w} {w} {w} {n} {ne} {se} {e};
#list Route_hanz_jmg create {su} {busy1} {sw} {busy1} {se} {busy1} {su} {busy1};
#list Route_jmg_hanz create {nd} {busy1} {nw} {busy1} {ne} {busy1} {nd} {busy1};
#list Route_jx_zym create {w} {nu} {nw} {nw} {n} {nw} {w} {nw} {nw} {n};
#list Route_zym_jx create {s} {se} {se} {e} {se} {s} {se} {se} {sd} {e};
#list Route_xiny_xch create {n} {n} {n} {n} {n};
#list Route_xch_xiny create {s} {s} {s} {s} {s};
#list Route_xy_zz create {s} {w} {w} {w} {w} {w} {w} {w} {w} {w} {n};
#list Route_zz_xy create {s} {e} {e} {e} {e} {e} {e} {e} {e} {e} {n};
#list Route_zz_wdc create {s} {w} {w} {s} {sw} {w} {w} {nw} {w} {w} {w};
#list Route_wdc_zz create {e} {e} {e} {se} {e} {e} {ne} {n} {e} {e} {n};
#list Route_nc_zx create {s} {w} {w} {w} {w} {wu} {wu} {nu} {enter};
#list Route_zx_nc create {out} {sd} {ed} {ed} {e} {e} {e} {e} {n};
#list Route_qq_yz create {s} {w} {w} {w};
#list Route_yz_qq create {e} {e} {e} {n};
#list Route_sz_xyz create {n} {n} {sw};
#list Route_xyz_sz create {ne} {s} {s};
#list Route_yz_yiz create {s} {s} {s} {w} {s};
#list Route_yiz_yz create {n} {e} {n} {n} {n};
#list Route_hz_tdf create {se}{s}{s}{s}{w}{s}{e}{s}{w};
#list Route_tdf_hz create {e}{n}{w}{n}{e}{n}{n}{n}{nw};
#list Route_hz_hhh create {se}{w}{s}{w}{sw}{w}{nw}{n}{e}{enter boat}{stop}{w}{w}{w}{w}{w}{w};
#list Route_hhh_hz create {e}{e}{e}{enter boat}{stop}{w}{s}{se}{e}{ne}{e}{n}{e}{nw};
#list Route_hz_wys create {e}{e}{e}{e}{e}{e}{e}{e}{ne}{e}{ne}{s};
#list Route_wys_hz create {n}{sw}{w}{sw}{w}{w}{w}{w}{w}{w}{w}{w};
#list Route_hz_zym create {n}{n}{n}{n}{n}{ne}{n}{n}{n}{nw}{nw}{n};
#list Route_zym_hz create {s}{se}{se}{s}{s}{s}{sw}{s}{s}{s}{s}{s};
#list Route_hz_xh create {w}{w}{w}{s}{sw}{sw}{sw};
#list Route_xh_hz create {ne}{ne}{ne}{n}{e}{e}{e};
#list Route_xh_hhh create {nw}{n}{w}{s}{se}{e}{enter boat}{stop}{w}{w}{w}{w}{w}{w};
#list Route_hhh_xh create {e}{e}{e}{enter boat}{stop}{w}{nw}{n}{e}{s}{se};
#list Route_tdf_lld create {e}{su}{wu};
#list Route_lld_tdf create {ed}{nd}{w};
#list Route_mz_hz create {open gate}{s}{ne}{ne}{ne}{ne}{n}{e}{e}{e}{se}{s}{s}{w}{n}{xy.home}{store ouxue pu}{store xishan tu}{store shuaiyi tie}{store guangling san}{out}{s}{e}{n}{n}{nw};
#list Route_hz_mz create {se}{s}{s}{w}{n}{xy.home}{find}{stop}{out}{s}{e}{n}{w}{w}{sw}{w}{nw}{n}{nw}{n}{e}{s}{se}{sw}{meizhuang_gate};
#list Route_cd_yy create {nw}{nw}{n}{hire}{qu yueyang}{stop}{xia}{w}{s}{s};
#list Route_yy_cd create {n}{n}{e}{hire}{qu chengdu}{stop}{xia}{s}{se}{se};