-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmapinfo.txt
More file actions
637 lines (635 loc) · 8.06 KB
/
mapinfo.txt
File metadata and controls
637 lines (635 loc) · 8.06 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
// ------------KeyValue English-----------
//
// "tank_ban_flow" //ban tank flow
// {
// "Before elevator exit" //Whatever name
// {
// //Plugin will not spawn tank in 38~79%
// "min" "38"
// "max" "79"
// }
// "Early spawns" //Whatever name
// {
// //Plugin will not spawn tank in 0~24%
// "min" "0"
// "max" "24"
// }
// }
//
// "witch_ban_flow" //ban witch flow
// {
//
// "Event" //Whatever name
// {
// //Plugin will not spawn Witch in 53~75%
// "min" "53"
// "max" "75"
// }
// }
//
// // If 1, plugin will not spawn tank in this map
// "tank_map_off" "1"
//
// // Only set 1 if this map has its own tank static spawn, for example: c7m1, c13m2
// "static_tank_map" "1"
//
// // If 1, plugin will not spawn witch in this map
// "witch_map_off" "1"
// // Only set 1 if this map has its own witch static spawn, for example: c6m1
// "static_witch_map" "1"
//
// // If 1, spawn bride witch model instead
// "witch_bride_map" "1"
//
//
// ------------可寫入的參數 中文說明-----------
//
// 每一張地圖都有地形或地圖問題
// 在某些路段生成Tank/Witch會導致Tank/Witch卡住或對人類來說過於艱難生存
// 因此需要禁止某些路段生成Tank/Witch
// (譬如c1m1 Tank生在電梯事件之前一樓樓層無法上來,C2M3 雲霄飛車無限屍潮期間生成Tank)
//
// "tank_ban_flow" //禁止插件生成Tank的路段
// {
// "Before elevator exit" //名稱自取,不重要
// {
// //插件不會在 38~79% 生成Tank
// "min" "38"
// "max" "79"
// }
//
// "Early spawns" //名稱自取,不重要
// {
// //插件不會在 0~24% 生成Tank
// "min" "0"
// "max" "24"
// }
// }
//
// "witch_ban_flow" //禁止插件生成Witch的路段
// {
// "Event" //名稱自取,不重要
// {
// //插件不會在 0~24% 生成Witch
// "min" "53"
// "max" "75"
// }
// }
//
// // 為1時, 插件不會在此地圖生成Tank
// "tank_map_off" "1"
//
// // 如果地圖有自己固定生成的Tank,則設為1,譬如關卡: c7m1, c13m2
// "static_tank_map" "1"
//
// // 為1時, 插件不會在此地圖生成Witch
// "witch_map_off" "1"
//
// // 如果地圖有自己固定生成的Witch,則設為1,譬如關卡: c6m1
// "static_witch_map" "1"
//
// // 為1時, 插件生成的Witch改成新娘模組
// "witch_bride_map" "1"
"MapInfo"
{
"c1m1_hotel"
{
"tank_ban_flow"
{
"Before elevator exit"
{
"min" "38"
"max" "79"
}
"Early spawns"
{
"min" "0"
"max" "24"
}
}
}
"c1m2_streets"
{
"tank_ban_flow"
{
"One way drop"
{
"min" "49"
"max" "55"
}
}
}
"c1m3_mall"
{
"tank_ban_flow"
{
"Event escalators"
{
"min" "64"
"max" "68"
}
}
"witch_ban_flow"
{
"Event"
{
"min" "53"
"max" "75"
}
}
}
"c1m4_atrium"
{
"tank_map_off" "1"
"witch_map_off" "1"
}
"c2m1_highway"
{
"witch_ban_flow"
{
"One way drop platforms"
{
"min" "71"
"max" "73"
}
}
}
"c2m2_fairgrounds"
{
"witch_ban_flow"
{
"Ladder"
{
"min" "54"
"max" "58"
}
"Start of event"
{
"min" "78"
"max" "87"
}
}
}
"c2m3_coaster"
{
"tank_ban_flow"
{
"Coaster Start"
{
"min" "56"
"max" "100"
}
}
"witch_ban_flow"
{
"Start of coaster"
{
"min" "53"
"max" "70"
}
}
}
"c2m4_barns"
{
"witch_ban_flow"
{
"Event 2nd stage"
{
"min" "83"
"max" "100"
}
}
}
"c3m1_plankcountry"
{
"tank_ban_flow"
{
"Before ferry (bugged spawn)"
{
"min" "45"
"max" "62"
}
}
}
"c4m1_milltown_a"
{
"tank_ban_flow"
{
"Early spawns"
{
"min" "0"
"max" "20"
}
}
}
"c4m2_sugarmill_a"
{
"tank_ban_flow"
{
"Field"
{
"min" "80"
"max" "100"
}
}
"witch_ban_flow"
{
"Field"
{
"min" "80"
"max" "100"
}
}
}
"c4m3_sugarmill_b"
{
"tank_ban_flow"
{
"Elevator"
{
"min" "30"
"max" "36"
}
}
"witch_ban_flow"
{
"Field and elevator"
{
"min" "0"
"max" "29"
}
}
}
"c4m4_milltown_b"
{
"witch_ban_flow"
{
"Ladder"
{
"min" "33"
"max" "54"
}
}
}
"c4m5_milltown_escape"
{
"tank_map_off" "1"
"witch_map_off" "1"
}
"c5m1_waterfront"
{
"tank_ban_flow"
{
"Early spawns"
{
"min" "0"
"max" "38"
}
}
}
"c5m2_park"
{
"tank_ban_flow"
{
"CEDA trailer"
{
"min" "49"
"max" "54"
}
}
}
"c5m3_cemetery"
{
"tank_ban_flow"
{
"Sewer and parking lot"
{
"min" "54"
"max" "70"
}
}
"witch_ban_flow"
{
"Bus"
{
"min" "0"
"max" "29"
}
"Sewer and early parking lot"
{
"min" "52"
"max" "63"
}
}
}
"c5m4_quarter"
{
"tank_ban_flow"
{
"Last one way drop"
{
"min" "80"
"max" "100"
}
}
}
"c5m5_bridge"
{
"tank_map_off" "1"
"witch_map_off" "1"
}
"c6m1_riverbank"
{
"witch_map_off" "1"
"static_witch_map" "1"
"witch_bride_map" "1"
}
"c6m2_bedlam"
{
"tank_ban_flow"
{
"Event (bugged spawn)"
{
"min" "74"
"max" "100"
}
}
}
"c6m3_port"
{
"tank_map_off" "1"
"witch_map_off" "1"
}
"c7m1_docks"
{
"tank_map_off" "1"
"static_tank_map" "1"
}
"c7m2_barge"
{
"tank_ban_flow"
{
"Event (bugged spawn)"
{
"min" "72"
"max" "78"
}
}
}
"c7m3_port"
{
"tank_map_off" "1"
"witch_map_off" "1"
}
"c8m3_sewers"
{
"tank_ban_flow"
{
"Late warehouse and before one way drop"
{
"min" "50"
"max" "70"
}
"During event"
{
"min" "29"
"max" "35"
}
"Early spawns"
{
"min" "0"
"max" "22"
}
}
"witch_ban_flow"
{
"Ladder"
{
"min" "84"
"max" "100"
}
}
}
"c8m4_interior"
{
"tank_ban_flow"
{
"Before elevator (bugged spawn)"
{
"min" "42"
"max" "81"
}
}
}
"c8m5_rooftop"
{
"tank_ban_flow"
{
"Early spawn"
{
"min" "0"
"max" "45"
}
}
}
"c10m1_caves"
{
"witch_ban_flow"
{
"Ladders"
{
"min" "29"
"max" "35"
}
}
}
"c10m4_mainstreet"
{
"tank_ban_flow"
{
"Start of event"
{
"min" "68"
"max" "75"
}
}
}
"c11m4_terminal"
{
"witch_ban_flow"
{
"Behind fence"
{
"min" "31"
"max" "43"
}
}
}
"c12m1_hilltop"
{
"tank_ban_flow"
{
"Early spawns"
{
"min" "0"
"max" "50"
}
}
}
"c12m3_bridge"
{
"tank_ban_flow"
{
"Late spawns (bugged spawn)"
{
"min" "81"
"max" "100"
}
}
}
"c12m4_barn"
{
"tank_ban_flow"
{
"Warehouse"
{
"min" "39"
"max" "54"
}
}
}
"c12m5_cornfield"
{
"tank_ban_flow"
{
"After one way drop"
{
"min" "80"
"max" "100"
}
}
}
"c13m1_alpinecreek"
{
"tank_ban_flow"
{
"After one way drop"
{
"min" "87"
"max" "100"
}
}
}
"c13m2_southpinestream"
{
"tank_map_off" "1"
"static_tank_map" "1"
"tank_ban_flow"
{
"Event"
{
"min" "82"
"max" "100"
}
}
}
"c13m3_memorialbridge"
{
"tank_ban_flow"
{
"Event and bridge descent"
{
"min" "52"
"max" "64"
}
}
}
"c13m4_cutthroatcreek"
{
"tank_map_off" "1"
"witch_map_off" "1"
}
"c14m2_lighthouse"
{
"tank_ban_flow"
{
"Early spawns"
{
"min" "0"
"max" "30"
}
}
}
"l4d_vs_hospital04_interior"
{
"tank_ban_flow"
{
"Elevator"
{
"min" "46"
"max" "80"
}
}
}
"l4d_vs_airport01_greenhouse"
{
"tank_ban_flow"
{
"Before Green House"
{
"min" "0"
"max" "35"
}
}
}
"l4d_vs_airport05_runway"
{
"tank_ban_flow"
{
"Before Plane"
{
"min" "0"
"max" "49"
}
"After Plane"
{
"min" "56"
"max" "100"
}
}
"witch_ban_flow"
{
"Before Plane"
{
"min" "0"
"max" "49"
}
"After Plane"
{
"min" "66"
"max" "100"
}
}
}
"l4d_vs_farm01_hilltop"
{
"tank_ban_flow"
{
"Too early"
{
"min" "0"
"max" "34"
}
}
}
"l4d_river01_docks"
{
"static_tank_map" "1"
"tank_map_off" "1"
}
"l4d_river03_port"
{
"tank_map_off" "1"
"witch_map_off" "1"
}
}