-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.log
10135 lines (10014 loc) · 761 KB
/
server.log
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
2016-01-23 00:52:12 [INFO] Starting Minecraft: PE server version v0.10.5 alpha
2016-01-23 00:52:12 [INFO] Loading pocketmine.yml...
2016-01-23 00:52:13 [INFO] Loading server properties...
2016-01-23 00:52:13 [INFO] Starting Minecraft PE server on 0.0.0.0:19132
2016-01-23 00:52:13 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0)
2016-01-23 00:52:13 [INFO] PocketMine-MP is distributed under the LGPL License
2016-01-23 00:52:17 [NOTICE] Level "world" not found
2016-01-23 00:52:17 [INFO] Preparing level "world"
2016-01-23 00:52:18 [NOTICE] Spawn terrain for level "world" is being generated in the background
2016-01-23 00:52:21 [INFO] Starting GS4 status listener
2016-01-23 00:52:21 [INFO] Setting query port to 19132
2016-01-23 00:52:21 [INFO] Query running on 0.0.0.0:19132
2016-01-23 00:52:21 [INFO] Default game type: SURVIVAL
2016-01-23 00:52:21 [INFO] Done (53.683s)! For help, type "help" or "?"
2016-01-23 00:52:35 [INFO] CONSOLE: Stopping the server...
2016-01-23 00:52:35 [INFO] Unloading level "world"
2016-01-23 00:52:35 [INFO] Stopping other threads
2016-01-23 [03:35:59] system> -------------------------------------------------------------------------------------------
2016-01-23 [03:35:59] system> | _ _ _ __ __ _ |
2016-01-23 [03:35:59] system> | (_) (_) | | \/ (_) |
2016-01-23 [03:35:59] system> | _ _ __ ___ __ _ __ _ _ ___ __ _| | \ / |_ _ __ ___ |
2016-01-23 [03:35:59] system> | | | '_ ` _ \ / _` |/ _` | |/ __/ _` | | |\/| | | '_ \ / _ \ ImagicalMine 1.0dev |
2016-01-23 [03:35:59] system> | | | | | | | | (_| | (_| | | (_| (_| | | | | | | | | | __/ |
2016-01-23 [03:35:59] system> | |_|_| |_| |_|\__,_|\__, |_|\___\__,_|_|_| |_|_|_| |_|\___| for MCPE v0.13.1 alpha |
2016-01-23 [03:35:59] system> | __/ | |
2016-01-23 [03:35:59] system> | |___/ |
2016-01-23 [03:35:59] system> -------------------------------------------------------------------------------------------
2016-01-23 [03:35:59] system>
2016-01-23 [03:35:59] system> ImagicalMine is a third-party build of PocketMine-MP, distributed under the LGPL licence
2016-01-23 [03:35:59] system> Loading ImagicalMine system files....
2016-01-23 [03:35:59] system> Loading server properties...
2016-01-23 [03:35:59] system> Enabled log writing to server.log
2016-01-23 [03:35:59] system> Selected English (eng) as the base language
2016-01-23 [03:35:59] system> Starting Minecraft: PE server version v0.13.1 alpha
2016-01-23 [03:35:59] system> Starting remote control listener
2016-01-23 [03:35:59] system> RCON running on 0.0.0.0:19132
2016-01-23 [03:35:59] system> Opening server on 0.0.0.0:19132
2016-01-23 [03:36:00] system> This server is running ImagicalMine version 1.0dev "ImagicalMine" (API 1.14.0)
2016-01-23 [03:36:00] system> ImagicalMine is distributed under the LGPL License
2016-01-23 [03:36:05] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar" SHA1 signature could not be verified: broken signature
2016-01-23 [03:36:05] critical> UnexpectedValueException: "phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar" SHA1 signature could not be verified: broken signature" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-23 [03:36:05] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': internal corruption of phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar" (__HALT_COMPILER(); not found)
2016-01-23 [03:36:05] critical> UnexpectedValueException: "internal corruption of phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar" (__HALT_COMPILER(); not found)" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-23 [03:36:05] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': manifest cannot be larger than 100 MB in phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar"
2016-01-23 [03:36:05] critical> UnexpectedValueException: "manifest cannot be larger than 100 MB in phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar"" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-23 [03:36:06] error> Could not load plugin 'ClearLagg': plugin exists
2016-01-23 [03:36:06] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar" SHA1 signature could not be verified: broken signature
2016-01-23 [03:36:06] critical> UnexpectedValueException: "phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar" SHA1 signature could not be verified: broken signature" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-23 [03:36:06] error> Could not load plugin 'DevTools': plugin exists
2016-01-23 [03:36:07] system> Loading ChatLogin v1.3
2016-01-23 [03:36:07] system> Loading ClearLagg v1.1.0
2016-01-23 [03:36:07] system> Loading CustomAlerts v1.6
2016-01-23 [03:36:07] system> Loading DevTools v1.10.0
2016-01-23 [03:36:07] system> Loading EconomyAPI v2.0.9
2016-01-23 [03:36:07] system> Loading EconomyAuction v2.0.2
2016-01-23 [03:36:07] system> Loading EconomyCasino v2.0.2
2016-01-23 [03:36:07] system> Loading EconomyJob v2.0.4
2016-01-23 [03:36:07] system> Loading EconomyLand v2.0.9
2016-01-23 [03:36:08] system> Loading EconomyProperty v2.0.6
2016-01-23 [03:36:08] system> Loading EconomyPShop v2.0.2
2016-01-23 [03:36:08] system> Loading EconomySell v2.0.7
2016-01-23 [03:36:08] system> Loading EconomyUsury v1.0.1
2016-01-23 [03:36:08] system> Loading LightningEvents v1.1.0
2016-01-23 [03:36:08] system> [LightningEvents] Preparing for lightning ...
2016-01-23 [03:36:08] system> Loading MassiveEconomy v1.0 R3
2016-01-23 [03:36:08] system> Loading mcg76_SimplePortal v2.0.3
2016-01-23 [03:36:08] system> Loading MCG76_WorldEdit v0.5.2
2016-01-23 [03:36:08] system> Loading ManyWorlds v2.0.3
2016-01-23 [03:36:08] system> Loading ItemCasePE v1.0.8
2016-01-23 [03:36:08] system> Loading FastTransfer v1.0.2
2016-01-23 [03:36:08] system> Loading BasicHUD v1.0.6
2016-01-23 [03:36:08] system> Loading NetherChests v1.1.1
2016-01-23 [03:36:08] system> Loading LiveSigns v1.2.1
2016-01-23 [03:36:08] system> Loading InvSee v0.0.1
2016-01-23 [03:36:09] system> Loading TapToDo v2.2.1
2016-01-23 [03:36:09] system> Loading SignPortal v1.1.2
2016-01-23 [03:36:09] system> Loading MineReset v2.1
2016-01-23 [03:36:09] system> Loading Alias v1.2.0
2016-01-23 [03:36:09] system> Loading PeacefulSpawn v2.4
2016-01-23 [03:36:09] system> Loading PocketGuard v2.1.1
2016-01-23 [03:36:09] system> Loading essentialsTP v1.1.0
2016-01-23 [03:36:09] system> Loading iProtector v3.1a
2016-01-23 [03:36:09] system> Loading FactionsPro v1.3.2
2016-01-23 [03:36:09] system> Loading PurePerms v1.2.2
2016-01-23 [03:36:10] system> [PurePerms] Setting default language to 'en'
2016-01-23 [03:36:10] notice> [PurePerms] Multiworld support is currently disabled.
2016-01-23 [03:36:10] notice> [PurePerms] Don't forget to set enable-multiworld-perms option in config.yml to true if you want to use per-world permissions!
2016-01-23 [03:36:10] system> Loading PureChat v1.3.3
2016-01-23 [03:36:10] system> Loading EssentialsPE v1.1.3
2016-01-23 [03:36:10] system> Loading xRulesx v1.0.0
2016-01-23 [03:36:10] system> Loading EnderPearl v1.2.3
2016-01-23 [03:36:10] system> Loading HelpOp v1.0.4
2016-01-23 [03:36:10] system> Loading ServerAuth v2.11
2016-01-23 [03:36:10] system> Loading EconomyAirport v2.0.4
2016-01-23 [03:36:10] system> Loading MassiveEconomyExample v1
2016-01-23 [03:36:10] system> Loading Jail v2.0.0
2016-01-23 [03:36:11] system> Loading KillRate v2.1.1
2016-01-23 [03:36:11] system> Loading BattleKits v1.0.4
2016-01-23 [03:36:11] system> Enabling ChatLogin v1.3
2016-01-23 [03:36:11] system> [ChatLogin] Plugin Enabled!
2016-01-23 [03:36:11] system> Enabling CustomAlerts v1.6
2016-01-23 [03:36:11] system> Enabling DevTools v1.10.0
2016-01-23 [03:36:11] system> [DevTools] Registered folder plugin loader
2016-01-23 [03:36:11] system> Enabling MassiveEconomy v1.0 R3
2016-01-23 [03:36:11] system> Enabling FastTransfer v1.0.2
2016-01-23 [03:36:11] system> Enabling PurePerms v1.2.2
2016-01-23 [03:36:11] system> [PurePerms] Set data provider to YAML.
2016-01-23 [03:36:12] system> Enabling PureChat v1.3.3
2016-01-23 [03:36:12] system> Enabling ServerAuth v2.11
2016-01-23 [03:36:12] system> Enabling MassiveEconomyExample v1
2016-01-23 [03:36:12] system> [MassiveEconomyExample] Example Plugin using MassiveEconomy (API v0.90)
2016-01-23 [03:36:13] system> Preparing level "New World"
2016-01-23 [03:36:14] system> Enabling ClearLagg v1.1.0
2016-01-23 [03:36:14] system> Enabling EconomyAPI v2.0.9
2016-01-23 [03:36:14] notice> [EconomyAPI] Auto save has been set to interval : 10 min(s)
2016-01-23 [03:36:14] system> [EconomyAPI] Checking for updates... It may be take some while.
2016-01-23 [03:36:15] notice> [EconomyAPI] Thank you for using EconomyS plugin.
2016-01-23 [03:36:15] system> Enabling EconomyAuction v2.0.2
2016-01-23 [03:36:16] system> Enabling EconomyCasino v2.0.2
2016-01-23 [03:36:16] system> Enabling EconomyJob v2.0.4
2016-01-23 [03:36:16] system> Enabling EconomyLand v2.0.9
2016-01-23 [03:36:16] system> Enabling EconomyProperty v2.0.6
2016-01-23 [03:36:16] system> Enabling EconomyPShop v2.0.2
2016-01-23 [03:36:16] critical> [EconomyPShop] [DEPENDENCY] Please install ItemCloud plugin to use PShop plugin.
2016-01-23 [03:36:16] system> Enabling EconomySell v2.0.7
2016-01-23 [03:36:16] system> Enabling EconomyUsury v1.0.1
2016-01-23 [03:36:17] system> Enabling LightningEvents v1.1.0
2016-01-23 [03:36:17] system> [LightningEvents] Watchout for lightning strikes!
2016-01-23 [03:36:17] system> Enabling mcg76_SimplePortal v2.0.3
2016-01-23 [03:36:17] system> [mcg76_SimplePortal] #loading portals C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_SimplePortal/portal_data/
2016-01-23 [03:36:17] system> [mcg76_SimplePortal] .
2016-01-23 [03:36:17] system> [mcg76_SimplePortal] ..
2016-01-23 [03:36:17] system> [mcg76_SimplePortal] Factions.yml
2016-01-23 [03:36:17] notice> Level "New World" not found
2016-01-23 [03:36:17] system> [mcg76_SimplePortal] - FastTransfer Support Enabled!
2016-01-23 [03:36:17] system> [mcg76_SimplePortal] - mcg76_SimplePortal_v2 - Enabled!
2016-01-23 [03:36:17] system> Enabling MCG76_WorldEdit v0.5.2
2016-01-23 [03:36:17] system> [MCG76_WorldEdit] -MCG76 WorldEdit Enabled
2016-01-23 [03:36:17] system> Enabling ManyWorlds v2.0.3
2016-01-23 [03:36:18] system> Enabling ItemCasePE v1.0.8
2016-01-23 [03:36:18] system> Enabling BasicHUD v1.0.6
2016-01-23 [03:36:18] system> Enabling NetherChests v1.1.1
2016-01-23 [03:36:18] system> [NetherChests] Using YamlMgr as backend
2016-01-23 [03:36:18] system> Enabling LiveSigns v1.2.1
2016-01-23 [03:36:18] system> Enabling InvSee v0.0.1
2016-01-23 [03:36:18] system> Enabling TapToDo v2.2.1
2016-01-23 [03:36:19] warning> [TapToDo] Could not load block in level MiniGames because that level is not loaded.
2016-01-23 [03:36:19] system> Enabling SignPortal v1.1.2
2016-01-23 [03:36:19] system> Enabling MineReset v2.1
2016-01-23 [03:36:19] system> Enabling Alias v1.2.0
2016-01-23 [03:36:19] system> Enabling PeacefulSpawn v2.4
2016-01-23 [03:36:19] system> Enabling PocketGuard v2.1.1
2016-01-23 [03:36:19] system> Enabling essentialsTP v1.1.0
2016-01-23 [03:36:19] system> [essentialsTP] essentialsTP+ loading...
2016-01-23 [03:36:19] system> [essentialsTP] [INFO] loading [config.yml]....
2016-01-23 [03:36:19] system> [essentialsTP] [INFO] loading [config.yml] DONE
2016-01-23 [03:36:19] system> [essentialsTP] essentialsTP+ loaded!
2016-01-23 [03:36:19] system> Enabling iProtector v3.1a
2016-01-23 [03:36:19] system> Enabling FactionsPro v1.3.2
2016-01-23 [03:36:20] system> Enabling EssentialsPE v1.1.3
2016-01-23 [03:36:20] warning> RuntimeException: "yaml_parse(): end of stream reached without finding document 0" (E_WARNING) in "/src/pocketmine/utils/Config" at line 148
2016-01-23 [03:36:20] system> Disabling EssentialsPE v1.1.3
2016-01-23 [03:36:20] warning> RuntimeException: "yaml_parse(): end of stream reached without finding document 0" (E_WARNING) in "/src/pocketmine/utils/Config" at line 148
2016-01-23 [03:36:20] system> Enabling xRulesx v1.0.0
2016-01-23 [03:36:20] system> [xRulesx] [xFlare] >> Done! xRulesx is running on Version 1.0.0!
2016-01-23 [03:36:20] system> Enabling EnderPearl v1.2.3
2016-01-23 [03:36:20] system> [EnderPearl] EnderPerl loaded!
2016-01-23 [03:36:20] system> Enabling HelpOp v1.0.4
2016-01-23 [03:36:20] system> [HelpOp] Loaded Successfully!
2016-01-23 [03:36:20] system> Enabling EconomyAirport v2.0.4
2016-01-23 [03:36:21] system> Enabling Jail v2.0.0
2016-01-23 [03:36:21] system> [Jail] Loading configurations..
2016-01-23 [03:36:21] system> [Jail] Loading authentication plugin..
2016-01-23 [03:36:21] system> [Jail] Loading economy plugins..
2016-01-23 [03:36:21] system> [Jail] Loaded with EconomyAPI!
2016-01-23 [03:36:21] system> [Jail] Loading plugin..
2016-01-23 [03:36:21] system> [Jail] Loaded Successfully!
2016-01-23 [03:36:21] system> Enabling KillRate v2.1.1
2016-01-23 [03:36:21] error> [KillRate] Your selected language "" is not supported
2016-01-23 [03:36:21] error> [KillRate] Creating a custom "messages.ini" with EMPTY strings
2016-01-23 [03:36:21] error> [KillRate] Please consider translating and submitting a translation
2016-01-23 [03:36:21] error> [KillRate] to the developer
2016-01-23 [03:36:21] error> [KillRate] If you later change your language in "pocketmine.yml"
2016-01-23 [03:36:21] error> [KillRate] make sure you delete this "messages.ini"
2016-01-23 [03:36:21] error> [KillRate] otherwise your changes will not be recognized
2016-01-23 [03:36:22] system> [KillRate] Using SQLiteMgr as backend
2016-01-23 [03:36:22] system> [KillRate] Using money API from EconomyAPI v2.0.9
2016-01-23 [03:36:22] system> Enabling BattleKits v1.0.4
2016-01-23 [03:36:22] system> [BattleKits] Loaded EconomyS by onebone
2016-01-23 [03:36:22] system> [BattleKits] Loaded 1 kits.
2016-01-23 [03:36:53] system> Starting GS4 status listener
2016-01-23 [03:36:53] system> Setting query port to 19132
2016-01-23 [03:36:53] system> Query running on 0.0.0.0:19132
2016-01-23 [03:36:53] system> Default game type: Survival Mode
2016-01-23 [03:36:53] system> Done (55.638s)! For help, type "help" or "?"
2016-01-23 [03:36:53] system> Usage: /op <player>
2016-01-23 [03:37:01] system> --- Showing help page 1 of 1 (/help <page>) ---
2016-01-23 [03:37:01] system> //: minecraftgenius76 WorldEditor
2016-01-23 [03:37:01] system> //wremove: Remove Selected Blocks Command
2016-01-23 [03:37:01] system> /addgroup: Adds a new group to the groups list. #64FF00
2016-01-23 [03:37:01] system> /alias: Allows users to view all the usernames one user has used
2016-01-23 [03:37:01] system> /area: Allows you to manage areas.
2016-01-23 [03:37:01] system> /auction: Manages all auctions
2016-01-23 [03:37:01] system> /back: Teleports you to your last known death location.
2016-01-23 [03:37:01] system> /bail: Bail to release from jail!
2016-01-23 [03:37:01] system> /ban: Prevents the specified player from using this server
2016-01-23 [03:37:01] system> /ban-ip: Prevents the specified IP address from using this server
2016-01-23 [03:37:01] system> /banlist: View all players banned from this server
2016-01-23 [03:37:01] system> /battlekits: Get your kits.
2016-01-23 [03:37:01] system> /casino: Casino master command
2016-01-23 [03:37:01] system> /changepassword: Allows changing account password
2016-01-23 [03:37:01] system> /chatlogin: ChatLogin Commands.
2016-01-23 [03:37:01] system> /checkop: Check if there are ops in the server
2016-01-23 [03:37:01] system> /checkperm: Checks a permission value for the current sender, or a player
2016-01-23 [03:37:01] system> /clearlagg: Clear the lag!
2016-01-23 [03:37:01] system> /customalerts: CustomAlerts Commands.
2016-01-23 [03:37:01] system> /defaultgamemode: Set the default gamemode
2016-01-23 [03:37:01] system> /defgroup: Allows you to set default group. #64FF00
2016-01-23 [03:37:01] system> /delhome: Delete your selected home.
2016-01-23 [03:37:01] system> /deljail: Deletes a jail
2016-01-23 [03:37:01] system> /delwarp: Delete a warp location.
2016-01-23 [03:37:01] system> /deop: Takes the specified player's operator status
2016-01-23 [03:37:01] system> /difficulty: Sets the game difficulty
2016-01-23 [03:37:01] system> /effect: Adds/Removes effects on players
2016-01-23 [03:37:01] system> /enchant: Adds enchantments on items
2016-01-23 [03:37:01] system> /enderpearl: setting of EnderPearl
2016-01-23 [03:37:01] system> /endp: Sets second position
2016-01-23 [03:37:01] system> /extractplugin: Extracts the source code from a Phar plugin
2016-01-23 [03:37:01] system> /f: use /f help for all parameters
2016-01-23 [03:37:01] system> /floatsigns: Access to FloatSigns functionality
2016-01-23 [03:37:01] system> /fperms: Shows a list of all permissions for a specific plugin. #64FF00
2016-01-23 [03:37:01] system> /gamemode: Changes the player to a specific game mode
2016-01-23 [03:37:01] system> /generate: Generate new world (testing only)
2016-01-23 [03:37:01] system> /give: Gives the specified player a certain amount of items
2016-01-23 [03:37:01] system> /givemoney: Gives money to player
2016-01-23 [03:37:01] system> /groups: Shows a list of all groups. #64FF00
2016-01-23 [03:37:01] system> /help: Shows the help menu
2016-01-23 [03:37:01] system> /helpop: Tell OP something
2016-01-23 [03:37:01] system> /home: Teleports you home /home will list homes /home <homename> will teleport you.
2016-01-23 [03:37:01] system> /hud: Control HUD display
2016-01-23 [03:37:01] system> /invsee: See a player's inventory
2016-01-23 [03:37:01] system> /itemcase: ItemCase management command
2016-01-23 [03:37:01] system> /jackpot: Try jackpot
2016-01-23 [03:37:01] system> /jail: Command to jail a player (/jail <player> ..) OR Help page of the plugin (/jail help)
2016-01-23 [03:37:01] system> /jailclear: To unjail all prisoners in the jail
2016-01-23 [03:37:01] system> /jailconfig: To set the properties of a jail
2016-01-23 [03:37:01] system> /jailed: Get a list of jailed players
2016-01-23 [03:37:01] system> /jailmute: Mute/Unmute players in the jail
2016-01-23 [03:37:01] system> /jails: Get a list of jails
2016-01-23 [03:37:01] system> /jailswitch: Switch a player from original jail to another
2016-01-23 [03:37:01] system> /jailtp: Teleport to a jail
2016-01-23 [03:37:01] system> /jailversion: To check the version and info of the Jail plugin using
2016-01-23 [03:37:01] system> /job: Job master command
2016-01-23 [03:37:01] system> /kick: Removes the specified player from the server
2016-01-23 [03:37:01] system> /kill: Commit suicide or kill other players
2016-01-23 [03:37:01] system> /killrate: Show kill rate stats
2016-01-23 [03:37:01] system> /land: Manage land
2016-01-23 [03:37:01] system> /landsell: Sell land
2016-01-23 [03:37:01] system> /list: Lists all online players
2016-01-23 [03:37:01] system> /listgperms: Shows a list of all permissions from a group. #64FF00
2016-01-23 [03:37:01] system> /listuperms: Shows a list of all permissions from a user. #64FF00
2016-01-23 [03:37:01] system> /livesigns: Access to LiveSigns functionality
2016-01-23 [03:37:01] system> /login: Allows logging into an account
2016-01-23 [03:37:01] system> /logout: Allows to do the log out
2016-01-23 [03:37:01] system> /makeplugin: Creates a Phar plugin from one in source code form
2016-01-23 [03:37:01] system> /makeserver: Creates a PocketMine-MP Phar
2016-01-23 [03:37:01] system> /manyworlds: Manage worlds
2016-01-23 [03:37:01] system> /massiveeconomy: MassiveEconomy commands.
2016-01-23 [03:37:01] system> /me: Performs the specified action in chat
2016-01-23 [03:37:01] system> /mine: MineReset command
2016-01-23 [03:37:01] system> /money: MassiveEconomy Money command.
2016-01-23 [03:37:01] system> /mymoney: Shows your money
2016-01-23 [03:37:01] system> /mystatus: Shows your money status
2016-01-23 [03:37:01] system> /op: Gives the specified player operator status
2016-01-23 [03:37:01] system> /pardon: Allows the specified player to use this server
2016-01-23 [03:37:01] system> /pardon-ip: Allows the specified IP address to use this server
2016-01-23 [03:37:01] system> /particle: Adds particles to a world
2016-01-23 [03:37:01] system> /pay: Pay or give the money to the others
2016-01-23 [03:37:01] system> /pg:
2016-01-23 [03:37:01] system> /plugins: Gets a list of plugins running on the server
2016-01-23 [03:37:01] system> /ppinfo: Get current PurePerms information including author, version, and etc. #64FF00
2016-01-23 [03:37:01] system> /ppreload: Reloads all PurePerms configurations. #64FF00
2016-01-23 [03:37:01] system> /prisonerconfig: To set the properties of a prisoner
2016-01-23 [03:37:01] system> /property: Property manage command
2016-01-23 [03:37:01] system> /ps: Toggles PeacefulSpawn's protection
2016-01-23 [03:37:01] system> /register: Allows registering an account
2016-01-23 [03:37:01] system> /reload: Reloads the server configuration and plugins
2016-01-23 [03:37:01] system> /rmgroup: Removes a group from the groups list. #64FF00
2016-01-23 [03:37:01] system> /rules: Shows a list of rules.
2016-01-23 [03:37:01] system> /save-all: Saves the server to disk
2016-01-23 [03:37:01] system> /save-off: Disables server autosaving
2016-01-23 [03:37:01] system> /save-on: Enables server autosaving
2016-01-23 [03:37:01] system> /say: Broadcasts the given message as the sender
2016-01-23 [03:37:02] system> /seed: Shows the world seed
2016-01-23 [03:37:02] system> /seemoney: See player's money
2016-01-23 [03:37:02] system> /serverauth: ServerAuth Commands.
2016-01-23 [03:37:02] system> /setgperm: Adds a permission to the group. #64FF00
2016-01-23 [03:37:02] system> /setgroup: Sets group for the user. #64FF00
2016-01-23 [03:37:02] system> /sethome: Sets your home use names for multiple homes.
2016-01-23 [03:37:02] system> /setjail: Sets a jail at sender's location
2016-01-23 [03:37:02] system> /setlang: Sets language resource
2016-01-23 [03:37:02] system> /setmoney: Sets player's money
2016-01-23 [03:37:02] system> /setspawn: Sets world spawn point.
2016-01-23 [03:37:02] system> /setuperm: Adds a permission to the user. #64FF00
2016-01-23 [03:37:02] system> /setwarp: Sets a warp location.
2016-01-23 [03:37:02] system> /setworldspawn: Sets a worlds's spawn point. If no coordinates are specified, the player's coordinates will be used.
2016-01-23 [03:37:02] system> /sp: Start minecraftgenius76 SimplePortal
2016-01-23 [03:37:02] system> /spawn: Teleports to world spawn point.
2016-01-23 [03:37:02] system> /spawnpoint: Sets a player's spawn point
2016-01-23 [03:37:02] system> /spg:
2016-01-23 [03:37:02] system> /startp: Sets start position
2016-01-23 [03:37:02] system> /stop: Stops the server
2016-01-23 [03:37:02] system> /t: TapToDo command!
2016-01-23 [03:37:02] system> /takemoney: Take others' money
2016-01-23 [03:37:02] system> /tell: Sends a private message to the given player
2016-01-23 [03:37:02] system> /time: Changes the time on each world
2016-01-23 [03:37:02] system> /timings: Records timings to see performance of the server.
2016-01-23 [03:37:02] system> /topmoney: Shows top money list
2016-01-23 [03:37:02] system> /tp: Teleports the given player (or yourself) to another player or coordinates
2016-01-23 [03:37:02] system> /tpa: Send teleport request to player to teleport you to player.
2016-01-23 [03:37:02] system> /tpaccept: Accept a teleport request.
2016-01-23 [03:37:02] system> /tpahere: Send teleport request to teleport player to you.
2016-01-23 [03:37:02] system> /tpdeny: decline all active teleport request.
2016-01-23 [03:37:02] system> /tr: Remote block managment
2016-01-23 [03:37:02] system> /transfer:
2016-01-23 [03:37:02] system> /unjail: Command to unjail(release) a player
2016-01-23 [03:37:02] system> /unregister: Allows unregistering an account
2016-01-23 [03:37:02] system> /unsetgperm: Removes a permission from the group. #64FF00
2016-01-23 [03:37:02] system> /unsetuperm: Removes a permission from the user. #64FF00
2016-01-23 [03:37:02] system> /usrinfo: Shows info about a user. #64FF00
2016-01-23 [03:37:02] system> /usury: Usury master command
2016-01-23 [03:37:02] system> /version: Gets the version of this server including any plugins in use
2016-01-23 [03:37:02] system> /votejail: Vote a player to be jailed
2016-01-23 [03:37:02] system> /warp: Warps you to a location /warp will list warps /warp <warpname> will teleport you.
2016-01-23 [03:37:02] system> /weather: Changes the weather on each world
2016-01-23 [03:37:02] system> /whitelist: Manages the list of players allowed to use this server
2016-01-23 [03:37:02] system> /wild: Teleport to a radom location in the world.
2016-01-23 [03:37:02] system> /xp: Gives the specified player a certain amount of experience. Specify <amount>L to give levels instead, with a negative amount resulting in taking levels.
2016-01-23 [03:37:16] system> Plugins (45): ChatLogin v1.3, ClearLagg v1.1.0, CustomAlerts v1.6, DevTools v1.10.0, EconomyAPI v2.0.9, EconomyAuction v2.0.2, EconomyCasino v2.0.2, EconomyJob v2.0.4, EconomyLand v2.0.9, EconomyProperty v2.0.6, EconomyPShop v2.0.2, EconomySell v2.0.7, EconomyUsury v1.0.1, LightningEvents v1.1.0, MassiveEconomy v1.0 R3, mcg76_SimplePortal v2.0.3, MCG76_WorldEdit v0.5.2, ManyWorlds v2.0.3, ItemCasePE v1.0.8, FastTransfer v1.0.2, BasicHUD v1.0.6, NetherChests v1.1.1, LiveSigns v1.2.1, InvSee v0.0.1, TapToDo v2.2.1, SignPortal v1.1.2, MineReset v2.1, Alias v1.2.0, PeacefulSpawn v2.4, PocketGuard v2.1.1, essentialsTP v1.1.0, iProtector v3.1a, FactionsPro v1.3.2, PurePerms v1.2.2, PureChat v1.3.3, EssentialsPE v1.1.3, xRulesx v1.0.0, EnderPearl v1.2.3, HelpOp v1.0.4, ServerAuth v2.11, EconomyAirport v2.0.4, MassiveEconomyExample v1, Jail v2.0.0, KillRate v2.1.1, BattleKits v1.0.4
2016-01-23 [03:37:27] system> [CONSOLE: Stopping the server]
2016-01-23 [03:37:28] system> Disabling ChatLogin v1.3
2016-01-23 [03:37:28] system> Disabling ClearLagg v1.1.0
2016-01-23 [03:37:28] system> Disabling CustomAlerts v1.6
2016-01-23 [03:37:28] system> Disabling DevTools v1.10.0
2016-01-23 [03:37:28] system> Disabling EconomyAPI v2.0.9
2016-01-23 [03:37:29] system> Disabling EconomyAuction v2.0.2
2016-01-23 [03:37:29] system> Disabling EconomyCasino v2.0.2
2016-01-23 [03:37:29] system> Disabling EconomyJob v2.0.4
2016-01-23 [03:37:29] system> Disabling EconomyLand v2.0.9
2016-01-23 [03:37:29] system> Disabling EconomyProperty v2.0.6
2016-01-23 [03:37:29] system> Disabling EconomyPShop v2.0.2
2016-01-23 [03:37:29] system> Disabling EconomySell v2.0.7
2016-01-23 [03:37:29] system> Disabling EconomyUsury v1.0.1
2016-01-23 [03:37:29] system> Disabling LightningEvents v1.1.0
2016-01-23 [03:37:29] system> [LightningEvents] Awww no more lightning strikes :(
2016-01-23 [03:37:29] system> Disabling MassiveEconomy v1.0 R3
2016-01-23 [03:37:29] system> Disabling mcg76_SimplePortal v2.0.3
2016-01-23 [03:37:29] system> [mcg76_SimplePortal] mcg76_SimplePortal_v2 - Disabled
2016-01-23 [03:37:30] system> Disabling MCG76_WorldEdit v0.5.2
2016-01-23 [03:37:30] system> [MCG76_WorldEdit] - MCG76 WorldEdit Disable
2016-01-23 [03:37:30] system> Disabling ManyWorlds v2.0.3
2016-01-23 [03:37:30] system> Disabling ItemCasePE v1.0.8
2016-01-23 [03:37:30] system> Disabling FastTransfer v1.0.2
2016-01-23 [03:37:30] system> Disabling BasicHUD v1.0.6
2016-01-23 [03:37:30] system> Disabling NetherChests v1.1.1
2016-01-23 [03:37:30] system> Disabling LiveSigns v1.2.1
2016-01-23 [03:37:30] system> Disabling InvSee v0.0.1
2016-01-23 [03:37:30] system> Disabling TapToDo v2.2.1
2016-01-23 [03:37:30] system> [TapToDo] Saving blocks...
2016-01-23 [03:37:30] system> Disabling SignPortal v1.1.2
2016-01-23 [03:37:30] system> Disabling MineReset v2.1
2016-01-23 [03:37:30] system> Disabling Alias v1.2.0
2016-01-23 [03:37:30] system> Disabling PeacefulSpawn v2.4
2016-01-23 [03:37:31] system> Disabling PocketGuard v2.1.1
2016-01-23 [03:37:31] system> Disabling essentialsTP v1.1.0
2016-01-23 [03:37:31] system> [essentialsTP] essentialsTP+ Disabled
2016-01-23 [03:37:31] system> Disabling iProtector v3.1a
2016-01-23 [03:37:31] system> Disabling FactionsPro v1.3.2
2016-01-23 [03:37:31] system> Disabling PurePerms v1.2.2
2016-01-23 [03:37:31] system> Disabling PureChat v1.3.3
2016-01-23 [03:37:31] system> Disabling xRulesx v1.0.0
2016-01-23 [03:37:31] system> Disabling EnderPearl v1.2.3
2016-01-23 [03:37:31] system> [EnderPearl] EnderPearl unloaded!
2016-01-23 [03:37:31] system> Disabling HelpOp v1.0.4
2016-01-23 [03:37:31] system> Disabling ServerAuth v2.11
2016-01-23 [03:37:31] system> Disabling EconomyAirport v2.0.4
2016-01-23 [03:37:31] system> Disabling MassiveEconomyExample v1
2016-01-23 [03:37:31] system> Disabling Jail v2.0.0
2016-01-23 [03:37:31] system> Disabling KillRate v2.1.1
2016-01-23 [03:37:31] system> Disabling BattleKits v1.0.4
2016-01-23 [03:37:31] system> Unloading level "New World"
2016-01-23 [03:37:32] system> Stopping other threads
2016-01-26 [01:55:10] system> -------------------------------------------------------------------------------------------
2016-01-26 [01:55:10] system> | _ _ _ __ __ _ |
2016-01-26 [01:55:10] system> | (_) (_) | | \/ (_) |
2016-01-26 [01:55:10] system> | _ _ __ ___ __ _ __ _ _ ___ __ _| | \ / |_ _ __ ___ |
2016-01-26 [01:55:10] system> | | | '_ ` _ \ / _` |/ _` | |/ __/ _` | | |\/| | | '_ \ / _ \ ImagicalMine 1.0dev |
2016-01-26 [01:55:10] system> | | | | | | | | (_| | (_| | | (_| (_| | | | | | | | | | __/ |
2016-01-26 [01:55:10] system> | |_|_| |_| |_|\__,_|\__, |_|\___\__,_|_|_| |_|_|_| |_|\___| for MCPE v0.13.1 alpha |
2016-01-26 [01:55:10] system> | __/ | |
2016-01-26 [01:55:10] system> | |___/ |
2016-01-26 [01:55:10] system> -------------------------------------------------------------------------------------------
2016-01-26 [01:55:10] system>
2016-01-26 [01:55:10] system> ImagicalMine is a third-party build of PocketMine-MP, distributed under the LGPL licence
2016-01-26 [01:55:10] system> Loading ImagicalMine system files....
2016-01-26 [01:55:10] system> Loading server properties...
2016-01-26 [01:55:11] system> Enabled log writing to server.log
2016-01-26 [01:55:11] system> Selected English (eng) as the base language
2016-01-26 [01:55:11] system> Starting Minecraft: PE server version v0.13.1 alpha
2016-01-26 [01:55:11] system> Starting remote control listener
2016-01-26 [01:55:11] system> RCON running on 0.0.0.0:19132
2016-01-26 [01:55:11] system> Opening server on 0.0.0.0:19132
2016-01-26 [01:55:12] system> This server is running ImagicalMine version 1.0dev "ImagicalMine" (API 1.14.0)
2016-01-26 [01:55:12] system> ImagicalMine is distributed under the LGPL License
2016-01-26 [01:55:23] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar" SHA1 signature could not be verified: broken signature
2016-01-26 [01:55:23] critical> UnexpectedValueException: "phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar" SHA1 signature could not be verified: broken signature" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [01:55:24] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': internal corruption of phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar" (__HALT_COMPILER(); not found)
2016-01-26 [01:55:24] critical> UnexpectedValueException: "internal corruption of phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar" (__HALT_COMPILER(); not found)" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [01:55:25] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': manifest cannot be larger than 100 MB in phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar"
2016-01-26 [01:55:25] critical> UnexpectedValueException: "manifest cannot be larger than 100 MB in phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar"" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [01:55:26] error> Could not load plugin 'ClearLagg': plugin exists
2016-01-26 [01:55:26] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar" SHA1 signature could not be verified: broken signature
2016-01-26 [01:55:26] critical> UnexpectedValueException: "phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar" SHA1 signature could not be verified: broken signature" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [01:55:27] error> Could not load plugin 'DevTools': plugin exists
2016-01-26 [01:55:29] system> Loading ChatLogin v1.3
2016-01-26 [01:55:29] system> Loading ClearLagg v1.1.0
2016-01-26 [01:55:29] system> Loading CustomAlerts v1.6
2016-01-26 [01:55:29] system> Loading DevTools v1.10.0
2016-01-26 [01:55:29] system> Loading EconomyAPI v2.0.9
2016-01-26 [01:55:29] system> Loading EconomyAuction v2.0.2
2016-01-26 [01:55:29] system> Loading EconomyCasino v2.0.2
2016-01-26 [01:55:29] system> Loading EconomyJob v2.0.4
2016-01-26 [01:55:29] system> Loading EconomyLand v2.0.9
2016-01-26 [01:55:29] system> Loading EconomyProperty v2.0.6
2016-01-26 [01:55:29] system> Loading EconomyPShop v2.0.2
2016-01-26 [01:55:29] system> Loading EconomySell v2.0.7
2016-01-26 [01:55:30] system> Loading EconomyUsury v1.0.1
2016-01-26 [01:55:30] system> Loading LightningEvents v1.1.0
2016-01-26 [01:55:30] system> [LightningEvents] Preparing for lightning ...
2016-01-26 [01:55:30] system> Loading MassiveEconomy v1.0 R3
2016-01-26 [01:55:30] system> Loading mcg76_SimplePortal v2.0.3
2016-01-26 [01:55:30] system> Loading MCG76_WorldEdit v0.5.2
2016-01-26 [01:55:30] system> Loading ManyWorlds v2.0.3
2016-01-26 [01:55:30] system> Loading ItemCasePE v1.0.8
2016-01-26 [01:55:30] system> Loading FastTransfer v1.0.2
2016-01-26 [01:55:30] system> Loading BasicHUD v1.0.6
2016-01-26 [01:55:30] system> Loading NetherChests v1.1.1
2016-01-26 [01:55:30] system> Loading LiveSigns v1.2.1
2016-01-26 [01:55:30] system> Loading InvSee v0.0.1
2016-01-26 [01:55:30] system> Loading TapToDo v2.2.1
2016-01-26 [01:55:30] system> Loading SignPortal v1.1.2
2016-01-26 [01:55:31] system> Loading MineReset v2.1
2016-01-26 [01:55:31] system> Loading Alias v1.2.0
2016-01-26 [01:55:31] system> Loading PeacefulSpawn v2.4
2016-01-26 [01:55:31] system> Loading PocketGuard v2.1.1
2016-01-26 [01:55:31] system> Loading essentialsTP v1.1.0
2016-01-26 [01:55:31] system> Loading iProtector v3.1a
2016-01-26 [01:55:31] system> Loading FactionsPro v1.3.2
2016-01-26 [01:55:31] system> Loading PurePerms v1.2.2
2016-01-26 [01:55:31] system> [PurePerms] Setting default language to 'en'
2016-01-26 [01:55:31] notice> [PurePerms] Multiworld support is currently disabled.
2016-01-26 [01:55:31] notice> [PurePerms] Don't forget to set enable-multiworld-perms option in config.yml to true if you want to use per-world permissions!
2016-01-26 [01:55:31] system> Loading PureChat v1.3.3
2016-01-26 [01:55:32] system> Loading EssentialsPE v1.1.3
2016-01-26 [01:55:32] system> Loading xRulesx v1.0.0
2016-01-26 [01:55:32] system> Loading EnderPearl v1.2.3
2016-01-26 [01:55:32] system> Loading HelpOp v1.0.4
2016-01-26 [01:55:32] system> Loading RandomBox v1.2
2016-01-26 [01:55:32] system> Loading ServerAuth v2.11
2016-01-26 [01:55:32] system> Loading SurvivalGame v1.0.6
2016-01-26 [01:55:32] system> Loading EconomyAirport v2.0.4
2016-01-26 [01:55:32] system> Loading MassiveEconomyExample v1
2016-01-26 [01:55:32] system> Loading Jail v2.0.0
2016-01-26 [01:55:32] system> Loading KillRate v2.1.1
2016-01-26 [01:55:32] system> Loading BattleKits v1.0.4
2016-01-26 [01:55:32] system> Enabling ChatLogin v1.3
2016-01-26 [01:55:32] system> [ChatLogin] Plugin Enabled!
2016-01-26 [01:55:33] system> Enabling CustomAlerts v1.6
2016-01-26 [01:55:33] system> Enabling DevTools v1.10.0
2016-01-26 [01:55:33] system> [DevTools] Registered folder plugin loader
2016-01-26 [01:55:33] system> Enabling MassiveEconomy v1.0 R3
2016-01-26 [01:55:33] system> Enabling FastTransfer v1.0.2
2016-01-26 [01:55:33] system> Enabling PurePerms v1.2.2
2016-01-26 [01:55:33] system> [PurePerms] Set data provider to YAML.
2016-01-26 [01:55:34] system> Enabling PureChat v1.3.3
2016-01-26 [01:55:34] system> Enabling ServerAuth v2.11
2016-01-26 [01:55:34] system> Enabling MassiveEconomyExample v1
2016-01-26 [01:55:34] system> [MassiveEconomyExample] Example Plugin using MassiveEconomy (API v0.90)
2016-01-26 [01:55:35] system> Preparing level "New World"
2016-01-26 [01:55:36] system> Enabling ClearLagg v1.1.0
2016-01-26 [01:55:36] system> Enabling EconomyAPI v2.0.9
2016-01-26 [01:55:37] notice> [EconomyAPI] Auto save has been set to interval : 10 min(s)
2016-01-26 [01:55:37] system> [EconomyAPI] Checking for updates... It may be take some while.
2016-01-26 [01:55:38] notice> [EconomyAPI] Thank you for using EconomyS plugin.
2016-01-26 [01:55:38] system> Enabling EconomyAuction v2.0.2
2016-01-26 [01:55:38] system> Enabling EconomyCasino v2.0.2
2016-01-26 [01:55:38] system> Enabling EconomyJob v2.0.4
2016-01-26 [01:55:38] system> Enabling EconomyLand v2.0.9
2016-01-26 [01:55:38] system> Enabling EconomyProperty v2.0.6
2016-01-26 [01:55:39] system> Enabling EconomyPShop v2.0.2
2016-01-26 [01:55:39] critical> [EconomyPShop] [DEPENDENCY] Please install ItemCloud plugin to use PShop plugin.
2016-01-26 [01:55:39] system> Enabling EconomySell v2.0.7
2016-01-26 [01:55:39] system> Enabling EconomyUsury v1.0.1
2016-01-26 [01:55:39] system> Enabling LightningEvents v1.1.0
2016-01-26 [01:55:39] system> [LightningEvents] Watchout for lightning strikes!
2016-01-26 [01:55:39] system> Enabling mcg76_SimplePortal v2.0.3
2016-01-26 [01:55:39] system> [mcg76_SimplePortal] #loading portals C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_SimplePortal/portal_data/
2016-01-26 [01:55:39] system> [mcg76_SimplePortal] .
2016-01-26 [01:55:39] system> [mcg76_SimplePortal] ..
2016-01-26 [01:55:39] system> [mcg76_SimplePortal] Factions.yml
2016-01-26 [01:55:39] notice> Level "New World" not found
2016-01-26 [01:55:39] system> [mcg76_SimplePortal] - FastTransfer Support Enabled!
2016-01-26 [01:55:39] system> [mcg76_SimplePortal] - mcg76_SimplePortal_v2 - Enabled!
2016-01-26 [01:55:40] system> Enabling MCG76_WorldEdit v0.5.2
2016-01-26 [01:55:40] system> [MCG76_WorldEdit] -MCG76 WorldEdit Enabled
2016-01-26 [01:55:40] system> Enabling ManyWorlds v2.0.3
2016-01-26 [01:55:40] system> Enabling ItemCasePE v1.0.8
2016-01-26 [01:55:40] system> Enabling BasicHUD v1.0.6
2016-01-26 [01:55:40] system> Enabling NetherChests v1.1.1
2016-01-26 [01:55:40] system> [NetherChests] Using YamlMgr as backend
2016-01-26 [01:55:40] system> Enabling LiveSigns v1.2.1
2016-01-26 [01:55:41] system> Enabling InvSee v0.0.1
2016-01-26 [01:55:41] system> Enabling TapToDo v2.2.1
2016-01-26 [01:55:41] warning> [TapToDo] Could not load block in level MiniGames because that level is not loaded.
2016-01-26 [01:55:41] system> Enabling SignPortal v1.1.2
2016-01-26 [01:55:41] system> Enabling MineReset v2.1
2016-01-26 [01:55:41] system> Enabling Alias v1.2.0
2016-01-26 [01:55:41] system> Enabling PeacefulSpawn v2.4
2016-01-26 [01:55:41] system> Enabling PocketGuard v2.1.1
2016-01-26 [01:55:41] system> Enabling essentialsTP v1.1.0
2016-01-26 [01:55:41] system> [essentialsTP] essentialsTP+ loading...
2016-01-26 [01:55:41] system> [essentialsTP] [INFO] loading [config.yml]....
2016-01-26 [01:55:41] system> [essentialsTP] [INFO] loading [config.yml] DONE
2016-01-26 [01:55:41] system> [essentialsTP] essentialsTP+ loaded!
2016-01-26 [01:55:42] system> Enabling iProtector v3.1a
2016-01-26 [01:55:42] system> Enabling FactionsPro v1.3.2
2016-01-26 [01:55:42] system> Enabling EssentialsPE v1.1.3
2016-01-26 [01:55:42] warning> RuntimeException: "yaml_parse(): end of stream reached without finding document 0" (E_WARNING) in "/src/pocketmine/utils/Config" at line 148
2016-01-26 [01:55:42] system> Disabling EssentialsPE v1.1.3
2016-01-26 [01:55:42] warning> RuntimeException: "yaml_parse(): end of stream reached without finding document 0" (E_WARNING) in "/src/pocketmine/utils/Config" at line 148
2016-01-26 [01:55:42] system> Enabling xRulesx v1.0.0
2016-01-26 [01:55:42] system> [xRulesx] [xFlare] >> Done! xRulesx is running on Version 1.0.0!
2016-01-26 [01:55:42] system> Enabling EnderPearl v1.2.3
2016-01-26 [01:55:42] system> [EnderPearl] EnderPerl loaded!
2016-01-26 [01:55:42] system> Enabling HelpOp v1.0.4
2016-01-26 [01:55:42] system> [HelpOp] Loaded Successfully!
2016-01-26 [01:55:42] system> Enabling RandomBox v1.2
2016-01-26 [01:55:43] critical> [RandomBox] Can not find language (Korean) file.
2016-01-26 [01:55:44] system> Plugin Developer: LAENG
2016-01-26 [01:55:44] system> Enabling SurvivalGame v1.0.6
2016-01-26 [01:56:11] warning> A plugin attempted to register a deprecated CallbackTask (Callback#Andre\SurvivalGame\Main::gameTimber)
2016-01-26 [01:56:11] system> [SG] Using Money System From... EconomyAPI v2.0.9
2016-01-26 [01:56:11] system> [SG] SurvivalGame Has Been Enable
2016-01-26 [01:56:11] system> [SG] By: AndreTheGamer
2016-01-26 [01:56:12] system> [SG] File: Config Loaded !
2016-01-26 [01:56:12] system> [SG] File: Point Loaded !
2016-01-26 [01:56:12] system> Enabling EconomyAirport v2.0.4
2016-01-26 [01:56:12] system> Enabling Jail v2.0.0
2016-01-26 [01:56:12] system> [Jail] Loading configurations..
2016-01-26 [01:56:13] system> [Jail] Loading authentication plugin..
2016-01-26 [01:56:13] system> [Jail] Loading economy plugins..
2016-01-26 [01:56:13] system> [Jail] Loaded with EconomyAPI!
2016-01-26 [01:56:13] system> [Jail] Loading plugin..
2016-01-26 [01:56:14] system> [Jail] Loaded Successfully!
2016-01-26 [01:56:14] system> Enabling KillRate v2.1.1
2016-01-26 [01:56:14] error> [KillRate] Your selected language "" is not supported
2016-01-26 [01:56:14] error> [KillRate] Please consider translating "messages.ini"
2016-01-26 [01:56:14] error> [KillRate] and submitting a translation to the developer
2016-01-26 [01:56:15] system> [KillRate] Using SQLiteMgr as backend
2016-01-26 [01:56:15] system> [KillRate] Using money API from EconomyAPI v2.0.9
2016-01-26 [01:56:15] system> Enabling BattleKits v1.0.4
2016-01-26 [01:56:15] system> [BattleKits] Loaded EconomyS by onebone
2016-01-26 [01:56:15] system> [BattleKits] Loaded 1 kits.
2016-01-26 [01:56:55] system> Starting GS4 status listener
2016-01-26 [01:56:55] system> Setting query port to 19132
2016-01-26 [01:56:55] system> Query running on 0.0.0.0:19132
2016-01-26 [01:56:55] system> Default game type: Survival Mode
2016-01-26 [01:56:55] system> Done (108.132s)! For help, type "help" or "?"
2016-01-26 [01:56:56] system> Disabling ChatLogin v1.3
2016-01-26 [01:56:56] system> Disabling ClearLagg v1.1.0
2016-01-26 [01:56:56] system> Disabling CustomAlerts v1.6
2016-01-26 [01:56:56] system> Disabling DevTools v1.10.0
2016-01-26 [01:56:56] system> Disabling EconomyAPI v2.0.9
2016-01-26 [01:56:56] system> Disabling EconomyAuction v2.0.2
2016-01-26 [01:56:56] system> Disabling EconomyCasino v2.0.2
2016-01-26 [01:56:56] system> Disabling EconomyJob v2.0.4
2016-01-26 [01:56:56] system> Disabling EconomyLand v2.0.9
2016-01-26 [01:56:56] system> Disabling EconomyProperty v2.0.6
2016-01-26 [01:56:56] system> Disabling EconomyPShop v2.0.2
2016-01-26 [01:56:56] system> Disabling EconomySell v2.0.7
2016-01-26 [01:56:56] system> Disabling EconomyUsury v1.0.1
2016-01-26 [01:56:56] system> Disabling LightningEvents v1.1.0
2016-01-26 [01:56:56] system> [LightningEvents] Awww no more lightning strikes :(
2016-01-26 [01:56:56] system> Disabling MassiveEconomy v1.0 R3
2016-01-26 [01:56:56] system> Disabling mcg76_SimplePortal v2.0.3
2016-01-26 [01:56:57] system> [mcg76_SimplePortal] mcg76_SimplePortal_v2 - Disabled
2016-01-26 [01:56:57] system> Disabling MCG76_WorldEdit v0.5.2
2016-01-26 [01:56:57] system> [MCG76_WorldEdit] - MCG76 WorldEdit Disable
2016-01-26 [01:56:57] system> Disabling ManyWorlds v2.0.3
2016-01-26 [01:56:57] system> Disabling ItemCasePE v1.0.8
2016-01-26 [01:56:57] system> Disabling FastTransfer v1.0.2
2016-01-26 [01:56:57] system> Disabling BasicHUD v1.0.6
2016-01-26 [01:56:57] system> Disabling NetherChests v1.1.1
2016-01-26 [01:56:57] system> Disabling LiveSigns v1.2.1
2016-01-26 [01:56:57] system> Disabling InvSee v0.0.1
2016-01-26 [01:56:57] system> Disabling TapToDo v2.2.1
2016-01-26 [01:56:57] system> [TapToDo] Saving blocks...
2016-01-26 [01:56:57] system> Disabling SignPortal v1.1.2
2016-01-26 [01:56:57] system> Disabling MineReset v2.1
2016-01-26 [01:56:57] system> Disabling Alias v1.2.0
2016-01-26 [01:56:57] system> Disabling PeacefulSpawn v2.4
2016-01-26 [01:56:57] system> Disabling PocketGuard v2.1.1
2016-01-26 [01:56:57] system> Disabling essentialsTP v1.1.0
2016-01-26 [01:56:57] system> [essentialsTP] essentialsTP+ Disabled
2016-01-26 [01:56:57] system> Disabling iProtector v3.1a
2016-01-26 [01:56:57] system> Disabling FactionsPro v1.3.2
2016-01-26 [01:56:57] system> Disabling PurePerms v1.2.2
2016-01-26 [01:56:57] system> Disabling PureChat v1.3.3
2016-01-26 [01:56:57] system> Disabling xRulesx v1.0.0
2016-01-26 [01:56:57] system> Disabling EnderPearl v1.2.3
2016-01-26 [01:56:58] system> [EnderPearl] EnderPearl unloaded!
2016-01-26 [01:56:58] system> Disabling HelpOp v1.0.4
2016-01-26 [01:56:58] system> Disabling RandomBox v1.2
2016-01-26 [01:56:58] system> Disabling ServerAuth v2.11
2016-01-26 [01:56:58] system> Disabling SurvivalGame v1.0.6
2016-01-26 [01:56:58] system> [SG] Saving All Data...
2016-01-26 [01:56:58] system> [SG] Date/Settings SAVED!
2016-01-26 [01:56:58] system> Disabling EconomyAirport v2.0.4
2016-01-26 [01:56:58] system> Disabling MassiveEconomyExample v1
2016-01-26 [01:56:58] system> Disabling Jail v2.0.0
2016-01-26 [01:56:58] system> Disabling KillRate v2.1.1
2016-01-26 [01:56:58] system> Disabling BattleKits v1.0.4
2016-01-26 [01:56:58] system> Unloading level "New World"
2016-01-26 [01:56:58] system> Stopping other threads
2016-01-26 [15:23:44] system> -------------------------------------------------------------------------------------------
2016-01-26 [15:23:44] system> | _ _ _ __ __ _ |
2016-01-26 [15:23:44] system> | (_) (_) | | \/ (_) |
2016-01-26 [15:23:44] system> | _ _ __ ___ __ _ __ _ _ ___ __ _| | \ / |_ _ __ ___ |
2016-01-26 [15:23:44] system> | | | '_ ` _ \ / _` |/ _` | |/ __/ _` | | |\/| | | '_ \ / _ \ ImagicalMine 1.0dev |
2016-01-26 [15:23:44] system> | | | | | | | | (_| | (_| | | (_| (_| | | | | | | | | | __/ |
2016-01-26 [15:23:44] system> | |_|_| |_| |_|\__,_|\__, |_|\___\__,_|_|_| |_|_|_| |_|\___| for MCPE v0.13.1 alpha |
2016-01-26 [15:23:44] system> | __/ | |
2016-01-26 [15:23:44] system> | |___/ |
2016-01-26 [15:23:44] system> -------------------------------------------------------------------------------------------
2016-01-26 [15:23:44] system>
2016-01-26 [15:23:44] system> ImagicalMine is a third-party build of PocketMine-MP, distributed under the LGPL licence
2016-01-26 [15:23:44] system> Loading ImagicalMine system files....
2016-01-26 [15:23:44] system> Loading server properties...
2016-01-26 [15:23:44] system> Enabled log writing to server.log
2016-01-26 [15:23:44] system> Selected English (eng) as the base language
2016-01-26 [15:23:44] system> Starting Minecraft: PE server version v0.13.1 alpha
2016-01-26 [15:23:44] system> Starting remote control listener
2016-01-26 [15:23:44] system> RCON running on 0.0.0.0:19132
2016-01-26 [15:23:45] system> Opening server on 0.0.0.0:19132
2016-01-26 [15:23:46] system> This server is running ImagicalMine version 1.0dev "ImagicalMine" (API 1.14.0)
2016-01-26 [15:23:46] system> ImagicalMine is distributed under the LGPL License
2016-01-26 [15:23:58] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar" SHA1 signature could not be verified: broken signature
2016-01-26 [15:23:58] critical> UnexpectedValueException: "phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar" SHA1 signature could not be verified: broken signature" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [15:23:59] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': internal corruption of phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar" (__HALT_COMPILER(); not found)
2016-01-26 [15:23:59] critical> UnexpectedValueException: "internal corruption of phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar" (__HALT_COMPILER(); not found)" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [15:24:00] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': manifest cannot be larger than 100 MB in phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar"
2016-01-26 [15:24:00] critical> UnexpectedValueException: "manifest cannot be larger than 100 MB in phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar"" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [15:24:01] error> Could not load plugin 'ClearLagg': plugin exists
2016-01-26 [15:24:02] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar" SHA1 signature could not be verified: broken signature
2016-01-26 [15:24:02] critical> UnexpectedValueException: "phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar" SHA1 signature could not be verified: broken signature" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [15:24:03] error> Could not load plugin 'DevTools': plugin exists
2016-01-26 [15:24:05] system> Loading ChatLogin v1.3
2016-01-26 [15:24:05] system> Loading ClearLagg v1.1.0
2016-01-26 [15:24:05] system> Loading CustomAlerts v1.6
2016-01-26 [15:24:05] system> Loading DevTools v1.10.0
2016-01-26 [15:24:05] system> Loading EconomyAPI v2.0.9
2016-01-26 [15:24:05] system> Loading EconomyAuction v2.0.2
2016-01-26 [15:24:05] system> Loading EconomyCasino v2.0.2
2016-01-26 [15:24:05] system> Loading EconomyJob v2.0.4
2016-01-26 [15:24:06] system> Loading EconomyLand v2.0.9
2016-01-26 [15:24:06] system> Loading EconomyProperty v2.0.6
2016-01-26 [15:24:06] system> Loading EconomyPShop v2.0.2
2016-01-26 [15:24:06] system> Loading EconomySell v2.0.7
2016-01-26 [15:24:06] system> Loading EconomyUsury v1.0.1
2016-01-26 [15:24:06] system> Loading LightningEvents v1.1.0
2016-01-26 [15:24:06] system> [LightningEvents] Preparing for lightning ...
2016-01-26 [15:24:06] system> Loading MassiveEconomy v1.0 R3
2016-01-26 [15:24:06] system> Loading mcg76_SimplePortal v2.0.3
2016-01-26 [15:24:06] system> Loading MCG76_WorldEdit v0.5.2
2016-01-26 [15:24:07] system> Loading NPC v1.3.1
2016-01-26 [15:24:07] system> Loading ManyWorlds v2.0.3
2016-01-26 [15:24:07] system> Loading ItemCasePE v1.0.8
2016-01-26 [15:24:07] system> Loading FastTransfer v1.0.2
2016-01-26 [15:24:07] system> Loading BasicHUD v1.0.6
2016-01-26 [15:24:08] system> Loading NetherChests v1.1.1
2016-01-26 [15:24:08] system> Loading LiveSigns v1.2.1
2016-01-26 [15:24:08] system> Loading InvSee v0.0.1
2016-01-26 [15:24:08] system> Loading TapToDo v2.2.1
2016-01-26 [15:24:08] system> Loading SignPortal v1.1.2
2016-01-26 [15:24:08] system> Loading MineReset v2.1
2016-01-26 [15:24:08] system> Loading Alias v1.2.0
2016-01-26 [15:24:08] system> Loading PeacefulSpawn v2.4
2016-01-26 [15:24:08] system> Loading PocketGuard v2.1.1
2016-01-26 [15:24:08] system> Loading essentialsTP v1.1.0
2016-01-26 [15:24:08] system> Loading iProtector v3.1a
2016-01-26 [15:24:08] system> Loading FactionsPro v1.3.2
2016-01-26 [15:24:08] system> Loading PurePerms v1.2.2
2016-01-26 [15:24:09] system> [PurePerms] Setting default language to 'en'
2016-01-26 [15:24:09] notice> [PurePerms] Multiworld support is currently disabled.
2016-01-26 [15:24:10] notice> [PurePerms] Don't forget to set enable-multiworld-perms option in config.yml to true if you want to use per-world permissions!
2016-01-26 [15:24:10] system> Loading PureChat v1.3.3
2016-01-26 [15:24:10] system> Loading EssentialsPE v1.1.3
2016-01-26 [15:24:10] system> Loading xRulesx v1.0.0
2016-01-26 [15:24:10] system> Loading EnderPearl v1.2.3
2016-01-26 [15:24:10] system> Loading HelpOp v1.0.4
2016-01-26 [15:24:11] system> Loading RandomBox v1.2
2016-01-26 [15:24:11] system> Loading ServerAuth v2.11
2016-01-26 [15:24:11] system> Loading SurvivalGame v1.0.6
2016-01-26 [15:24:11] system> Loading SurvivalHiveHungergames v1
2016-01-26 [15:24:11] system> Loading EconomyAirport v2.0.4
2016-01-26 [15:24:11] system> Loading MassiveEconomyExample v1
2016-01-26 [15:24:12] system> Loading Jail v2.0.0
2016-01-26 [15:24:12] system> Loading MyPlot v1
2016-01-26 [15:24:12] critical> Could not save Config C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\MyPlot/config.yml: file_put_contents(C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\MyPlot/config.yml): failed to open stream: No such file or directory
2016-01-26 [15:24:12] system> [MyPlot] The default language is 'en'
2016-01-26 [15:24:12] system> Loading KillRate v2.1.1
2016-01-26 [15:24:12] system> Loading BattleKits v1.0.4
2016-01-26 [15:24:12] system> Enabling ChatLogin v1.3
2016-01-26 [15:24:13] system> [ChatLogin] Plugin Enabled!
2016-01-26 [15:24:13] system> Enabling CustomAlerts v1.6
2016-01-26 [15:24:13] system> Enabling DevTools v1.10.0
2016-01-26 [15:24:13] system> [DevTools] Registered folder plugin loader
2016-01-26 [15:24:13] system> Enabling MassiveEconomy v1.0 R3
2016-01-26 [15:24:13] system> Enabling FastTransfer v1.0.2
2016-01-26 [15:24:13] system> Enabling PurePerms v1.2.2
2016-01-26 [15:24:14] system> [PurePerms] Set data provider to YAML.
2016-01-26 [15:24:14] system> Enabling PureChat v1.3.3
2016-01-26 [15:24:14] system> Enabling ServerAuth v2.11
2016-01-26 [15:24:15] system> Enabling SurvivalHiveHungergames v1
2016-01-26 [15:24:15] system> [SurvivalHiveHungergames] SurvivalHive Hungergames loaded!
2016-01-26 [15:24:15] notice> Level "arena1" not found
2016-01-26 [15:24:15] notice> Level "arena2" not found
2016-01-26 [15:24:15] notice> Level "arena3" not found
2016-01-26 [15:24:15] notice> Level "arena4" not found
2016-01-26 [15:24:15] notice> Level "arena5" not found
2016-01-26 [15:24:15] system> Enabling MassiveEconomyExample v1
2016-01-26 [15:24:15] system> [MassiveEconomyExample] Example Plugin using MassiveEconomy (API v0.90)
2016-01-26 [15:24:15] system> Enabling MyPlot v1
2016-01-26 [15:24:15] system> [MyPlot] Loading the Plot Framework!
2016-01-26 [15:24:15] warning> [MyPlot] It seems that you are running the development build of MyPlot! Thats cool, but it CAN be very, very buggy! Just be careful when using this plugin and report any issues to http://github.com/wiez/MyPlot/issues
2016-01-26 [15:24:17] system> Preparing level "New World"
2016-01-26 [15:24:18] system> Enabling ClearLagg v1.1.0
2016-01-26 [15:24:18] system> Enabling EconomyAPI v2.0.9
2016-01-26 [15:24:19] notice> [EconomyAPI] Auto save has been set to interval : 10 min(s)
2016-01-26 [15:24:19] system> [EconomyAPI] Checking for updates... It may be take some while.
2016-01-26 [15:24:20] notice> [EconomyAPI] Thank you for using EconomyS plugin.
2016-01-26 [15:24:20] system> Enabling EconomyAuction v2.0.2
2016-01-26 [15:24:20] system> Enabling EconomyCasino v2.0.2
2016-01-26 [15:24:20] system> Enabling EconomyJob v2.0.4
2016-01-26 [15:24:21] system> Enabling EconomyLand v2.0.9
2016-01-26 [15:24:21] system> Enabling EconomyProperty v2.0.6
2016-01-26 [15:24:21] system> Enabling EconomyPShop v2.0.2
2016-01-26 [15:24:21] critical> [EconomyPShop] [DEPENDENCY] Please install ItemCloud plugin to use PShop plugin.
2016-01-26 [15:24:21] system> Enabling EconomySell v2.0.7
2016-01-26 [15:24:21] system> Enabling EconomyUsury v1.0.1
2016-01-26 [15:24:21] system> Enabling LightningEvents v1.1.0
2016-01-26 [15:24:21] system> [LightningEvents] Watchout for lightning strikes!
2016-01-26 [15:24:21] system> Enabling mcg76_SimplePortal v2.0.3
2016-01-26 [15:24:22] system> [mcg76_SimplePortal] #loading portals C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_SimplePortal/portal_data/
2016-01-26 [15:24:22] system> [mcg76_SimplePortal] .
2016-01-26 [15:24:22] system> [mcg76_SimplePortal] ..
2016-01-26 [15:24:22] system> [mcg76_SimplePortal] Factions.yml
2016-01-26 [15:24:22] notice> Level "New World" not found
2016-01-26 [15:24:22] system> [mcg76_SimplePortal] - FastTransfer Support Enabled!
2016-01-26 [15:24:22] system> [mcg76_SimplePortal] - mcg76_SimplePortal_v2 - Enabled!
2016-01-26 [15:24:22] system> Enabling MCG76_WorldEdit v0.5.2
2016-01-26 [15:24:22] system> [MCG76_WorldEdit] -MCG76 WorldEdit Enabled
2016-01-26 [15:24:22] system> Enabling NPC v1.3.1
2016-01-26 [15:24:22] system> Enabling ManyWorlds v2.0.3
2016-01-26 [15:24:22] system> Enabling ItemCasePE v1.0.8
2016-01-26 [15:24:22] system> Enabling BasicHUD v1.0.6
2016-01-26 [15:24:22] system> Enabling NetherChests v1.1.1
2016-01-26 [15:24:23] system> [NetherChests] Using YamlMgr as backend
2016-01-26 [15:24:23] system> Enabling LiveSigns v1.2.1
2016-01-26 [15:24:23] system> Enabling InvSee v0.0.1
2016-01-26 [15:24:23] system> Enabling TapToDo v2.2.1
2016-01-26 [15:24:23] warning> [TapToDo] Could not load block in level MiniGames because that level is not loaded.
2016-01-26 [15:24:23] system> Enabling SignPortal v1.1.2
2016-01-26 [15:24:23] system> Enabling MineReset v2.1
2016-01-26 [15:24:24] system> Enabling Alias v1.2.0
2016-01-26 [15:24:24] system> Enabling PeacefulSpawn v2.4
2016-01-26 [15:24:24] system> Enabling PocketGuard v2.1.1
2016-01-26 [15:24:24] system> Enabling essentialsTP v1.1.0
2016-01-26 [15:24:24] system> [essentialsTP] essentialsTP+ loading...
2016-01-26 [15:24:24] system> [essentialsTP] [INFO] loading [config.yml]....
2016-01-26 [15:24:24] system> [essentialsTP] [INFO] loading [config.yml] DONE
2016-01-26 [15:24:24] system> [essentialsTP] essentialsTP+ loaded!
2016-01-26 [15:24:24] system> Enabling iProtector v3.1a
2016-01-26 [15:24:24] system> Enabling FactionsPro v1.3.2
2016-01-26 [15:24:25] system> Enabling EssentialsPE v1.1.3
2016-01-26 [15:24:25] warning> RuntimeException: "yaml_parse(): end of stream reached without finding document 0" (E_WARNING) in "/src/pocketmine/utils/Config" at line 148
2016-01-26 [15:24:25] system> Disabling EssentialsPE v1.1.3
2016-01-26 [15:24:25] warning> RuntimeException: "yaml_parse(): end of stream reached without finding document 0" (E_WARNING) in "/src/pocketmine/utils/Config" at line 148
2016-01-26 [15:24:25] system> Enabling xRulesx v1.0.0
2016-01-26 [15:24:25] system> [xRulesx] [xFlare] >> Done! xRulesx is running on Version 1.0.0!
2016-01-26 [15:24:25] system> Enabling EnderPearl v1.2.3
2016-01-26 [15:24:25] system> [EnderPearl] EnderPerl loaded!
2016-01-26 [15:24:25] system> Enabling HelpOp v1.0.4
2016-01-26 [15:24:26] system> [HelpOp] Loaded Successfully!
2016-01-26 [15:24:26] system> Enabling RandomBox v1.2
2016-01-26 [15:24:26] system> Plugin Developer: LAENG
2016-01-26 [15:24:26] system> Enabling SurvivalGame v1.0.6
2016-01-26 [15:24:26] warning> A plugin attempted to register a deprecated CallbackTask (Callback#Andre\SurvivalGame\Main::gameTimber)
2016-01-26 [15:24:26] system> [SG] Using Money System From... EconomyAPI v2.0.9
2016-01-26 [15:24:26] system> [SG] SurvivalGame Has Been Enable
2016-01-26 [15:24:26] system> [SG] By: AndreTheGamer
2016-01-26 [15:24:26] system> [SG] File: Config Loaded !
2016-01-26 [15:24:26] system> [SG] File: Point Loaded !
2016-01-26 [15:24:26] system> Enabling EconomyAirport v2.0.4
2016-01-26 [15:24:26] system> Enabling Jail v2.0.0
2016-01-26 [15:24:26] system> [Jail] Loading configurations..
2016-01-26 [15:24:26] system> [Jail] Loading authentication plugin..
2016-01-26 [15:24:26] system> [Jail] Loading economy plugins..
2016-01-26 [15:24:27] system> [Jail] Loaded with EconomyAPI!
2016-01-26 [15:24:27] system> [Jail] Loading plugin..
2016-01-26 [15:24:27] system> [Jail] Loaded Successfully!
2016-01-26 [15:24:27] system> Enabling KillRate v2.1.1
2016-01-26 [15:24:27] error> [KillRate] Your selected language "" is not supported
2016-01-26 [15:24:27] error> [KillRate] Please consider translating "messages.ini"
2016-01-26 [15:24:27] error> [KillRate] and submitting a translation to the developer
2016-01-26 [15:24:27] system> [KillRate] Using SQLiteMgr as backend
2016-01-26 [15:24:27] system> [KillRate] Using money API from EconomyAPI v2.0.9
2016-01-26 [15:24:28] system> Enabling BattleKits v1.0.4
2016-01-26 [15:24:28] system> [BattleKits] Loaded EconomyS by onebone
2016-01-26 [15:24:28] system> [BattleKits] Loaded 1 kits.
2016-01-26 [15:25:20] system> Starting GS4 status listener
2016-01-26 [15:25:20] system> Setting query port to 19132
2016-01-26 [15:25:20] system> Query running on 0.0.0.0:19132
2016-01-26 [15:25:20] system> Default game type: Survival Mode
2016-01-26 [15:25:20] system> Done (100.508s)! For help, type "help" or "?"
2016-01-26 [15:27:46] system> [Server] bine ati venit pe &a I LOVE MCPE[1;5w &1
2016-01-26 [15:28:16] system> Unknown command. Try /help for a list of commands
2016-01-26 [15:29:00] system> Unknown command. Try /help for a list of commands
2016-01-26 [15:29:15] system> [Server] C3A31182737
2016-01-26 [15:38:58] system> [CONSOLE: Stopping the server]
2016-01-26 [15:39:30] system> Disabling ChatLogin v1.3
2016-01-26 [15:39:30] system> Disabling ClearLagg v1.1.0
2016-01-26 [15:39:33] system> Disabling CustomAlerts v1.6
2016-01-26 [15:39:33] system> Disabling DevTools v1.10.0
2016-01-26 [15:39:33] system> Disabling EconomyAPI v2.0.9
2016-01-26 [15:39:33] system> Disabling EconomyAuction v2.0.2
2016-01-26 [15:39:34] system> Disabling EconomyCasino v2.0.2
2016-01-26 [15:39:34] system> Disabling EconomyJob v2.0.4
2016-01-26 [15:39:34] system> Disabling EconomyLand v2.0.9
2016-01-26 [15:39:34] system> Disabling EconomyProperty v2.0.6
2016-01-26 [15:39:35] system> Disabling EconomyPShop v2.0.2
2016-01-26 [15:39:35] system> Disabling EconomySell v2.0.7
2016-01-26 [15:39:35] system> Disabling EconomyUsury v1.0.1
2016-01-26 [15:39:36] system> Disabling LightningEvents v1.1.0
2016-01-26 [15:39:36] system> [LightningEvents] Awww no more lightning strikes :(
2016-01-26 [15:39:36] system> Disabling MassiveEconomy v1.0 R3
2016-01-26 [15:39:36] system> Disabling mcg76_SimplePortal v2.0.3
2016-01-26 [15:39:36] system> [mcg76_SimplePortal] mcg76_SimplePortal_v2 - Disabled
2016-01-26 [15:39:36] system> Disabling MCG76_WorldEdit v0.5.2
2016-01-26 [15:39:36] system> [MCG76_WorldEdit] - MCG76 WorldEdit Disable
2016-01-26 [15:39:36] system> Disabling NPC v1.3.1
2016-01-26 [15:39:36] system> Disabling ManyWorlds v2.0.3
2016-01-26 [15:39:36] system> Disabling ItemCasePE v1.0.8
2016-01-26 [15:39:36] system> Disabling FastTransfer v1.0.2
2016-01-26 [15:39:37] system> Disabling BasicHUD v1.0.6
2016-01-26 [15:39:37] system> Disabling NetherChests v1.1.1
2016-01-26 [15:39:37] system> Disabling LiveSigns v1.2.1
2016-01-26 [15:39:37] system> Disabling InvSee v0.0.1
2016-01-26 [15:39:37] system> Disabling TapToDo v2.2.1
2016-01-26 [15:39:37] system> [TapToDo] Saving blocks...
2016-01-26 [15:39:37] system> Disabling SignPortal v1.1.2
2016-01-26 [15:39:37] system> Disabling MineReset v2.1
2016-01-26 [15:39:37] system> Disabling Alias v1.2.0
2016-01-26 [15:39:37] system> Disabling PeacefulSpawn v2.4
2016-01-26 [15:39:37] system> Disabling PocketGuard v2.1.1
2016-01-26 [15:39:37] system> Disabling essentialsTP v1.1.0
2016-01-26 [15:39:37] system> [essentialsTP] essentialsTP+ Disabled
2016-01-26 [15:39:37] system> Disabling iProtector v3.1a
2016-01-26 [15:39:37] system> Disabling FactionsPro v1.3.2
2016-01-26 [15:39:37] system> Disabling PurePerms v1.2.2
2016-01-26 [15:39:37] system> Disabling PureChat v1.3.3
2016-01-26 [15:39:37] system> Disabling xRulesx v1.0.0
2016-01-26 [15:39:37] system> Disabling EnderPearl v1.2.3
2016-01-26 [15:39:38] system> [EnderPearl] EnderPearl unloaded!
2016-01-26 [15:39:38] system> Disabling HelpOp v1.0.4
2016-01-26 [15:39:38] system> Disabling RandomBox v1.2
2016-01-26 [15:39:38] system> Disabling ServerAuth v2.11
2016-01-26 [15:39:38] system> Disabling SurvivalGame v1.0.6
2016-01-26 [15:39:40] system> [SG] Saving All Data...
2016-01-26 [15:39:40] system> [SG] Date/Settings SAVED!
2016-01-26 [15:39:40] system> Disabling SurvivalHiveHungergames v1
2016-01-26 [15:39:41] notice> UndefinedVariableException: "Undefined variable: level" (E_NOTICE) in "/SurvivalHiveHungergames.phar/src/main/minigame" at line 1
2016-01-26 [15:40:25] system> -------------------------------------------------------------------------------------------
2016-01-26 [15:40:25] system> | _ _ _ __ __ _ |
2016-01-26 [15:40:25] system> | (_) (_) | | \/ (_) |
2016-01-26 [15:40:25] system> | _ _ __ ___ __ _ __ _ _ ___ __ _| | \ / |_ _ __ ___ |
2016-01-26 [15:40:25] system> | | | '_ ` _ \ / _` |/ _` | |/ __/ _` | | |\/| | | '_ \ / _ \ ImagicalMine 1.0dev |
2016-01-26 [15:40:25] system> | | | | | | | | (_| | (_| | | (_| (_| | | | | | | | | | __/ |
2016-01-26 [15:40:25] system> | |_|_| |_| |_|\__,_|\__, |_|\___\__,_|_|_| |_|_|_| |_|\___| for MCPE v0.13.1 alpha |
2016-01-26 [15:40:25] system> | __/ | |
2016-01-26 [15:40:25] system> | |___/ |
2016-01-26 [15:40:25] system> -------------------------------------------------------------------------------------------
2016-01-26 [15:40:25] system>
2016-01-26 [15:40:25] system> ImagicalMine is a third-party build of PocketMine-MP, distributed under the LGPL licence
2016-01-26 [15:40:25] system> Loading ImagicalMine system files....
2016-01-26 [15:40:25] system> Loading server properties...
2016-01-26 [15:40:26] system> Enabled log writing to server.log
2016-01-26 [15:40:26] system> Selected English (eng) as the base language
2016-01-26 [15:40:26] system> Starting Minecraft: PE server version v0.13.1 alpha
2016-01-26 [15:40:26] system> Starting remote control listener
2016-01-26 [15:40:26] system> RCON running on 0.0.0.0:19132
2016-01-26 [15:40:26] system> Opening server on 0.0.0.0:19132
2016-01-26 [15:40:27] system> This server is running ImagicalMine version 1.0dev "ImagicalMine" (API 1.14.0)
2016-01-26 [15:40:27] system> ImagicalMine is distributed under the LGPL License
2016-01-26 [15:40:35] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar" SHA1 signature could not be verified: broken signature
2016-01-26 [15:40:35] critical> UnexpectedValueException: "phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\EconomyShop_v2.0.7.phar" SHA1 signature could not be verified: broken signature" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [15:40:35] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': internal corruption of phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar" (__HALT_COMPILER(); not found)
2016-01-26 [15:40:35] critical> UnexpectedValueException: "internal corruption of phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\HungerGames.phar" (__HALT_COMPILER(); not found)" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [15:40:36] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': manifest cannot be larger than 100 MB in phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar"
2016-01-26 [15:40:36] critical> UnexpectedValueException: "manifest cannot be larger than 100 MB in phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\mcg76_NPC_Statue v1.1.0.phar"" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [15:40:37] error> Could not load plugin 'ClearLagg': plugin exists
2016-01-26 [15:40:37] error> Could not load 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar' in folder 'C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\': phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar" SHA1 signature could not be verified: broken signature
2016-01-26 [15:40:37] critical> UnexpectedValueException: "phar "C:\Users\Irma\Music\Sample Music\PocketMine-MP\plugins\plugin-1429.phar" SHA1 signature could not be verified: broken signature" (EXCEPTION) in "/src/pocketmine/plugin/PharPluginLoader" at line 90
2016-01-26 [15:40:37] error> Could not load plugin 'DevTools': plugin exists
2016-01-26 [15:40:39] system> Loading ChatLogin v1.3
2016-01-26 [15:40:39] system> Loading ClearLagg v1.1.0
2016-01-26 [15:40:39] system> Loading CustomAlerts v1.6
2016-01-26 [15:40:39] system> Loading DevTools v1.10.0
2016-01-26 [15:40:39] system> Loading EconomyAPI v2.0.9
2016-01-26 [15:40:39] system> Loading EconomyAuction v2.0.2
2016-01-26 [15:40:39] system> Loading EconomyCasino v2.0.2
2016-01-26 [15:40:39] system> Loading EconomyJob v2.0.4
2016-01-26 [15:40:39] system> Loading EconomyLand v2.0.9
2016-01-26 [15:40:39] system> Loading EconomyProperty v2.0.6
2016-01-26 [15:40:39] system> Loading EconomyPShop v2.0.2
2016-01-26 [15:40:39] system> Loading EconomySell v2.0.7
2016-01-26 [15:40:40] system> Loading EconomyUsury v1.0.1
2016-01-26 [15:40:40] system> Loading LightningEvents v1.1.0
2016-01-26 [15:40:40] system> [LightningEvents] Preparing for lightning ...
2016-01-26 [15:40:40] system> Loading MassiveEconomy v1.0 R3
2016-01-26 [15:40:40] system> Loading mcg76_SimplePortal v2.0.3
2016-01-26 [15:40:40] system> Loading MCG76_WorldEdit v0.5.2
2016-01-26 [15:40:40] system> Loading NPC v1.3.1
2016-01-26 [15:40:40] system> Loading ManyWorlds v2.0.3
2016-01-26 [15:40:40] system> Loading ItemCasePE v1.0.8
2016-01-26 [15:40:40] system> Loading FastTransfer v1.0.2
2016-01-26 [15:40:40] system> Loading BasicHUD v1.0.6
2016-01-26 [15:40:40] system> Loading NetherChests v1.1.1
2016-01-26 [15:40:40] system> Loading LiveSigns v1.2.1
2016-01-26 [15:40:40] system> Loading InvSee v0.0.1
2016-01-26 [15:40:40] system> Loading TapToDo v2.2.1
2016-01-26 [15:40:41] system> Loading SignPortal v1.1.2
2016-01-26 [15:40:41] system> Loading MineReset v2.1
2016-01-26 [15:40:41] system> Loading Alias v1.2.0
2016-01-26 [15:40:41] system> Loading PeacefulSpawn v2.4
2016-01-26 [15:40:41] system> Loading PocketGuard v2.1.1
2016-01-26 [15:40:41] system> Loading essentialsTP v1.1.0
2016-01-26 [15:40:41] system> Loading iProtector v3.1a
2016-01-26 [15:40:41] system> Loading FactionsPro v1.3.2
2016-01-26 [15:40:41] system> Loading PurePerms v1.2.2
2016-01-26 [15:40:41] system> [PurePerms] Setting default language to 'en'
2016-01-26 [15:40:41] notice> [PurePerms] Multiworld support is currently disabled.
2016-01-26 [15:40:41] notice> [PurePerms] Don't forget to set enable-multiworld-perms option in config.yml to true if you want to use per-world permissions!
2016-01-26 [15:40:41] system> Loading PureChat v1.3.3
2016-01-26 [15:40:42] system> Loading EssentialsPE v1.1.3
2016-01-26 [15:40:42] system> Loading xRulesx v1.0.0
2016-01-26 [15:40:42] system> Loading EnderPearl v1.2.3
2016-01-26 [15:40:42] system> Loading HelpOp v1.0.4
2016-01-26 [15:40:42] system> Loading RandomBox v1.2
2016-01-26 [15:40:42] system> Loading ServerAuth v2.11
2016-01-26 [15:40:42] system> Loading SurvivalGame v1.0.6
2016-01-26 [15:40:42] system> Loading SurvivalHiveHungergames v1
2016-01-26 [15:40:42] system> Loading EconomyAirport v2.0.4
2016-01-26 [15:40:42] system> Loading MassiveEconomyExample v1
2016-01-26 [15:40:42] system> Loading Jail v2.0.0
2016-01-26 [15:40:43] system> Loading MyPlot v1
2016-01-26 [15:40:43] system> [MyPlot] The default language is 'en'
2016-01-26 [15:40:43] system> Loading KillRate v2.1.1
2016-01-26 [15:40:43] system> Loading BattleKits v1.0.4
2016-01-26 [15:40:43] system> Enabling ChatLogin v1.3
2016-01-26 [15:40:43] system> [ChatLogin] Plugin Enabled!
2016-01-26 [15:40:43] system> Enabling CustomAlerts v1.6
2016-01-26 [15:40:43] system> Enabling DevTools v1.10.0
2016-01-26 [15:40:44] system> [DevTools] Registered folder plugin loader
2016-01-26 [15:40:44] system> Enabling MassiveEconomy v1.0 R3
2016-01-26 [15:40:44] system> Enabling FastTransfer v1.0.2
2016-01-26 [15:40:44] system> Enabling PurePerms v1.2.2
2016-01-26 [15:40:44] system> [PurePerms] Set data provider to YAML.
2016-01-26 [15:40:45] system> Enabling PureChat v1.3.3
2016-01-26 [15:40:45] system> Enabling ServerAuth v2.11
2016-01-26 [15:40:45] system> Enabling SurvivalHiveHungergames v1
2016-01-26 [15:40:45] system> [SurvivalHiveHungergames] SurvivalHive Hungergames loaded!
2016-01-26 [15:40:45] notice> Level "arena1" not found
2016-01-26 [15:40:45] notice> Level "arena2" not found
2016-01-26 [15:40:45] notice> Level "arena3" not found
2016-01-26 [15:40:45] notice> Level "arena4" not found
2016-01-26 [15:40:45] notice> Level "arena5" not found
2016-01-26 [15:40:45] system> Enabling MassiveEconomyExample v1
2016-01-26 [15:40:45] system> [MassiveEconomyExample] Example Plugin using MassiveEconomy (API v0.90)
2016-01-26 [15:40:45] system> Enabling MyPlot v1