forked from Elfocrash/L2dotNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoren.xml
More file actions
3574 lines (3029 loc) · 187 KB
/
Copy pathoren.xml
File metadata and controls
3574 lines (3029 loc) · 187 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"?>
<null>
<list>
<territory name='oren21_2220_doma01' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='85439 95696 -3512 -3112'/>
<zone loc='84086 95526 -3512 -3112'/>
<zone loc='83051 95004 -3512 -3112'/>
<zone loc='83248 92984 -3512 -3112'/>
<zone loc='85144 92799 -3512 -3112'/>
<zone loc='89859 93553 -3512 -3112'/>
<zone loc='86919 95409 -3512 -3112'/>
</territory>
<territory name='oren21_2220_doma02' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='87160 89628 -3380 -3080'/>
<zone loc='90161 89872 -3380 -3080'/>
<zone loc='90176 93580 -3380 -3080'/>
<zone loc='85156 92788 -3380 -3080'/>
</territory>
<territory name='oren21_2220_doma03' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='90194 90193 -3548 -3148'/>
<zone loc='94901 90359 -3548 -3148'/>
<zone loc='94883 91074 -3548 -3148'/>
<zone loc='95510 91111 -3548 -3148'/>
<zone loc='94697 92266 -3548 -3148'/>
<zone loc='92940 93410 -3548 -3148'/>
<zone loc='90191 93580 -3548 -3148'/>
</territory>
<territory name='oren21_2220_doma04' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='89982 86149 -3680 -3180'/>
<zone loc='94225 86887 -3680 -3180'/>
<zone loc='96014 88663 -3680 -3180'/>
<zone loc='95948 89758 -3680 -3180'/>
<zone loc='95591 90355 -3680 -3180'/>
<zone loc='90307 90177 -3680 -3180'/>
<zone loc='90295 87920 -3680 -3180'/>
</territory>
<territory name='oren21_2220_doma05' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='89934 82096 -3788 -3288'/>
<zone loc='94266 82945 -3788 -3288'/>
<zone loc='94058 84326 -3788 -3288'/>
<zone loc='93810 86699 -3788 -3288'/>
<zone loc='90142 86074 -3788 -3288'/>
<zone loc='89755 83657 -3788 -3288'/>
</territory>
<territory name='oren21_2220_doma06' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='94708 78626 -3644 -3044'/>
<zone loc='94588 80744 -3644 -3044'/>
<zone loc='94050 81312 -3644 -3044'/>
<zone loc='94190 82850 -3644 -3044'/>
<zone loc='89935 81964 -3644 -3044'/>
<zone loc='90070 80363 -3644 -3044'/>
<zone loc='90082 78122 -3644 -3044'/>
</territory>
<territory name='oren21_2220_doma07' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='90067 74941 -3640 -3040'/>
<zone loc='92412 73948 -3640 -3040'/>
<zone loc='94417 75628 -3640 -3040'/>
<zone loc='94604 78552 -3640 -3040'/>
<zone loc='90078 78075 -3640 -3040'/>
<zone loc='90098 76282 -3640 -3040'/>
</territory>
<territory name='oren21_2220_doma08' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='83278 81946 -3780 -3180'/>
<zone loc='84183 78534 -3780 -3180'/>
<zone loc='90000 80347 -3780 -3180'/>
<zone loc='89686 83454 -3780 -3180'/>
<zone loc='87995 82844 -3780 -3180'/>
<zone loc='87447 82420 -3780 -3180'/>
<zone loc='86586 82269 -3780 -3180'/>
</territory>
<territory name='oren21_2220_doma09' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='84713 76214 -3752 -3252'/>
<zone loc='90051 76279 -3752 -3252'/>
<zone loc='90023 80279 -3752 -3252'/>
<zone loc='84214 78459 -3752 -3252'/>
</territory>
<territory name='oren21_2220_doma10' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='89999 73969 -3716 -3116'/>
<zone loc='90071 76239 -3716 -3116'/>
<zone loc='84745 76174 -3716 -3116'/>
<zone loc='85418 73245 -3716 -3116'/>
<zone loc='86572 72032 -3716 -3116'/>
<zone loc='87844 71986 -3716 -3116'/>
<zone loc='88920 73066 -3716 -3116'/>
<zone loc='88848 74410 -3716 -3116'/>
<zone loc='88848 74410 -3716 -3116'/>
</territory>
<territory name='oren21_2220_doma11' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='79693 78474 -3780 -3080'/>
<zone loc='84126 78442 -3780 -3080'/>
<zone loc='83204 82112 -3780 -3080'/>
<zone loc='83012 83447 -3780 -3080'/>
<zone loc='80916 83668 -3780 -3080'/>
<zone loc='79400 80996 -3780 -3080'/>
</territory>
<territory name='oren21_2220_doma12' controller='default' start_active='true' max='66'>
<npc id='22768' count='2' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='4' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='5' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='3' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='84052 74360 -3780 -3180'/>
<zone loc='85353 73299 -3780 -3180'/>
<zone loc='84220 78339 -3780 -3180'/>
<zone loc='79100 78407 -3780 -3180'/>
<zone loc='79933 76452 -3780 -3180'/>
</territory>
<territory name='oren21_mb2220_ugozg02' controller='default' start_active='true' max='12'>
<npc id='18868' count='6' respawn='10s' rand='5s'/> <!-- Energy Plant -->
<npc id='18867' count='6' respawn='10s' rand='5s'/> <!-- Abyss Weed -->
<zone loc='96778 85146 -3780 -3380'/>
<zone loc='97387 85738 -3780 -3380'/>
<zone loc='97317 86298 -3780 -3380'/>
<zone loc='96166 86012 -3780 -3380'/>
<zone loc='95526 85644 -3780 -3380'/>
<zone loc='95658 84927 -3780 -3380'/>
<zone loc='96011 84802 -3780 -3380'/>
</territory>
<spawn name='oren21_mb2220_ugozg03' controller='default' start_active='true' max='1'>
<npc id='32740' pos='94874 83585 -3416 29836' respawn='1m'/> <!-- Batracos -->
</spawn>
<spawn name='oren21_mb2220_ugoz01' controller='default' start_active='true' max='2'>
<npc id='18863' pos='96804 85604 -3720 -31176' respawn='5m'/> <!-- Seer Ugoros -->
</spawn>
<territory name='oren21_qm2220_01' controller='default' start_active='true' max='82'>
<npc id='20577' count='1' respawn='30s' rand='5s'/> <!-- Leto Lizardman -->
<npc id='20578' count='2' respawn='30s' rand='5s'/> <!-- Leto Lizardman Archer -->
<npc id='20582' count='1' respawn='30s' rand='5s'/> <!-- Leto Lizardman Overlord -->
<npc id='20581' count='2' respawn='30s' rand='5s'/> <!-- Leto Lizardman Shaman -->
<npc id='20579' count='2' respawn='30s' rand='5s'/> <!-- Leto Lizardman Soldier -->
<npc id='20580' count='2' respawn='30s' rand='5s'/> <!-- Leto Lizardman Warrior -->
<zone loc='98056 79316 -3776 -3476'/>
<zone loc='98116 76416 -3776 -3476'/>
<zone loc='97108 76352 -3776 -3476'/>
<zone loc='95516 79240 -3776 -3476'/>
<zone loc='96132 79892 -3776 -3476'/>
</territory>
<territory name='oren21_qm2220_02' controller='default' start_active='true' max='82'>
<npc id='20577' count='1' respawn='30s' rand='5s'/> <!-- Leto Lizardman -->
<npc id='20578' count='2' respawn='30s' rand='5s'/> <!-- Leto Lizardman Archer -->
<npc id='20582' count='1' respawn='30s' rand='5s'/> <!-- Leto Lizardman Overlord -->
<npc id='20581' count='2' respawn='30s' rand='5s'/> <!-- Leto Lizardman Shaman -->
<npc id='20579' count='2' respawn='30s' rand='5s'/> <!-- Leto Lizardman Soldier -->
<npc id='20580' count='2' respawn='30s' rand='5s'/> <!-- Leto Lizardman Warrior -->
<zone loc='94615 74573 -3640 -3340'/>
<zone loc='97017 76457 -3640 -3340'/>
<zone loc='95484 79247 -3640 -3340'/>
<zone loc='95036 77252 -3640 -3340'/>
<zone loc='95027 76436 -3640 -3340'/>
</territory>
<spawn name='oren21_qm2220_03' controller='default' start_active='true' max='4'>
<npc id='32741' pos='86486 86105 -2872 -14500' respawn='1m'/> <!-- Ankumi -->
<npc id='32744' pos='86522 85792 -2888 -8292' respawn='1m'/> <!-- Johnny -->
<npc id='32743' pos='86381 85967 -2860 -5884' respawn='1m'/> <!-- Sally -->
<npc id='32742' pos='86351 85797 -2856 -1424' respawn='1m'/> <!-- Laki -->
</spawn>
<territory name='oren21_qm2220_04' controller='default' start_active='true' max='25'>
<npc id='20780' count='5' respawn='30s' rand='5s'/> <!-- Bloody Axe Elite -->
<zone loc='82892 86896 -3496 -3096'/>
<zone loc='83512 86424 -3496 -3096'/>
<zone loc='85716 88811 -3496 -3096'/>
<zone loc='85387 89905 -3496 -3096'/>
<zone loc='83340 88824 -3496 -3096'/>
</territory>
<territory name='oren21_qm2220_05' controller='default' start_active='true' max='20'>
<npc id='20780' count='4' respawn='30s' rand='5s'/> <!-- Bloody Axe Elite -->
<zone loc='82832 92484 -3556 -3256'/>
<zone loc='82672 91491 -3556 -3256'/>
<zone loc='85020 91044 -3556 -3256'/>
<zone loc='84858 92012 -3556 -3256'/>
</territory>
<territory name='oren21_qm2220_06' controller='default' start_active='true' max='15'>
<npc id='27323' count='5' respawn='15s'/> <!-- Divine Emissary -->
<zone loc='96606 93003 -3763 -3463'/>
<zone loc='96553 91432 -3763 -3463'/>
<zone loc='97534 91493 -3763 -3463'/>
<zone loc='97090 93071 -3763 -3463'/>
</territory>
<territory name='oren21_2220_Hdoma01' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='85506 95105 -3496 -3096'/>
<zone loc='84154 94935 -3496 -3096'/>
<zone loc='83788 94311 -3496 -3096'/>
<zone loc='84071 93382 -3496 -3096'/>
<zone loc='86705 92874 -3496 -3096'/>
<zone loc='89784 92913 -3496 -3096'/>
<zone loc='86986 94818 -3496 -3096'/>
</territory>
<territory name='oren21_2220_Hdoma02' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='87824 90141 -3364 -3064'/>
<zone loc='90193 90351 -3364 -3064'/>
<zone loc='90154 92865 -3364 -3064'/>
<zone loc='86020 92802 -3364 -3064'/>
</territory>
<territory name='oren21_2220_Hdoma03' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='90226 90225 -3532 -3132'/>
<zone loc='93824 90350 -3532 -3132'/>
<zone loc='93807 91179 -3532 -3132'/>
<zone loc='94404 91216 -3532 -3132'/>
<zone loc='93846 92149 -3532 -3132'/>
<zone loc='92407 92828 -3532 -3132'/>
<zone loc='90231 93038 -3532 -3132'/>
</territory>
<territory name='oren21_2220_Hdoma04' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='90621 86217 -3664 -3164'/>
<zone loc='93117 86786 -3664 -3164'/>
<zone loc='94874 88615 -3664 -3164'/>
<zone loc='94808 89710 -3664 -3164'/>
<zone loc='94466 90314 -3664 -3164'/>
<zone loc='90876 90210 -3664 -3164'/>
<zone loc='90934 87988 -3664 -3164'/>
</territory>
<territory name='oren21_2220_Hdoma05' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='90628 82190 -3772 -3272'/>
<zone loc='93474 82874 -3772 -3272'/>
<zone loc='93266 84255 -3772 -3272'/>
<zone loc='93018 86680 -3772 -3272'/>
<zone loc='90623 86146 -3772 -3272'/>
<zone loc='90518 83819 -3772 -3272'/>
</territory>
<territory name='oren21_2220_Hdoma06' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='93898 78545 -3628 -3028'/>
<zone loc='93745 80663 -3628 -3028'/>
<zone loc='93279 81267 -3628 -3028'/>
<zone loc='93419 82805 -3628 -3028'/>
<zone loc='89967 81996 -3628 -3028'/>
<zone loc='90102 80395 -3628 -3028'/>
<zone loc='90114 78154 -3628 -3028'/>
</territory>
<territory name='oren21_2220_Hdoma07' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='90126 75727 -3624 -3024'/>
<zone loc='92012 75066 -3624 -3024'/>
<zone loc='93712 76300 -3624 -3024'/>
<zone loc='93881 78502 -3624 -3024'/>
<zone loc='90110 78107 -3624 -3024'/>
<zone loc='90130 76314 -3624 -3024'/>
</territory>
<territory name='oren21_2220_Hdoma08' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='83574 81143 -3764 -3164'/>
<zone loc='84317 78566 -3764 -3164'/>
<zone loc='90032 80379 -3764 -3164'/>
<zone loc='89805 82652 -3764 -3164'/>
<zone loc='88113 82041 -3764 -3164'/>
<zone loc='87565 81617 -3764 -3164'/>
<zone loc='86704 81466 -3764 -3164'/>
</territory>
<territory name='oren21_2220_Hdoma09' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='84825 76246 -3736 -3236'/>
<zone loc='90083 76311 -3736 -3236'/>
<zone loc='90055 80311 -3736 -3236'/>
<zone loc='84326 78491 -3736 -3236'/>
</territory>
<territory name='oren21_2220_Hdoma10' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='90010 75377 -3700 -3100'/>
<zone loc='90003 76237 -3700 -3100'/>
<zone loc='84872 76159 -3700 -3100'/>
<zone loc='85344 74443 -3700 -3100'/>
<zone loc='86602 73053 -3700 -3100'/>
<zone loc='87873 73006 -3700 -3100'/>
<zone loc='88387 74005 -3700 -3100'/>
<zone loc='88585 74722 -3700 -3100'/>
<zone loc='88585 74722 -3700 -3100'/>
</territory>
<territory name='oren21_2220_Hdoma11' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='80624 78522 -3764 -3064'/>
<zone loc='84158 78474 -3764 -3064'/>
<zone loc='83401 81285 -3764 -3064'/>
<zone loc='82869 81739 -3764 -3064'/>
<zone loc='81475 82293 -3764 -3064'/>
<zone loc='80331 81043 -3764 -3064'/>
</territory>
<territory name='oren21_2220_Hdoma12' controller='default' start_active='true' max='10'>
<npc id='18864' count='2' respawn='20s' rand='5s'/> <!-- Fantasy Mushroom -->
<zone loc='83830 75409 -3764 -3164'/>
<zone loc='85090 74493 -3764 -3164'/>
<zone loc='84190 78433 -3764 -3164'/>
<zone loc='80674 78445 -3764 -3164'/>
<zone loc='80768 77501 -3764 -3164'/>
</territory>
<territory name='oren21_2220_rrug01' controller='default' start_active='true' max='60'>
<npc id='18868' count='16' respawn='10s' rand='5s'/> <!-- Energy Plant -->
<npc id='18866' count='7' respawn='20s' rand='5s'/> <!-- Rainbow Frog -->
<npc id='18865' count='7' respawn='30s' rand='5s'/> <!-- Sticky Mushroom -->
<zone loc='81339 81736 -3744 -3144'/>
<zone loc='80393 80565 -3744 -3144'/>
<zone loc='80497 79902 -3744 -3144'/>
<zone loc='81724 80391 -3744 -3144'/>
<zone loc='81885 79224 -3744 -3144'/>
<zone loc='80356 78399 -3744 -3144'/>
<zone loc='80814 76584 -3744 -3144'/>
<zone loc='81330 76044 -3744 -3144'/>
<zone loc='83112 75632 -3744 -3144'/>
<zone loc='85032 74338 -3744 -3144'/>
<zone loc='85686 75194 -3744 -3144'/>
<zone loc='84159 76994 -3744 -3144'/>
<zone loc='84260 77769 -3744 -3144'/>
<zone loc='85274 78338 -3744 -3144'/>
<zone loc='85637 81077 -3744 -3144'/>
<zone loc='84431 81804 -3744 -3144'/>
<zone loc='83397 81505 -3744 -3144'/>
<zone loc='82001 82940 -3744 -3144'/>
<zone loc='80864 82644 -3744 -3144'/>
</territory>
<territory name='oren21_2220_rrug02' controller='default' start_active='true' max='76'>
<npc id='18868' count='20' respawn='10s' rand='5s'/> <!-- Energy Plant -->
<npc id='18866' count='9' respawn='20s' rand='5s'/> <!-- Rainbow Frog -->
<npc id='18865' count='9' respawn='30s' rand='5s'/> <!-- Sticky Mushroom -->
<zone loc='88468 81335 -3568 -3168'/>
<zone loc='87339 79594 -3568 -3168'/>
<zone loc='88198 78376 -3568 -3168'/>
<zone loc='86473 78348 -3568 -3168'/>
<zone loc='86211 77578 -3568 -3168'/>
<zone loc='87362 76016 -3568 -3168'/>
<zone loc='86617 74523 -3568 -3168'/>
<zone loc='88157 73135 -3568 -3168'/>
<zone loc='89169 74499 -3568 -3168'/>
<zone loc='91685 75475 -3568 -3168'/>
<zone loc='92553 74971 -3568 -3168'/>
<zone loc='92809 75466 -3568 -3168'/>
<zone loc='92157 76350 -3568 -3168'/>
<zone loc='92619 76950 -3568 -3168'/>
<zone loc='93781 76709 -3568 -3168'/>
<zone loc='94152 79492 -3568 -3168'/>
<zone loc='93084 81226 -3568 -3168'/>
<zone loc='91457 81814 -3568 -3168'/>
<zone loc='90533 81086 -3568 -3168'/>
</territory>
<territory name='oren21_2220_rrug03' controller='default' start_active='true' max='36'>
<npc id='18868' count='10' respawn='10s' rand='5s'/> <!-- Energy Plant -->
<npc id='18866' count='4' respawn='20s' rand='5s'/> <!-- Rainbow Frog -->
<npc id='18865' count='4' respawn='30s' rand='5s'/> <!-- Sticky Mushroom -->
<zone loc='93994 83476 -3668 -3368'/>
<zone loc='93310 84016 -3668 -3368'/>
<zone loc='93185 86210 -3668 -3368'/>
<zone loc='91345 86454 -3668 -3368'/>
<zone loc='90583 86343 -3668 -3368'/>
<zone loc='90099 85399 -3668 -3368'/>
<zone loc='90527 83859 -3668 -3368'/>
<zone loc='89915 83247 -3668 -3368'/>
<zone loc='90323 82619 -3668 -3368'/>
<zone loc='92175 82214 -3668 -3368'/>
<zone loc='93839 82582 -3668 -3368'/>
</territory>
<territory name='oren21_2220_rrug04' controller='default' start_active='true' max='44'>
<npc id='18868' count='12' respawn='10s' rand='5s'/> <!-- Energy Plant -->
<npc id='18866' count='5' respawn='20s' rand='5s'/> <!-- Rainbow Frog -->
<npc id='18865' count='5' respawn='30s' rand='5s'/> <!-- Sticky Mushroom -->
<zone loc='94588 90508 -3608 -3108'/>
<zone loc='93165 91174 -3608 -3108'/>
<zone loc='92774 90205 -3608 -3108'/>
<zone loc='91874 90026 -3608 -3108'/>
<zone loc='91449 89018 -3608 -3108'/>
<zone loc='90269 88575 -3608 -3108'/>
<zone loc='91409 86478 -3608 -3108'/>
<zone loc='93203 86272 -3608 -3108'/>
<zone loc='94154 87126 -3608 -3108'/>
<zone loc='94506 87978 -3608 -3108'/>
<zone loc='95623 89043 -3608 -3108'/>
<zone loc='95175 89795 -3608 -3108'/>
<zone loc='94841 90063 -3608 -3108'/>
</territory>
<territory name='oren21_2220_rrug05' controller='default' start_active='true' max='52'>
<npc id='18868' count='14' respawn='10s' rand='5s'/> <!-- Energy Plant -->
<npc id='18866' count='6' respawn='20s' rand='5s'/> <!-- Rainbow Frog -->
<npc id='18865' count='6' respawn='30s' rand='5s'/> <!-- Sticky Mushroom -->
<zone loc='91070 92840 -3568 -2968'/>
<zone loc='86774 94622 -3568 -2968'/>
<zone loc='86165 93839 -3568 -2968'/>
<zone loc='85237 94836 -3568 -2968'/>
<zone loc='83887 93863 -3568 -2968'/>
<zone loc='84716 93221 -3568 -2968'/>
<zone loc='85714 92670 -3568 -2968'/>
<zone loc='86767 90828 -3568 -2968'/>
<zone loc='90862 90747 -3568 -2968'/>
<zone loc='91384 91633 -3568 -2968'/>
<zone loc='92561 92566 -3568 -2968'/>
<zone loc='92346 93226 -3568 -2968'/>
</territory>
<territory name='oren21_2220_rug01' controller='default' start_active='true' max='9'>
<npc id='18865' count='3' respawn='20s' rand='5s'/> <!-- Sticky Mushroom -->
<zone loc='84900 73795 -3716 -3416'/>
<zone loc='87732 72139 -3716 -3416'/>
<zone loc='88334 72910 -3716 -3416'/>
<zone loc='86558 74502 -3716 -3416'/>
<zone loc='87295 75990 -3716 -3416'/>
<zone loc='86749 76682 -3716 -3416'/>
</territory>
<territory name='oren21_2220_rug02' controller='default' start_active='true' max='9'>
<npc id='18865' count='3' respawn='20s' rand='5s'/> <!-- Sticky Mushroom -->
<zone loc='84223 77014 -3752 -3452'/>
<zone loc='85742 75221 -3752 -3452'/>
<zone loc='86714 76764 -3752 -3452'/>
<zone loc='85338 78318 -3752 -3452'/>
<zone loc='84304 77728 -3752 -3452'/>
</territory>
<territory name='oren21_2220_rug03' controller='default' start_active='true' max='9'>
<npc id='18865' count='5' respawn='20s' rand='5s'/> <!-- Sticky Mushroom -->
<zone loc='85322 78385 -3680 -3280'/>
<zone loc='88034 78422 -3680 -3280'/>
<zone loc='87192 79571 -3680 -3280'/>
<zone loc='88418 81396 -3680 -3280'/>
<zone loc='85892 82552 -3680 -3280'/>
</territory>
<territory name='oren21_2220_rug04' controller='default' start_active='true' max='9'>
<npc id='18865' count='3' respawn='20s' rand='5s'/> <!-- Sticky Mushroom -->
<zone loc='88087 81760 -3608 -3308'/>
<zone loc='88841 81373 -3608 -3308'/>
<zone loc='90468 81167 -3608 -3308'/>
<zone loc='91738 82199 -3608 -3308'/>
<zone loc='89919 82579 -3608 -3308'/>
<zone loc='89306 83476 -3608 -3308'/>
</territory>
<territory name='oren21_2220_rug05' controller='default' start_active='true' max='9'>
<npc id='18865' count='3' respawn='20s' rand='5s'/> <!-- Sticky Mushroom -->
<zone loc='90424 89901 -3500 -3200'/>
<zone loc='91425 89425 -3500 -3200'/>
<zone loc='91986 90457 -3500 -3200'/>
<zone loc='92808 90630 -3500 -3200'/>
<zone loc='93595 92473 -3500 -3200'/>
<zone loc='92575 92471 -3500 -3200'/>
<zone loc='91488 91591 -3500 -3200'/>
</territory>
<territory name='oren21_2220_doma_a1' controller='default' start_active='true' max='20'>
<npc id='22768' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='83885 80497 -3764 -3464'/>
<zone loc='83325 80678 -3764 -3464'/>
<zone loc='82690 80480 -3764 -3464'/>
<zone loc='82628 79804 -3764 -3464'/>
<zone loc='82713 79397 -3764 -3464'/>
<zone loc='82713 79397 -3764 -3464'/>
<zone loc='82025 78227 -3764 -3464'/>
<zone loc='81718 77815 -3764 -3464'/>
<zone loc='81959 77379 -3764 -3464'/>
<zone loc='82656 77511 -3764 -3464'/>
<zone loc='82656 77511 -3764 -3464'/>
<zone loc='83152 77939 -3764 -3464'/>
<zone loc='83913 78957 -3764 -3464'/>
<zone loc='84190 79474 -3764 -3464'/>
<zone loc='84276 80099 -3764 -3464'/>
</territory>
<territory name='oren21_2220_doma_a2' controller='default' start_active='true' max='20'>
<npc id='22768' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='91337 77665 -3344 -3044'/>
<zone loc='92093 78507 -3344 -3044'/>
<zone loc='92023 79105 -3344 -3044'/>
<zone loc='90291 79743 -3344 -3044'/>
<zone loc='89466 79279 -3344 -3044'/>
<zone loc='89466 79279 -3344 -3044'/>
<zone loc='89600 77834 -3344 -3044'/>
<zone loc='88778 76650 -3344 -3044'/>
<zone loc='89692 76002 -3344 -3044'/>
<zone loc='90764 77561 -3344 -3044'/>
</territory>
<territory name='oren21_2220_doma_a3' controller='default' start_active='true' max='20'>
<npc id='22768' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='92254 83601 -3744 -3444'/>
<zone loc='92513 84114 -3744 -3444'/>
<zone loc='92406 84883 -3744 -3444'/>
<zone loc='92553 85384 -3744 -3444'/>
<zone loc='91805 85573 -3744 -3444'/>
<zone loc='91805 85573 -3744 -3444'/>
<zone loc='91193 84531 -3744 -3444'/>
<zone loc='91293 83868 -3744 -3444'/>
</territory>
<territory name='oren21_2220_doma_a4' controller='default' start_active='true' max='20'>
<npc id='22768' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22769' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Warrior -->
<npc id='22770' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='93513 87903 -3584 -3184'/>
<zone loc='93911 88740 -3584 -3184'/>
<zone loc='93830 89533 -3584 -3184'/>
<zone loc='93276 89513 -3584 -3184'/>
<zone loc='92059 88226 -3584 -3184'/>
<zone loc='92059 88226 -3584 -3184'/>
<zone loc='91971 87777 -3584 -3184'/>
<zone loc='92480 87548 -3584 -3184'/>
<zone loc='92795 87327 -3584 -3184'/>
<zone loc='93262 87501 -3584 -3184'/>
</territory>
<territory name='oren21_2220_doma_a5' controller='default' start_active='true' max='16'>
<npc id='22768' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Scout -->
<npc id='22770' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Soldier -->
<npc id='22771' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Berserker -->
<npc id='22772' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Archer -->
<npc id='22774' count='1' respawn='30s' rand='5s'/> <!-- Tanta Lizardman Summoner -->
<zone loc='88568 92008 -3288 -2788'/>
<zone loc='90012 92048 -3288 -2788'/>
<zone loc='90093 92642 -3288 -2788'/>
<zone loc='88464 92784 -3288 -2788'/>
<zone loc='87451 93745 -3288 -2788'/>
<zone loc='87451 93745 -3288 -2788'/>
<zone loc='86372 92881 -3288 -2788'/>
<zone loc='87136 92149 -3288 -2788'/>
</territory>
<territory name='oren14_2118_01' controller='default' start_active='true' max='12'>
<npc id='20555' count='4' respawn='27s' rand='5s'/> <!-- Giant Fungus -->
<npc id='20556' count='4' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='4' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<zone loc='59528 9936 -3868 -3468'/>
<zone loc='61888 9412 -3868 -3468'/>
<zone loc='63172 10616 -3868 -3468'/>
<zone loc='62360 12392 -3868 -3468'/>
<zone loc='60624 13384 -3868 -3468'/>
</territory>
<territory name='oren14_2118_02' controller='default' start_active='true' max='11'>
<npc id='20558' count='3' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<npc id='20556' count='4' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='4' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<zone loc='56496 10896 -5172 -3472'/>
<zone loc='59492 9944 -5172 -3472'/>
<zone loc='60596 13416 -5172 -3472'/>
<zone loc='58804 13868 -5172 -3472'/>
</territory>
<territory name='oren14_2118_03' controller='default' start_active='true' max='12'>
<npc id='20558' count='4' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<npc id='20559' count='4' respawn='27s' rand='5s'/> <!-- Rotting Golem -->
<npc id='20561' count='4' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<zone loc='53868 12532 -5924 -4524'/>
<zone loc='56428 10868 -5924 -4524'/>
<zone loc='58548 13564 -5924 -4524'/>
<zone loc='54968 14544 -5924 -4524'/>
</territory>
<territory name='oren14_2118_04' controller='default' start_active='true' max='9'>
<npc id='20560' count='3' respawn='27s' rand='5s'/> <!-- Trisalim Spider -->
<npc id='20561' count='3' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<npc id='20562' count='3' respawn='27s' rand='5s'/> <!-- Spore Zombie -->
<zone loc='53856 12508 -5916 -5216'/>
<zone loc='54944 14568 -5916 -5216'/>
<zone loc='52824 15256 -5916 -5216'/>
<zone loc='50560 15236 -5916 -5216'/>
<zone loc='50724 14280 -5916 -5216'/>
</territory>
<territory name='oren14_2118_05' controller='default' start_active='true' max='7'>
<npc id='20560' count='2' respawn='27s' rand='5s'/> <!-- Trisalim Spider -->
<npc id='20561' count='2' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<npc id='20562' count='3' respawn='27s' rand='5s'/> <!-- Spore Zombie -->
<zone loc='48768 16688 -5552 -5052'/>
<zone loc='52072 16432 -5552 -5052'/>
<zone loc='52568 18248 -5552 -5052'/>
<zone loc='48896 17520 -5552 -5052'/>
</territory>
<territory name='oren14_2118_06' controller='default' start_active='true' max='10'>
<npc id='20558' count='4' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<npc id='20559' count='3' respawn='27s' rand='5s'/> <!-- Rotting Golem -->
<npc id='20561' count='3' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<zone loc='52060 16388 -5588 -5188'/>
<zone loc='56240 16508 -5588 -5188'/>
<zone loc='56280 18740 -5588 -5188'/>
<zone loc='52564 18276 -5588 -5188'/>
</territory>
<territory name='oren14_2118_07' controller='default' start_active='true' max='12'>
<npc id='20556' count='4' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='4' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<npc id='20558' count='4' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<zone loc='56228 16524 -5556 -3956'/>
<zone loc='60536 16212 -5556 -3956'/>
<zone loc='61068 18472 -5556 -3956'/>
<zone loc='56260 18652 -5556 -3956'/>
</territory>
<territory name='oren14_2118_08' controller='default' start_active='true' max='8'>
<npc id='20555' count='3' respawn='27s' rand='5s'/> <!-- Giant Fungus -->
<npc id='20556' count='2' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='3' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<zone loc='60100 13656 -4157 -3557'/>
<zone loc='61080 13172 -4157 -3557'/>
<zone loc='62012 17604 -4157 -3557'/>
<zone loc='61136 18552 -4157 -3557'/>
</territory>
<territory name='oren14_2118_09' controller='default' start_active='true' max='6'>
<npc id='20555' count='2' respawn='27s' rand='5s'/> <!-- Giant Fungus -->
<npc id='20556' count='2' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='2' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<zone loc='63796 15776 -3728 -2928'/>
<zone loc='64480 16044 -3728 -2928'/>
<zone loc='64040 17180 -3728 -2928'/>
<zone loc='61308 19628 -3728 -2928'/>
<zone loc='61184 18572 -3728 -2928'/>
</territory>
<territory name='oren14_2118_10' controller='default' start_active='true' max='8'>
<npc id='20555' count='3' respawn='27s' rand='5s'/> <!-- Giant Fungus -->
<npc id='20556' count='3' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='2' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<zone loc='61248 19656 -4208 -3608'/>
<zone loc='63116 19532 -4208 -3608'/>
<zone loc='64212 20056 -4208 -3608'/>
<zone loc='62832 23152 -4208 -3608'/>
<zone loc='61972 23316 -4208 -3608'/>
</territory>
<territory name='oren14_2118_11' controller='default' start_active='true' max='13'>
<npc id='20556' count='4' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='4' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<npc id='20558' count='5' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<zone loc='58448 19860 -5340 -3740'/>
<zone loc='61192 19428 -5340 -3740'/>
<zone loc='61976 23336 -5340 -3740'/>
<zone loc='57884 22808 -5340 -3740'/>
</territory>
<territory name='oren14_2118_12' controller='default' start_active='true' max='15'>
<npc id='20558' count='6' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<npc id='20559' count='4' respawn='27s' rand='5s'/> <!-- Rotting Golem -->
<npc id='20561' count='5' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<zone loc='53804 19808 -5628 -5028'/>
<zone loc='58400 19828 -5628 -5028'/>
<zone loc='57812 22836 -5628 -5028'/>
<zone loc='52852 21648 -5628 -5028'/>
</territory>
<territory name='oren14_2118_13' controller='default' start_active='true' max='7'>
<npc id='20560' count='2' respawn='27s' rand='5s'/> <!-- Trisalim Spider -->
<npc id='20561' count='2' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<npc id='20562' count='3' respawn='27s' rand='5s'/> <!-- Spore Zombie -->
<zone loc='49708 19600 -5600 -5300'/>
<zone loc='53764 19784 -5600 -5300'/>
<zone loc='52804 21624 -5600 -5300'/>
<zone loc='49636 20300 -5600 -5300'/>
</territory>
<territory name='oren14_2118_14' controller='default' start_active='true' max='5'>
<npc id='20560' count='1' respawn='27s' rand='5s'/> <!-- Trisalim Spider -->
<npc id='20561' count='2' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<npc id='20562' count='2' respawn='27s' rand='5s'/> <!-- Spore Zombie -->
<zone loc='48352 21928 -5572 -5372'/>
<zone loc='51832 22652 -5572 -5372'/>
<zone loc='51044 23760 -5572 -5372'/>
<zone loc='48280 22376 -5572 -5372'/>
</territory>
<territory name='oren14_2118_15' controller='default' start_active='true' max='5'>
<npc id='20558' count='2' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<npc id='20559' count='1' respawn='27s' rand='5s'/> <!-- Rotting Golem -->
<npc id='20561' count='2' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<zone loc='51812 22672 -5576 -5176'/>
<zone loc='54696 23820 -5576 -5176'/>
<zone loc='54464 25180 -5576 -5176'/>
<zone loc='51068 23732 -5576 -5176'/>
</territory>
<territory name='oren14_2118_16' controller='default' start_active='true' max='8'>
<npc id='20558' count='2' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<npc id='20559' count='2' respawn='27s' rand='5s'/> <!-- Rotting Golem -->
<npc id='20561' count='2' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<npc id='20556' count='2' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<zone loc='54700 23840 -5484 -4884'/>
<zone loc='57924 24696 -5484 -4884'/>
<zone loc='56388 26516 -5484 -4884'/>
<zone loc='54472 25148 -5484 -4884'/>
</territory>
<territory name='oren14_2118_17' controller='default' start_active='true' max='8'>
<npc id='20556' count='3' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='2' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<npc id='20558' count='3' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<zone loc='57944 24672 -5188 -3988'/>
<zone loc='60988 25328 -5188 -3988'/>
<zone loc='59684 27540 -5188 -3988'/>
<zone loc='56924 25960 -5188 -3988'/>
</territory>
<territory name='oren14_2118_18' controller='default' start_active='true' max='5'>
<npc id='20555' count='2' respawn='27s' rand='5s'/> <!-- Giant Fungus -->
<npc id='20556' count='2' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='1' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<zone loc='61960 23336 -3960 -3760'/>
<zone loc='62872 23152 -3960 -3760'/>
<zone loc='63488 24140 -3960 -3760'/>
<zone loc='63104 25904 -3960 -3760'/>
<zone loc='61164 25260 -3960 -3760'/>
</territory>
<territory name='oren14_2118_19' controller='default' start_active='true' max='9'>
<npc id='20555' count='3' respawn='27s' rand='5s'/> <!-- Giant Fungus -->
<npc id='20556' count='3' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='3' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<zone loc='61436 25352 -3908 -3708'/>
<zone loc='63112 25912 -3908 -3708'/>
<zone loc='62568 27808 -3908 -3708'/>
<zone loc='61608 29260 -3908 -3708'/>
<zone loc='59860 28524 -3908 -3708'/>
</territory>
<territory name='oren14_2118_20' controller='default' start_active='true' max='5'>
<npc id='20555' count='2' respawn='27s' rand='5s'/> <!-- Giant Fungus -->
<npc id='20556' count='1' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='2' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<zone loc='55896 30404 -3916 -3716'/>
<zone loc='57844 29920 -3916 -3716'/>
<zone loc='58780 30696 -3916 -3716'/>
<zone loc='57924 31300 -3916 -3716'/>
<zone loc='56568 31140 -3916 -3716'/>
</territory>
<territory name='oren14_2118_21' controller='default' start_active='true' max='3'>
<npc id='20555' count='1' respawn='27s' rand='5s'/> <!-- Giant Fungus -->
<npc id='20556' count='1' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='1' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<zone loc='59884 28540 -3908 -3708'/>
<zone loc='61616 29272 -3908 -3708'/>
<zone loc='60628 30636 -3908 -3708'/>
<zone loc='58792 30700 -3908 -3708'/>
<zone loc='57824 29896 -3908 -3708'/>
</territory>
<territory name='oren14_2118_22' controller='default' start_active='true' max='4'>
<npc id='20556' count='2' respawn='27s' rand='5s'/> <!-- Giant Monstereye -->
<npc id='20557' count='1' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<npc id='20558' count='1' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<zone loc='55467 28377 -5308 -4408'/>
<zone loc='55884 27400 -5308 -4408'/>
<zone loc='58012 28440 -5308 -4408'/>
<zone loc='56299 29045 -5308 -4408'/>
</territory>
<territory name='oren14_2118_23' controller='default' start_active='true' max='4'>
<npc id='20557' count='1' respawn='27s' rand='5s'/> <!-- Dire Wyrm -->
<npc id='20558' count='2' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<npc id='20559' count='1' respawn='27s' rand='5s'/> <!-- Rotting Golem -->
<zone loc='53344 26608 -5296 -4996'/>
<zone loc='55952 27268 -5296 -4996'/>
<zone loc='54748 28772 -5296 -4996'/>
<zone loc='53096 27504 -5296 -4996'/>
</territory>
<territory name='oren14_2118_24' controller='default' start_active='true' max='3'>
<npc id='20558' count='1' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<npc id='20559' count='1' respawn='27s' rand='5s'/> <!-- Rotting Golem -->
<npc id='20560' count='1' respawn='27s' rand='5s'/> <!-- Trisalim Spider -->
<zone loc='51628 25932 -5268 -4968'/>
<zone loc='53344 26620 -5268 -4968'/>
<zone loc='53108 27492 -5268 -4968'/>
<zone loc='51628 26564 -5268 -4968'/>
</territory>
<territory name='oren14_2118_25' controller='default' start_active='true' max='6'>
<npc id='20560' count='2' respawn='27s' rand='5s'/> <!-- Trisalim Spider -->
<npc id='20561' count='2' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<npc id='20562' count='2' respawn='27s' rand='5s'/> <!-- Spore Zombie -->
<zone loc='49964 25308 -5148 -4448'/>
<zone loc='50000 25708 -5148 -4448'/>
<zone loc='49020 25880 -5148 -4448'/>
<zone loc='47204 25156 -5148 -4448'/>
<zone loc='46872 22660 -5148 -4448'/>
<zone loc='49176 24460 -5148 -4448'/>
</territory>
<territory name='oren14_2118_26' controller='default' start_active='true' max='11'>
<npc id='20558' count='3' respawn='27s' rand='5s'/> <!-- Rotting tree -->
<npc id='20560' count='3' respawn='27s' rand='5s'/> <!-- Trisalim Spider -->
<npc id='20561' count='2' respawn='27s' rand='5s'/> <!-- Trisalim Tarantula -->
<npc id='20562' count='3' respawn='27s' rand='5s'/> <!-- Spore Zombie -->
<zone loc='45472 21880 -5292 -4592'/>
<zone loc='46876 22656 -5292 -4592'/>
<zone loc='47184 25160 -5292 -4592'/>
<zone loc='44224 25536 -5292 -4592'/>
<zone loc='42872 24352 -5292 -4592'/>
</territory>
<spawn name='oren22_2219_a01' controller='default' start_active='false' max='50'>
<npc id='22775' pos='88347 56413 -3495 49152' respawn='90s'/> <!-- Sel Mahum Drill Sergeant -->
<npc id='22782' pos='88522 56208 -3526 17127' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88418 56206 -3526 13868' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88305 56212 -3526 19456' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88190 56216 -3526 15466' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88181 56119 -3526 15734' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88296 56111 -3526 15128' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88417 56106 -3526 14390' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88530 56107 -3526 16458' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88177 56011 -3526 16387' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88298 56002 -3526 16785' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88420 55997 -3526 14642' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88530 56001 -3526 16083' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88177 55914 -3526 13392' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88294 55905 -3526 15411' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88424 55903 -3526 15063' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88530 55903 -3526 17704' respawn='90s'/> <!-- Sel Mahum Recruit -->
<npc id='22782' pos='88186 55812 -3526 15800' respawn='90s'/> <!-- Sel Mahum Recruit -->