Paste #553: IRC logs for #denizen-dev at 12/13/2013 11:15:04 AM

Date: 2013/12/13 11:15:04 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
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353


-- IRC Log requested by Pigman168 --
12/12/2013 8:54:54 AM <usevalue> AT THE GALACTIC CONFERENCE ON OMICRON VII
12/12/2013 8:55:04 AM <usevalue> YOU WERE NOT INVITED DUE TO SUSPECTED REBEL SYMPATHIES
12/12/2013 8:58:41 AM <NegroBob> D:<
12/12/2013 8:58:51 AM <NegroBob> Omicron percei VII you mean
12/12/2013 9:00:56 AM * zz_Kain|ZNC renamed to zz_zz_Kain|ZNC
12/12/2013 9:02:02 AM <usevalue> I knew I got that name from somewhere.
12/12/2013 9:02:13 AM <usevalue> Though I think on the show it was O.P. VIII?
12/12/2013 9:06:54 AM <NegroBob> yeah
12/12/2013 9:07:01 AM <NegroBob> Its Futurama noob
12/12/2013 9:09:42 AM * usevalue renamed to SuperNoob
12/12/2013 9:23:50 AM <NegroBob> D:<
12/12/2013 9:24:58 AM <SuperNoob> Ah, I take it -execute isn't implemented yet.
12/12/2013 9:26:08 AM <NegroBob> lol
12/12/2013 9:26:11 AM <NegroBob> - execute
12/12/2013 9:26:11 AM <NegroBob> is
12/12/2013 9:26:14 AM <NegroBob> :)
12/12/2013 9:26:29 AM <NegroBob> !cmd execute
12/12/2013 9:26:29 AM <+monkeybot> execute: Executes an arbitrary server command as if the player, NPC, or server typed it in.
12/12/2013 9:26:29 AM <+monkeybot> Syntax: - execute [as_player/as_op/as_npc/as_server] [<Bukkit command>]
12/12/2013 9:26:50 AM <SuperNoob> Coool. SuperNoob... awaaaaay!
12/12/2013 9:27:05 AM <SuperNoob> See, I wrote that.
12/12/2013 9:27:35 AM <SuperNoob> Ah.
12/12/2013 9:27:37 AM <SuperNoob> No I did not.
12/12/2013 9:28:17 AM <SuperNoob> Left out brackets. They don't call me SuperNoob for nuthin.
12/12/2013 9:28:36 AM <NegroBob> D:<
12/12/2013 9:30:27 AM <SuperNoob> I'm totally leet. Do people still say leet? It's been a while since I interneted.
12/12/2013 9:30:41 AM <SuperNoob> Filesize: 404. Terrible omen.
12/12/2013 9:39:21 AM <SuperNoob> !cmds
12/12/2013 9:39:21 AM <+monkeybot> That command is written as !cmds <the start of the command or just 'all'> [description/author/tags/usage/stability]
12/12/2013 9:43:32 AM <SuperNoob> !tags
12/12/2013 9:43:32 AM <+monkeybot> That command is written as !tags <the start of the tag or just 'all'>
12/12/2013 9:43:39 AM <SuperNoob> !tags all
12/12/2013 9:43:39 AM <+monkeybot> A list of all tags is available here- http://mcmonkey4eva.dyndns.org/tags
12/12/2013 9:46:30 AM <NegroBob> :)
12/12/2013 9:48:47 AM <SuperNoob> As frustrating as this is (haven't coded since high school) it's probably the coolest minecraft thing I've found thus far.
12/12/2013 9:48:52 AM <SuperNoob> Kudos to any developers here.
12/12/2013 10:10:52 AM * Morphan1 joined.
12/12/2013 10:10:52 AM * ChanServ gave voice to +Morphan1.
12/12/2013 10:16:55 AM <+spazzmatic> [Denizen] Morphan1 commented on open issue: [554] Problem with renamed items by Wonkee - http://bit.ly/1gWcTT6
12/12/2013 10:24:44 AM * SuperNoob quit.
12/12/2013 10:35:48 AM * PieGuy128 joined.
12/12/2013 10:42:42 AM * TooLmaN joined.
12/12/2013 10:48:33 AM <+spazzmatic> [Denizen] Morphan1 commented on commit: Add <n@npc.has_pose[<name>]> and <n@npc.get_pose[<name>]>; Fix some tag meta
12/12/2013 10:51:15 AM * PieGuy32 joined.
12/12/2013 10:51:17 AM * PieGuy128 quit.
12/12/2013 10:51:49 AM * PieGuy32 renamed to PieGuy128
12/12/2013 10:59:22 AM * blankiito joined.
12/12/2013 11:03:46 AM * SirWilli joined.
12/12/2013 11:18:50 AM <+spazzmatic> [Denizen] Pull request opened: [560] "Working on Mechanisms" by Morphan1 - http://bit.ly/18EScpn
12/12/2013 11:28:25 AM * kosgan10 renamed to kosgan10|away
12/12/2013 11:55:44 AM <SirWilli> he
12/12/2013 11:55:45 AM <SirWilli> y
12/12/2013 11:57:00 AM <SirWilli> it is possible to do the same things as with the commandhelper?
12/12/2013 11:57:06 AM <SirWilli> with denizen
12/12/2013 11:57:07 AM <|Anthony|> !tag player.standing_on
12/12/2013 11:57:07 AM <+monkeybot> That tag doesn't seem to exist.
12/12/2013 11:57:14 AM <|Anthony|> !tag player.standing
12/12/2013 11:57:14 AM <+monkeybot> That tag doesn't seem to exist.
12/12/2013 11:57:18 AM <|Anthony|> hrm
12/12/2013 11:59:58 AM * Matterom joined.
12/12/2013 12:00:05 PM <Matterom> Afternoon
12/12/2013 12:00:25 PM <|Anthony|> evening
12/12/2013 12:27:17 PM <+Morphan1> hey Matterom
12/12/2013 12:27:23 PM <Matterom> Oi
12/12/2013 12:28:50 PM <+Morphan1> Matterom, why might actually have to add an Enchant command for dItems
12/12/2013 12:29:08 PM <+Morphan1> unless we allow Adjust to take more than one argument somehow
12/12/2013 12:29:34 PM <+Morphan1> which would eventually get more complicated than listeners
12/12/2013 12:38:31 PM <blankiito>  hey
12/12/2013 12:38:32 PM <blankiito> 
12/12/2013 12:38:59 PM <blankiito> Morphan1: Do you know why npc loose their inventory when they are unload (on chunck unload)
12/12/2013 12:39:31 PM <diskawrs> mm with regards to 1.7.2r0 I don't quite get why item frames would be severe issue? Or it this some other item_frame?
12/12/2013 12:39:58 PM <+Morphan1> blankiito, because at the moment, the inventory isn't stored anywhere, so as soon as Bukkit feels like deleting it, there's nothing we can do
12/12/2013 12:40:02 PM <+Morphan1> that's being worked on though
12/12/2013 12:40:17 PM <+Morphan1> I think
12/12/2013 12:40:19 PM <blankiito> Morphan1: ok thanks
12/12/2013 12:40:52 PM <blankiito> i will store my item in a hide chest then
12/12/2013 12:42:24 PM <+Morphan1> diskawrs, the problem is that 1.7.2 allows you to hit an item frame and the item comes out. Bukkit forgot to add an event for that, so plugins such as WorldGuard and Towny couldn't account correctly for it
12/12/2013 12:42:42 PM <+Morphan1> I think they fixed it in a recent build though
12/12/2013 12:59:13 PM * NLBlackEagle joined.
12/12/2013 12:59:25 PM <NLBlackEagle> !ds http://www.hastebin.com/cedahikimu.xml
12/12/2013 12:59:27 PM <+monkeybot> I encountered 2 potential problems with that script.
12/12/2013 12:59:27 PM <+monkeybot>   (1) WARNING: Line 60: Category with no commands!
12/12/2013 12:59:27 PM <+monkeybot>   (2) WARNING: Line 83: Uneven number of quotes.
12/12/2013 12:59:27 PM <NLBlackEagle> heya guys
12/12/2013 1:02:57 PM <+Morphan1> hey NLBlackEagle
12/12/2013 1:05:45 PM * TooLmaN quit.
12/12/2013 1:13:13 PM <+spazzmatic> [Denizen] aufdemrand commented on open issue: [560] Working on Mechanisms by Morphan1 - http://bit.ly/18EScpn
12/12/2013 1:30:53 PM * ChooChooBawb joined.
12/12/2013 1:31:19 PM <ChooChooBawb> HINEVEEYBIDY
12/12/2013 1:31:44 PM <ChooChooBawb> hows everyone today
12/12/2013 1:34:50 PM * ChooChooBawb quit.
12/12/2013 1:41:26 PM <diskawrs> Morphan1 ah but thats a minor inconvience right, it does not break stuff if people don't use item frames
12/12/2013 1:42:19 PM <+Morphan1> yeah, if you don't use item frames or just don't even wanna protect the item inside, it isn't a problem for you
12/12/2013 1:43:58 PM <diskawrs> lol I will just tell people to keep their doors shut
12/12/2013 1:43:59 PM <diskawrs> XD
12/12/2013 1:44:38 PM * blankiito quit.
12/12/2013 1:45:30 PM * Runner joined.
12/12/2013 1:45:50 PM * Runner left.
12/12/2013 2:00:31 PM <+spazzmatic> [Denizen] Morphan1 commented on open issue: [560] Working on Mechanisms by Morphan1 - http://bit.ly/18EScpn
12/12/2013 3:16:06 PM <diskawrs> lol can't bg the screen when running 1.7.2r0
12/12/2013 3:24:20 PM <+spazzmatic> [Denizen] mcmonkey4eva commented on open issue: [554] Problem with renamed items by Wonkee - http://bit.ly/1gWcTT6
12/12/2013 3:25:27 PM <+spazzmatic> [Denizen] mcmonkey4eva commented on commit: Add <n@npc.has_pose[<name>]> and <n@npc.get_pose[<name>]>; Fix some tag meta
12/12/2013 3:27:00 PM <NegroBob> D:
12/12/2013 3:27:01 PM <NegroBob> Hi!
12/12/2013 3:27:43 PM <+Morphan1> mcmonkey, "I usually do but sometimes the commit name is too long to fit in all that D:"......
12/12/2013 3:27:50 PM <+Morphan1> The name was "add inventory.contains.material[mat]"
12/12/2013 3:28:09 PM <+Morphan1> I have "Add <n@npc.has_pose[<name>]> and <n@npc.get_pose[<name>]>; Fix some tag meta"
12/12/2013 3:28:15 PM <+Morphan1> That's not even close
12/12/2013 3:28:17 PM <+Morphan1> to being long
12/12/2013 3:30:03 PM <NegroBob> :(
12/12/2013 3:30:57 PM <+mcmonkey> Morphan1: it's weird, it randomly makes up different limits every time
12/12/2013 3:31:09 PM <+mcmonkey> Morphan1: also I edited that comment like 3 times if you didn't see
12/12/2013 3:31:48 PM <uledrith> !cmd cooldown
12/12/2013 3:31:48 PM <+monkeybot> cooldown: Temporarily disables a script-container from meeting requirements.
12/12/2013 3:31:48 PM <+monkeybot> Syntax: - cooldown [<duration>] (global) (s:<script>)
12/12/2013 3:34:58 PM <+Morphan1> mcmonkey, NO EXCUSE
12/12/2013 3:37:58 PM <NegroBob> Shut up
12/12/2013 3:39:18 PM <+Morphan1> No
12/12/2013 3:41:42 PM <+Morphan1> mcmonkey, world mech "difficulty"... integer or PEACEFUL/EASY/NORMAL/HARD
12/12/2013 3:42:18 PM <NegroBob> D:<
12/12/2013 3:42:20 PM <NegroBob> QUIET
12/12/2013 3:42:21 PM <+mcmonkey> Morphan1: sounds reasonable
12/12/2013 3:42:25 PM <+mcmonkey> Morphan1: ints
12/12/2013 3:42:31 PM <+mcmonkey> Morphan1: also the names
12/12/2013 3:42:48 PM <+mcmonkey> dual-input!
12/12/2013 3:43:21 PM <NegroBob> WHY
12/12/2013 3:43:23 PM <NegroBob> D:<
12/12/2013 3:46:42 PM <+Morphan1> mcmonkey, you just like to make my life hardd
12/12/2013 3:47:53 PM <+mcmonkey> Morphan1: I like *FUNCTIONALITY*
12/12/2013 3:49:13 PM <+Morphan1> mcmonkey,
12/12/2013 3:49:14 PM <+Morphan1>  if (mechanism.matches("difficulty")) {
12/12/2013 3:49:14 PM <+Morphan1>  if (Difficulty.valueOf(value.asString()) != null)
12/12/2013 3:49:14 PM <+Morphan1>  getWorld().setDifficulty(Difficulty.valueOf(value.asString()));
12/12/2013 3:49:14 PM <+Morphan1>  else if (Difficulty.getByValue(value.asInt()) != null)
12/12/2013 3:49:14 PM <+Morphan1>  getWorld().setDifficulty(Difficulty.getByValue(value.asInt()));
12/12/2013 3:49:16 PM <+Morphan1>  }
12/12/2013 3:49:27 PM <+Morphan1> hurrayyy
12/12/2013 3:49:32 PM <+Morphan1> closeenough
12/12/2013 3:49:40 PM <+Morphan1> / @input Element/Element(Integer)
12/12/2013 3:50:17 PM <+Morphan1> meh I'll just put Element
12/12/2013 3:54:51 PM <+mcmonkey> Morphan1: That will throw an error
12/12/2013 3:55:04 PM <+Morphan1> how?
12/12/2013 3:55:35 PM <+mcmonkey> Morphan1: enum.valueOf("invalid arg") = exception
12/12/2013 3:55:53 PM <uledrith> !tag player.location.find
12/12/2013 3:55:53 PM <+monkeybot> I found 6 matches...
12/12/2013 3:55:53 PM <+monkeybot> entity.location.find.blocks[<block>|...].within[x], entity.location.find.surface_blocks[<block>|...].within[x], entity.location.find.players.within[x], entity.location.find.npcs.within[x], entity.location.find.entities[<entity>|...].within[x], entity.location.find.living_entities.within[x].
12/12/2013 3:56:04 PM <+mcmonkey> Morphan1: also, you should force the casing... .toUpperCase() or whichever...
12/12/2013 3:56:17 PM <+Morphan1> hurray
12/12/2013 3:57:26 PM <uledrith> !tag player.location.find.npcs.within
12/12/2013 3:57:26 PM <+monkeybot> Found: <entity.location.find.npcs.within[x]>, which returns a dList
12/12/2013 3:57:26 PM <+monkeybot>   Returns a list of NPCs within a radius.
12/12/2013 4:05:19 PM <NegroBob> noobs
12/12/2013 4:15:30 PM <uledrith> !update
12/12/2013 4:15:30 PM <+monkeybot> Due to the nature of our project, Denizen is always built against the development builds of Craftbukkit and Citizens.
12/12/2013 4:15:30 PM <+monkeybot> Most errors can be fixed by updating all 3.
12/12/2013 4:15:30 PM <+monkeybot> Denizen- http://ci.citizensnpcs.co/job/Denizen/lastSuccessfulBuild
12/12/2013 4:15:30 PM <+monkeybot> Citizens- http://ci.citizensnpcs.co/job/Citizens2/lastSuccessfulBuild
12/12/2013 4:15:30 PM <+monkeybot> Craftbukkit- http://dl.bukkit.org/downloads/craftbukkit/
12/12/2013 4:16:55 PM <NegroBob> :P my server is getting ddos'd
12/12/2013 4:16:58 PM <NegroBob> by some douche
12/12/2013 4:21:24 PM <Busi> counter it?
12/12/2013 4:23:04 PM <+Morphan1> Yeah, ssod him
12/12/2013 4:23:10 PM <+Morphan1> no wait
12/12/2013 4:23:11 PM <+Morphan1> sodd
12/12/2013 4:26:48 PM <NegroBob> yeah counter it
12/12/2013 4:26:57 PM <NegroBob>  * NegroBob begins counter measures
12/12/2013 4:30:40 PM <NegroBob>  * NegroBob launches internet nukes
12/12/2013 4:31:45 PM <NegroBob>  * NegroBob kills millions
12/12/2013 4:31:59 PM <NegroBob>  * NegroBob is taken to trial and convicted of ar crimes
12/12/2013 4:32:08 PM <NegroBob>  * NegroBob mispelled war
12/12/2013 4:32:14 PM <NegroBob>  * NegroBob is executed
12/12/2013 4:33:51 PM <+Morphan1> D:
12/12/2013 4:34:01 PM <+Morphan1> he didn't even tell us how he was executed
12/12/2013 4:36:16 PM <NegroBob>  * NegroBob ghost returns
12/12/2013 4:36:18 PM <NegroBob> D:
12/12/2013 4:36:34 PM * Jeebiss joined.
12/12/2013 4:36:34 PM * ChanServ gave OP to @Jeebiss.
12/12/2013 4:36:42 PM <NegroBob> Jeebiss: D:
12/12/2013 4:55:52 PM <NegroBob> D:<
12/12/2013 4:55:54 PM <NegroBob> WHOS HERE
12/12/2013 5:03:05 PM * @Jeebiss quit.
12/12/2013 5:08:33 PM * gabizou joined.
12/12/2013 5:08:37 PM <gabizou> alo
12/12/2013 5:12:23 PM <NegroBob> D:
12/12/2013 5:12:24 PM <NegroBob> !
12/12/2013 5:13:04 PM <gabizou> NegroBob: meanie!
12/12/2013 5:13:47 PM <gabizou> is there much of an api for Denizens?
12/12/2013 5:13:51 PM <gabizou> aside from Citizens?
12/12/2013 5:16:03 PM * NegroBob quit.
12/12/2013 5:23:05 PM * diskawrs quit.
12/12/2013 5:24:51 PM * diskawrs joined.
12/12/2013 5:26:30 PM * NegroBob joined.
12/12/2013 5:26:31 PM <NegroBob> D:
12/12/2013 5:26:33 PM <NegroBob> Im back
12/12/2013 5:26:47 PM <gabizou> wb
12/12/2013 5:47:10 PM * PieGuy128 quit.
12/12/2013 5:48:06 PM * random_denizen_427 joined.
12/12/2013 5:48:52 PM * NegroBob quit.
12/12/2013 5:48:59 PM * NLBlackEagle quit.
12/12/2013 5:50:32 PM <+mcmonkey> gabizou: Denizen uses dScript for an API primarily... but it does expose quite a bit of functionality to other plugins if you absolutely must do it that way
12/12/2013 5:50:47 PM <+mcmonkey> gabizou: http://ci.citizensnpcs.co/job/Denizen/javadoc/?
12/12/2013 5:51:15 PM <gabizou> well, mcmonkey, moreso of checking whether damage from entitydamageentityevent is coming from a denizen :P
12/12/2013 5:52:18 PM <+mcmonkey> gabizou: You need the Citizens API for that, not Denizen
12/12/2013 5:52:42 PM <+mcmonkey> cause there's no such thing as 'a denizen', Denizen just tells regular Citizens NPCs to do things
12/12/2013 5:52:58 PM * random_denizen_427 quit.
12/12/2013 5:53:07 PM <gabizou> ah
12/12/2013 6:24:05 PM * NegroBob joined.
12/12/2013 6:35:23 PM * TooLmaN joined.
12/12/2013 6:36:33 PM <NegroBob> anyone here?
12/12/2013 6:39:58 PM * TooLmaN quit.
12/12/2013 6:42:27 PM * PieGuy128 joined.
12/12/2013 6:42:43 PM * TooLmaN joined.
12/12/2013 6:43:07 PM <NegroBob> WHOS HERE
12/12/2013 6:52:15 PM <+Morphan1> NegroBob, what
12/12/2013 6:58:43 PM <+Morphan1> mcmonkey, "Denizen uses dScript for an API primarily"... that makes almost no sense
12/12/2013 7:00:37 PM <+mcmonkey> Morphan1: You program interactions with Denizen via dScript
12/12/2013 7:01:14 PM <+mcmonkey> Morphan1: Your applications use dScript programming as an interface
12/12/2013 7:01:18 PM <+mcmonkey> A, P, I
12/12/2013 7:01:22 PM <+mcmonkey> it's all there
12/12/2013 7:02:33 PM <+Morphan1> mcmonkey
12/12/2013 7:03:47 PM <+Morphan1> dScript accesses DenizenAPI, which accesses Denizen
12/12/2013 7:05:29 PM <NegroBob> Hi!
12/12/2013 7:05:31 PM <+Morphan1> Hi!
12/12/2013 7:05:58 PM <NegroBob> :P how are you
12/12/2013 7:07:10 PM <+Morphan1> fine, you?
12/12/2013 7:16:37 PM <NegroBob> Good
12/12/2013 7:24:43 PM <+Morphan1> good, good
12/12/2013 7:25:05 PM <+Morphan1> -"4
12/12/2013 7:25:13 PM <+Morphan1> ";/
12/12/2013 7:25:35 PM <+Morphan1> My cat just sat on my keyboard.
12/12/2013 7:25:38 PM <+Morphan1> Hurray.
12/12/2013 7:28:16 PM <|Anthony|> so now you need to disinfect the keyboard of cat anus germs
12/12/2013 7:28:20 PM <|Anthony|> cause that's just nasty
12/12/2013 7:28:25 PM <|Anthony|> cats are vile creatures
12/12/2013 7:28:49 PM <NegroBob> NO
12/12/2013 7:30:00 PM <NegroBob> IM BAWB
12/12/2013 7:30:15 PM <|Anthony|> you're not bob the builder though
12/12/2013 7:30:16 PM <|Anthony|> http://mineconomy.org/files/images/random/stainedglass4.png
12/12/2013 7:30:21 PM <|Anthony|> booya bitches
12/12/2013 7:31:26 PM <+Morphan1> |Anthony|, first:
12/12/2013 7:31:29 PM <+Morphan1> cats are epic
12/12/2013 7:31:31 PM <+Morphan1> second:
12/12/2013 7:31:35 PM <+Morphan1> that picture is epic
12/12/2013 7:31:39 PM <|Anthony|> tehe
12/12/2013 7:31:52 PM <|Anthony|> there is 1 - 4
12/12/2013 7:31:55 PM <|Anthony|> that was just 4
12/12/2013 7:32:10 PM <|Anthony|> progress along the way
12/12/2013 7:32:25 PM <+Morphan1> 2 oddly reminds me of Star Wars
12/12/2013 7:32:44 PM <|Anthony|> how?
12/12/2013 7:32:54 PM <+Morphan1> I have no idea
12/12/2013 7:32:59 PM <|Anthony|> and those damned shadows are killing the beautiful picture
12/12/2013 7:40:25 PM * PieGuy128 quit.
12/12/2013 7:42:49 PM * TheRealKeith joined.
12/12/2013 7:44:46 PM <NegroBob> :)
12/12/2013 7:44:53 PM * TheRealKeith left.
12/12/2013 7:48:56 PM <+Morphan1> NegroBob, nice job you scared him
12/12/2013 7:50:01 PM * Jeebiss joined.
12/12/2013 7:50:01 PM * ChanServ gave OP to @Jeebiss.
12/12/2013 7:50:28 PM <+Morphan1> Jeebiss, do you have absolutely any idea what Entity.getFallDistance() returns?
12/12/2013 7:50:52 PM <NegroBob> :(
12/12/2013 7:51:03 PM <@Jeebiss> Uhhh
12/12/2013 7:51:44 PM <+Morphan1> because whatever it is, you can apparrently do setFallDistance(float )
12/12/2013 7:52:05 PM <+Morphan1> wtf would you need a big enough number for that to be a float
12/12/2013 7:52:25 PM <@Jeebiss> That should only be relevant in like death or damage events
12/12/2013 7:52:34 PM <@Jeebiss> to determine how much damage a player recieves from falling
12/12/2013 7:52:42 PM <NegroBob> SHUT UP
12/12/2013 7:52:43 PM * calico-kid joined.
12/12/2013 7:52:44 PM <NegroBob> D:< IM BAWB
12/12/2013 7:52:48 PM <NegroBob> HI calico-kid
12/12/2013 7:52:53 PM <calico-kid> hi bawb
12/12/2013 7:53:00 PM <calico-kid> and everyone else too
12/12/2013 7:53:04 PM <@Jeebiss> c-k!
12/12/2013 7:53:11 PM <calico-kid> sup jeebs
12/12/2013 7:53:42 PM <calico-kid> how goes the ftb server?
12/12/2013 7:53:43 PM <+Morphan1> Jeebiss, but it's not event-specific
12/12/2013 7:53:49 PM <+Morphan1> or even for LivingEntities
12/12/2013 7:54:04 PM <@Jeebiss> RIght, I noticed that
12/12/2013 7:54:07 PM <+Morphan1> I'm gonna ask bukkit
12/12/2013 7:55:13 PM <calico-kid> Jeebiss, did i send you the frienderman script?
12/12/2013 7:55:50 PM <+mcmonkey> Morphan1: floats are used to decimals, not big numbers
12/12/2013 7:56:27 PM <NegroBob> :)
12/12/2013 7:57:16 PM <NegroBob> Jeebiss: Did you get the jetpack working?
12/12/2013 7:57:29 PM <@Jeebiss> I got distracted and didnt try lol
12/12/2013 7:58:05 PM <+Morphan1> mcmonkey, shhh
12/12/2013 8:01:23 PM <calico-kid> jetpack?
12/12/2013 8:01:46 PM <NegroBob> I have a jetpack
12/12/2013 8:02:44 PM <calico-kid> like in regular vanilla minecraft?
12/12/2013 8:03:09 PM <calico-kid> NegroBob, ?
12/12/2013 8:04:09 PM <+Morphan1> calico-kid, yeah
12/12/2013 8:04:21 PM <calico-kid> cool how did ya manage that?
12/12/2013 8:04:41 PM <+Morphan1> With a 13-line script
12/12/2013 8:04:54 PM <calico-kid> nice i am guessing an item script
12/12/2013 8:05:08 PM <+Morphan1> not even
12/12/2013 8:05:35 PM <calico-kid> i c is i ran by flags?
12/12/2013 8:10:00 PM <+mcmonkey> !cmd playeffect
12/12/2013 8:10:00 PM <+monkeybot> playeffect: Plays a visible or audible effect at the location.
12/12/2013 8:10:00 PM <+monkeybot> Syntax: - playeffect [<location>] [effect:<name>] (data:<#.#>) (visibility:<#.#>) (qty:<#>) (offset:<#.#>)
12/12/2013 8:11:04 PM <+Morphan1> NegroBob, show him your script
12/12/2013 8:11:37 PM <NegroBob> http://pastebin.com/jdYiV7Gz
12/12/2013 8:11:39 PM <+monkeybot> Title --> [YAML] JetPackCheck: Type: World Events: On player right clicks with i@blaze - Pastebin.com
12/12/2013 8:12:31 PM <NegroBob> I dont use item script
12/12/2013 8:15:00 PM <+mcmonkey> whoa
12/12/2013 8:15:06 PM <+mcmonkey> playeffect got wrecked D:
12/12/2013 8:15:06 PM <NegroBob> whoah
12/12/2013 8:15:09 PM <NegroBob> D:
12/12/2013 8:15:35 PM <+Morphan1> mcmonkey, what?
12/12/2013 8:15:50 PM <+Morphan1> calico-kid, ^^^^
12/12/2013 8:18:44 PM <NegroBob> :P
12/12/2013 8:20:37 PM <calico-kid> heh nice
12/12/2013 8:20:49 PM <calico-kid> how did that happen?!?!?!?!
12/12/2013 8:21:15 PM * +Morphan1 quit.
12/12/2013 8:21:22 PM <NegroBob> hes a noob of course
12/12/2013 8:21:24 PM <NegroBob> thats what he does
12/12/2013 8:21:35 PM * monkeylog quit.
12/12/2013 8:23:37 PM * monkeylog joined.
12/12/2013 8:23:44 PM <NegroBob> D:
12/12/2013 8:23:53 PM * TooLmaN quit.
12/12/2013 8:23:59 PM <NegroBob> SO HOWS EVERYONE
12/12/2013 8:24:39 PM * random_denizen_086 joined.
12/12/2013 8:24:58 PM <random_denizen_086> denzion scripting resources?
12/12/2013 8:28:01 PM <NegroBob> D: Hi there
12/12/2013 8:28:54 PM <+mcmonkey> random_denizen_086: ?
12/12/2013 8:31:41 PM <random_denizen_086> Im looing for a way to learn denzion scripting
12/12/2013 8:31:51 PM <random_denizen_086> looking8
12/12/2013 8:31:54 PM <random_denizen_086> ***
12/12/2013 8:32:21 PM <NegroBob> look at a script and do like it
12/12/2013 8:32:23 PM <NegroBob> is what I did
12/12/2013 8:33:37 PM <+mcmonkey> !gs
12/12/2013 8:33:37 PM <+monkeybot> If you're trying to use Denizen for the first time, these web resources will help you (in addition to help received here on this IRC)
12/12/2013 8:33:37 PM <+monkeybot> Denizen Handbook - http://bit.ly/XaWBLN
12/12/2013 8:33:37 PM <+monkeybot> Denizen Wiki - http://bit.ly/14o3kdq
12/12/2013 8:33:37 PM <+monkeybot> Beginner's Guide - http://bit.ly/1bHkByR
12/12/2013 8:33:37 PM <+monkeybot> Tutorial Videos - http://bit.ly/1dhOMQs
12/12/2013 8:33:37 PM <+monkeybot> Script Repo - http://bit.ly/19lCpfV
12/12/2013 8:33:39 PM <+mcmonkey> random_denizen_086: ^
12/12/2013 8:34:09 PM <random_denizen_086> fantastic thanks
12/12/2013 8:34:32 PM <NegroBob> :_
12/12/2013 8:34:33 PM <NegroBob> :)
12/12/2013 8:34:38 PM <random_denizen_086> id also like to learn php html css and java script
12/12/2013 8:34:48 PM * monkeylog quit.
12/12/2013 8:35:35 PM * monkeylog joined.
12/12/2013 8:39:57 PM * random_denizen_086 quit.
12/12/2013 8:51:47 PM * NegroBob renamed to EgroBawb
12/12/2013 8:54:01 PM <EgroBawb> Anyone got experience with linux?
12/12/2013 9:00:23 PM <EgroBawb> :(
12/12/2013 9:08:57 PM <EgroBawb> ANYONE HERE
12/12/2013 9:34:56 PM <EgroBawb> D'=
12/12/2013 9:35:05 PM <EgroBawb> mcmonkey: Where yoo!
12/12/2013 9:49:20 PM <EgroBawb> WHERES ANYONE!
12/12/2013 9:50:27 PM <EgroBawb> Jeebiss: !
12/12/2013 9:50:35 PM <EgroBawb> aufdemafk: !
12/12/2013 9:51:28 PM <EgroBawb> D'=
12/12/2013 9:51:41 PM * @Jeebiss quit.
12/12/2013 10:18:58 PM * XxAxBOMBxX_ joined.
12/12/2013 10:19:26 PM <XxAxBOMBxX_> Hey is there anyone who might be able to help me a bit with some Citizens2 troubles?
12/12/2013 10:19:33 PM <XxAxBOMBxX_> .help
12/12/2013 10:19:33 PM <+spazzmatic> Greetings. I am an interactive Denizen guide. I am a scripting guru. I am spazz.
12/12/2013 10:19:33 PM <+spazzmatic> For help with script commands, type .cmd <command_name>
12/12/2013 10:19:33 PM <+spazzmatic> For help with script requirements, type .req <requirement_name>
12/12/2013 10:19:33 PM <+spazzmatic> For info on replaceable tags, type .tag <tag_name>
12/12/2013 10:19:33 PM <+spazzmatic> Finally, for help with world events, type .event <event_name>
12/12/2013 10:19:34 PM <+spazzmatic> For everything else, ask in the channel or visit one of the links from .getstarted
12/12/2013 10:24:04 PM * Matterom quit.
12/12/2013 10:28:46 PM <EgroBawb> :(
12/12/2013 10:28:49 PM <EgroBawb> XxAxBOMBxX_: Hi!
12/12/2013 10:28:54 PM <EgroBawb> still here?
12/12/2013 10:32:36 PM <EgroBawb> !cmd animate
12/12/2013 10:32:36 PM <+monkeybot> animate: Makes a list of entities perform a certain animation.
12/12/2013 10:32:36 PM <+monkeybot> Syntax: - animate [<entity>|...] [animation:<name>]
12/12/2013 10:33:40 PM * Matterom joined.
12/12/2013 10:39:33 PM <EgroBawb> Matterom: HI!
12/12/2013 10:40:28 PM <XxAxBOMBxX_> Hey
12/12/2013 10:40:52 PM <XxAxBOMBxX_> Im back
12/12/2013 10:40:56 PM <XxAxBOMBxX_> >,<
12/12/2013 10:41:14 PM <EgroBawb> Hi there
12/12/2013 10:41:21 PM * EgroBawb renamed to NegroBawb
12/12/2013 10:41:34 PM <NegroBawb> :P
12/12/2013 10:42:19 PM <XxAxBOMBxX_> Hey, so
12/12/2013 10:42:38 PM <XxAxBOMBxX_> Im having an issue with transfering my 1.6.4 npcs to 1.7.2
12/12/2013 10:45:03 PM * NegroBawb quit.
12/12/2013 10:49:37 PM * NegroBob joined.
12/12/2013 10:49:41 PM <NegroBob> sorry lost connection
12/12/2013 10:50:47 PM <XxAxBOMBxX_> Im having an issue with transfering my 1.6.4 npcs to 1.7.2
12/12/2013 10:52:13 PM <NegroBob> oo
12/12/2013 10:52:16 PM <NegroBob> !update
12/12/2013 10:52:16 PM <+monkeybot> Due to the nature of our project, Denizen is always built against the development builds of Craftbukkit and Citizens.
12/12/2013 10:52:16 PM <+monkeybot> Most errors can be fixed by updating all 3.
12/12/2013 10:52:16 PM <+monkeybot> Denizen- http://ci.citizensnpcs.co/job/Denizen/lastSuccessfulBuild
12/12/2013 10:52:16 PM <+monkeybot> Citizens- http://ci.citizensnpcs.co/job/Citizens2/lastSuccessfulBuild
12/12/2013 10:52:16 PM <+monkeybot> Craftbukkit- http://dl.bukkit.org/downloads/craftbukkit/
12/12/2013 10:52:21 PM <NegroBob> are you on the latest version?
12/12/2013 10:53:36 PM * Matterom quit.
12/12/2013 11:03:49 PM <XxAxBOMBxX_> yes
12/12/2013 11:03:50 PM <XxAxBOMBxX_> i am
12/12/2013 11:04:11 PM <NegroBob> hmm
12/12/2013 11:04:17 PM <NegroBob> does citizens load?
12/12/2013 11:04:50 PM <NegroBob> can you make an npc in game?
12/12/2013 11:06:23 PM <XxAxBOMBxX_> yes
12/12/2013 11:06:55 PM <NegroBob> but your old ones arent working?
12/12/2013 11:09:30 PM <NegroBob> D:
12/12/2013 11:10:14 PM <XxAxBOMBxX_> nope
12/12/2013 11:10:34 PM <NegroBob> what does your saves file look like?
12/12/2013 11:11:18 PM <XxAxBOMBxX_> Has all the npcs i made in it
12/12/2013 11:11:25 PM <XxAxBOMBxX_> with all the items they sold
12/12/2013 11:11:29 PM <XxAxBOMBxX_> as they were traders
12/12/2013 11:11:32 PM <XxAxBOMBxX_> for dtltraders
12/12/2013 11:11:50 PM <NegroBob> ooo
12/12/2013 11:11:56 PM <NegroBob> fullwall|afk: Where you at?
12/12/2013 11:12:03 PM <NegroBob> youll wanna ask fullwall
12/12/2013 11:12:10 PM <NegroBob> I think it may have to do with dtltraders
12/12/2013 11:22:52 PM * monkeylog quit.
12/12/2013 11:36:28 PM * XxAxBOMBxX_ quit.
12/12/2013 11:41:59 PM * NegroBob quit.
12/13/2013 12:03:37 AM * NegroBob joined.
12/13/2013 12:03:42 AM <NegroBob> :P Im back!
12/13/2013 12:18:13 AM * calico-kid quit.
12/13/2013 12:33:44 AM * Matterom joined.
12/13/2013 12:45:43 AM * Allfather joined.
12/13/2013 12:45:52 AM <Allfather> Hi guys.
12/13/2013 1:21:13 AM * random_denizen_841 joined.
12/13/2013 1:21:21 AM * random_denizen_841 quit.
12/13/2013 1:29:08 AM <NegroBob> hi Allfather
12/13/2013 1:29:28 AM <Allfather> What's up Bob?
12/13/2013 1:29:34 AM <NegroBob> nothin
12/13/2013 1:29:45 AM <Allfather> Allright :)
12/13/2013 1:30:08 AM <Allfather> !ds http://pastebin.com/rSqPFYr3
12/13/2013 1:30:08 AM <+monkeybot> Title --> 'Booke': type: assignment actions: on assignment: - tr - Pastebin.com
12/13/2013 1:30:08 AM <+monkeybot> I encountered 1 potential problem with that script.
12/13/2013 1:30:08 AM <+monkeybot>   (1) WARNING: Line 18: Uneven number of quotes.
12/13/2013 1:31:13 AM <NegroBob> D: thats a crazy language
12/13/2013 1:31:43 AM <Allfather> Not at all :D
12/13/2013 1:31:49 AM <NegroBob> D: yer I read it
12/13/2013 1:31:54 AM <Allfather> Just you don't know this language...
12/13/2013 1:31:57 AM <NegroBob> hikka blikka blam
12/13/2013 1:32:11 AM <Allfather> This is meanless :D
12/13/2013 1:32:37 AM <NegroBob> no... I understood that
12/13/2013 1:32:48 AM <Allfather> !ds http://hastebin.com/tehikonopo.xml
12/13/2013 1:32:48 AM <+monkeybot> Your script seems valid to me.
12/13/2013 1:33:42 AM <Allfather> Bob, you know what? Narrate and chat is not working on my server.
12/13/2013 1:34:06 AM <Allfather> You are good at scripts.
12/13/2013 1:34:17 AM <NegroBob> D: are you sure
12/13/2013 1:34:18 AM <Allfather> What is the problem?
12/13/2013 1:34:19 AM <NegroBob> type this
12/13/2013 1:34:23 AM <NegroBob> ./ex narrate test
12/13/2013 1:34:37 AM <Allfather> It worked.
12/13/2013 1:34:48 AM <Allfather> But in my script it didn't worked.
12/13/2013 1:34:59 AM <Allfather> look at the script and change chat with narrate.
12/13/2013 1:35:24 AM <Allfather> I assigned to an NPC
12/13/2013 1:35:37 AM <Allfather> When I right-click. I get a book but there is not any narrating.
12/13/2013 1:36:01 AM <NegroBob> !yaml http://hastebin.com/tehikonopo.xml
12/13/2013 1:36:01 AM <+monkeybot> Your YAML is valid.
12/13/2013 1:36:56 AM <NegroBob> is the interact even firing
12/13/2013 1:38:02 AM <Allfather> Dude wait.
12/13/2013 1:38:05 AM <Allfather> Narrate is working.
12/13/2013 1:38:09 AM <Allfather> But chat is not.
12/13/2013 1:38:14 AM <Allfather> ''I think so.
12/13/2013 1:38:30 AM <Allfather> I tried narrate with uneven number of quotes error.
12/13/2013 1:38:41 AM <Allfather> I fixed it then and try with chat.
12/13/2013 1:38:49 AM <Allfather> But didn't worked. Now working with narrate.
12/13/2013 1:39:09 AM <NegroBob> !ds http://hastebin.com/tehikonopo.xml
12/13/2013 1:39:09 AM <+monkeybot> Your script seems valid to me.
12/13/2013 1:45:46 AM <Allfather> So?
12/13/2013 1:46:47 AM <NegroBob> idk
12/13/2013 1:50:45 AM <Allfather> !tag location
12/13/2013 1:50:45 AM <+monkeybot> I found 50+ matches...
12/13/2013 1:51:03 AM <Allfather> !command location
12/13/2013 1:51:03 AM <+monkeybot> That command doesn't seem to exist.
12/13/2013 1:51:08 AM <Allfather> !action look
12/13/2013 1:51:08 AM <+monkeybot> That action doesn't seem to exist.
12/13/2013 1:51:11 AM <Allfather> !command look
12/13/2013 1:51:11 AM <+monkeybot> look: Causes the NPC or other entity to look at a target location.
12/13/2013 1:51:11 AM <+monkeybot> Syntax: - look (<entity>|...) [<location>] (duration:<duration>)
12/13/2013 1:51:27 AM <Allfather> Dude can the location be a xyz position?
12/13/2013 1:51:59 AM <NegroBob> yeah
12/13/2013 1:52:01 AM <NegroBob> of coure
12/13/2013 1:52:10 AM <NegroBob> thats how it is
12/13/2013 1:52:13 AM <NegroBob> x,y,z,world
12/13/2013 1:52:16 AM <NegroBob> or a flag
12/13/2013 1:52:47 AM <Allfather> - look <npc> 20,20,20,world
12/13/2013 1:52:53 AM <Allfather> Like this?
12/13/2013 1:54:52 AM <NegroBob> yup
12/13/2013 1:54:59 AM <Allfather> how to add duration?
12/13/2013 1:55:07 AM <Allfather> 3 s
12/13/2013 1:55:09 AM <Allfather> 3s
12/13/2013 1:55:09 AM <NegroBob> duration:3s
12/13/2013 1:55:11 AM <NegroBob> yea
12/13/2013 1:55:13 AM <Allfather> Allright.
12/13/2013 2:00:42 AM <Allfather> !ds http://hastebin.com/vaquducede.sm
12/13/2013 2:00:43 AM <+monkeybot> Your script seems valid to me.
12/13/2013 2:00:47 AM <Allfather> !yaml http://hastebin.com/vaquducede.sm
12/13/2013 2:00:47 AM <+monkeybot> Your YAML is valid.
12/13/2013 2:03:06 AM <Allfather> ...
12/13/2013 2:03:09 AM <Allfather> Chat is not working.
12/13/2013 2:03:12 AM <Allfather> Look is not working...
12/13/2013 2:16:12 AM <NegroBob> its within the script
12/13/2013 2:16:18 AM <NegroBob> if I was less tired I would help
12/13/2013 2:16:21 AM <NegroBob> I gotta go to bed
12/13/2013 2:20:39 AM <Allfather> !ds http://hastebin.com/ligibajude.sm
12/13/2013 2:20:40 AM <+monkeybot> Your script seems valid to me.
12/13/2013 2:20:43 AM <Allfather> !yaml http://hastebin.com/ligibajude.sm
12/13/2013 2:20:43 AM <+monkeybot> Your YAML is valid.
12/13/2013 2:51:34 AM * Allfather quit.
12/13/2013 3:02:37 AM * `1cec0ld quit.
12/13/2013 3:25:26 AM * `1cec0ld joined.
12/13/2013 3:34:37 AM * dandielo joined.
12/13/2013 3:35:16 AM <dandielo> hey ya
12/13/2013 3:38:53 AM * Allfather joined.
12/13/2013 3:39:48 AM <Allfather> Can anyone help me?
12/13/2013 3:39:53 AM <Allfather> .help
12/13/2013 3:39:53 AM <+spazzmatic> Greetings. I am an interactive Denizen guide. I am a scripting guru. I am spazz.
12/13/2013 3:39:53 AM <+spazzmatic> For help with script commands, type .cmd <command_name>
12/13/2013 3:39:53 AM <+spazzmatic> For help with script requirements, type .req <requirement_name>
12/13/2013 3:39:53 AM <+spazzmatic> For info on replaceable tags, type .tag <tag_name>
12/13/2013 3:39:53 AM <+spazzmatic> Finally, for help with world events, type .event <event_name>
12/13/2013 3:39:54 AM <+spazzmatic> For everything else, ask in the channel or visit one of the links from .getstarted
12/13/2013 3:40:15 AM <Allfather> .cmd chat
12/13/2013 3:40:28 AM <Allfather> .req
12/13/2013 3:40:32 AM <Allfather> .req chat
12/13/2013 3:40:40 AM <Allfather> .chat
12/13/2013 3:40:44 AM <Allfather> WTF :D
12/13/2013 3:43:12 AM <|Anthony|> !cmd chat
12/13/2013 3:43:12 AM <+monkeybot> chat: Causes the NPC to send a chat message to nearby players.
12/13/2013 3:43:12 AM <+monkeybot> Syntax: - chat ["<text>"] (targets:<entity>|...)
12/13/2013 3:45:51 AM <Allfather> Dude, I'm doing everything okay. But the chat command is not working.
12/13/2013 3:48:40 AM <|Anthony|> the chat command is kinda idiot proof
12/13/2013 3:55:50 AM <Allfather> So?
12/13/2013 3:56:04 AM <Allfather> What are you trying to say?
12/13/2013 3:56:13 AM <|Anthony|> check your script for syntax errors
12/13/2013 3:56:16 AM <|Anthony|> !script
12/13/2013 3:56:16 AM <+monkeybot> |Anthony|: that command is written as !script <Link to a text-sharing website such as http://mcmonkey4eva.dyndns.org/paste >
12/13/2013 3:56:16 AM <+monkeybot> OR: !script more <#>
12/13/2013 3:56:46 AM <Allfather> !script http://hastebin.com/nijaqohugo.sm
12/13/2013 3:56:47 AM <+monkeybot> Your script seems valid to me.
12/13/2013 3:56:52 AM <Allfather> !yaml http://hastebin.com/nijaqohugo.sm
12/13/2013 3:56:52 AM <+monkeybot> Your YAML is valid.
12/13/2013 3:56:53 AM <Allfather> !ds http://hastebin.com/nijaqohugo.sm
12/13/2013 3:56:53 AM <+monkeybot> Your script seems valid to me.
12/13/2013 3:57:01 AM <Allfather> I did that many times...
12/13/2013 3:57:13 AM <Allfather> It's very basic script.
12/13/2013 3:57:22 AM <Allfather> But doesn't work.
12/13/2013 3:57:44 AM <|Anthony|> line 15
12/13/2013 3:57:45 AM <|Anthony|> '1*'
12/13/2013 3:58:09 AM <Allfather> Wht?
12/13/2013 3:58:11 AM <Allfather> Why?
12/13/2013 3:58:24 AM <Allfather> I have another script working with '1'
12/13/2013 3:58:33 AM <|Anthony|> to denote the default step
12/13/2013 3:58:57 AM <Allfather> '1' to '1*' huh?
12/13/2013 3:59:01 AM <|Anthony|> sure
12/13/2013 3:59:06 AM <Allfather> Wait trying..
12/13/2013 3:59:15 AM <|Anthony|> or /denizen debug
12/13/2013 4:00:18 AM <Allfather> Still not working.
12/13/2013 4:00:24 AM <Allfather> I did /denizen debug
12/13/2013 4:00:25 AM <|Anthony|> are you vanished
12/13/2013 4:00:37 AM <Allfather> But I can't see anything in my console about denizen.
12/13/2013 4:00:59 AM <|Anthony|> are you vanished
12/13/2013 4:00:59 AM <Allfather> Yup, vanished.
12/13/2013 4:01:08 AM <|Anthony|> did you set assignment
12/13/2013 4:01:11 AM <|Anthony|> oh
12/13/2013 4:01:11 AM <|Anthony|> heh
12/13/2013 4:01:16 AM <Allfather> Of course.
12/13/2013 4:01:18 AM <|Anthony|> vanish will do that then
12/13/2013 4:01:30 AM <|Anthony|> can't interact with things while vanished
12/13/2013 4:02:30 AM <|Anthony|> all good Allfather
12/13/2013 4:04:43 AM * Allfather quit.
12/13/2013 4:07:50 AM <|Anthony|> douche bag
12/13/2013 4:09:12 AM * Allfather joined.
12/13/2013 4:09:21 AM <Allfather> Sorry my computer went off.
12/13/2013 4:25:03 AM * SirWilli quit.
12/13/2013 4:26:54 AM * Pigman168 joined.
12/13/2013 4:27:02 AM <Pigman168> hello?
12/13/2013 4:30:22 AM <Allfather> Hello.
12/13/2013 4:30:31 AM <Allfather> What's up Pigman168
12/13/2013 4:30:34 AM <Pigman168> hey, need any help?
12/13/2013 4:30:47 AM <Allfather> Yeah, unfortunately...
12/13/2013 4:30:48 AM <Allfather> :D
12/13/2013 4:30:52 AM <Pigman168> yay
12/13/2013 4:31:08 AM <Pigman168> i get to work! =)
12/13/2013 4:31:15 AM <Allfather> chat is not working...
12/13/2013 4:31:21 AM <Pigman168> the command?
12/13/2013 4:31:22 AM <Allfather> On denizen surely...
12/13/2013 4:31:23 AM <Pigman168> !cmd chat
12/13/2013 4:31:23 AM <+monkeybot> chat: Causes the NPC to send a chat message to nearby players.
12/13/2013 4:31:23 AM <+monkeybot> Syntax: - chat ["<text>"] (targets:<entity>|...)
12/13/2013 4:31:23 AM <Allfather> Yeah.
12/13/2013 4:31:28 AM <Pigman168> ok let me have a look
12/13/2013 4:31:31 AM <Allfather> Everything is right.
12/13/2013 4:31:41 AM <Allfather> I'm reloading denizen wait.
12/13/2013 4:31:43 AM <Pigman168> did you include the " "?
12/13/2013 4:32:13 AM <Allfather> !ds http://hastebin.com/qenaramara.sm
12/13/2013 4:32:14 AM <+monkeybot> Your script seems valid to me.
12/13/2013 4:32:22 AM <Allfather> !yaml http://hastebin.com/qenaramara.sm
12/13/2013 4:32:23 AM <+monkeybot> Your YAML is valid.
12/13/2013 4:32:56 AM <Allfather> But when I right click, NPC says nothing...
12/13/2013 4:33:10 AM <Allfather> :D He's a very silent guy.
12/13/2013 4:33:33 AM <Pigman168> :D ill test it
12/13/2013 4:34:28 AM <Allfather> Orright. :D
12/13/2013 4:36:12 AM <Pigman168> think i found it
12/13/2013 4:36:17 AM <Pigman168> just gotta make sure now
12/13/2013 4:37:36 AM <Allfather> Okay.
12/13/2013 4:38:30 AM <Pigman168> well i was wrong but i found it; its not your script. like you suggested, it was denizen
12/13/2013 4:38:32 AM <diskawrs> morning
12/13/2013 4:38:36 AM <Pigman168> morning!
12/13/2013 4:38:47 AM <diskawrs> wel afternoon
12/13/2013 4:39:11 AM <Pigman168> diskawrs: could you test this script please? http://hastebin.com/qenaramara.sm
12/13/2013 4:39:24 AM <Pigman168> just to see if its really denizen thats causing the problem
12/13/2013 4:39:31 AM <Pigman168> theres some dItem that returns null
12/13/2013 4:39:51 AM <Pigman168> and its not the item_in_hand tag : /
12/13/2013 4:40:20 AM <Pigman168> !event player clicks
12/13/2013 4:40:20 AM <+monkeybot> That event doesn't seem to exist.
12/13/2013 4:40:23 AM <Pigman168> !event clicks
12/13/2013 4:40:23 AM <+monkeybot> I found 3 matches...
12/13/2013 4:40:23 AM <+monkeybot> player (<click type>) clicks (<item>) (in <inventory>) (with <item>), player <click type> clicks (<material>) (with <item>) (in <notable cuboid>), player right clicks entity (with <item>).
12/13/2013 4:40:26 AM <diskawrs> ick :P I just update to 1.7.2
12/13/2013 4:40:36 AM <Pigman168> nice!
12/13/2013 4:40:44 AM <Pigman168> check out the super secret settings ;D
12/13/2013 4:40:50 AM <diskawrs> not nice cause some projects refuse to start dev on 1.7.2 :P
12/13/2013 4:40:57 AM <Pigman168> oh
12/13/2013 4:40:58 AM <diskawrs> all cause of item frames
12/13/2013 4:41:01 AM <diskawrs> lol
12/13/2013 4:41:20 AM <Allfather> Pigman, what is my problem then?
12/13/2013 4:41:26 AM <Pigman168> Allfather: i would use this event instead of an assignment: player right clicks entity
12/13/2013 4:41:52 AM <Pigman168> and check for the npc name
12/13/2013 4:41:59 AM <diskawrs> lol wtf due
12/13/2013 4:42:02 AM <Pigman168> uhm i think the problem is in denizen
12/13/2013 4:42:17 AM <Allfather> But the code is so basic?
12/13/2013 4:42:25 AM <Pigman168> 13:37:18 [SEVERE] Could not pass event NPCRightClickEvent to Denizen
12/13/2013 4:42:29 AM <Allfather> How can it be a problem...
12/13/2013 4:42:37 AM <Pigman168> denizen kinda messed up there
12/13/2013 4:42:46 AM <Pigman168> not your script =)
12/13/2013 4:43:06 AM <Allfather> You know.
12/13/2013 4:43:12 AM <Pigman168> 80%
12/13/2013 4:43:17 AM <Allfather> In my server look command is not working too.
12/13/2013 4:43:28 AM <Allfather> I can't even create a realistic quest...
12/13/2013 4:43:31 AM <Pigman168> !cmd look
12/13/2013 4:43:31 AM <+monkeybot> look: Causes the NPC or other entity to look at a target location.
12/13/2013 4:43:31 AM <+monkeybot> Syntax: - look (<entity>|...) [<location>] (duration:<duration>)
12/13/2013 4:43:47 AM <Allfather> Just narrate worked.
12/13/2013 4:43:58 AM <Pigman168> in your 'yella' script?
12/13/2013 4:44:32 AM <diskawrs>  * diskawrs rubs eyes 
12/13/2013 4:44:36 AM <diskawrs> still can't see shit
12/13/2013 4:44:41 AM <diskawrs> need to finnish coffee
12/13/2013 4:44:49 AM <diskawrs> just woke up[
12/13/2013 4:45:06 AM <Pigman168> o.O its 1:45 pm
12/13/2013 4:45:12 AM <diskawrs> er yea
12/13/2013 4:45:14 AM <diskawrs> :P
12/13/2013 4:45:28 AM <diskawrs> been awesomefully lazy this week
12/13/2013 4:45:57 AM <Pigman168> look command works for me Allfather
12/13/2013 4:46:53 AM * Allfather_ joined.
12/13/2013 4:46:58 AM <Allfather_> Sorry my pc went off.
12/13/2013 4:47:01 AM <Allfather_> Idk why.
12/13/2013 4:47:04 AM <Pigman168> look command works for me Allfather
12/13/2013 4:47:06 AM <diskawrs> I don't see anything wrong with it
12/13/2013 4:47:11 AM * Allfather quit.
12/13/2013 4:47:13 AM <diskawrs> loading up my server now
12/13/2013 4:47:17 AM <Pigman168> ok thanks
12/13/2013 4:47:36 AM <Allfather_> Pigman so what must I do now?
12/13/2013 4:47:49 AM <diskawrs> also not working on 1.6.4?
12/13/2013 4:48:13 AM <Pigman168> Allfather: i would use this event instead of an assignment: player right clicks entity
12/13/2013 4:48:33 AM <Pigman168> and specify the npc by location/name checks
12/13/2013 4:49:02 AM <Allfather_> Humm.
12/13/2013 4:49:19 AM <Allfather_> This error can't be fixed by developers?
12/13/2013 4:49:42 AM <Pigman168> yea but they wouldnt be able to do that by tomorrow
12/13/2013 4:49:48 AM <Pigman168> it would take a little while
12/13/2013 4:50:12 AM <Allfather_> Allright then.
12/13/2013 4:50:25 AM <Allfather_> Thanks for help...
12/13/2013 4:50:48 AM <Pigman168> no problem, sorry i couldnt really help that much though : /
12/13/2013 4:51:55 AM <diskawrs> er mmm
12/13/2013 4:51:57 AM <diskawrs> wtf
12/13/2013 4:52:04 AM <diskawrs> I can't assign triats
12/13/2013 4:52:05 AM <Pigman168> waiiiiiiit Allfather_ :D
12/13/2013 4:52:13 AM * kosgan10|away renamed to kosgan10
12/13/2013 4:52:24 AM <Allfather_> What? :D
12/13/2013 4:53:25 AM <diskawrs> mmmm I lost assign cmd
12/13/2013 4:53:27 AM <diskawrs> lol
12/13/2013 4:54:55 AM <Allfather_> Pigman168 what happened?
12/13/2013 4:55:02 AM <Pigman168> one second =)
12/13/2013 4:56:37 AM <Pigman168> ok
12/13/2013 4:57:02 AM <Pigman168> i have no clue whats wrong with your script, maybe a small spacing error and im too lazy to find it but:
12/13/2013 4:57:09 AM <Pigman168> i have it fixed :P
12/13/2013 4:57:30 AM <Pigman168> http://hastebin.com/kebaliyure.sm here Allfather_
12/13/2013 4:58:19 AM * Allfather joined.
12/13/2013 4:58:23 AM * Allfather_ quit.
12/13/2013 4:58:23 AM <Pigman168> hey
12/13/2013 4:58:26 AM <Allfather> I have a real problem with my pc...
12/13/2013 4:58:29 AM <Pigman168> yup
12/13/2013 4:58:32 AM <Allfather> It suddenly went off. :D
12/13/2013 4:58:36 AM <Pigman168> i just posted the solution
12/13/2013 4:58:38 AM <Allfather> Yep, whats up?
12/13/2013 4:58:42 AM <Allfather> Where? :D
12/13/2013 4:58:59 AM <Pigman168> well your pc shutdown so you didnt see it but here it is again: http://hastebin.com/kebaliyure.sm =)
12/13/2013 4:59:26 AM <Allfather> So what was da problem?
12/13/2013 4:59:36 AM <Pigman168> [13:56] <Pigman168> i have no clue whats wrong with your script, maybe a small spacing error and im too lazy to find it but:
12/13/2013 4:59:41 AM <Pigman168> [13:57] <Pigman168> i have it fixed :P
12/13/2013 5:00:15 AM <Allfather> It's working now? properly?
12/13/2013 5:00:20 AM <Pigman168> yup
12/13/2013 5:00:22 AM <Allfather> :D
12/13/2013 5:00:24 AM <Allfather> I love this guy.
12/13/2013 5:00:25 AM <Allfather> :D
12/13/2013 5:00:45 AM <Pigman168> np
12/13/2013 5:01:05 AM * dandielo quit.
12/13/2013 5:01:22 AM <Pigman168> im gonna be off to eat, message me if it doesnt work
12/13/2013 5:04:54 AM <diskawrs> wtf /npc assign no longer works
12/13/2013 5:05:40 AM <Allfather> How --
12/13/2013 5:05:42 AM <Allfather> -_-
12/13/2013 5:06:04 AM <diskawrs> lol keeps telling me "do you mean /npc passive"
12/13/2013 5:06:16 AM <Pigman168> ./npc assignment --set 'assignment' ?
12/13/2013 5:06:20 AM <diskawrs> I need to rip out everything and start one by one
12/13/2013 5:06:31 AM <diskawrs> Pigman168: command no longer found
12/13/2013 5:06:32 AM <diskawrs> lol
12/13/2013 5:06:45 AM <Pigman168> : /
12/13/2013 5:09:00 AM <diskawrs> h ffs never make a cheese bugette when you sleepy
12/13/2013 5:09:07 AM <diskawrs> forgot all about it in the oven
12/13/2013 5:09:10 AM <diskawrs> :P all burnt
12/13/2013 5:10:51 AM <Pigman168> is the oven ok?
12/13/2013 5:10:58 AM <diskawrs> yea
12/13/2013 5:11:06 AM <diskawrs> bugette over done :P
12/13/2013 5:11:21 AM <Pigman168> :D
12/13/2013 5:12:14 AM <diskawrs> merdeeeeeeeeeeee
12/13/2013 5:18:42 AM * SpaceEmotion joined.
12/13/2013 5:18:43 AM * ChanServ gave voice to +SpaceEmotion.
12/13/2013 5:22:23 AM <Pigman168> hey SpaceEmotion
12/13/2013 5:22:28 AM <+SpaceEmotion> hey pigman ;D
12/13/2013 5:22:29 AM <Pigman168> wie gehts?
12/13/2013 5:22:59 AM <+SpaceEmotion> so lala, hatte am montag ne OP am ohr, bin noch am heilen xD
12/13/2013 5:24:10 AM <Pigman168> oh, was war denn?
12/13/2013 5:24:22 AM <+SpaceEmotion> ist ne etwas längere geschichte
12/13/2013 5:24:37 AM <+SpaceEmotion> achja, ich weiss jetzt wie ich dich in #denizen-de dauerhaft moderator mache ^^
12/13/2013 5:24:49 AM <Pigman168> cool! danke
12/13/2013 5:27:50 AM * Pigman168_mobile joined.
12/13/2013 5:28:02 AM <Pigman168_mobile> Hey
12/13/2013 5:28:17 AM <Allfather> Hey :)
12/13/2013 5:28:59 AM <Pigman168_mobile> What are you using to host allfather?
12/13/2013 5:29:43 AM <Allfather> A site name AxiTR
12/13/2013 5:29:57 AM <Allfather> They are using their own panel.
12/13/2013 5:30:05 AM <+SpaceEmotion> just sayin, but AxiTR.com is broken
12/13/2013 5:30:34 AM <Allfather> axitrbilisim.com they have moved there.
12/13/2013 5:30:35 AM <+SpaceEmotion> "145 - Table './mybb/mybb_sessions' is marked as crashed and should be repaired"
12/13/2013 5:30:54 AM <Pigman168_mobile> Ok, does the console say anything at all or not for denizen or not for scripts or not for that script?
12/13/2013 5:31:47 AM <Allfather> But me and my firends are talking to move another hosting.
12/13/2013 5:31:56 AM <Allfather> We are searching for other services.
12/13/2013 5:32:11 AM <Allfather> Look at my console.
12/13/2013 5:32:11 AM <Allfather> http://hastebin.com/loxujavixa.xml
12/13/2013 5:33:57 AM <Allfather> I think my hosting provider has got some problems.
12/13/2013 5:34:06 AM <Pigman168_mobile> I don't know that plugin but it might be causing the error
12/13/2013 5:34:30 AM <Allfather> What's the plugin?
12/13/2013 5:34:34 AM <+SpaceEmotion> its more like the DNS settings from your server are all messed up
12/13/2013 5:34:36 AM <Allfather> I can't see a plugin name?
12/13/2013 5:34:45 AM <+SpaceEmotion> thats not caused by a plugin, thats just the remote domain lookup
12/13/2013 5:34:49 AM <Allfather> Yea. DNS settings are messed up.
12/13/2013 5:35:00 AM <diskawrs> does SRV in 1.7.2 work?
12/13/2013 5:35:13 AM <Pigman168_mobile> Oh I thought it was a plugin, my bad. Space Bukkit has that kind of stuff.
12/13/2013 5:35:27 AM <Allfather> My server is 1.6.4
12/13/2013 5:36:02 AM <diskawrs> Upgrading server during xmas is going to be fun
12/13/2013 5:36:18 AM <diskawrs> 65GB ram 240GB SSD with hard raid
12/13/2013 5:36:25 AM <diskawrs> 6core xeons XD
12/13/2013 5:36:38 AM <Pigman168_mobile> Looks
12/13/2013 5:36:44 AM <+SpaceEmotion> thats a nifty server you have there
12/13/2013 5:36:59 AM <Pigman168_mobile> Like you know what you're talking about diskawrs :D
12/13/2013 5:37:03 AM <diskawrs> That or we pulling togther to buy one and send to a DC in london
12/13/2013 5:37:19 AM <diskawrs> Pigman168: :P I deal with hardware and server backend stuff.
12/13/2013 5:37:31 AM <|Anthony|> diskawrs, are you running a single server, or a bungeecord network?
12/13/2013 5:37:32 AM <Pigman168_mobile> Cool!
12/13/2013 5:37:32 AM <diskawrs> Might suck at Java but when it comes to server side stuff :P
12/13/2013 5:37:34 AM <diskawrs> I win
12/13/2013 5:38:05 AM <diskawrs>  |Anthony| MV for now but I think i going to install ESXi and run many servers
12/13/2013 5:38:23 AM <diskawrs> The load should be fine with ssds and hardriad
12/13/2013 5:38:24 AM <|Anthony|> mv as in multiverse?
12/13/2013 5:38:27 AM <diskawrs> yea
12/13/2013 5:39:05 AM <diskawrs> need to test SRV setup in 1.7.2 before I decide
12/13/2013 5:39:15 AM <|Anthony|> and you're talking about running additional servers in a VM
12/13/2013 5:39:19 AM <|Anthony|> srv is easy
12/13/2013 5:39:39 AM <diskawrs> VMs have improved a lot over the year
12/13/2013 5:39:44 AM <|Anthony|> yeah
12/13/2013 5:39:47 AM <|Anthony|> however
12/13/2013 5:39:48 AM <diskawrs> Disk latency isn't such a big issue anymore
12/13/2013 5:39:59 AM <|Anthony|> how many other sys admins access the server
12/13/2013 5:40:07 AM <diskawrs> no one :)
12/13/2013 5:40:10 AM <diskawrs> only one
12/13/2013 5:40:13 AM <diskawrs>  * diskawrs BOFH 
12/13/2013 5:40:18 AM <|Anthony|> so why do you need to use a VM at all?
12/13/2013 5:40:23 AM <|Anthony|> is it shared hosting
12/13/2013 5:40:35 AM <diskawrs> NA I don't like to mix things
12/13/2013 5:40:41 AM <|Anthony|> ok
12/13/2013 5:40:44 AM <diskawrs> I prefer to secregate everything
12/13/2013 5:40:53 AM <|Anthony|> i understand that
12/13/2013 5:41:02 AM <diskawrs> apache on 1 host mysql on another
12/13/2013 5:41:08 AM <diskawrs> then 1 vm for each world
12/13/2013 5:41:20 AM <|Anthony|> however there is no circumstance where one java process should impact another
12/13/2013 5:41:36 AM <diskawrs> Only issue I have is this stupid new XML way of handling firewalls in ESXi
12/13/2013 5:41:38 AM <|Anthony|> you can assign available ram in the invocation
12/13/2013 5:41:50 AM <Pigman168> Allfather: does look work?
12/13/2013 5:42:15 AM <|Anthony|> you're adding complexity to the system that is unnecessary diskawrs
12/13/2013 5:42:27 AM <|Anthony|> there's no need for a VM or even chroot
12/13/2013 5:42:30 AM <|Anthony|> honestly
12/13/2013 5:42:35 AM <diskawrs> |Anthony|: it's partly for learning ESXi too
12/13/2013 5:43:06 AM <diskawrs> Since all the major hosters and companies I used to work for and apply to use the technology
12/13/2013 5:43:17 AM <Pigman168> !cmd look @Allfather
12/13/2013 5:43:17 AM <+monkeybot> Allfather: look: Causes the NPC or other entity to look at a target location.
12/13/2013 5:43:17 AM <+monkeybot> Syntax: - look (<entity>|...) [<location>] (duration:<duration>)
12/13/2013 5:43:30 AM <diskawrs> doesn't hurt to learn and best way is on a production server
12/13/2013 5:44:15 AM <|Anthony|> it's your system, but i guarantee you that it adds bloat to the system in the form of additional latency, reduced resources, additional system management (time)
12/13/2013 5:44:21 AM <|Anthony|> it's good to learn, yes
12/13/2013 5:44:38 AM <|Anthony|> but considering that this is a game server that only you touch...
12/13/2013 5:44:39 AM <diskawrs> it does in a way but it's not as noticable as it used to be in esxi4
12/13/2013 5:44:45 AM <|Anthony|> it's inappropriate
12/13/2013 5:44:47 AM <diskawrs> still better then hypervisor
12/13/2013 5:44:52 AM <|Anthony|> agreed
12/13/2013 5:45:01 AM <diskawrs> no it's not :P I have to test stuff on a day to day basis
12/13/2013 5:45:05 AM <|Anthony|> i understand the want to learn something new
12/13/2013 5:45:06 AM <diskawrs> vm is the only way for me
12/13/2013 5:45:32 AM <diskawrs> ESXi console just makes it easier for me
12/13/2013 5:45:37 AM <|Anthony|> i'm just looking at the specific application of this tool. Considering all the factors
12/13/2013 5:46:11 AM <diskawrs> and I have been running 3VMs for minecraft and various other VMs on a 16Gb and quad xeon machine with no laatency issues
12/13/2013 5:46:13 AM <|Anthony|> simple way to address your virtual networking...
12/13/2013 5:46:16 AM <diskawrs> no disk cache lost
12/13/2013 5:46:25 AM <|Anthony|> run pfSense in one of the VM and use it as intended
12/13/2013 5:46:41 AM <|Anthony|> that handles SRV
12/13/2013 5:46:49 AM <diskawrs> can;t stand pfsense :P
12/13/2013 5:46:50 AM <|Anthony|> local SRV that is
12/13/2013 5:46:53 AM <|Anthony|> really?
12/13/2013 5:46:56 AM <|Anthony|> much love
12/13/2013 5:46:57 AM <diskawrs> IPFW++
12/13/2013 5:47:07 AM <|Anthony|> haven't seen that
12/13/2013 5:47:13 AM <diskawrs> Never even got used to iptables mangling style
12/13/2013 5:47:35 AM <diskawrs> IPF and IPFW are still my favs thought it's dying out fast
12/13/2013 5:48:25 AM <diskawrs> |Anthony|: why would you use pfsense in a VM though
12/13/2013 5:48:32 AM <diskawrs> ESXi comes with iptables
12/13/2013 5:48:38 AM <|Anthony|> yeah, so?
12/13/2013 5:49:19 AM <|Anthony|> pfsense is nice and obviously does things beyond iptables
12/13/2013 5:49:26 AM <|Anthony|> that are handy
12/13/2013 5:49:48 AM <diskawrs> :P If I had to get to that stage for this server, I would get a cisco firewall instead
12/13/2013 5:49:49 AM <|Anthony|> snort integration, dnydns, etc. etc.
12/13/2013 5:50:00 AM <|Anthony|> obviously
12/13/2013 5:50:01 AM <diskawrs> people still use snort? o.O
12/13/2013 5:50:10 AM <|Anthony|> but who among us has that kind of money
12/13/2013 5:50:28 AM <diskawrs> hehehe I don't
12/13/2013 5:50:33 AM <|Anthony|> right?
12/13/2013 5:50:36 AM <diskawrs> but if it is critical services then I would find a way
12/13/2013 5:50:56 AM <|Anthony|> those critical services should be enough to pay for the critical hardware
12/13/2013 5:50:57 AM <|Anthony|> ;)
12/13/2013 5:51:12 AM <diskawrs> plus every decent company I have worked for uses cisco instead of pfsense based solutions
12/13/2013 5:51:28 AM <|Anthony|> right
12/13/2013 5:51:39 AM <|Anthony|> it's like windows desktop to linux desktop imo
12/13/2013 5:51:44 AM <diskawrs> only companies I know that we used pfsense was a small IT company and a company that is made up of SUSE ex Devs
12/13/2013 5:51:46 AM <|Anthony|> pros and cons for each
12/13/2013 5:51:50 AM <|Anthony|> but marketing is key
12/13/2013 5:52:16 AM <diskawrs> One of my mates actually helkp start pfsense which is funny
12/13/2013 5:52:31 AM * Pigman168_mobile quit.
12/13/2013 5:52:36 AM <|Anthony|> only reason that linux dominates in the server world is cause the guys setting up the systems are the ones in the know
12/13/2013 5:52:47 AM <|Anthony|> self marketing
12/13/2013 5:52:48 AM <diskawrs> No highschool education, stole herion in schoool and now is one of the top hackers in the world
12/13/2013 5:52:59 AM <|Anthony|> nice, as it should be
12/13/2013 5:52:59 AM <diskawrs> sold
12/13/2013 5:53:13 AM <diskawrs> You meet the oddest characters in IT industry
12/13/2013 5:53:15 AM <diskawrs> :P
12/13/2013 5:53:18 AM <|Anthony|> right?
12/13/2013 5:53:27 AM <|Anthony|> shady motha fluffas
12/13/2013 5:53:39 AM <diskawrs> everythign I get a job I luagh at how the support and 3rd level admins have uni degrees coming out of their wazoos
12/13/2013 5:53:47 AM <diskawrs> everytime I meant
12/13/2013 5:54:00 AM <diskawrs> And I have no degree to my name :/
12/13/2013 5:54:06 AM <diskawrs> and all I has is google love
12/13/2013 5:54:34 AM <|Anthony|> right, but that simple piece of paper that really only proves that you were able to dedicate time and spend money to learn something is the thing that gets the jobs
12/13/2013 5:54:50 AM <diskawrs> Which sadly is what clueless IT managers look for :(
12/13/2013 5:55:03 AM <diskawrs> I always end up in big arguement with ITmanagers
12/13/2013 5:55:03 AM <|Anthony|> cause they're not IT professionals
12/13/2013 5:55:09 AM <|Anthony|> they are HR people
12/13/2013 5:55:16 AM <diskawrs> They bunch of tards
12/13/2013 5:55:20 AM <|Anthony|> mmhmm
12/13/2013 5:55:26 AM <|Anthony|> better to be a nerd then a tard
12/13/2013 5:55:28 AM <|Anthony|> ;)
12/13/2013 5:55:33 AM <diskawrs> I used to work for IBM blah blah blah ,,, I know nothing but I will tell you how to do this and that
12/13/2013 5:55:46 AM <|Anthony|> mmhmm
12/13/2013 5:55:56 AM <diskawrs> and then I will make my crytsal reporting docs and show the management you know nothinng
12/13/2013 5:56:03 AM <diskawrs> IT managers :P
12/13/2013 5:56:20 AM <diskawrs> bloody digit crunchers and pencil pushers
12/13/2013 5:56:40 AM <|Anthony|> the thing that management should be good at (ideally) is to be able to utilize the strengths and weaknesses of their subordinate staff to achieve the project goal effectively and efficiently
12/13/2013 5:56:49 AM <diskawrs> lol
12/13/2013 5:56:53 AM <diskawrs> One can dream :P
12/13/2013 5:56:57 AM <|Anthony|> right?
12/13/2013 5:56:59 AM <|Anthony|> but no...
12/13/2013 5:57:05 AM <diskawrs> brb
12/13/2013 5:57:19 AM <diskawrs> see if I can salvage this burnt cheese bugette
12/13/2013 5:57:50 AM <|Anthony|> they see those that have abilities and a vocabulary to express them as a threat to their own status.
12/13/2013 5:57:58 AM <Allfather> !ds http://hastebin.com/tokihevumi.xml
12/13/2013 5:57:59 AM <+monkeybot> Your script seems valid to me.
12/13/2013 5:57:59 AM <|Anthony|> i've been fired before for being overqualified
12/13/2013 5:58:06 AM <|Anthony|> i wanted to slap someone
12/13/2013 5:58:12 AM <Pigman168> what???
12/13/2013 5:58:13 AM <Pigman168> why?
12/13/2013 5:58:23 AM <|Anthony|> because i knew too much
12/13/2013 5:58:39 AM <|Anthony|> and was trying to incorporate my knowledge to my work
12/13/2013 5:58:46 AM <|Anthony|> seems stupid
12/13/2013 5:58:53 AM <|Anthony|> trying to make things better
12/13/2013 5:58:56 AM <|Anthony|> nope
12/13/2013 5:59:12 AM <|Anthony|> instead of doing manual data entry i wanted to automate as much of the process
12/13/2013 5:59:21 AM <|Anthony|> didn't like that
12/13/2013 6:01:59 AM <Allfather> !ds http://hastebin.com/jakivasomo.xml
12/13/2013 6:02:00 AM <+monkeybot> I encountered 1 potential problem with that script.
12/13/2013 6:02:00 AM <+monkeybot>   (1) WARNING: Line 1: This script's name should be longer to prevent conflict!
12/13/2013 6:04:59 AM * TooLmaN joined.
12/13/2013 6:05:46 AM <diskawrs> Pigman168: that happens a lot especially when managers and co workers know that you can make them look very badly and you dare to speak up
12/13/2013 6:05:58 AM <|Anthony|> exactly
12/13/2013 6:06:31 AM <diskawrs> I lost my last job cause managers preferred to listen to my manager and coworker who were excellent ball suckers
12/13/2013 6:06:31 AM <|Anthony|> god forbid an employee take pride in their work and want to give it their all
12/13/2013 6:06:39 AM <diskawrs> They said yes to everything with no questions
12/13/2013 6:07:10 AM <diskawrs> but they didn't even know how to use mysql which is what our products use to store data
12/13/2013 6:07:22 AM <|Anthony|> fkn hilarious
12/13/2013 6:07:23 AM <diskawrs> All the developers wanted my manager and co worker fired instead
12/13/2013 6:09:18 AM <+spazzmatic> [Denizen] mcmonkey4eva, Jeremy Schroeder pushed 5 commits to master branch
12/13/2013 6:09:19 AM <+spazzmatic>  mcmonkey4eva: add inventory.contains.material[mat] - http://bit.ly/1jWRzQ5
12/13/2013 6:09:19 AM <+spazzmatic>  mcmonkey4eva: Add dEntity.tame mechanism - http://bit.ly/1jWRCLx
12/13/2013 6:09:19 AM <+spazzmatic>  mcmonkey4eva: Fix - playeffect effect:random - http://bit.ly/1jWRzQ7
12/13/2013 6:09:20 AM <+spazzmatic>  Jeremy Schroeder: Merge pull request #559 from mcmonkey4eva/master - http://bit.ly/1jWRA6l
12/13/2013 6:09:21 AM <+spazzmatic>  mcmonkey4eva: Fix - playeffect effect:random - http://bit.ly/1jWRCLB
12/13/2013 6:09:29 AM <|Anthony|> fkn spazz
12/13/2013 6:16:17 AM <diskawrs> arrg cpanel makes life easy and hard at the same tmie.
12/13/2013 6:18:02 AM <Allfather> !ds http://hastebin.com/gumoxaweme.sm
12/13/2013 6:18:03 AM <+monkeybot> Your script seems valid to me.
12/13/2013 6:18:22 AM <+spazzmatic> [Denizen] aufdemrand commented on open issue: [560] Working on Mechanisms by Morphan1 - http://bit.ly/18EScpn
12/13/2013 6:18:42 AM <+spazzmatic> [Denizen] MorphanOne, Jeremy Schroeder pushed 5 commits to master branch
12/13/2013 6:18:43 AM <+spazzmatic>  MorphanOne: Add "set_lore" mechanism for dItems - http://bit.ly/1fq4VRU
12/13/2013 6:18:43 AM <+spazzmatic>  MorphanOne: Add dNPC mechanisms, along with corresponding tags - http://bit.ly/1fq4VRW
12/13/2013 6:18:43 AM <+spazzmatic>  MorphanOne: Add matchesType() and asType() to Elements - http://bit.ly/1fq4VRY
12/13/2013 6:18:44 AM <+spazzmatic>  Jeremy Schroeder: Merge pull request #560 from Morphan1/master - http://bit.ly/1fq4XZW
12/13/2013 6:18:45 AM <+spazzmatic>  MorphanOne: Add dWorld Mechanisms - http://bit.ly/1fq4VS3
12/13/2013 6:19:25 AM <diskawrs> ALOCATED? isn't it double LL
12/13/2013 6:20:54 AM <Pigman168> yea
12/13/2013 6:23:55 AM <diskawrs> Allfather: ALLOCATED.
12/13/2013 6:24:04 AM <diskawrs> !tag alocated
12/13/2013 6:24:04 AM <+monkeybot> That tag doesn't seem to exist.
12/13/2013 6:24:07 AM <diskawrs> !tag allocated
12/13/2013 6:24:07 AM <+monkeybot> That tag doesn't seem to exist.
12/13/2013 6:24:15 AM <diskawrs> err always no tags
12/13/2013 6:24:18 AM <diskawrs> !help
12/13/2013 6:24:18 AM <+monkeybot> Hello, I am monkeybot, a bot dedicated to assisting you in maximizing your Denizen scripting potential.   If you're new to Denizen, type !getstarted
12/13/2013 6:24:18 AM <+monkeybot> For information on script commands, type !cmds
12/13/2013 6:24:18 AM <+monkeybot> To check your script for errors, type !script
12/13/2013 6:24:18 AM <+monkeybot> Other searchable meta types: !tags !events !requirements !languages !tutorials !mechanisms !actions !items !skins
12/13/2013 6:24:18 AM <+monkeybot> Other available informational commands: !repo !enchantments !entities !anchors !tags !potions !assignments !update !newconfig !wiki !sounds !handbook 
12/13/2013 6:24:18 AM <+monkeybot> Other available interactive commands: !seen !message !hello !showoff !math !help !pastebin !logs !yaml !yes !reload !quote !savelog 
12/13/2013 6:26:17 AM <diskawrs> ah wait, i misread that :P it don't matter I guess
12/13/2013 6:26:53 AM <Pigman168> !cmd animate
12/13/2013 6:26:53 AM <+monkeybot> animate: Makes a list of entities perform a certain animation.
12/13/2013 6:26:53 AM <+monkeybot> Syntax: - animate [<entity>|...] [animation:<name>]
12/13/2013 6:27:16 AM <|Anthony|> diskawrs, i'm sure you know but all the info is available here too
12/13/2013 6:27:17 AM <|Anthony|> http://mcmonkey4eva.dyndns.org/logs
12/13/2013 6:27:17 AM <+monkeybot> Title --> Denizen Help | monkeybot on EsperNet | mcmonkey studios
12/13/2013 6:28:13 AM <diskawrs> hehe has mcmonkey fixed it ?
12/13/2013 6:28:21 AM <diskawrs> Last i checked it was incomplete
12/13/2013 6:28:35 AM <|Anthony|> it's supposed to be the same that's here
12/13/2013 6:28:38 AM <|Anthony|> !update
12/13/2013 6:28:38 AM <+monkeybot> Due to the nature of our project, Denizen is always built against the development builds of Craftbukkit and Citizens.
12/13/2013 6:28:38 AM <+monkeybot> Most errors can be fixed by updating all 3.
12/13/2013 6:28:38 AM <+monkeybot> Denizen- http://ci.citizensnpcs.co/job/Denizen/lastSuccessfulBuild
12/13/2013 6:28:38 AM <+monkeybot> Citizens- http://ci.citizensnpcs.co/job/Citizens2/lastSuccessfulBuild
12/13/2013 6:28:38 AM <+monkeybot> Craftbukkit- http://dl.bukkit.org/downloads/craftbukkit/
12/13/2013 6:28:42 AM <|Anthony|> er
12/13/2013 6:28:44 AM <|Anthony|> !reload
12/13/2013 6:28:48 AM <+monkeybot> I reloaded the source data and now have 100 commands, 21 requirements, 109 events, 32 language explanations, 452 materials, 61 mechanisms, 35 actions, 7 tutorials, and 506 tags listed!
12/13/2013 6:29:03 AM <diskawrs> mm sitting on chairs when did we get chairs?
12/13/2013 6:29:05 AM <|Anthony|> cause it's the same bot
12/13/2013 6:29:07 AM <diskawrs>  * diskawrs confused
12/13/2013 6:29:14 AM <|Anthony|> diskawrs, that's borked atm
12/13/2013 6:29:18 AM <|Anthony|> well, last i checked
12/13/2013 6:29:21 AM <|Anthony|> since 1.6.4
12/13/2013 6:29:23 AM <diskawrs> I know sit is
12/13/2013 6:29:26 AM <diskawrs> but chairs?
12/13/2013 6:29:34 AM <diskawrs> never seen a chair before
12/13/2013 6:29:36 AM <|Anthony|> wait..
12/13/2013 6:29:37 AM <|Anthony|> what?
12/13/2013 6:29:55 AM <Pigman168> sit is broken
12/13/2013 6:29:59 AM <Pigman168> like you said diskawrs
12/13/2013 6:30:01 AM <Pigman168> : /
12/13/2013 6:30:29 AM <diskawrs> Are we talking about chairs made from stairs or actual chairs here?
12/13/2013 6:30:33 AM <diskawrs>  * diskawrs confused. 
12/13/2013 6:32:10 AM <diskawrs> hehe adding to the fact I don't play minecraft :P does not help
12/13/2013 6:37:50 AM <|Anthony|> ...
12/13/2013 6:38:03 AM <|Anthony|> you host a server, develop for that server, but don't actually play
12/13/2013 6:39:26 AM <diskawrs> er yea ::P
12/13/2013 6:39:32 AM <diskawrs> This is playing for me
12/13/2013 6:40:06 AM <diskawrs> I host TTT, CS:GO, Cuwo, Wargames:(beta team) and Minecraft
12/13/2013 6:40:27 AM <diskawrs> Sometimes I load up NWN2 or some dungeon crawler for fun.
12/13/2013 6:41:02 AM <diskawrs> Used to host 3rd party linage and wow servers too for giggles
12/13/2013 6:41:03 AM <diskawrs> :P
12/13/2013 6:41:42 AM <|Anthony|> does it pay for itself/
12/13/2013 6:41:56 AM <diskawrs> Main community I am part of is a MLG clan so we always up to stupid stuff.
12/13/2013 6:42:49 AM <diskawrs>  |Anthony| well it pays in knowleadge I just, lib, OS, networking problems to solve.
12/13/2013 6:42:56 AM <diskawrs> s/just/guess/
12/13/2013 6:43:04 AM <Pigman168> !cmds all
12/13/2013 6:43:04 AM <+monkeybot> A list of all commands is available here- http://mcmonkey4eva.dyndns.org/cmds ... I know these commands: adjust, age, anchor, animate, animatechest, announce, assignment, attack, break, burn, cast, potion, chat, chunkload, compass, cooldown, copyblock, create, createworld, define, despawn, determine, disengage, displayitem, drop, engage, equip, execute, experience, explode, fail, feed, 
12/13/2013 6:43:04 AM <+monkeybot> finish, firework, fish, flag, fly, follow, foreach, give, group, head, heal, health, hurt, if, inventory, inject, invisible, leash, listen, log, look, lookclose, midi, mount, modifyblock, nameplate, narrate, note, oxygen, pause, playeffect, playsound, permission, pose, push, queue, random, remove, rename, repeat, reset, rotate, run, runtask, schematic, scoreboard, scribe, shoot, showfake, sign, 
12/13/2013 6:43:04 AM <+monkeybot> sit, spawn, stand, strike, switch, take, teleport, time, trait, trigger, viewer, vulnerable, wait, walk, walkto, weather, yaml, zap
12/13/2013 6:43:34 AM <Pigman168> !cmd nameplate
12/13/2013 6:43:34 AM <+monkeybot> nameplate: Changes something's nameplate, requires ProtocolLib (Unstable and broken!)
12/13/2013 6:43:34 AM <+monkeybot> Syntax: - nameplate [<chatcolor>] [set:<text>] (target:<player>)  +--> Requires ProtocolLib
12/13/2013 6:43:35 AM <diskawrs> Arguing with devs about why to build static binaries or not
12/13/2013 6:43:38 AM <diskawrs> things like that :P
12/13/2013 6:44:23 AM <|Anthony|> i meant in dollars and cents. It takes real money to host services
12/13/2013 6:44:33 AM <|Anthony|> do those services pay for the costs
12/13/2013 6:45:25 AM <Pigman168> anyone need a flashbang grenade effect?
12/13/2013 6:45:42 AM <|Anthony|> could be neat
12/13/2013 6:46:04 AM <Pigman168> - animate <player> animation:stop_sleeping
12/13/2013 6:46:25 AM <diskawrs> nope it's all outgoing for me :) sometimes mates donate to help with the cost
12/13/2013 6:49:59 AM <|Anthony|> i self host
12/13/2013 6:50:15 AM <|Anthony|> spent $1000 for a decent rig
12/13/2013 6:50:26 AM <|Anthony|> $140/mth to the ISP
12/13/2013 6:52:17 AM * Pigman168 quit.
12/13/2013 6:52:22 AM <|Anthony|> the decision was pay $50/mth to a hosting co and $100/mth for decent home internet, OR have my own hardware and get great internet.
12/13/2013 6:54:33 AM <diskawrs> Well I hoping to do that but all I have right now is a daul 775 socket 2U rack and the dedicated line with only 4/10Mbit cost more then a dedicated server provider
12/13/2013 6:54:40 AM <diskawrs> so not worth it hosting at home in UK.
12/13/2013 6:55:01 AM <|Anthony|> yeah
12/13/2013 6:55:27 AM <|Anthony|> 775 is old, but still very usable
12/13/2013 6:55:41 AM <|Anthony|> which cpu?
12/13/2013 6:57:27 AM <diskawrs> not sure right now have to double check
12/13/2013 6:57:33 AM <diskawrs> some crappy cpu I htink
12/13/2013 6:57:41 AM <diskawrs> Core2Dual thingy
12/13/2013 6:57:43 AM <|Anthony|> lol
12/13/2013 6:57:53 AM <diskawrs> The board is awesome though
12/13/2013 6:58:02 AM <|Anthony|> my desktop has an intel celeron E3400
12/13/2013 6:58:17 AM <|Anthony|> meh
12/13/2013 6:58:24 AM <|Anthony|> it's abused
12/13/2013 6:58:42 AM <|Anthony|> constant sysload of 1.5
12/13/2013 6:58:49 AM <|Anthony|>  * |Anthony| shudders
12/13/2013 6:59:29 AM * Allfather quit.
12/13/2013 6:59:39 AM <diskawrs> lol
12/13/2013 7:00:01 AM <diskawrs> if only dedicated asym lines in UK were not so expensive.
12/13/2013 7:00:20 AM <diskawrs> I can get decent lines at home in Holland, Germany even Spain with no problems
12/13/2013 7:00:47 AM <diskawrs> in UK it's just a total ripoff, reminds of of south east asia during the 80s when internet just came about
12/13/2013 7:02:17 AM <|Anthony|> afk
12/13/2013 7:57:23 AM * BlackCoyote joined.
12/13/2013 7:58:02 AM * Danton joined.
12/13/2013 7:58:09 AM <BlackCoyote> mornin
12/13/2013 7:58:18 AM * MortelKni joined.
12/13/2013 7:58:27 AM <MortelKni> .help
12/13/2013 7:58:27 AM <+spazzmatic> Greetings. I am an interactive Denizen guide. I am a scripting guru. I am spazz.
12/13/2013 7:58:27 AM <+spazzmatic> For help with script commands, type .cmd <command_name>
12/13/2013 7:58:27 AM <+spazzmatic> For help with script requirements, type .req <requirement_name>
12/13/2013 7:58:27 AM <+spazzmatic> For info on replaceable tags, type .tag <tag_name>
12/13/2013 7:58:27 AM <+spazzmatic> Finally, for help with world events, type .event <event_name>
12/13/2013 7:58:27 AM <+spazzmatic> For everything else, ask in the channel or visit one of the links from .getstarted
12/13/2013 8:04:35 AM * uledrith_ quit.
12/13/2013 8:16:04 AM * Morphan1 joined.
12/13/2013 8:16:04 AM * ChanServ gave voice to +Morphan1.
12/13/2013 8:26:13 AM * MortelKni quit.
12/13/2013 8:28:11 AM <+Morphan1> hey-lo
12/13/2013 8:29:30 AM * luigi_vampa joined.
12/13/2013 8:29:49 AM <luigi_vampa> Hello, how do you set a global variable, a server flag?
12/13/2013 8:31:39 AM * Danton quit.
12/13/2013 8:32:51 AM <+Morphan1> luigi_vampa, - flag global "FlagName:FlagValue"
12/13/2013 8:36:30 AM <luigi_vampa> Thanks Morphan. Got another, slightly trickier. how do I write - foreach(player in permissionsFile)
12/13/2013 8:41:21 AM <luigi_vampa> !tags
12/13/2013 8:41:21 AM <+monkeybot> That command is written as !tags <the start of the tag or just 'all'>
12/13/2013 8:41:26 AM <luigi_vampa> !tags all
12/13/2013 8:41:26 AM <+monkeybot> A list of all tags is available here- http://mcmonkey4eva.dyndns.org/tags
12/13/2013 8:52:03 AM * Pigman168 joined.
12/13/2013 8:52:10 AM <Pigman168> hey NegroBob ?
12/13/2013 9:03:16 AM <BlackCoyote> no
12/13/2013 9:03:19 AM <BlackCoyote> NegroBob: sucks
12/13/2013 9:06:24 AM <+Morphan1> luigi_vampa, that one... you may need the YAML command for that
12/13/2013 9:08:37 AM <Pigman168> hey Morphan1
12/13/2013 9:09:01 AM <Pigman168> have you commited the inventory update?
12/13/2013 9:09:21 AM <+Morphan1> Pigman168, yes
12/13/2013 9:09:32 AM <+Morphan1> !tag inventory.
12/13/2013 9:09:32 AM <+monkeybot> I found 16 matches...
12/13/2013 9:09:35 AM <Pigman168> thank you very much!
12/13/2013 9:09:35 AM <+Morphan1> !tag inventory.title
12/13/2013 9:09:35 AM <+monkeybot> Found: <in@inventory.title>, which returns a Element
12/13/2013 9:09:35 AM <+monkeybot>   Returns the title of the inventory.
12/13/2013 9:09:43 AM <Pigman168> !cmd inventory
12/13/2013 9:09:43 AM <+monkeybot> inventory: Edits the inventory of a player, NPC, or chest.
12/13/2013 9:09:43 AM <+monkeybot> Syntax: - inventory [open/copy/move/swap/add/remove/keep/exclude/fill/clear/update] (destination:<inventory>) (origin:<inventory>/<item>|...)
12/13/2013 9:10:17 AM <Pigman168> !cmd listen
12/13/2013 9:10:17 AM <+monkeybot> listen: Listens for the player achieving various actions and runs a script when they are completed.
12/13/2013 9:10:17 AM <+monkeybot> Syntax: - listen ({new}/cancel/finish) [kill/block/item/itemdrop/travel] [<requirements>] [script:<name>] (id:<name>)
12/13/2013 9:10:22 AM <Pigman168> !cmd listen usage
12/13/2013 9:10:22 AM <+monkeybot> listen: Listens for the player achieving various actions and runs a script when they are completed.
12/13/2013 9:10:22 AM <+monkeybot> Syntax: - listen ({new}/cancel/finish) [kill/block/item/itemdrop/travel] [<requirements>] [script:<name>] (id:<name>)
12/13/2013 9:10:22 AM <+monkeybot> Usage: Use to listen for when the player kills 10 zombies.
12/13/2013 9:10:22 AM <+monkeybot>   - listen kill type:entity target:zombie qty:10 script:ZombiesKilled
12/13/2013 9:10:22 AM <+monkeybot> Usage: Use to listen for when a player mines 1 iron ore.
12/13/2013 9:10:22 AM <+monkeybot>   - listen block type:break block:iron_or qty:1 script:IronMined
12/13/2013 9:10:22 AM <+monkeybot> Usage: Use to listen for when a player crafts 1 wooden sword.
12/13/2013 9:10:22 AM <+monkeybot>   - listen item type:craft item:wood_sword qty:1 script:SwordCrafted
12/13/2013 9:10:22 AM <+monkeybot>  More: http://mcmonkey4eva.dyndns.org/cmds/listen
12/13/2013 9:11:32 AM <Pigman168> Morphan1: once a listener has been triggered (in a world event), how would i have something happen as a result?
12/13/2013 9:12:18 AM <+Morphan1> Pigman168, run a task script with the script:<name> parameter
12/13/2013 9:12:33 AM <Pigman168> ahhh ok thanks!
12/13/2013 9:13:03 AM <Pigman168> i saw the example in an interact script so i wasnt sure
12/13/2013 9:13:23 AM <+Morphan1> yeah, it shouldn't matter where you use it at
12/13/2013 9:14:17 AM <Pigman168> k =)
12/13/2013 9:14:53 AM * sup_ joined.
12/13/2013 9:15:05 AM <Pigman168> !seen Allfather
12/13/2013 9:15:05 AM <+monkeybot> I last saw Allfather at 12/13/2013 6:18:02 AM PST. That was 2 hours, 57 minutes, and 2 seconds ago, in #denizen-dev, saying !ds http://hastebin.com/gumoxaweme.sm
12/13/2013 9:15:31 AM * sup quit.
12/13/2013 9:16:38 AM <Pigman168> !event hurt
12/13/2013 9:16:38 AM <+monkeybot> That event doesn't seem to exist.
12/13/2013 9:16:42 AM <Pigman168> !event damaged
12/13/2013 9:16:42 AM <+monkeybot> I found 2 matches...
12/13/2013 9:16:42 AM <+monkeybot> entity damaged, vehicle damaged.
12/13/2013 9:16:57 AM <Pigman168> !event vehicle damaged
12/13/2013 9:16:57 AM <+monkeybot>  on vehicle damaged: 
12/13/2013 9:16:57 AM <+monkeybot>   AKA: on <vehicle> damaged, on entity damages vehicle, on <entity> damages vehicle, on entity damages <vehicle>, on <entity> damages <vehicle>
12/13/2013 9:16:57 AM <+monkeybot>   Triggered: when a vehicle is damaged. 
12/13/2013 9:16:57 AM <+monkeybot>   Context: <context.vehicle> returns the dEntity of the vehicle.
12/13/2013 9:16:57 AM <+monkeybot>   Context: <context.entity> returns the dEntity of the attacking entity.
12/13/2013 9:16:57 AM <+monkeybot>   Determine: "CANCELLED" to stop the entity from damaging the vehicle.
12/13/2013 9:16:57 AM <+monkeybot>   Determine: Element(Double) to set the value of the damage received by the vehicle.
12/13/2013 9:19:53 AM <Pigman168> !dshttp://hastebin.com/hanenedehi.rb
12/13/2013 9:19:58 AM <Pigman168> !ds http://hastebin.com/hanenedehi.rb
12/13/2013 9:20:03 AM <+monkeybot> I can't open that URL.
12/13/2013 9:20:08 AM <BlackCoyote> DUN DUN DUN
12/13/2013 9:20:14 AM <Pigman168> :D
12/13/2013 9:20:18 AM <Pigman168> !ds http://hastebin.com/hanenedehi.rb
12/13/2013 9:20:19 AM <+monkeybot> I encountered 17 potential problems with that script.
12/13/2013 9:20:19 AM <+monkeybot>   (1) WARNING: Line 289: You can't have #comments inside an - if { .. } block!
12/13/2013 9:20:19 AM <+monkeybot>   (2) WARNING: Line 295: You can't have #comments inside an - if { .. } block!
12/13/2013 9:20:19 AM <+monkeybot>   (3) WARNING: Line 301: You can't have #comments inside an - if { .. } block!
12/13/2013 9:20:19 AM <+monkeybot>   (4) WARNING: Line 307: You can't have #comments inside an - if { .. } block!
12/13/2013 9:20:19 AM <+monkeybot>   (5) WARNING: Line 313: You can't have #comments inside an - if { .. } block!
12/13/2013 9:20:19 AM <+monkeybot>   (6) WARNING: Line 319: You can't have #comments inside an - if { .. } block!
12/13/2013 9:20:19 AM <+monkeybot>   (7) WARNING: Line 325: You can't have #comments inside an - if { .. } block!
12/13/2013 9:20:19 AM <+monkeybot>   (8) WARNING: Line 335: Script name missing a : symbol!
12/13/2013 9:20:19 AM <+monkeybot> And 9 more... type !ds more #   to see more (where # is a warning number, EG: 9)
12/13/2013 9:20:44 AM <Pigman168> !ds more 9
12/13/2013 9:20:44 AM <+monkeybot> I encountered 17 potential problems with the most recent script.
12/13/2013 9:20:44 AM <+monkeybot>   (9) WARNING: Line 336: Script name missing a : symbol!
12/13/2013 9:20:44 AM <+monkeybot>   (10) WARNING: Line 336: Script above line does not contain a TYPE value!
12/13/2013 9:20:44 AM <+monkeybot>   (11) WARNING: Line 337: Script name missing a : symbol!
12/13/2013 9:20:44 AM <+monkeybot>   (12) WARNING: Line 337: Script above line does not contain a TYPE value!
12/13/2013 9:20:44 AM <+monkeybot>   (13) WARNING: Line 338: Script name missing a : symbol!
12/13/2013 9:20:44 AM <+monkeybot>   (14) WARNING: Line 338: Script above line does not contain a TYPE value!
12/13/2013 9:20:44 AM <+monkeybot>   (15) WARNING: Line 339: Script name missing a : symbol!
12/13/2013 9:20:44 AM <+monkeybot>   (16) WARNING: Line 339: Script above line does not contain a TYPE value!
12/13/2013 9:20:44 AM <+monkeybot> And 1 more... type !ds more #   to see more (where # is a warning number, EG: 17)
12/13/2013 9:20:51 AM <Pigman168> !ds more 17
12/13/2013 9:20:51 AM <+monkeybot> I encountered 17 potential problems with the most recent script.
12/13/2013 9:20:51 AM <+monkeybot>   (17) WARNING: Line 355: Script above line does not contain a TYPE value!
12/13/2013 9:21:05 AM <Pigman168> all good! ;D
12/13/2013 9:24:23 AM * luigi_vampa quit.
12/13/2013 9:24:43 AM * Busi quit.
12/13/2013 9:24:43 AM * |Anthony| quit.
12/13/2013 9:24:43 AM * AgentK quit.
12/13/2013 9:24:43 AM * zz_zz_Kain|ZNC quit.
12/13/2013 9:24:43 AM * +fullwall|afk quit.
12/13/2013 9:24:43 AM * dimensionZ quit.
12/13/2013 9:24:43 AM * boozaa quit.
12/13/2013 9:24:43 AM * +SpaceEmotion quit.
12/13/2013 9:24:43 AM * aufdem|mobile quit.
12/13/2013 9:24:43 AM * kosgan10 quit.
12/13/2013 9:24:43 AM * +mcmonkey quit.
12/13/2013 9:24:43 AM * Wahrheit quit.
12/13/2013 9:24:43 AM * +Citizen quit.
12/13/2013 9:24:43 AM * freaky[t] quit.
12/13/2013 9:24:43 AM * Hafnium quit.
12/13/2013 9:24:43 AM * OllieAway quit.
12/13/2013 9:25:37 AM * SpaceEmotion joined.
12/13/2013 9:25:37 AM * Busi joined.
12/13/2013 9:25:37 AM * aufdem|mobile joined.
12/13/2013 9:25:37 AM * kosgan10 joined.
12/13/2013 9:25:37 AM * mcmonkey joined.
12/13/2013 9:25:37 AM * |Anthony| joined.
12/13/2013 9:25:37 AM * Wahrheit joined.
12/13/2013 9:25:37 AM * AgentK joined.
12/13/2013 9:25:37 AM * Citizen joined.
12/13/2013 9:25:37 AM * freaky[t] joined.
12/13/2013 9:25:37 AM * zz_zz_Kain|ZNC joined.
12/13/2013 9:25:37 AM * fullwall|afk joined.
12/13/2013 9:25:37 AM * nova.esper.net gave voice to +SpaceEmotion.
12/13/2013 9:25:37 AM * nova.esper.net gave voice to +mcmonkey.
12/13/2013 9:25:37 AM * nova.esper.net gave voice to +Citizen.
12/13/2013 9:25:37 AM * nova.esper.net gave voice to +fullwall|afk.
12/13/2013 9:25:37 AM * dimensionZ joined.
12/13/2013 9:25:37 AM * boozaa joined.
12/13/2013 9:25:37 AM * Hafnium joined.
12/13/2013 9:25:37 AM * OllieAway joined.
12/13/2013 9:25:44 AM <+Morphan1> holy netsplit
12/13/2013 9:25:53 AM <+SpaceEmotion> yay
12/13/2013 9:26:12 AM <+Morphan1> oh look a SpaceEmotion
12/13/2013 9:26:25 AM <+SpaceEmotion> yeah, im here ALL the time and you dont even NOTICE me ,_,
12/13/2013 9:26:47 AM <+Morphan1> WHAT YOU ARE NOT
12/13/2013 9:28:06 AM <diskawrs> huh do I have to find permissions with 1.7.2 if I am op?
12/13/2013 9:31:41 AM <+Morphan1> diskawrs, you shouldn't have to, no
12/13/2013 9:33:31 AM * BlackCoyote quit.
12/13/2013 9:36:44 AM <Pigman168> diskawrs: with op you have the permission "*" which equates to any permission there is
12/13/2013 9:37:17 AM <Pigman168> for example if you have the permission essentials.* you have all essentials permissions. you might know this already but just to make sure
12/13/2013 9:37:50 AM <diskawrs> Pigman168: I know it's just odd cause half the /npc commands aren't there
12/13/2013 9:37:51 AM <diskawrs> lol
12/13/2013 9:38:04 AM <diskawrs> and Shiifu seems to have the same issue
12/13/2013 9:38:05 AM <Pigman168> oh :(
12/13/2013 9:44:00 AM <+Morphan1> diskawrs, have you updated Citizens to the latest dev build?
12/13/2013 9:44:10 AM <diskawrs> yea last night
12/13/2013 9:44:16 AM <diskawrs> thats when I lost the commands
12/13/2013 9:44:31 AM <+Morphan1> usually when a bunch of commands are missing it's because you're using an incorrect Citizens or CraftBukkit build
12/13/2013 9:48:50 AM <Pigman168> Morphan1: is the inventory name option also included?
12/13/2013 9:49:04 AM <+Morphan1> Pigman168, uhhh... no
12/13/2013 9:49:08 AM <+Morphan1> I forgot to do that
12/13/2013 9:49:11 AM <Pigman168> ok
12/13/2013 9:51:50 AM <Pigman168> someone wanted a CTF system, diskawrs was that you?
12/13/2013 10:01:08 AM <diskawrs> yea
12/13/2013 10:02:11 AM <diskawrs> Does anyone know a simple alternative to plesk/cpanel? something not rpm based :P
12/13/2013 10:02:25 AM <Pigman168> ok, ive got a presentation to finish for tonight but then ill be on 25/8
12/13/2013 10:02:32 AM <Pigman168> on it*
12/13/2013 10:02:52 AM <diskawrs> So many things to fix before I move :/
12/13/2013 10:02:52 AM <Pigman168> is that alright? =)
12/13/2013 10:03:03 AM <diskawrs> It's driving me nuts
12/13/2013 10:03:45 AM <Pigman168> ?
12/13/2013 10:03:58 AM <diskawrs> cpanel+gamecp+fs conflicts
12/13/2013 10:04:17 AM <Pigman168> [19:02] <Pigman168> ok, ive got a presentation to finish for tonight but then ill be on | 25/8 [19:02] <Pigman168> on it*
12/13/2013 10:04:18 AM <diskawrs> think I have to get rid of cpanel and do everything manually :/
12/13/2013 10:04:35 AM <Pigman168> woops that wasnt right
12/13/2013 10:04:47 AM <diskawrs> Pigman168: it will be in 1.4bil years
12/13/2013 10:04:57 AM <Pigman168> why?
12/13/2013 10:04:58 AM <diskawrs> or was it 1.1
12/13/2013 10:05:13 AM <diskawrs> Well every year a few seconds is added to our clock (technically)
12/13/2013 10:05:34 AM <Pigman168> oh, i was just exaggerating my efforts :D
12/13/2013 10:06:12 AM <diskawrs> :) though I think humans and plants would be gone by then.
12/13/2013 10:06:26 AM <Pigman168> yup, at this rate of global warming
12/13/2013 10:06:38 AM <diskawrs> Drastic weather and polar changes as earth slows down
12/13/2013 10:06:49 AM <diskawrs> blah global warning. :P only humans are afriad of that
12/13/2013 10:06:56 AM <Pigman168> :D
12/13/2013 10:06:59 AM <diskawrs> IN my book earth will just laugh and reboot
12/13/2013 10:07:08 AM <Pigman168> xD
12/13/2013 10:07:35 AM <diskawrs> Earth 530 million years ago, there were 21 hours in a day.
12/13/2013 10:07:43 AM <Pigman168> i can imagine something like elysium happening
12/13/2013 10:07:47 AM <diskawrs> Earth 100 milliono years ago, there were 23 hours in a day
12/13/2013 10:08:25 AM <|Anthony|> that's the crux of the topic though, isn't it? The fact that humans could be in a position to secure the stability of our habitat for generations to come is reason enough to do so.
12/13/2013 10:08:29 AM <Pigman168> does that give us more daylight or nighttime?
12/13/2013 10:08:34 AM <diskawrs> For the last few hundreads million years, our days are getting longer but our years are getting shorter
12/13/2013 10:08:42 AM <|Anthony|> fuck the whales
12/13/2013 10:08:47 AM <|Anthony|> save the humans
12/13/2013 10:08:53 AM <Pigman168> we need them to survive
12/13/2013 10:08:55 AM <diskawrs> Fuck the humans
12/13/2013 10:09:00 AM <diskawrs> parasites :P
12/13/2013 10:09:04 AM <diskawrs> BURN THEM ALL
12/13/2013 10:09:09 AM <Pigman168> especially the swaggots
12/13/2013 10:09:10 AM <diskawrs> Or kill electricty
12/13/2013 10:09:27 AM <diskawrs> Massive EMP bomb would do it
12/13/2013 10:10:08 AM <|Anthony|> wouldn't that be nice? right at the heart of sally may and jp morgan...
12/13/2013 10:10:11 AM <|Anthony|> poof
12/13/2013 10:10:46 AM <diskawrs> lol Someone else who hates JP morgan
12/13/2013 10:10:59 AM <diskawrs> Pricewater coopers are bigger crooks though
12/13/2013 10:11:14 AM <diskawrs> or price water house as they renamed in some countries.
12/13/2013 10:11:48 AM <diskawrs> http://en.wikipedia.org/wiki/PricewaterhouseCoopers
12/13/2013 10:11:49 AM <+monkeybot> Title --> PricewaterhouseCoopers - Wikipedia, the free encyclopedia
12/13/2013 10:11:53 AM <|Anthony|> the vast majority of financial institutions are corrupt
12/13/2013 10:12:10 AM <|Anthony|> capitalism at it's finest ladies and gentlemen
12/13/2013 10:12:29 AM * EwfsPrince joined.
12/13/2013 10:12:44 AM <Pigman168> http://www.thunderfucks.com/ someone in this channel bought this domain but i cant remember who. |Anthony| was that you?
12/13/2013 10:12:45 AM <+monkeybot> Title --> Thunderfucks: A Free Minecraft World
12/13/2013 10:12:45 AM <EwfsPrince> Denizen still broken?
12/13/2013 10:13:11 AM <diskawrs> lol
12/13/2013 10:13:23 AM <diskawrs> FUCK U THUNDERBIRD!
12/13/2013 10:13:31 AM <diskawrs> Best animation song ever
12/13/2013 10:13:32 AM <diskawrs> :P
12/13/2013 10:14:04 AM <diskawrs> ooh dynamap open to public really?
12/13/2013 10:14:27 AM <diskawrs> and using towny :)
12/13/2013 10:14:34 AM <diskawrs> wonder if they have war mode turned on
12/13/2013 10:15:09 AM <Pigman168> yea the dynamap looks awesome
12/13/2013 10:15:49 AM <diskawrs> Not wise to open to public though
12/13/2013 10:15:59 AM <Pigman168> true
12/13/2013 10:15:59 AM <diskawrs> generate a lot of load if people spam it.
12/13/2013 10:16:11 AM <diskawrs> Most thing one could do with it.
12/13/2013 10:16:17 AM <Pigman168> ddos'ing?
12/13/2013 10:16:18 AM <diskawrs> s/Most?worst/
12/13/2013 10:16:28 AM <Pigman168> worst
12/13/2013 10:16:40 AM <Pigman168> actually both are ok
12/13/2013 10:16:59 AM <Pigman168> diskawrs: do you happen to know how to ddos someones ip?
12/13/2013 10:17:07 AM <Pigman168> also, is it legal?
12/13/2013 10:17:11 AM <diskawrs> All you need is a simple script to open browser windows and constantly zoom in and out
12/13/2013 10:17:28 AM <Pigman168> x100
12/13/2013 10:17:32 AM <diskawrs> lol :P DDOS carries a jail sentence worst then killing someone in EU
12/13/2013 10:17:46 AM <Pigman168> :D
12/13/2013 10:17:49 AM <Pigman168> im in switzerland
12/13/2013 10:18:11 AM <diskawrs> Oh great you can hide behind a mirage of rights
12/13/2013 10:18:11 AM <diskawrs> lol
12/13/2013 10:18:16 AM <Pigman168> xD
12/13/2013 10:18:22 AM <Pigman168> also use a school computer
12/13/2013 10:18:39 AM <diskawrs> sigh :/
12/13/2013 10:18:43 AM <Pigman168> too bad the NSA is watching : /
12/13/2013 10:18:51 AM <Pigman168> but do you know how?
12/13/2013 10:18:57 AM <diskawrs> Well every white/grey hat starts out black, I guess.
12/13/2013 10:19:18 AM <diskawrs> :) Pigman168 I don't condone it.
12/13/2013 10:19:41 AM <Pigman168> oh sorry
12/13/2013 10:19:57 AM <Pigman168> some see it as a virual riot
12/13/2013 10:20:10 AM <Pigman168> which is actually a music producer
12/13/2013 10:20:15 AM <Pigman168> but anyways
12/13/2013 10:20:24 AM <diskawrs> Well before 2000 :P it was a major way for admins of one network to attack another
12/13/2013 10:20:32 AM <Pigman168> yup
12/13/2013 10:20:37 AM <diskawrs> lol so much shit goes down in ISP NOCs
12/13/2013 10:21:21 AM <Pigman168> but it practically does the same as a riot on the streets, it brings multiple "people" to the place and slows down the system
12/13/2013 10:21:28 AM <|Anthony|> 10% of internet traffic is legitimate usage
12/13/2013 10:21:33 AM <diskawrs> Now courts can jail you for having tcpdump installed :/ under new EU regulations and treaties pass in 2008
12/13/2013 10:21:34 AM <Pigman168> :O
12/13/2013 10:21:46 AM <Pigman168> tcpdump?
12/13/2013 10:21:53 AM <|Anthony|> thats' bs
12/13/2013 10:22:06 AM <diskawrs> packet analyzer
12/13/2013 10:22:23 AM <diskawrs> |Anthony| I wish it was :/ they use it to justify your intent
12/13/2013 10:22:25 AM <Pigman168> ahhh i have kismac
12/13/2013 10:22:28 AM <Pigman168> thats similar
12/13/2013 10:22:40 AM <diskawrs> load of bullshit but enough to keep you grasping for air in lawsuits and proceedings
12/13/2013 10:23:13 AM <Pigman168> kismac doesnt really collect the packets : | that or my neighbours dont really use the internet
12/13/2013 10:23:39 AM <Pigman168> its supposed to but i never get more than 7 IV's
12/13/2013 10:23:46 AM <diskawrs> |Anthony| we were joking about these laws in CCC back then.
12/13/2013 10:24:34 AM <diskawrs> Anyway back to figure out why my fs perms are all messed up
12/13/2013 10:24:45 AM <Pigman168> fs perms?
12/13/2013 10:25:16 AM <diskawrs> FS. File System?
12/13/2013 10:25:17 AM <+Morphan1> [13:12:41] <EwfsPrince> Denizen still broken?
12/13/2013 10:25:18 AM <+Morphan1> what
12/13/2013 10:25:57 AM <Pigman168> oh right
12/13/2013 10:26:30 AM <+Morphan1> EwfsPrince, as far as I know, nothing's wrong with Denizen.
12/13/2013 10:26:43 AM <Pigman168> there are some minor things
12/13/2013 10:27:36 AM <diskawrs> Bloody hell every weekend the same :/ almost impossible to auth via mojang
12/13/2013 10:30:41 AM * PieGuy128 joined.
12/13/2013 10:31:08 AM * Pigman168_ joined.
12/13/2013 10:31:21 AM <Pigman168_> connection timeout
12/13/2013 10:32:03 AM * Pigman168 quit.
12/13/2013 10:32:30 AM * Pigman168_ renamed to Pigman168
12/13/2013 10:45:42 AM * TooLmaN quit.
12/13/2013 10:49:43 AM * PieGuy128 quit.
12/13/2013 10:49:54 AM * Pigman168 quit.
12/13/2013 10:56:22 AM <NegroBob> noobs
12/13/2013 10:56:47 AM <diskawrs> Cotton Picker
12/13/2013 10:56:56 AM <NegroBob> :(
12/13/2013 10:57:00 AM <diskawrs> :(
12/13/2013 10:58:10 AM <+Morphan1> :)
12/13/2013 10:58:46 AM <NegroBob> :(
12/13/2013 10:59:07 AM <diskawrs> :*
12/13/2013 10:59:13 AM <+Morphan1> NegroBob, does this look compicated?
12/13/2013 10:59:14 AM <+Morphan1> return mechanism.parseElement(ElementTypes.INTEGER, getWorld(), World.class.getMethod("setAmbientSpawnLimit", Integer.class));
12/13/2013 10:59:25 AM <NegroBob> no
12/13/2013 10:59:32 AM <+Morphan1> okay
12/13/2013 11:09:48 AM <NegroBob> SHUT UP
12/13/2013 11:10:21 AM * PieGuy128 joined.
12/13/2013 11:10:25 AM <NegroBob> :P
12/13/2013 11:10:47 AM <PieGuy128> !getstarted
12/13/2013 11:10:47 AM <+monkeybot> If you're trying to use Denizen for the first time, these web resources will help you (in addition to help received here on this IRC)
12/13/2013 11:10:47 AM <+monkeybot> Denizen Handbook - http://bit.ly/XaWBLN
12/13/2013 11:10:47 AM <+monkeybot> Denizen Wiki - http://bit.ly/14o3kdq
12/13/2013 11:10:47 AM <+monkeybot> Beginner's Guide - http://bit.ly/1bHkByR
12/13/2013 11:10:47 AM <+monkeybot> Tutorial Videos - http://bit.ly/1dhOMQs
12/13/2013 11:10:47 AM <+monkeybot> Script Repo - http://bit.ly/19lCpfV
12/13/2013 11:14:39 AM * Pigman168 joined.
12/13/2013 11:14:46 AM <Pigman168> !help
12/13/2013 11:14:46 AM <+monkeybot> Hello, I am monkeybot, a bot dedicated to assisting you in maximizing your Denizen scripting potential.   If you're new to Denizen, type !getstarted
12/13/2013 11:14:46 AM <+monkeybot> For information on script commands, type !cmds
12/13/2013 11:14:46 AM <+monkeybot> To check your script for errors, type !script
12/13/2013 11:14:46 AM <+monkeybot> Other searchable meta types: !tags !events !requirements !languages !tutorials !mechanisms !actions !items !skins
12/13/2013 11:14:46 AM <+monkeybot> Other available informational commands: !repo !enchantments !entities !anchors !tags !potions !assignments !update !newconfig !wiki !sounds !handbook 
12/13/2013 11:14:46 AM <+monkeybot> Other available interactive commands: !seen !message !hello !showoff !math !help !pastebin !logs !yaml !yes !reload !quote !savelog 
12/13/2013 11:15:04 AM <Pigman168> !savelog