Paste #23046: Denizen Debug Logs From JesusFREAKs Survival Server!

Date: 2015/11/27 08:57:00 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034


Java Version: 1.8.0_66
Up-time: 15h 56m
CraftBukkit Version: git-Spigot-fdc1440-53fac9f (MC: 1.8.8)
Denizen Version: Core: 1.10 (Build Unknown), CraftBukkit: 0.9.7-SNAPSHOT (build 1602)
Active Plugins (34): dynmap: 2.2-1118, WorldEdit: 6.1;no_git_id, EmptyWorldGenerator: 1.5, Essentials: TeamCity, 
BukkitCompat: R22A, CrackShot: 0.98.5, PlugMan: 2.0.7, SleepPercentage: 1.0.3, 
SignMagic: 1.1, WorldGuard: 6.1, Multiverse-Core: 2.5-b688, IslandWorld: 5.9, 
ChestRestock: 2.3.1-SNAPSHOT-b100, EssentialsProtect: TeamCity, Multiverse-Inventories: 2.5-b385, 
Multiverse-SignPortals: 2.5-b679, EssentialsChat: TeamCity, EssentialsAntiBuild: TeamCity, 
PermissionsEx: 1.23.3, mcMMO: 1.5.00-b3547, Multiverse-Portals: 2.5-b723, InfoBook: 1.8, 
Vault: 1.5.6-b49, EssentialsSpawn: TeamCity, MobArena: 0.97.1, KillerMoney: 3.13, 
SignShop: 2.11.0, CommandSigns: 1.9.3.2, Citizens: 2.0.16-SNAPSHOT (build 1274), 
Hotels: 0.4.2, Multiverse-NetherPortals: 2.5-b692, Denizen: 0.9.7-SNAPSHOT (build 1602), 
Sentry: 1.8.5, Depenizen: 0.2.2 (build 268)
Loaded Worlds (4): world, world_nether, world_the_end, IslandWorld
Online Players (1): kain184(kain184)
Offline Players: 21
Mode: online

16:56:09 [INFO] +> [Denizen] Processing outside scripts... 
16:56:09 [INFO] +> [Denizen] Processing unnamed script... 
16:56:09 [INFO] +> [Denizen] Processing '/jftest.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/blazequest.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/blockchangetest.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/bossfightv2.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/horsequest.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/format.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/chestshop.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/shadowassignv4.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/proximitytest.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/enderarchor.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/deathchest.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/cowquest.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/groupmanagement.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/guildshop.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/kainshome.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/selectiontool.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/worldevents.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/rabbitquest.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/selectiontoolv2.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/guildshopitems.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/portalcreator.yml'... 
16:56:09 [INFO] +> [Denizen] Processing '/questcheck.yml'... 
16:56:09 [INFO]  OKAY! All scripts loaded! 
16:56:09 [INFO] +> [Denizen] Adding script KAINSHOMEHANDLER as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script SELECTAREALIST as type COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script SELECTEXPAND as type COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script SHOPCHEST as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script SELECTAREATOOL as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script CHESTSHOPHANDLER as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script GREETING as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script REMOVECRYSTALPERMISSION as type 
                   TASK 
16:56:09 [INFO] +> [Denizen] Adding script LICHEVENTS as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script BUILTIN_LOAD_TESTER as type 
                   COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script GUILDSHOP as type ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script COWQUESTWORLD as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script PARTICLETEST as type ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script GUILDBADGE as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script CHANGEINVTRIG as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script RABBITQUESTWALK as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script PORTALCREATE as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script CCHAT as type FORMAT 
16:56:09 [INFO] +> [Denizen] Adding script DONTTOUCHME as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script SEWERKEY as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script CLONEASSIGNMENT as type 
                   ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script THELICH as type ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script GROUP as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script GUILDSHOPINTERACT as type 
                   INTERACT 
16:56:09 [INFO] +> [Denizen] Adding script GIVESELECTAREATOOL as type 
                   COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script PERSONALBADGE as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script SETANCHORS as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script DAMAGEHANDLER as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script TESTING as type ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script ENDERKNIGHTV5INTERACT as type 
                   INTERACT 
16:56:09 [INFO] +> [Denizen] Adding script SELECTIONTOOLV2 as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script SPAWNHORSE as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script FRONTMANHANDLER as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script WARPCRYSTALHANDLER as type 
                   WORLD 
16:56:09 [INFO] +> [Denizen] Adding script GUILDSHOPINVENTORY as type 
                   INVENTORY 
16:56:09 [INFO] +> [Denizen] Adding script PROXIMITYTESTING as type 
                   ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script ENDING as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script REMOVEITEMS as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script CHESTSHOPREMOVE as type COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script WORLDEVENTS as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script CHANGETEST as type ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script WARPCRYSTAL as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script MASTERSWORD as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script HORSEQUESTHANDLER as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script GUILD_SEWER_KEYHOLE as type 
                   INVENTORY 
16:56:09 [INFO] +> [Denizen] Adding script CCHAT2 as type FORMAT 
16:56:09 [INFO] +> [Denizen] Adding script BADGEHANDLER as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script WINDRIDER as type ENTITY 
16:56:09 [INFO] +> [Denizen] Adding script CRYSTAL as type FORMAT 
16:56:09 [INFO] +> [Denizen] Adding script RABBITQUESTWORLD as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script NSATOOLSAVEV2 as type COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script XALDIN as type ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script TRAVELSEWERS as type ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script MAPWALK as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script COWQUESTWALK as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script SELECTAREASAVEREMOVE as type 
                   COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script CLONETALK as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script SELECTIONTOOLHANDLERV2 as type 
                   WORLD 
16:56:09 [INFO] +> [Denizen] Adding script QUESTINFO as type COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script SELECTAREATOOLSAVE as type 
                   COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script XALDININTERACT as type INTERACT 
16:56:09 [INFO] +> [Denizen] Adding script SELECTAREA as type COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script ENDERARCHOR as type ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script NSATOOLV2 as type COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script SEWERTRAVELS as type INTERACT 
16:56:09 [INFO] +> [Denizen] Adding script VICTORY as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script CHANGE as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script GUILDSHOPHANDLER as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script CHESTSHOP as type COMMAND 
16:56:09 [INFO] +> [Denizen] Adding script QUESTCHECK as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script FAIRWELL as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script TESTINGINTERACT as type 
                   INTERACT 
16:56:09 [INFO] +> [Denizen] Adding script ENDERKNIGHTV5 as type 
                   ASSIGNMENT 
16:56:09 [INFO] +> [Denizen] Adding script KEYHOLE as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script DEATHCHESTHANDLER as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script BLAZEQUESTHANDLER as type WORLD 
16:56:09 [INFO] +> [Denizen] Adding script SELECTIONTOOLHANDLER as type 
                   WORLD 
16:56:09 [INFO] +> [Denizen] Adding script MASTERSWORDHANDLER as type 
                   WORLD 
16:56:09 [INFO] +> [Denizen] Adding script TELEPORTSYSTEM as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script DEATHCHEST as type ITEM 
16:56:09 [INFO] +> [Denizen] Adding script WALK as type TASK 
16:56:09 [INFO] +> [Denizen] Adding script CRYSTALCOMMAND as type COMMAND 
16:56:09 [INFO] +> [Denizen] Scanning 22 world scripts... 
16:56:09 [INFO] +> [CommandSmart...] Loaded Command SmartEvent. 
16:56:09 [INFO] +> [CuboidEnterE...] Loaded Cuboid Enter & Exit 
                   SmartEvent. 
16:56:09 [INFO] +> [Denizen] Reloading script events... 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_khteleport'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player exits selectarea_kainsdoorsensor1'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_kainsdoorsensor1'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_kainshome'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player exits selectarea_kainshome'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters lichroom'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters battleroom'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters lichroomexit'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player exits selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player exits selectarea_outpostentrance'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_outpostentrance'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters vehicle in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player exits selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player exits selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player exits selectarea_zombiemap'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_zombiemap'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_zombiemaplobby'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_talk1'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_talk2'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_talk3'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_commander'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_talk4'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player exits selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 
                   'player enters selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, BucketEmpty matched for 'player 
                   empties bucket'! 
16:56:09 [INFO] +> [Denizen] Event match, Chat matched for 'player chats 
                   in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, Chat matched for 'player chats'! 
16:56:09 [INFO] +> [Denizen] Event match, Chat matched for 'player chats 
                   in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, Chat matched for 'player chats 
                   in selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, Chat matched for 'player chats 
                   in selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block in selectarea_kainsbase'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks shopchest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block in selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block in selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityDamaged matched for 
                   'TheLich damaged by BLOCK_EXPLOSION'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityDamaged matched for 
                   'TheLich damaged by fire'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityDamaged matched for 
                   'TheLich damaged by entity in battleroom'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityDamaged matched for 
                   'TheLich damaged by ENTITY_EXPLOSION'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'cow 
                   damaged in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityDamaged matched for 
                   'player damaged by player'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityDies matched for 'player 
                   dies in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityDies matched for 'player 
                   dies in selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityDies matched for 'player 
                   dies in selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_khteleport'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_kainsdoorsensor1'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_kainshome'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters lichroom'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters battleroom'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters lichroomexit'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_outpostentrance'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters vehicle in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_zombiemap'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_zombiemaplobby'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_talk1'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_talk2'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_talk3'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_commander'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_talk4'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExplodes matched for 
                   'primed_tnt explodes in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExplodes matched for 
                   'primed_tnt explodes in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExplodes matched for 
                   'entity explodes in selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityKilled matched for 'cow 
                   killed by player in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityKilled matched for 'rabbit 
                   killed by player in selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits selectarea_kainsdoorsensor1'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits selectarea_kainshome'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits selectarea_outpostentrance'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits selectarea_zombiemap'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns in selectarea_kainsbase'! 
16:56:09 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityTeleports matched for 
                   'entity teleports in battleroom'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityTeleports matched for 
                   'TheLich teleports in battleroom'! 
16:56:09 [INFO] +> [Denizen] Event match, EntityTeleports matched for 
                   'player teleports in battleroom'! 
16:56:09 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns in selectarea_kainsbase'! 
16:56:09 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block in selectarea_kainsbase'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks shopchest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block in selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block in selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 
                   'player breaks block in selectarea_kainsbase'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 
                   'player breaks shopchest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 
                   'player breaks block in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 
                   'player breaks block in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 
                   'player breaks block in selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 
                   'player breaks block in selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerDragsInInventory matched 
                   for 'player drags in inventory'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 
                   'player drops warpcrystal'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 
                   'player drops selectiontoolv2'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 
                   'player drops donttouchme'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 
                   'player drops blaze_rod in selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 
                   'player drops selectareatool'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerOpensInv matched for 
                   'player opens deathchest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPicksUp matched for 
                   'player picks up item in selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block in selectarea_kainsbase'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block in selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block in selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block in selectarea_kainsbase'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block in selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block in selectarea_blazequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits in battleroom'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerRespawns matched for 
                   'player respawns'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerRespawns matched for 
                   'player respawns'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerRespawns matched for 
                   'player respawns'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerWalks matched for 'player 
                   walks in selectarea_rabbitkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerWalks matched for 'player 
                   walks in selectarea_horsequest'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerWalks matched for 'player 
                   walks in selectarea_zombiemap'! 
16:56:09 [INFO] +> [Denizen] Event match, PlayerWalks matched for 'player 
                   walks in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 
                   'TheLich damaged by BLOCK_EXPLOSION'! 
16:56:09 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 
                   'TheLich damaged by fire'! 
16:56:09 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 
                   'TheLich damaged by entity in battleroom'! 
16:56:09 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 
                   'TheLich damaged by ENTITY_EXPLOSION'! 
16:56:09 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'cow 
                   damaged in selectarea_cowkillzone'! 
16:56:09 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 
                   'player damaged by player'! 
16:56:12 [INFO]  Starting InstantQueue 'EXCOMMAND_NursingDmIi'... 
16:56:12 [INFO]  Queue 'EXCOMMAND_NursingDmIi' Executing: RUN 
                   "portalcreate" 
16:56:12 [INFO] +- Executing dCommand: RUN/p@kain184 ---------+ 
16:56:12 [INFO] +> Executing 'RUN': script='PORTALCREATE(TASK)' 
16:56:12 [INFO]  Starting TimedQueue 'PORTALCREATE_EmployedJobsShakira'... 
16:56:12 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   DEFINE "startpoint" "l@48.0,6.0,1694.0,world" 
16:56:12 [INFO] +- Executing dCommand: DEFINE/p@kain184 ---------+ 
16:56:12 [INFO] +> Executing 'DEFINE': 
                   queue='PORTALCREATE_EmployedJobsShakira'  
                   definition='startpoint'  value='l@48.0,6.0,1694.0,world' 
16:56:12 [INFO]  Completing queue 'EXCOMMAND_NursingDmIi' in 1ms. 
16:56:13 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   DEFINE "direction" "north" 
16:56:13 [INFO] +- Executing dCommand: DEFINE/p@kain184 ---------+ 
16:56:13 [INFO] +> Executing 'DEFINE': 
                   queue='PORTALCREATE_EmployedJobsShakira'  
                   definition='direction'  value='north' 
16:56:13 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   DEFINE "name" "test" 
16:56:13 [INFO] +- Executing dCommand: DEFINE/p@kain184 ---------+ 
16:56:13 [INFO] +> Executing 'DEFINE': 
                   queue='PORTALCREATE_EmployedJobsShakira'  
                   definition='name'  value='test' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[startpoint]>" "==" "def[startpoint]" "{" "-" 
                   "narrate" "starting point of the portal has not been 
                   created. please contact server mod for assistance" 
                   "targets:<server.list_online_players>" "}" "else" "{" "-" 
                   "if" "<def[direction]>" "==" "def[direction]" "{" "-" 
                   "narrate" "direction for layout of portal has not been 
                   set. please contact server mod for assistance" "}" "else" 
                   "{" "-" "if" "<def[name]>" "==" "def[name]" "{" "-" 
                   "narrate" "<red>name not... * snip! * 
16:56:14 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'IF': use_braces='true' 
16:56:14 [INFO]  Filled tag <def[startpoint]> with 
                   'l@48.0,6.0,1694.0,world'. 
16:56:14 [INFO]  Comparable='Element(l@48.0,6.0,1694.0,world)', 
                   Operator='EQUALS', ComparedTo='Element(def[startpoint])' 
                   --> OUTCOME='false' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[direction]>" "==" "def[direction]" "{" "-" "narrate" 
                   "direction for layout of portal has not been set. please 
                   contact server mod for assistance" "}" "else" "{" "-" "if" 
                   "<def[name]>" "==" "def[name]" "{" "-" "narrate" 
                   "<red>name not supplied please try again" "}" "else" "{" 
                   "-" "if" "<def[direction]>" "==" "north" "{" "-" "define" 
                   "startpointplus" "<def[startpoint].add[3,0,0]>" "-" 
                   "repeat" "5" "{" "-" "flag" "global" 
                   "portalscan%name%:->:<def[st... * snip! * 
16:56:14 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'IF': use_braces='true' 
16:56:14 [INFO]  Filled tag <def[direction]> with 'north'. 
16:56:14 [INFO]  Comparable='Element(north)', Operator='EQUALS', 
                   ComparedTo='Element(def[direction])' --> OUTCOME='false' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[name]>" "==" "def[name]" "{" "-" "narrate" 
                   "<red>name not supplied please try again" "}" "else" "{" 
                   "-" "if" "<def[direction]>" "==" "north" "{" "-" "define" 
                   "startpointplus" "<def[startpoint].add[3,0,0]>" "-" 
                   "repeat" "5" "{" "-" "flag" "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[<def[value]>,0,0]>" 
                   "}" "}" "-" "if" "<def[direction]>" "==" "south" "{" "-" 
                   "define" "startpointplus" "<def[startpoint].add[3,0,0]>" 
                   "-" "repeat" "5" "{" "-... * snip! * 
16:56:14 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'IF': use_braces='true' 
16:56:14 [INFO]  Filled tag <def[name]> with 'test'. 
16:56:14 [INFO]  Comparable='Element(test)', Operator='EQUALS', 
                   ComparedTo='Element(def[name])' --> OUTCOME='false' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[direction]>" "==" "north" "{" "-" "define" 
                   "startpointplus" "<def[startpoint].add[3,0,0]>" "-" 
                   "repeat" "5" "{" "-" "flag" "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[<def[value]>,0,0]>" 
                   "}" "}" 
16:56:14 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'IF': use_braces='true' 
16:56:14 [INFO]  Filled tag <def[direction]> with 'north'. 
16:56:14 [INFO]  Comparable='Element(north)', Operator='EQUALS', 
                   ComparedTo='Element(north)' --> OUTCOME='true' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   DEFINE "startpointplus" "<def[startpoint].add[3,0,0]>" 
16:56:14 [INFO] +- Executing dCommand: DEFINE/p@kain184 ---------+ 
16:56:14 [INFO]  Filled tag <def[startpoint].add[3,0,0]> with 
                   'l@51.0,6.0,1694.0,world'. 
16:56:14 [INFO] +> Executing 'DEFINE': 
                   queue='PORTALCREATE_EmployedJobsShakira'  
                   definition='startpointplus'  
                   value='l@51.0,6.0,1694.0,world' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT "5" "{" "-" "flag" "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[<def[value]>,0,0]>" 
                   "}" 
16:56:14 [INFO] +- Executing dCommand: REPEAT/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'REPEAT': qty='5' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: FLAG 
                   "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[<def[value]>,0,0]>" 
16:56:14 [INFO] +- Executing dCommand: FLAG/p@kain184 ---------+ 
16:56:14 [INFO]  Filled definition %name% with 'test'. 
16:56:14 [INFO]  Filled tag <def[value]> with '1'. 
16:56:14 [INFO]  Filled tag <def[startpointplus].sub[1,0,0]> with 
                   'l@50.0,6.0,1694.0,world'. 
16:56:14 [INFO] +> Executing 'FLAG': flag_name='PORTALSCANTEST'  
                   Action/Value='INSERT(l@50.0,6.0,1694.0,world)'  
                   flag_target='server' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:14 [INFO] +- Repeat loop 2 ---------+ 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: FLAG 
                   "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[<def[value]>,0,0]>" 
16:56:14 [INFO] +- Executing dCommand: FLAG/p@kain184 ---------+ 
16:56:14 [INFO]  Filled definition %name% with 'test'. 
16:56:14 [INFO]  Filled tag <def[value]> with '2'. 
16:56:14 [INFO]  Filled tag <def[startpointplus].sub[2,0,0]> with 
                   'l@49.0,6.0,1694.0,world'. 
16:56:14 [INFO] +> Executing 'FLAG': flag_name='PORTALSCANTEST'  
                   Action/Value='INSERT(l@49.0,6.0,1694.0,world)'  
                   flag_target='server' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:14 [INFO] +- Repeat loop 3 ---------+ 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: FLAG 
                   "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[<def[value]>,0,0]>" 
16:56:14 [INFO] +- Executing dCommand: FLAG/p@kain184 ---------+ 
16:56:14 [INFO]  Filled definition %name% with 'test'. 
16:56:14 [INFO]  Filled tag <def[value]> with '3'. 
16:56:14 [INFO]  Filled tag <def[startpointplus].sub[3,0,0]> with 
                   'l@48.0,6.0,1694.0,world'. 
16:56:14 [INFO] +> Executing 'FLAG': flag_name='PORTALSCANTEST'  
                   Action/Value='INSERT(l@48.0,6.0,1694.0,world)'  
                   flag_target='server' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:14 [INFO] +- Repeat loop 4 ---------+ 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: FLAG 
                   "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[<def[value]>,0,0]>" 
16:56:14 [INFO] +- Executing dCommand: FLAG/p@kain184 ---------+ 
16:56:14 [INFO]  Filled definition %name% with 'test'. 
16:56:14 [INFO]  Filled tag <def[value]> with '4'. 
16:56:14 [INFO]  Filled tag <def[startpointplus].sub[4,0,0]> with 
                   'l@47.0,6.0,1694.0,world'. 
16:56:14 [INFO] +> Executing 'FLAG': flag_name='PORTALSCANTEST'  
                   Action/Value='INSERT(l@47.0,6.0,1694.0,world)'  
                   flag_target='server' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:14 [INFO] +- Repeat loop 5 ---------+ 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: FLAG 
                   "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[<def[value]>,0,0]>" 
16:56:14 [INFO] +- Executing dCommand: FLAG/p@kain184 ---------+ 
16:56:14 [INFO]  Filled definition %name% with 'test'. 
16:56:14 [INFO]  Filled tag <def[value]> with '5'. 
16:56:14 [INFO]  Filled tag <def[startpointplus].sub[5,0,0]> with 
                   'l@46.0,6.0,1694.0,world'. 
16:56:14 [INFO] +> Executing 'FLAG': flag_name='PORTALSCANTEST'  
                   Action/Value='INSERT(l@46.0,6.0,1694.0,world)'  
                   flag_target='server' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[direction]>" "==" "south" "{" "-" "define" 
                   "startpointplus" "<def[startpoint].add[3,0,0]>" "-" 
                   "repeat" "5" "{" "-" "flag" "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[<def[value]>,0,0]>" 
                   "}" "}" 
16:56:14 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'IF': use_braces='true' 
16:56:14 [INFO]  Filled tag <def[direction]> with 'north'. 
16:56:14 [INFO]  Comparable='Element(north)', Operator='EQUALS', 
                   ComparedTo='Element(south)' --> OUTCOME='false' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[direction]>" "==" "east" "{" "-" "define" 
                   "startpointplus" "<def[startpoint].add[0,0,3]>" "-" 
                   "repeat" "5" "{" "-" "flag" "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[0,0,<def[value]>]>" 
                   "}" "}" 
16:56:14 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'IF': use_braces='true' 
16:56:14 [INFO]  Filled tag <def[direction]> with 'north'. 
16:56:14 [INFO]  Comparable='Element(north)', Operator='EQUALS', 
                   ComparedTo='Element(east)' --> OUTCOME='false' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[direction]>" "==" "west" "{" "-" "define" 
                   "startpointplus" "<def[startpoint].add[0,0,3]>" "-" 
                   "repeat" "5" "{" "-" "flag" "global" 
                   "portalscan%name%:->:<def[startpointplus].sub[0,0,<def[value]>>" 
                   "}" "}" 
16:56:14 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'IF': use_braces='true' 
16:56:14 [INFO]  Filled tag <def[direction]> with 'north'. 
16:56:14 [INFO]  Comparable='Element(north)', Operator='EQUALS', 
                   ComparedTo='Element(west)' --> OUTCOME='false' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<global.flag[portalscan%name%].as_list.parse[material].contains[m@air]>" 
                   "{" "-" "modifyblock" 
                   "<global.flag[portalscan%name%].as_list>" "stone" "}" 
16:56:14 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:14 [INFO]  Filled definition %name% with 'test'. 
16:56:14 [INFO] +> Executing 'IF': use_braces='true' 
16:56:14 [INFO]  Filled tag 
                   <global.flag[portalscantest].as_list.parse[material].contains[m@air]> 
                   with 'true'. 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   MODIFYBLOCK "<global.flag[portalscan%name%].as_list>" 
                   "stone" 
16:56:14 [INFO] +- Executing dCommand: MODIFYBLOCK/p@kain184 ---------+ 
16:56:14 [INFO]  Filled definition %name% with 'test'. 
16:56:14 [INFO]  Filled tag <global.flag[portalscantest].as_list> with 
                   'li@l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,wor... 
                   * snip! * 
16:56:14 [INFO] +> Executing 'MODIFYBLOCK': 
                   location_list='li@l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,... 
                   * snip! * 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[direction]>" "==" "north" "{" "-" "repeat" "5" "{" 
                   "-" "spawn" "<def[startpoint].add[2,6,0]>" 
                   "falling_block,gold_block" "-" "spawn" 
                   "<def[startpoint].add[-2,6,0]>" "falling_block,gold_block" 
                   "-" "wait" "10t" "}" "-" "repeat" "3" "{" "-" "define" 
                   "startpointplus" "<def[startpoint].add[2,0,0]>" "-" 
                   "spawn" "<def[startpointplus].sub[%value%,-6,0]>" 
                   "falling_block,gold_block" "-" "wait" "12t" "-" 
                   "modifyblock" "<def[startpointplus].sub[%value%,-4,0]... * 
                   snip! * 
16:56:14 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'IF': use_braces='true' 
16:56:14 [INFO]  Filled tag <def[direction]> with 'north'. 
16:56:14 [INFO]  Comparable='Element(north)', Operator='EQUALS', 
                   ComparedTo='Element(north)' --> OUTCOME='true' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT "5" "{" "-" "spawn" "<def[startpoint].add[2,6,0]>" 
                   "falling_block,gold_block" "-" "spawn" 
                   "<def[startpoint].add[-2,6,0]>" "falling_block,gold_block" 
                   "-" "wait" "10t" "}" 
16:56:14 [INFO] +- Executing dCommand: REPEAT/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'REPEAT': qty='5' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpoint].add[2,6,0]>" "falling_block,gold_block" 
16:56:14 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:14 [INFO]  Filled tag <def[startpoint].add[2,6,0]> with 
                   'l@50.0,12.0,1694.0,world'. 
16:56:14 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@50.0,12.0,1694.0,world' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpoint].add[-2,6,0]>" "falling_block,gold_block" 
16:56:14 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:14 [INFO]  Filled tag <def[startpoint].add[-2,6,0]> with 
                   'l@46.0,12.0,1694.0,world'. 
16:56:14 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@46.0,12.0,1694.0,world' 
16:56:14 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "10t" 
16:56:14 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:14 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@10t' 
16:56:15 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:15 [INFO] +- Repeat loop 2 ---------+ 
16:56:15 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpoint].add[2,6,0]>" "falling_block,gold_block" 
16:56:15 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:15 [INFO]  Filled tag <def[startpoint].add[2,6,0]> with 
                   'l@50.0,12.0,1694.0,world'. 
16:56:15 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@50.0,12.0,1694.0,world' 
16:56:15 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpoint].add[-2,6,0]>" "falling_block,gold_block" 
16:56:15 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:15 [INFO]  Filled tag <def[startpoint].add[-2,6,0]> with 
                   'l@46.0,12.0,1694.0,world'. 
16:56:15 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@46.0,12.0,1694.0,world' 
16:56:15 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "10t" 
16:56:15 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:15 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@10t' 
16:56:16 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:16 [INFO] +- Repeat loop 3 ---------+ 
16:56:16 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpoint].add[2,6,0]>" "falling_block,gold_block" 
16:56:16 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:16 [INFO]  Filled tag <def[startpoint].add[2,6,0]> with 
                   'l@50.0,12.0,1694.0,world'. 
16:56:16 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@50.0,12.0,1694.0,world' 
16:56:16 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpoint].add[-2,6,0]>" "falling_block,gold_block" 
16:56:16 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:16 [INFO]  Filled tag <def[startpoint].add[-2,6,0]> with 
                   'l@46.0,12.0,1694.0,world'. 
16:56:16 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@46.0,12.0,1694.0,world' 
16:56:16 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "10t" 
16:56:16 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:16 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@10t' 
16:56:17 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:17 [INFO] +- Repeat loop 4 ---------+ 
16:56:17 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpoint].add[2,6,0]>" "falling_block,gold_block" 
16:56:17 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:17 [INFO]  Filled tag <def[startpoint].add[2,6,0]> with 
                   'l@50.0,12.0,1694.0,world'. 
16:56:17 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@50.0,12.0,1694.0,world' 
16:56:17 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpoint].add[-2,6,0]>" "falling_block,gold_block" 
16:56:17 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:17 [INFO]  Filled tag <def[startpoint].add[-2,6,0]> with 
                   'l@46.0,12.0,1694.0,world'. 
16:56:17 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@46.0,12.0,1694.0,world' 
16:56:17 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "10t" 
16:56:17 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:17 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@10t' 
16:56:18 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:18 [INFO] +- Repeat loop 5 ---------+ 
16:56:18 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpoint].add[2,6,0]>" "falling_block,gold_block" 
16:56:18 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:18 [INFO]  Filled tag <def[startpoint].add[2,6,0]> with 
                   'l@50.0,12.0,1694.0,world'. 
16:56:18 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@50.0,12.0,1694.0,world' 
16:56:18 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpoint].add[-2,6,0]>" "falling_block,gold_block" 
16:56:18 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:18 [INFO]  Filled tag <def[startpoint].add[-2,6,0]> with 
                   'l@46.0,12.0,1694.0,world'. 
16:56:18 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@46.0,12.0,1694.0,world' 
16:56:18 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "10t" 
16:56:18 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:18 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@10t' 
16:56:19 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:19 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT "3" "{" "-" "define" "startpointplus" 
                   "<def[startpoint].add[2,0,0]>" "-" "spawn" 
                   "<def[startpointplus].sub[%value%,-6,0]>" 
                   "falling_block,gold_block" "-" "wait" "12t" "-" 
                   "modifyblock" "<def[startpointplus].sub[%value%,-4,0]>" 
                   "stone" "-" "spawn" 
                   "<def[startpointplus].sub[%value%,-6,0]>" 
                   "falling_block,gold_block" "-" "wait" "7t" "-" 
                   "modifyblock" "<def[startpointplus].sub[%value%,-4,0]>" 
                   "air" "}" 
16:56:19 [INFO] +- Executing dCommand: REPEAT/p@kain184 ---------+ 
16:56:19 [INFO] +> Executing 'REPEAT': qty='3' 
16:56:19 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   DEFINE "startpointplus" "<def[startpoint].add[2,0,0]>" 
16:56:19 [INFO] +- Executing dCommand: DEFINE/p@kain184 ---------+ 
16:56:19 [INFO]  Filled tag <def[startpoint].add[2,0,0]> with 
                   'l@50.0,6.0,1694.0,world'. 
16:56:19 [INFO] +> Executing 'DEFINE': 
                   queue='PORTALCREATE_EmployedJobsShakira'  
                   definition='startpointplus'  
                   value='l@50.0,6.0,1694.0,world' 
16:56:19 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpointplus].sub[%value%,-6,0]>" 
                   "falling_block,gold_block" 
16:56:19 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:19 [INFO]  Filled definition %value% with '1'. 
16:56:19 [INFO]  Filled tag <def[startpointplus].sub[1,-6,0]> with 
                   'l@49.0,12.0,1694.0,world'. 
16:56:19 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@49.0,12.0,1694.0,world' 
16:56:19 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "12t" 
16:56:19 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:19 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@12t' 
16:56:20 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   MODIFYBLOCK "<def[startpointplus].sub[%value%,-4,0]>" 
                   "stone" 
16:56:20 [INFO] +- Executing dCommand: MODIFYBLOCK/p@kain184 ---------+ 
16:56:20 [INFO]  Filled definition %value% with '1'. 
16:56:20 [INFO]  Filled tag <def[startpointplus].sub[1,-4,0]> with 
                   'l@49.0,10.0,1694.0,world'. 
16:56:20 [INFO] +> Executing 'MODIFYBLOCK': 
                   location_list='li@l@49.0,10.0,1694.0,world'  
                   materials='li@stone'  physics='true'  radius='0'  
                   height='0'  depth='0'  natural='false'  delayed='false' 
16:56:20 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpointplus].sub[%value%,-6,0]>" 
                   "falling_block,gold_block" 
16:56:20 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:20 [INFO]  Filled definition %value% with '1'. 
16:56:20 [INFO]  Filled tag <def[startpointplus].sub[1,-6,0]> with 
                   'l@49.0,12.0,1694.0,world'. 
16:56:20 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@49.0,12.0,1694.0,world' 
16:56:20 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "7t" 
16:56:20 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:20 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@7t' 
16:56:21 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   MODIFYBLOCK "<def[startpointplus].sub[%value%,-4,0]>" 
                   "air" 
16:56:21 [INFO] +- Executing dCommand: MODIFYBLOCK/p@kain184 ---------+ 
16:56:21 [INFO]  Filled definition %value% with '1'. 
16:56:21 [INFO]  Filled tag <def[startpointplus].sub[1,-4,0]> with 
                   'l@49.0,10.0,1694.0,world'. 
16:56:21 [INFO] +> Executing 'MODIFYBLOCK': 
                   location_list='li@l@49.0,10.0,1694.0,world'  
                   materials='li@air'  physics='true'  radius='0'  height='0' 
                    depth='0'  natural='false'  delayed='false' 
16:56:21 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:21 [INFO] +- Repeat loop 2 ---------+ 
16:56:21 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   DEFINE "startpointplus" "<def[startpoint].add[2,0,0]>" 
16:56:21 [INFO] +- Executing dCommand: DEFINE/p@kain184 ---------+ 
16:56:21 [INFO]  Filled tag <def[startpoint].add[2,0,0]> with 
                   'l@50.0,6.0,1694.0,world'. 
16:56:21 [INFO] +> Executing 'DEFINE': 
                   queue='PORTALCREATE_EmployedJobsShakira'  
                   definition='startpointplus'  
                   value='l@50.0,6.0,1694.0,world' 
16:56:21 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpointplus].sub[%value%,-6,0]>" 
                   "falling_block,gold_block" 
16:56:21 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:21 [INFO]  Filled definition %value% with '2'. 
16:56:21 [INFO]  Filled tag <def[startpointplus].sub[2,-6,0]> with 
                   'l@48.0,12.0,1694.0,world'. 
16:56:21 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@48.0,12.0,1694.0,world' 
16:56:21 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "12t" 
16:56:21 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:21 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@12t' 
16:56:22 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   MODIFYBLOCK "<def[startpointplus].sub[%value%,-4,0]>" 
                   "stone" 
16:56:22 [INFO] +- Executing dCommand: MODIFYBLOCK/p@kain184 ---------+ 
16:56:22 [INFO]  Filled definition %value% with '2'. 
16:56:22 [INFO]  Filled tag <def[startpointplus].sub[2,-4,0]> with 
                   'l@48.0,10.0,1694.0,world'. 
16:56:22 [INFO] +> Executing 'MODIFYBLOCK': 
                   location_list='li@l@48.0,10.0,1694.0,world'  
                   materials='li@stone'  physics='true'  radius='0'  
                   height='0'  depth='0'  natural='false'  delayed='false' 
16:56:22 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpointplus].sub[%value%,-6,0]>" 
                   "falling_block,gold_block" 
16:56:22 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:22 [INFO]  Filled definition %value% with '2'. 
16:56:22 [INFO]  Filled tag <def[startpointplus].sub[2,-6,0]> with 
                   'l@48.0,12.0,1694.0,world'. 
16:56:22 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@48.0,12.0,1694.0,world' 
16:56:22 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "7t" 
16:56:22 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:22 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@7t' 
16:56:22 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   MODIFYBLOCK "<def[startpointplus].sub[%value%,-4,0]>" 
                   "air" 
16:56:22 [INFO] +- Executing dCommand: MODIFYBLOCK/p@kain184 ---------+ 
16:56:22 [INFO]  Filled definition %value% with '2'. 
16:56:22 [INFO]  Filled tag <def[startpointplus].sub[2,-4,0]> with 
                   'l@48.0,10.0,1694.0,world'. 
16:56:22 [INFO] +> Executing 'MODIFYBLOCK': 
                   location_list='li@l@48.0,10.0,1694.0,world'  
                   materials='li@air'  physics='true'  radius='0'  height='0' 
                    depth='0'  natural='false'  delayed='false' 
16:56:22 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:22 [INFO] +- Repeat loop 3 ---------+ 
16:56:22 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   DEFINE "startpointplus" "<def[startpoint].add[2,0,0]>" 
16:56:22 [INFO] +- Executing dCommand: DEFINE/p@kain184 ---------+ 
16:56:22 [INFO]  Filled tag <def[startpoint].add[2,0,0]> with 
                   'l@50.0,6.0,1694.0,world'. 
16:56:22 [INFO] +> Executing 'DEFINE': 
                   queue='PORTALCREATE_EmployedJobsShakira'  
                   definition='startpointplus'  
                   value='l@50.0,6.0,1694.0,world' 
16:56:22 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpointplus].sub[%value%,-6,0]>" 
                   "falling_block,gold_block" 
16:56:22 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:22 [INFO]  Filled definition %value% with '3'. 
16:56:22 [INFO]  Filled tag <def[startpointplus].sub[3,-6,0]> with 
                   'l@47.0,12.0,1694.0,world'. 
16:56:22 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@47.0,12.0,1694.0,world' 
16:56:22 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "12t" 
16:56:22 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:22 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@12t' 
16:56:23 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   MODIFYBLOCK "<def[startpointplus].sub[%value%,-4,0]>" 
                   "stone" 
16:56:23 [INFO] +- Executing dCommand: MODIFYBLOCK/p@kain184 ---------+ 
16:56:23 [INFO]  Filled definition %value% with '3'. 
16:56:23 [INFO]  Filled tag <def[startpointplus].sub[3,-4,0]> with 
                   'l@47.0,10.0,1694.0,world'. 
16:56:23 [INFO] +> Executing 'MODIFYBLOCK': 
                   location_list='li@l@47.0,10.0,1694.0,world'  
                   materials='li@stone'  physics='true'  radius='0'  
                   height='0'  depth='0'  natural='false'  delayed='false' 
16:56:23 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: SPAWN 
                   "<def[startpointplus].sub[%value%,-6,0]>" 
                   "falling_block,gold_block" 
16:56:23 [INFO] +- Executing dCommand: SPAWN/p@kain184 ---------+ 
16:56:23 [INFO]  Filled definition %value% with '3'. 
16:56:23 [INFO]  Filled tag <def[startpointplus].sub[3,-6,0]> with 
                   'l@47.0,12.0,1694.0,world'. 
16:56:23 [INFO] +> Executing 'SPAWN': entities='[e@falling_block]'  
                   location='l@47.0,12.0,1694.0,world' 
16:56:23 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: WAIT 
                   "7t" 
16:56:23 [INFO] +- Executing dCommand: WAIT/p@kain184 ---------+ 
16:56:23 [INFO] +> Executing 'WAIT': 
                   queue='PORTALCREATE_EmployedJobsShakira'  delay='d@7t' 
16:56:24 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   MODIFYBLOCK "<def[startpointplus].sub[%value%,-4,0]>" 
                   "air" 
16:56:24 [INFO] +- Executing dCommand: MODIFYBLOCK/p@kain184 ---------+ 
16:56:24 [INFO]  Filled definition %value% with '3'. 
16:56:24 [INFO]  Filled tag <def[startpointplus].sub[3,-4,0]> with 
                   'l@47.0,10.0,1694.0,world'. 
16:56:24 [INFO] +> Executing 'MODIFYBLOCK': 
                   location_list='li@l@47.0,10.0,1694.0,world'  
                   materials='li@air'  physics='true'  radius='0'  height='0' 
                    depth='0'  natural='false'  delayed='false' 
16:56:24 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   REPEAT " CALLBACK" 
16:56:24 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[direction]>" "==" "south" "{" "-" "repeat" "5" "{" 
                   "-" "spawn" "<def[startpoint].add[2,6,0]>" 
                   "falling_block,gold_block" "-" "spawn" 
                   "<def[startpoint].add[-2,6,0]>" "falling_block,gold_block" 
                   "-" "wait" "10t" "}" "-" "repeat" "3" "{" "-" "define" 
                   "startpointplus" "<def[startpoint].add[2,0,0]>" "-" 
                   "spawn" "<def[startpointplus].sub[%value%,-6,0]>" 
                   "falling_block,gold_block" "-" "wait" "12t" "-" 
                   "modifyblock" "<def[startpointplus].sub[%value%,-4,0]... * 
                   snip! * 
16:56:24 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:24 [INFO] +> Executing 'IF': use_braces='true' 
16:56:24 [INFO]  Filled tag <def[direction]> with 'north'. 
16:56:24 [INFO]  Comparable='Element(north)', Operator='EQUALS', 
                   ComparedTo='Element(south)' --> OUTCOME='false' 
16:56:24 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[direction]>" "==" "east" "{" "-" "repeat" "5" "{" 
                   "-" "spawn" "<def[startpoint].add[0,6,2]>" 
                   "falling_block,gold_block" "-" "spawn" 
                   "<def[startpoint].add[0,6,-2]>" "falling_block,gold_block" 
                   "-" "wait" "10t" "}" "-" "repeat" "3" "{" "-" "define" 
                   "startpointplus" "<def[startpoint].add[0,0,2]>" "-" 
                   "spawn" "<def[startpointplus].sub[0,-6,%value%]>" 
                   "falling_block,gold_block" "-" "wait" "12t" "-" 
                   "modifyblock" "<def[startpointplus].sub[0,-4,%value%]>... 
                   * snip! * 
16:56:24 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:24 [INFO] +> Executing 'IF': use_braces='true' 
16:56:24 [INFO]  Filled tag <def[direction]> with 'north'. 
16:56:24 [INFO]  Comparable='Element(north)', Operator='EQUALS', 
                   ComparedTo='Element(east)' --> OUTCOME='false' 
16:56:24 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: IF 
                   "<def[direction]>" "==" "west" "{" "-" "repeat" "5" "{" 
                   "-" "spawn" "<def[startpoint].add[0,6,2]>" 
                   "falling_block,gold_block" "-" "spawn" 
                   "<def[startpoint].add[0,6,-2]>" "falling_block,gold_block" 
                   "-" "wait" "10t" "}" "-" "repeat" "3" "{" "-" "define" 
                   "startpointplus" "<def[startpoint].add[0,0,2]>" "-" 
                   "spawn" "<def[startpointplus].sub[0,-6,%value%]>" 
                   "falling_block,gold_block" "-" "wait" "12t" "-" 
                   "modifyblock" "<def[startpointplus].sub[0,-4,%value%]>... 
                   * snip! * 
16:56:24 [INFO] +- Executing dCommand: IF/p@kain184 ---------+ 
16:56:24 [INFO] +> Executing 'IF': use_braces='true' 
16:56:24 [INFO]  Filled tag <def[direction]> with 'north'. 
16:56:24 [INFO]  Comparable='Element(north)', Operator='EQUALS', 
                   ComparedTo='Element(west)' --> OUTCOME='false' 
16:56:24 [INFO]  Queue 'PORTALCREATE_EmployedJobsShakira' Executing: 
                   MODIFYBLOCK "<global.flag[portalscan%name%].as_list>" 
                   "<global.flag[portalscan%name%].as_list.parse[material]>" 
16:56:24 [INFO] +- Executing dCommand: MODIFYBLOCK/p@kain184 ---------+ 
16:56:24 [INFO]  Filled definition %name% with 'test'. 
16:56:24 [INFO]  Filled definition %name% with 'test'. 
16:56:24 [INFO]  Filled tag <global.flag[portalscantest].as_list> with 
                   'li@l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,wor... 
                   * snip! * 
16:56:24 [INFO]  Filled tag 
                   <global.flag[portalscantest].as_list.parse[material]> with 
                   'li@m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone|m@stone'. 
16:56:24 [INFO] +> Executing 'MODIFYBLOCK': 
                   location_list='li@l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,6.0,1694.0,world|l@49.0,6.0,1694.0,world|l@48.0,6.0,1694.0,world|l@47.0,6.0,1694.0,world|l@46.0,6.0,1694.0,world|l@50.0,... 
                   * snip! * 
16:56:24 [INFO]  Completing queue 'PORTALCREATE_EmployedJobsShakira' in 
                   11449ms.