-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLogFile.txt
5908 lines (4440 loc) · 231 KB
/
LogFile.txt
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
Initializing the Game ......
=======Game Startup Phase=======
Command Entered: gameplayer -add zalak -add piyush -add josh
Log: Player with name : zalak and strategy: Random has been added successfully.
Log: Player with name : piyush and strategy: Random has been added successfully.
Log: Player with name : josh and strategy: Random has been added successfully.
Command Entered: tournament -M canada.map conquest.map -P Benevolent Random -G 3 -D 10
Log: canada.map has been loaded to start the game
Log: conquest.map has been loaded to start the game
Log: Player: zalak with strategy: Random has been added in tournament.
Log: Player: piyush with strategy: Random has been added in tournament.
Log: Player: josh with strategy: Random has been added in tournament.
Log:
Starting New Game.........
Log: Country/Continent Assignment:
Player : zalak is assigned with country : NU-Ellesmere_Island
Player : zalak is assigned with country : NU-Baffin_Island
Player : zalak is assigned with country : BC-Vancouver_Island
Player : zalak is assigned with country : Nunavut-Continental
Player : zalak is assigned with country : Northwest_Territories-Continental
Player : zalak is assigned with country : British_Columbia-North
Player : zalak is assigned with country : NU-Southern_Islands
Player : zalak is assigned with country : Nova_Scotia
Player : zalak is assigned with country : NT-Victoria_Island-West
Player : zalak is assigned with country : NT-Banks_Island
Player : piyush is assigned with country : New_Brunswick
Player : piyush is assigned with country : British_Columbia-South
Player : piyush is assigned with country : Quebec-Central
Player : piyush is assigned with country : NU-Victoria_Island-East
Player : piyush is assigned with country : Yukon_Territory
Player : piyush is assigned with country : N&L-Labrador
Player : piyush is assigned with country : Saskatchewan-South
Player : piyush is assigned with country : NT-Northern_Islands
Player : piyush is assigned with country : Ontario-North
Player : piyush is assigned with country : Quebec-South
Player : josh is assigned with country : Saskatchewan-North
Player : josh is assigned with country : Alberta-North
Player : josh is assigned with country : Manitoba-North
Player : josh is assigned with country : Manitoba-South
Player : josh is assigned with country : Alberta-South
Player : josh is assigned with country : Quebec-North
Player : josh is assigned with country : N&L-Newfoundland
Player : josh is assigned with country : Ontario-South
Player : josh is assigned with country : Ontario-West
Player : josh is assigned with country : NU-Northern_Islands
Player : zalak is assigned with country : Prince_Edward_Island
Log: Player : zalak has been assigned with 3 armies
Log: Player : piyush has been assigned with 3 armies
Log: Player : josh has been assigned with 3 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy NT-Victoria_Island-West 3
Command Entered: deploy NT-Victoria_Island-West 3
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy NT-Northern_Islands 3
Command Entered: deploy NT-Northern_Islands 3
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy NU-Northern_Islands 3
Command Entered: deploy NU-Northern_Islands 3
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) advance NT-Victoria_Island-West NT-Banks_Island 1
Command Entered: advance NT-Victoria_Island-West NT-Banks_Island 1
Log: Advance order has been added to queue for execution. For player: zalak
Order Issued: (Player: josh) advance NU-Northern_Islands Nunavut-Continental 1
Command Entered: advance NU-Northern_Islands Nunavut-Continental 1
Log: Advance order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) advance NT-Victoria_Island-West NU-Victoria_Island-East 1
Command Entered: advance NT-Victoria_Island-West NU-Victoria_Island-East 1
Log: Advance order has been added to queue for execution. For player: zalak
Order Issued: (Player: josh) advance NU-Northern_Islands NT-Northern_Islands 1
Command Entered: advance NU-Northern_Islands NT-Northern_Islands 1
Log: Advance order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) advance NT-Victoria_Island-West Northwest_Territories-Continental 1
Command Entered: advance NT-Victoria_Island-West Northwest_Territories-Continental 1
Log: Advance order has been added to queue for execution. For player: zalak
Order Issued: (Player: zalak) advance NT-Victoria_Island-West NU-Victoria_Island-East 1
Command Entered: advance NT-Victoria_Island-West NU-Victoria_Island-East 1
Log: Advance order has been added to queue for execution. For player: zalak
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 3 armies to NT-Victoria_Island-West
Log: 3 armies have been deployed successfully on country : NT-Victoria_Island-West
Log:
---------- Deploy order issued by player piyush ----------
Deploy 3 armies to NT-Northern_Islands
Log: 3 armies have been deployed successfully on country : NT-Northern_Islands
Log:
---------- Deploy order issued by player josh ----------
Deploy 3 armies to NU-Northern_Islands
Log: 3 armies have been deployed successfully on country : NU-Northern_Islands
Log:
---------- Advance order issued by player zalak ----------
Move 1 armies from NT-Victoria_Island-West to NT-Banks_Island
Log:
---------- Advance order issued by player josh ----------
Move 1 armies from NU-Northern_Islands to Nunavut-Continental
Log: Player : josh is assigned with Country : Nunavut-Continental and armies : 1
Log:
---------- Advance order issued by player zalak ----------
Move 1 armies from NT-Victoria_Island-West to NU-Victoria_Island-East
Log: Player : zalak is assigned with Country : NU-Victoria_Island-East and armies : 1
Log:
---------- Advance order issued by player josh ----------
Move 1 armies from NU-Northern_Islands to NT-Northern_Islands
Log: Country : NT-Northern_Islands is left with 3 armies and is still owned by player : piyush
Country : NU-Northern_Islands is left with 1 armies and is still owned by player : josh
Log:
---------- Advance order issued by player zalak ----------
Move 1 armies from NT-Victoria_Island-West to Northwest_Territories-Continental
Log: Advance Order : advance NT-Victoria_Island-West Northwest_Territories-Continental 1 is not executed as source country : NT-Victoria_Island-West has 1 army units and all of those cannot be given advance order, atleast one army unit has to retain the territory.
Log: Advance Order : advance NT-Victoria_Island-West Northwest_Territories-Continental 1 is not executed as source country : NT-Victoria_Island-West has 1 army units and all of those cannot be given advance order, atleast one army unit has to retain the territory.
Log:
---------- Advance order issued by player zalak ----------
Move 1 armies from NT-Victoria_Island-West to NU-Victoria_Island-East
Log: Advance Order : advance NT-Victoria_Island-West NU-Victoria_Island-East 1 is not executed as source country : NT-Victoria_Island-West has 1 army units and all of those cannot be given advance order, atleast one army unit has to retain the territory.
Log: Advance Order : advance NT-Victoria_Island-West NU-Victoria_Island-East 1 is not executed as source country : NT-Victoria_Island-West has 1 army units and all of those cannot be given advance order, atleast one army unit has to retain the territory.
Log: Player : zalak has been assigned with 3 armies
Log: Player : piyush has been assigned with 3 armies
Log: Player : josh has been assigned with 3 armies
Log: Player : Neutral has been assigned with 0 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy British_Columbia-North 2
Command Entered: deploy British_Columbia-North 2
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Quebec-Central 3
Command Entered: deploy Quebec-Central 3
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Alberta-South 1
Command Entered: deploy Alberta-South 1
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) deploy NU-Southern_Islands 1
Command Entered: deploy NU-Southern_Islands 1
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) advance Quebec-Central N&L-Labrador 1
Command Entered: advance Quebec-Central N&L-Labrador 1
Log: Advance order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Manitoba-South 2
Command Entered: deploy Manitoba-South 2
Log: Deploy order has been added to queue for execution. For player: josh
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 2 armies to British_Columbia-North
Log: 2 armies have been deployed successfully on country : British_Columbia-North
Log:
---------- Deploy order issued by player piyush ----------
Deploy 3 armies to Quebec-Central
Log: 3 armies have been deployed successfully on country : Quebec-Central
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Alberta-South
Log: 1 armies have been deployed successfully on country : Alberta-South
Log:
---------- Deploy order issued by player zalak ----------
Deploy 1 armies to NU-Southern_Islands
Log: 1 armies have been deployed successfully on country : NU-Southern_Islands
Log:
---------- Advance order issued by player piyush ----------
Move 1 armies from Quebec-Central to N&L-Labrador
Log:
---------- Deploy order issued by player josh ----------
Deploy 2 armies to Manitoba-South
Log: 2 armies have been deployed successfully on country : Manitoba-South
Log: Player : zalak has been assigned with 3 armies
Log: Player : piyush has been assigned with 3 armies
Log: Player : josh has been assigned with 3 armies
Log: Player : Neutral has been assigned with 0 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy BC-Vancouver_Island 3
Command Entered: deploy BC-Vancouver_Island 3
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Quebec-Central 2
Command Entered: deploy Quebec-Central 2
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Ontario-West 2
Command Entered: deploy Ontario-West 2
Log: Deploy order has been added to queue for execution. For player: josh
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 3 armies to BC-Vancouver_Island
Log: 3 armies have been deployed successfully on country : BC-Vancouver_Island
Log:
---------- Deploy order issued by player piyush ----------
Deploy 2 armies to Quebec-Central
Log: 4 armies have been deployed successfully on country : Quebec-Central
Log:
---------- Deploy order issued by player josh ----------
Deploy 2 armies to Ontario-West
Log: 2 armies have been deployed successfully on country : Ontario-West
Log: Player : zalak has been assigned with 3 armies
Log: Player : piyush has been assigned with 4 armies
Log: Player : josh has been assigned with 4 armies
Log: Player : Neutral has been assigned with 0 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy Prince_Edward_Island 1
Command Entered: deploy Prince_Edward_Island 1
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy New_Brunswick 3
Command Entered: deploy New_Brunswick 3
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Alberta-North 4
Command Entered: deploy Alberta-North 4
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) deploy BC-Vancouver_Island 1
Command Entered: deploy BC-Vancouver_Island 1
Log: Deploy order has been added to queue for execution. For player: zalak
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 1 armies to Prince_Edward_Island
Log: 1 armies have been deployed successfully on country : Prince_Edward_Island
Log:
---------- Deploy order issued by player piyush ----------
Deploy 3 armies to New_Brunswick
Log: 3 armies have been deployed successfully on country : New_Brunswick
Log:
---------- Deploy order issued by player josh ----------
Deploy 4 armies to Alberta-North
Log: 4 armies have been deployed successfully on country : Alberta-North
Log:
---------- Deploy order issued by player zalak ----------
Deploy 1 armies to BC-Vancouver_Island
Log: 4 armies have been deployed successfully on country : BC-Vancouver_Island
Log: Player : zalak has been assigned with 4 armies
Log: Player : piyush has been assigned with 4 armies
Log: Player : josh has been assigned with 3 armies
Log: Player : Neutral has been assigned with 0 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy Nova_Scotia 3
Command Entered: deploy Nova_Scotia 3
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Yukon_Territory 4
Command Entered: deploy Yukon_Territory 4
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Manitoba-South 1
Command Entered: deploy Manitoba-South 1
Log: Deploy order has been added to queue for execution. For player: josh
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 3 armies to Nova_Scotia
Log: 3 armies have been deployed successfully on country : Nova_Scotia
Log:
---------- Deploy order issued by player piyush ----------
Deploy 4 armies to Yukon_Territory
Log: 4 armies have been deployed successfully on country : Yukon_Territory
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Manitoba-South
Log: 3 armies have been deployed successfully on country : Manitoba-South
Log: Player : zalak has been assigned with 4 armies
Log: Player : piyush has been assigned with 3 armies
Log: Player : josh has been assigned with 5 armies
Log: Player : Neutral has been assigned with 0 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy Northwest_Territories-Continental 1
Command Entered: deploy Northwest_Territories-Continental 1
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Saskatchewan-South 1
Command Entered: deploy Saskatchewan-South 1
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Manitoba-South 1
Command Entered: deploy Manitoba-South 1
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) deploy NU-Baffin_Island 2
Command Entered: deploy NU-Baffin_Island 2
Log: Deploy order has been added to queue for execution. For player: zalak
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 1 armies to Northwest_Territories-Continental
Log: 1 armies have been deployed successfully on country : Northwest_Territories-Continental
Log:
---------- Deploy order issued by player piyush ----------
Deploy 1 armies to Saskatchewan-South
Log: 1 armies have been deployed successfully on country : Saskatchewan-South
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Manitoba-South
Log: 4 armies have been deployed successfully on country : Manitoba-South
Log:
---------- Deploy order issued by player zalak ----------
Deploy 2 armies to NU-Baffin_Island
Log: 2 armies have been deployed successfully on country : NU-Baffin_Island
Log: Player : zalak has been assigned with 4 armies
Log: Player : piyush has been assigned with 5 armies
Log: Player : josh has been assigned with 7 armies
Log: Player : Neutral has been assigned with 0 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy NU-Southern_Islands 1
Command Entered: deploy NU-Southern_Islands 1
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy New_Brunswick 3
Command Entered: deploy New_Brunswick 3
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Manitoba-South 3
Command Entered: deploy Manitoba-South 3
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: josh) deploy Ontario-South 1
Command Entered: deploy Ontario-South 1
Log: Deploy order has been added to queue for execution. For player: josh
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 1 armies to NU-Southern_Islands
Log: 2 armies have been deployed successfully on country : NU-Southern_Islands
Log:
---------- Deploy order issued by player piyush ----------
Deploy 3 armies to New_Brunswick
Log: 6 armies have been deployed successfully on country : New_Brunswick
Log:
---------- Deploy order issued by player josh ----------
Deploy 3 armies to Manitoba-South
Log: 7 armies have been deployed successfully on country : Manitoba-South
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Ontario-South
Log: 1 armies have been deployed successfully on country : Ontario-South
Log: Player : zalak has been assigned with 6 armies
Log: Player : piyush has been assigned with 5 armies
Log: Player : josh has been assigned with 6 armies
Log: Player : Neutral has been assigned with 0 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy Northwest_Territories-Continental 2
Command Entered: deploy Northwest_Territories-Continental 2
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Yukon_Territory 4
Command Entered: deploy Yukon_Territory 4
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Manitoba-North 5
Command Entered: deploy Manitoba-North 5
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) deploy NT-Banks_Island 3
Command Entered: deploy NT-Banks_Island 3
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Quebec-Central 1
Command Entered: deploy Quebec-Central 1
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Alberta-South 1
Command Entered: deploy Alberta-South 1
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) deploy BC-Vancouver_Island 1
Command Entered: deploy BC-Vancouver_Island 1
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: josh) advance Alberta-North Alberta-South 3
Command Entered: advance Alberta-North Alberta-South 3
Log: Advance order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) advance NT-Banks_Island Northwest_Territories-Continental 1
Command Entered: advance NT-Banks_Island Northwest_Territories-Continental 1
Log: Advance order has been added to queue for execution. For player: zalak
Order Issued: (Player: josh) negotiate josh
Command Entered: negotiate josh
Log: Card Command Added to Queue for Execution Successfully!
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 2 armies to Northwest_Territories-Continental
Log: 3 armies have been deployed successfully on country : Northwest_Territories-Continental
Log:
---------- Deploy order issued by player piyush ----------
Deploy 4 armies to Yukon_Territory
Log: 8 armies have been deployed successfully on country : Yukon_Territory
Log:
---------- Deploy order issued by player josh ----------
Deploy 5 armies to Manitoba-North
Log: 5 armies have been deployed successfully on country : Manitoba-North
Log:
---------- Deploy order issued by player zalak ----------
Deploy 3 armies to NT-Banks_Island
Log: 4 armies have been deployed successfully on country : NT-Banks_Island
Log:
---------- Deploy order issued by player piyush ----------
Deploy 1 armies to Quebec-Central
Log: 5 armies have been deployed successfully on country : Quebec-Central
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Alberta-South
Log: 2 armies have been deployed successfully on country : Alberta-South
Log:
---------- Deploy order issued by player zalak ----------
Deploy 1 armies to BC-Vancouver_Island
Log: 5 armies have been deployed successfully on country : BC-Vancouver_Island
Log:
---------- Advance order issued by player josh ----------
Move 3 armies from Alberta-North to Alberta-South
Log:
---------- Advance order issued by player zalak ----------
Move 1 armies from NT-Banks_Island to Northwest_Territories-Continental
Log: ----------Diplomacy order issued by player josh----------
Request to negotiate attacks from josh
Log: Negotiation with josh approached by josh successful!
Log: Player : zalak has been assigned with 3 armies
Log: Player : piyush has been assigned with 3 armies
Log: Player : josh has been assigned with 3 armies
Log: Player : Neutral has been assigned with 0 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy Prince_Edward_Island 2
Command Entered: deploy Prince_Edward_Island 2
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Saskatchewan-South 3
Command Entered: deploy Saskatchewan-South 3
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Nunavut-Continental 1
Command Entered: deploy Nunavut-Continental 1
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) deploy Nova_Scotia 1
Command Entered: deploy Nova_Scotia 1
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: josh) deploy Alberta-North 1
Command Entered: deploy Alberta-North 1
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) advance Nova_Scotia New_Brunswick 1
Command Entered: advance Nova_Scotia New_Brunswick 1
Log: Advance order has been added to queue for execution. For player: zalak
Order Issued: (Player: josh) deploy Ontario-South 1
Command Entered: deploy Ontario-South 1
Log: Deploy order has been added to queue for execution. For player: josh
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 2 armies to Prince_Edward_Island
Log: 3 armies have been deployed successfully on country : Prince_Edward_Island
Log:
---------- Deploy order issued by player piyush ----------
Deploy 3 armies to Saskatchewan-South
Log: 4 armies have been deployed successfully on country : Saskatchewan-South
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Nunavut-Continental
Log: 2 armies have been deployed successfully on country : Nunavut-Continental
Log:
---------- Deploy order issued by player zalak ----------
Deploy 1 armies to Nova_Scotia
Log: 4 armies have been deployed successfully on country : Nova_Scotia
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Alberta-North
Log: 2 armies have been deployed successfully on country : Alberta-North
Log:
---------- Advance order issued by player zalak ----------
Move 1 armies from Nova_Scotia to New_Brunswick
Log: Country : New_Brunswick is left with 6 armies and is still owned by player : piyush
Country : Nova_Scotia is left with 3 armies and is still owned by player : zalak
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Ontario-South
Log: 2 armies have been deployed successfully on country : Ontario-South
Log: Player : zalak has been assigned with 3 armies
Log: Player : piyush has been assigned with 3 armies
Log: Player : josh has been assigned with 3 armies
Log: Player : Neutral has been assigned with 0 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy NT-Banks_Island 1
Command Entered: deploy NT-Banks_Island 1
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Yukon_Territory 1
Command Entered: deploy Yukon_Territory 1
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Ontario-West 1
Command Entered: deploy Ontario-West 1
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) deploy BC-Vancouver_Island 1
Command Entered: deploy BC-Vancouver_Island 1
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: josh) deploy Manitoba-North 2
Command Entered: deploy Manitoba-North 2
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) deploy NU-Victoria_Island-East 1
Command Entered: deploy NU-Victoria_Island-East 1
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: josh) advance Ontario-South Ontario-West 1
Command Entered: advance Ontario-South Ontario-West 1
Log: Advance order has been added to queue for execution. For player: josh
Order Issued: (Player: josh) advance Manitoba-North Ontario-North 4
Command Entered: advance Manitoba-North Ontario-North 4
Log: Advance order has been added to queue for execution. For player: josh
Order Issued: (Player: josh) advance Manitoba-South Ontario-West 4
Command Entered: advance Manitoba-South Ontario-West 4
Log: Advance order has been added to queue for execution. For player: josh
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 1 armies to NT-Banks_Island
Log: 4 armies have been deployed successfully on country : NT-Banks_Island
Log:
---------- Deploy order issued by player piyush ----------
Deploy 1 armies to Yukon_Territory
Log: 9 armies have been deployed successfully on country : Yukon_Territory
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Ontario-West
Log: 3 armies have been deployed successfully on country : Ontario-West
Log:
---------- Deploy order issued by player zalak ----------
Deploy 1 armies to BC-Vancouver_Island
Log: 6 armies have been deployed successfully on country : BC-Vancouver_Island
Log:
---------- Deploy order issued by player josh ----------
Deploy 2 armies to Manitoba-North
Log: 7 armies have been deployed successfully on country : Manitoba-North
Log:
---------- Deploy order issued by player zalak ----------
Deploy 1 armies to NU-Victoria_Island-East
Log: 2 armies have been deployed successfully on country : NU-Victoria_Island-East
Log:
---------- Advance order issued by player josh ----------
Move 1 armies from Ontario-South to Ontario-West
Log:
---------- Advance order issued by player josh ----------
Move 4 armies from Manitoba-North to Ontario-North
Log: Player : josh is assigned with Country : Ontario-North and armies : 4
Log:
---------- Advance order issued by player josh ----------
Move 4 armies from Manitoba-South to Ontario-West
=======Start Up Phase=======
Log:
Game Completed.........
Log:
Starting New Game.........
Log: Country/Continent Assignment:
Player : zalak is assigned with country : NU-Ellesmere_Island
Player : zalak is assigned with country : NU-Baffin_Island
Player : zalak is assigned with country : BC-Vancouver_Island
Player : zalak is assigned with country : Nunavut-Continental
Player : zalak is assigned with country : Northwest_Territories-Continental
Player : zalak is assigned with country : British_Columbia-North
Player : zalak is assigned with country : NU-Southern_Islands
Player : zalak is assigned with country : Nova_Scotia
Player : zalak is assigned with country : NT-Victoria_Island-West
Player : zalak is assigned with country : NT-Banks_Island
Player : piyush is assigned with country : New_Brunswick
Player : piyush is assigned with country : British_Columbia-South
Player : piyush is assigned with country : Quebec-Central
Player : piyush is assigned with country : NU-Victoria_Island-East
Player : piyush is assigned with country : Yukon_Territory
Player : piyush is assigned with country : N&L-Labrador
Player : piyush is assigned with country : Saskatchewan-South
Player : piyush is assigned with country : NT-Northern_Islands
Player : piyush is assigned with country : Ontario-North
Player : piyush is assigned with country : Quebec-South
Player : josh is assigned with country : Saskatchewan-North
Player : josh is assigned with country : Alberta-North
Player : josh is assigned with country : Manitoba-North
Player : josh is assigned with country : Manitoba-South
Player : josh is assigned with country : Alberta-South
Player : josh is assigned with country : Quebec-North
Player : josh is assigned with country : N&L-Newfoundland
Player : josh is assigned with country : Ontario-South
Player : josh is assigned with country : Ontario-West
Player : josh is assigned with country : NU-Northern_Islands
Player : zalak is assigned with country : Prince_Edward_Island
Player : zalak is assigned with country : Territory33
Player : zalak is assigned with country : Territory97
Player : zalak is assigned with country : Cockpit03
Player : zalak is assigned with country : Territory15
Player : zalak is assigned with country : Territory36
Player : zalak is assigned with country : Territory98
Player : zalak is assigned with country : Territory49
Player : zalak is assigned with country : Territory92
Player : zalak is assigned with country : Territory80
Player : zalak is assigned with country : Territory51
Player : zalak is assigned with country : Territory22
Player : zalak is assigned with country : Territory85
Player : zalak is assigned with country : Territory43
Player : zalak is assigned with country : abcde
Player : zalak is assigned with country : Territory05
Player : zalak is assigned with country : Territory96
Player : zalak is assigned with country : Territory21
Player : zalak is assigned with country : Territory25
Player : zalak is assigned with country : Territory17
Player : zalak is assigned with country : Territory61
Player : zalak is assigned with country : Territory71
Player : zalak is assigned with country : Territory89
Player : zalak is assigned with country : Territory94
Player : zalak is assigned with country : Territory36!
Player : zalak is assigned with country : Territory13
Player : zalak is assigned with country : Territory29
Player : zalak is assigned with country : Territory55
Player : zalak is assigned with country : Territory65
Player : zalak is assigned with country : Territory28
Player : zalak is assigned with country : Territory99a
Player : zalak is assigned with country : Territory58
Player : zalak is assigned with country : 47
Player : zalak is assigned with country : Territory91
Player : piyush is assigned with country : Territory74
Player : piyush is assigned with country : Territory40
Player : piyush is assigned with country : Territory19
Player : piyush is assigned with country : Territory53
Player : piyush is assigned with country : Territory37
Player : piyush is assigned with country : Territory100
Player : piyush is assigned with country : Cockpit01
Player : piyush is assigned with country : Territory35
Player : piyush is assigned with country : Territory93
Player : piyush is assigned with country : Territory44
Player : piyush is assigned with country : Territory30
Player : piyush is assigned with country : Territory101
Player : piyush is assigned with country : Territory06
Player : piyush is assigned with country : Territory56
Player : piyush is assigned with country : Territory11
Player : piyush is assigned with country : Territory16
Player : piyush is assigned with country : Territory04
Player : piyush is assigned with country : Territory14
Player : piyush is assigned with country : Territory78
Player : piyush is assigned with country : Territory48
Player : piyush is assigned with country : Territory88
Player : piyush is assigned with country : Territory09
Player : piyush is assigned with country : Territory10
Player : piyush is assigned with country : Territory79
Player : piyush is assigned with country : Territory18
Player : piyush is assigned with country : Territory63
Player : piyush is assigned with country : Territory73
Player : piyush is assigned with country : Territory67
Player : piyush is assigned with country : Territory31
Player : piyush is assigned with country : Territory32
Player : piyush is assigned with country : Territory52
Player : piyush is assigned with country : Territory57
Player : piyush is assigned with country : Territory90
Player : josh is assigned with country : Territory62
Player : josh is assigned with country : Territory23
Player : josh is assigned with country : Territory54
Player : josh is assigned with country : Territory47
Player : josh is assigned with country : Territory24
Player : josh is assigned with country : Cockpit02
Player : josh is assigned with country : Territory95
Player : josh is assigned with country : Territory69
Player : josh is assigned with country : Territory08
Player : josh is assigned with country : Territory99
Player : josh is assigned with country : Territory59
Player : josh is assigned with country : Territory76
Player : josh is assigned with country : Territory70
Player : josh is assigned with country : Territory60
Player : josh is assigned with country : Territory84
Player : josh is assigned with country : Territory77
Player : josh is assigned with country : Territory42
Player : josh is assigned with country : Territory45
Player : josh is assigned with country : Territory27
Player : josh is assigned with country : Territory50
Player : josh is assigned with country : Territory72
Player : josh is assigned with country : Territory81
Player : josh is assigned with country : Territory41
Player : josh is assigned with country : Territory39
Player : josh is assigned with country : Territory82
Player : josh is assigned with country : Territory87
Player : josh is assigned with country : Territory26
Player : josh is assigned with country : Territory07
Player : josh is assigned with country : Territory12
Player : josh is assigned with country : Territory68
Player : josh is assigned with country : Territory86
Player : josh is assigned with country : Territory75
Player : josh is assigned with country : Territory20
Player : zalak is assigned with country : Territory66
Player : zalak is assigned with continent : abcd
Log: Player : zalak has been assigned with 21 armies
Log: Player : piyush has been assigned with 11 armies
Log: Player : josh has been assigned with 11 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy abcde 3
Command Entered: deploy abcde 3
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Territory56 4
Command Entered: deploy Territory56 4
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Territory20 5
Command Entered: deploy Territory20 5
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: josh) deploy Territory41 1
Command Entered: deploy Territory41 1
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: josh) deploy Territory87 1
Command Entered: deploy Territory87 1
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: josh) deploy Territory45 2
Command Entered: deploy Territory45 2
Log: Deploy order has been added to queue for execution. For player: josh
=======Order Execution Phase=======
Starting Execution Of Orders.....
Log:
---------- Deploy order issued by player zalak ----------
Deploy 3 armies to abcde
Log: 3 armies have been deployed successfully on country : abcde
Log:
---------- Deploy order issued by player piyush ----------
Deploy 4 armies to Territory56
Log: 4 armies have been deployed successfully on country : Territory56
Log:
---------- Deploy order issued by player josh ----------
Deploy 5 armies to Territory20
Log: 5 armies have been deployed successfully on country : Territory20
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Territory41
Log: 1 armies have been deployed successfully on country : Territory41
Log:
---------- Deploy order issued by player josh ----------
Deploy 1 armies to Territory87
Log: 1 armies have been deployed successfully on country : Territory87
Log:
---------- Deploy order issued by player josh ----------
Deploy 2 armies to Territory45
Log: 2 armies have been deployed successfully on country : Territory45
Log: Player : zalak has been assigned with 39 armies
Log: Player : piyush has been assigned with 18 armies
Log: Player : josh has been assigned with 13 armies
Log: Player : Neutral has been assigned with 0 armies
=======Issue Order Phase=======
Order Issued: (Player: zalak) deploy Territory55 11
Command Entered: deploy Territory55 11
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Territory37 8
Command Entered: deploy Territory37 8
Log: Deploy order has been added to queue for execution. For player: piyush
Order Issued: (Player: josh) deploy Territory60 10
Command Entered: deploy Territory60 10
Log: Deploy order has been added to queue for execution. For player: josh
Order Issued: (Player: zalak) deploy Territory71 23
Command Entered: deploy Territory71 23
Log: Deploy order has been added to queue for execution. For player: zalak
Order Issued: (Player: piyush) deploy Territory35 7