Paste #1270: IRC logs for #denizen-dev at 1/12/2014 5:30:59 AM

Date: 2014/01/12 05:30:59 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
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378


-- IRC Log requested by tstom0 --
Topic: Welcome to the DENIZEN for C2 and Bukkit channel - Pics from May 5th's Denizen meetup: http://imgur.com/a/j4QID#0 - Current development is focusing on the 1.0 release - Latest builds: http://ci.citizensnpcs.co/ - Latest scripts: http://scripts.citizensnpcs.co/browse/all/newest/1/20/
Online Users: @AgentK, @aufdemrand, @mastaba, @mcmonkey, @monkeybot, +BlackCoyote, +Citizen, +fullwall, +Morphan1, +mythan, +spazzmatic, `1cec0ld, |Anthony|, Arko, aufdemrand__, boozaa, Daniel_, dimensionZ, diskawrs, Elbs|AFK, EwfsPrince, fReAkY[t], gabizou|away, Goma, Hafnium, Iroh, Kainzo, kosgan10|away, Matrixiumn, Matterphone2, monkeylog, monnierant, NegroBawb, OllieAway, Pigman168, PotatoChips, sup, TheRealKeith, TheStuntman, tstom0, tvr, uledrith, Wahrheit, zz_Kainzo

1/12/2014 1:54:10 AM <Pigman168> how?
1/12/2014 1:54:13 AM <@mcmonkey> Goma: hasn't been edited in 3 months
1/12/2014 1:54:46 AM <+Morphan1> I wonder
1/12/2014 1:54:51 AM <+Morphan1> CraftBukkit#1316
1/12/2014 1:55:00 AM <@mcmonkey> .list repos
1/12/2014 1:55:01 AM <+spazzmatic> I'm currently watching 7 repositories...
1/12/2014 1:55:01 AM <+spazzmatic> [citizens2, denizen-unit-tests, spazz, citizensapi, denizen, depenizen, sentry]
1/12/2014 1:55:10 AM <@mcmonkey> Morphan1: why you no monitor CB?
1/12/2014 1:55:11 AM <Pigman168> !cmd scorebo
1/12/2014 1:55:11 AM <@monkeybot> scoreboard: Add or removes viewers, objectives and scores from scoreboards.
1/12/2014 1:55:11 AM <@monkeybot> Syntax: - scoreboard ({add}/remove) (viewers:<player>|...) (lines:<player>/<text>|...) (id:<value>/{main}) (objective:<value>) (criteria:<criteria>/{dummy}) (score:<#>) (displayslot:<value>/{sidebar}/none)
1/12/2014 1:55:15 AM <+Morphan1> ...I thought I did
1/12/2014 1:55:17 AM <+Morphan1> odd
1/12/2014 1:55:24 AM <+Morphan1> .add r
1/12/2014 1:55:25 AM <+spazzmatic> That command is written as: .add repo [<author>/<project>] (no_issues) (no_comments) (delay:<#.#>)
1/12/2014 1:55:44 AM <+Morphan1> .add r Bukkit/Bukkit no_issues no_comments delay:300
1/12/2014 1:55:47 AM <+spazzmatic> I am now tracking bukkit with a delay of 300.0, no issues, and no comments.
1/12/2014 1:55:49 AM <+Morphan1> .add r Bukkit/CraftBukkit no_issues no_comments delay:300
1/12/2014 1:55:50 AM <+spazzmatic> I am now tracking craftbukkit with a delay of 300.0, no issues, and no comments.
1/12/2014 1:55:53 AM <+Morphan1> CraftBukkit#1316
1/12/2014 1:55:54 AM <Goma> no something has changed definitly first all my entries where suddenly lowercase then i updated and now only one remains lowercase, you can also see "Don't make every Argument with a prefix lowercase " in build 1415
1/12/2014 1:56:05 AM <@mcmonkey> DeNiZeN#2
1/12/2014 1:56:13 AM <@mcmonkey> craftbukkit#1316
1/12/2014 1:56:16 AM <+spazzmatic> [Denizen] Interactive Scripts and NPC with lookclose (also no chat trigger should = no response) by tenowg -- closed issue. (Created 1 year ago, last updated 1 year ago.) - http://bit.ly/1de757a
1/12/2014 1:56:22 AM <+Morphan1> wonderful
1/12/2014 1:56:24 AM <@mcmonkey> that was delayed asf
1/12/2014 1:56:52 AM <Pigman168> ich möchte wirklich nur wissen wie du's gelöst hast und was das problem war
1/12/2014 1:57:05 AM <@mcmonkey> Goma: ... oh, yeah, 1414 and 1415 messed up a few things
1/12/2014 1:57:11 AM <@mcmonkey> Goma: should all be solid now if you just reset it
1/12/2014 1:57:24 AM <Goma> i stop my server and delete the scoreboard file and see
1/12/2014 1:57:28 AM <Pigman168> !tag select
1/12/2014 1:57:28 AM <@monkeybot> I found 2 matches...
1/12/2014 1:57:28 AM <@monkeybot> [email protected]_npc, server.selected_npc.
1/12/2014 1:57:39 AM <@mcmonkey> Pigman168: Is there any particular reason you're speaking in German when both you and the person you're speaking to speak fluent English?
1/12/2014 1:57:45 AM <@mcmonkey> and you're in an English chat room?
1/12/2014 1:57:51 AM <Pigman168> it might stand out to him
1/12/2014 1:58:05 AM <@mcmonkey> Pigman168: use pings for that ^^
1/12/2014 1:58:08 AM <Pigman168> im being ignored a little here :D
1/12/2014 1:58:26 AM <Goma> i can see your texts fine enough i just don't have the time to explain you the problems i had and solved myself^^
1/12/2014 1:58:32 AM <@mcmonkey> Pigman168: Because you don't ping anyone
1/12/2014 1:58:33 AM <Pigman168> ok
1/12/2014 1:59:08 AM <Goma> when i have more time we can talk about it
1/12/2014 1:59:09 AM <+Morphan1> mcmonkey, I just realized how long it's been since I updated spazz's repo
1/12/2014 1:59:12 AM <Pigman168> ok sure
1/12/2014 1:59:26 AM <Pigman168> mcmonkey: is it possible to change already chatted messages?
1/12/2014 1:59:51 AM <@mcmonkey> Pigman168: in IRC? No.
1/12/2014 2:00:07 AM <Pigman168> minecraft
1/12/2014 2:00:21 AM <+Morphan1> Pigman168, a message that's already been displayed to players?
1/12/2014 2:00:25 AM <Pigman168> yes
1/12/2014 2:00:27 AM <+Morphan1> no
1/12/2014 2:00:30 AM <@mcmonkey> Pigman168: You can modify them serverside as they're being said
1/12/2014 2:00:31 AM <@mcmonkey> but not after
1/12/2014 2:00:39 AM <+Morphan1> ^that's clientside
1/12/2014 2:00:46 AM <Pigman168> ive seen a plugin that i think did
1/12/2014 2:00:50 AM <Pigman168> or used a workaround
1/12/2014 2:01:04 AM <Pigman168> if you typed a message twice it would appear like this:
1/12/2014 2:01:09 AM <Pigman168> spam (x2)
1/12/2014 2:01:18 AM <@mcmonkey> Pigman168: the only 'workaround' would be resending all recent messages
1/12/2014 2:01:22 AM <Pigman168> yea
1/12/2014 2:01:25 AM <@mcmonkey> which would suck a bit
1/12/2014 2:01:33 AM <Pigman168> just a little :D
1/12/2014 2:01:43 AM <Pigman168> its like mass flooding
1/12/2014 2:01:50 AM * Doppler quit.
1/12/2014 2:01:58 AM <Pigman168> * #Players
1/12/2014 2:02:15 AM <Pigman168> that wouldnt go well
1/12/2014 2:02:21 AM <@mcmonkey> !math log ( pigman168 * insanity )
1/12/2014 2:02:21 AM <@monkeybot> log ( pigman168 * insanity ) = 0
1/12/2014 2:02:28 AM <@mcmonkey> Fascinating.
1/12/2014 2:02:33 AM <Pigman168> ?
1/12/2014 2:02:39 AM <Goma> !cmd playeffect
1/12/2014 2:02:39 AM <@monkeybot> playeffect: Plays a visible or audible effect at the location.
1/12/2014 2:02:39 AM <@monkeybot> Syntax: - playeffect [<location>] [effect:<name>] (data:<#.#>) (visibility:<#.#>) (qty:<#>) (offset:<#.#>)
1/12/2014 2:03:12 AM <Pigman168> mcmonkey: im not getting the joke, what is it?
1/12/2014 2:03:26 AM <Pigman168> i multiplied the flooding by the amount of players
1/12/2014 2:03:50 AM <Pigman168> and multiply that by 1.25 because back then everyone used nodus
1/12/2014 2:03:59 AM <@mcmonkey> !math 11
1/12/2014 2:03:59 AM <@monkeybot> 11 = 11
1/12/2014 2:03:59 AM <Pigman168> which had a flood option
1/12/2014 2:04:04 AM <dimensionZ> and btw
1/12/2014 2:04:06 AM <dimensionZ> there's no worldaround
1/12/2014 2:04:12 AM <dimensionZ> irc really just relay the data
1/12/2014 2:04:19 AM <dimensionZ> it doesnt store it, and it doesnt have any mean to get it back
1/12/2014 2:04:21 AM <+Morphan1> o.O
1/12/2014 2:04:25 AM <dimensionZ> (bit late)
1/12/2014 2:04:39 AM <Pigman168> oh you mean for editing IRC messages?
1/12/2014 2:04:45 AM <dimensionZ> yeah
1/12/2014 2:04:52 AM <Pigman168> ok
1/12/2014 2:04:53 AM <dimensionZ> Pigman168]: mcmonkey: is it possible to change already chatted messages?
1/12/2014 2:04:53 AM <dimensionZ> [11:00:08] [@mcmonkey]: Pigman168: in IRC? No.
1/12/2014 2:04:58 AM <dimensionZ> thats what were discussed, right ?
1/12/2014 2:05:03 AM <Pigman168> nope
1/12/2014 2:05:10 AM <Pigman168> [11:00] <Pigman168> minecraft
1/12/2014 2:05:11 AM <+Morphan1> dimensionZ, he meant in mc
1/12/2014 2:05:11 AM <dimensionZ> then i fail to read :P
1/12/2014 2:05:13 AM <dimensionZ> oh
1/12/2014 2:05:21 AM <+Morphan1> and
1/12/2014 2:05:23 AM <+Morphan1> worldaround?
1/12/2014 2:05:26 AM <dimensionZ> but kinda the same logic
1/12/2014 2:05:30 AM <dimensionZ> the workaround would be, to me
1/12/2014 2:05:37 AM <+Morphan1> the world's aflat :P
1/12/2014 2:05:38 AM <dimensionZ> to take the same buffer that he player has on his screen
1/12/2014 2:05:42 AM <dimensionZ> and resend it all with the modif
1/12/2014 2:05:52 AM <dimensionZ> clearing his buffer and reinjecting the change
1/12/2014 2:06:01 AM <Pigman168> yea
1/12/2014 2:06:08 AM <dimensionZ> not really a "workaround" per se
1/12/2014 2:06:20 AM <Pigman168> i was thinking of something like the lore animation in the irc
1/12/2014 2:06:31 AM <Pigman168> it would require a very quick bot
1/12/2014 2:06:46 AM <dimensionZ> irc lore ?
1/12/2014 2:06:51 AM <Pigman168> irc messages
1/12/2014 2:06:55 AM <dimensionZ> right
1/12/2014 2:06:57 AM <Pigman168> that fill the screen
1/12/2014 2:06:59 AM <dimensionZ> problem is
1/12/2014 2:07:02 AM <dimensionZ> Pigman168]: mcmonkey: is it possible to change already chatted messages?
1/12/2014 2:07:02 AM <dimensionZ> [11:00:08] [@mcmonkey]: Pigman168: in IRC? No.
1/12/2014 2:07:04 AM <dimensionZ> woops
1/12/2014 2:07:10 AM <dimensionZ> you dont know how much buffer the clcient has
1/12/2014 2:07:18 AM <Pigman168> ?
1/12/2014 2:07:25 AM <dimensionZ> you'd have to fill quite a bit
1/12/2014 2:07:30 AM <dimensionZ> and there's plenty of tools
1/12/2014 2:07:31 AM <Pigman168> yup
1/12/2014 2:07:34 AM <dimensionZ> for exemple, when i am not looking
1/12/2014 2:07:37 AM * +spazzmatic quit.
1/12/2014 2:07:41 AM <dimensionZ> it will mark the last place i've read
1/12/2014 2:07:49 AM <Pigman168> oh, thats cool
1/12/2014 2:07:54 AM <dimensionZ> usefull sometimes
1/12/2014 2:08:00 AM <Pigman168> yup
1/12/2014 2:08:03 AM <+Morphan1> what the
1/12/2014 2:08:06 AM <@mcmonkey> Any half-well-made IRC client should do that
1/12/2014 2:08:15 AM <dimensionZ> any, really :P
1/12/2014 2:08:17 AM <@mcmonkey> Pigman168: still using webchat? D:
1/12/2014 2:08:23 AM <Pigman168> i will not fall to your peer pressure :P
1/12/2014 2:08:25 AM <dimensionZ> you know what , iirc
1/12/2014 2:08:30 AM <dimensionZ> that web chat used to do it
1/12/2014 2:08:35 AM <+Morphan1> mcmonkey
1/12/2014 2:08:39 AM <@mcmonkey> Morphan1
1/12/2014 2:08:47 AM <+Morphan1> mcmonkey, you know what I'm using
1/12/2014 2:08:48 AM <+Morphan1> why bother
1/12/2014 2:09:03 AM <dimensionZ> i'm using the same exact software i was using 12 years ago
1/12/2014 2:09:07 AM <@mcmonkey> Morphan1: making sure you're not crazy enough to change
1/12/2014 2:09:07 AM <dimensionZ> so yeah
1/12/2014 2:09:20 AM <+Morphan1> mcmonkey, like my message though? ;D
1/12/2014 2:09:22 AM * BlackCoyote joined.
1/12/2014 2:09:28 AM <+Morphan1> Morphan1
1/12/2014 2:09:29 AM <@mcmonkey> Morphan1: Your message is gone
1/12/2014 2:09:34 AM <+Morphan1> WHAT
1/12/2014 2:09:34 AM <BlackCoyote> ello
1/12/2014 2:09:38 AM <@mcmonkey> [02:08:35] >Morphan1< CTCP VERSION
1/12/2014 2:09:38 AM <@mcmonkey> [02:08:35] -Morphan1- VERSION HexChat 2.9.5 [x64] / Windows 8 [2.49GHz]
1/12/2014 2:09:44 AM <+Morphan1> nurrrrrr
1/12/2014 2:09:48 AM <BlackCoyote> !tag selected
1/12/2014 2:09:48 AM <@monkeybot> I found 2 matches...
1/12/2014 2:09:48 AM <@monkeybot> [email protected]_npc, server.selected_npc.
1/12/2014 2:10:03 AM <@mcmonkey> ... actually
1/12/2014 2:10:05 AM <@mcmonkey> You know what
1/12/2014 2:10:11 AM <@mcmonkey> Pigman168: I'm fine with you using webchat
1/12/2014 2:10:13 AM * ChanServ gave voice to +BlackCoyote.
1/12/2014 2:10:13 AM <monnierant> am i the only one that have a java.lang.NoClassDefFoundError for the latest build of denizen ?
1/12/2014 2:10:17 AM <Pigman168> BlackCoyote: monkeybot went down = i couldnt send the message
1/12/2014 2:10:18 AM <@mcmonkey> You're on a mac you don't have any good IRC clients
1/12/2014 2:10:24 AM <Pigman168> BlackCoyote: i remembered though
1/12/2014 2:10:24 AM <@mcmonkey> BlackCoyote has no excuse
1/12/2014 2:10:25 AM <+BlackCoyote> Pigman168: derp :D
1/12/2014 2:10:28 AM <@mcmonkey> for webchat on windows
1/12/2014 2:10:33 AM <+BlackCoyote> stupid of me to ask
1/12/2014 2:10:36 AM <@mcmonkey> monnierant: update Citizens
1/12/2014 2:10:44 AM <@mcmonkey> to latest dev as well
1/12/2014 2:10:53 AM <monnierant> thanks mcmonkey i will check that
1/12/2014 2:10:58 AM <+BlackCoyote> brb!
1/12/2014 2:11:07 AM <Pigman168> BlackCoyote: dont worry
1/12/2014 2:11:33 AM <Pigman168> !savelog
1/12/2014 2:11:33 AM <@monkeybot> I have saved a copy of this channel's recent logs to http://mcmonkey4eva.dyndns.org/paste/1266
1/12/2014 2:11:52 AM <Pigman168> mcmonkey: how far back does monkeylog go?
1/12/2014 2:12:08 AM <@mcmonkey> Pigman168: we discussed this before
1/12/2014 2:12:20 AM <@mcmonkey> Pigman168: monkeylog is my private logging bot, only I can read his output
1/12/2014 2:12:25 AM <Pigman168> can you check for this: <Pigman168> !msg BlackCoyote ?
1/12/2014 2:12:37 AM <Pigman168> without the "?"
1/12/2014 2:12:47 AM <@mcmonkey> Pigman168: monkeybot records since monkeybot joined or last 200KB
1/12/2014 2:12:55 AM <@mcmonkey> Pigman168: My own client has full logs though
1/12/2014 2:13:00 AM <@mcmonkey> Pigman168: if you want me to find that, gimme a date
1/12/2014 2:13:03 AM <@mcmonkey> Today, yesterday, ...?
1/12/2014 2:13:07 AM <Pigman168> yesterday
1/12/2014 2:14:09 AM <@mcmonkey> Pigman168: Not logged in #denizen-dev anywhere between January 10 at 6 PM PST and now
1/12/2014 2:14:52 AM <Pigman168> its january 12 here, so that might be the issue
1/12/2014 2:15:06 AM <@mcmonkey> Pigman168: It's J-12 here too
1/12/2014 2:15:12 AM <@mcmonkey> Pigman168: aha, found it in monkeylog's log actually
1/12/2014 2:15:15 AM <+Morphan1> mcmonkey, do it again
1/12/2014 2:15:22 AM <@mcmonkey> sent while monkeybot was down
1/12/2014 2:15:24 AM <+Morphan1> I might need to compile my own HexChat :P
1/12/2014 2:15:24 AM <@mcmonkey> Morphan1: do what
1/12/2014 2:15:29 AM <+Morphan1> mcmonkey, version
1/12/2014 2:15:34 AM <@mcmonkey> Sat Jan 11 12:06:24 EST 2014: :[email protected] PRIVMSG #denizen-dev :!msg BlackCoyote Reminder! Check for tag returning selected player ID. |||| My advice: <player.selected_npc> works and returns the ID of the npc. Add .name to get the name.
1/12/2014 2:15:36 AM <@mcmonkey> Pigman168: ^
1/12/2014 2:15:44 AM <Pigman168> yes thats it thank you!
1/12/2014 2:15:56 AM <@mcmonkey> [02:15:49] >Morphan1< CTCP VERSION
1/12/2014 2:15:56 AM <@mcmonkey> [02:15:49] -Morphan1- VERSION HexChat 2.9.5 [x64] / Windows 8 [2.49GHz]
1/12/2014 2:15:56 AM <@mcmonkey> [02:15:50] -Morphan1- VERSION MorphanChat v0.2 [x86] / Windows 13 [4.99GHz]
1/12/2014 2:15:57 AM <+BlackCoyote> yeah thanks
1/12/2014 2:15:57 AM <@mcmonkey> Morphan1: ^
1/12/2014 2:15:58 AM <Pigman168> also i know that monkeylog is your personal log, thats why i asked :P
1/12/2014 2:16:07 AM <+Morphan1> I can't get rid of the first line without compiling a new HexChat
1/12/2014 2:16:19 AM <+Morphan1> Which I think I might just do
1/12/2014 2:16:21 AM <@mcmonkey> Pigman168: should've specified that it was from when monkeybot was dead
1/12/2014 2:16:23 AM <+BlackCoyote> when monkeybot dropped all i had left was spazzmatic and that only told me of server.selected_npc
1/12/2014 2:16:27 AM <+Morphan1> just for that, and various other things
1/12/2014 2:16:43 AM <Pigman168> BlackCoyote:
1/12/2014 2:16:46 AM <Pigman168> Sat Jan 11 12:06:24 EST 2014: :[email protected] PRIVMSG #denizen-dev :!msg BlackCoyote Reminder! Check for tag returning selected player ID. |||| My advice: <player.selected_npc> works and returns the ID of the npc. Add .name to get the name.
1/12/2014 2:16:56 AM <@mcmonkey> BlackCoyote: in theory, spazz just reads monkeybot's results
1/12/2014 2:16:57 AM <+BlackCoyote> (facepalm)
1/12/2014 2:16:59 AM * gabizou|away renamed to gabizou
1/12/2014 2:17:03 AM <Pigman168> i tried :D
1/12/2014 2:17:04 AM <+BlackCoyote> i've been here the entire time pig
1/12/2014 2:17:05 AM <+BlackCoyote> :D
1/12/2014 2:17:06 AM <@mcmonkey> BlackCoyote: (monkeybot's website remains up even when monkeybot discos)
1/12/2014 2:17:09 AM <Pigman168> oh ok
1/12/2014 2:17:14 AM <+Morphan1> mcmonkey, sometimes it won't print all the tags on backup
1/12/2014 2:17:19 AM <+Morphan1> which is odd
1/12/2014 2:17:21 AM <Pigman168> BlackCoyote: you didnt say you were back so i thought you were still gone
1/12/2014 2:17:23 AM <+Morphan1> it prints a few
1/12/2014 2:17:26 AM <+BlackCoyote> :p
1/12/2014 2:17:28 AM <@mcmonkey> BlackCoyote: You know you can just use my website to search, right?
1/12/2014 2:17:38 AM <+BlackCoyote> yeah but, i was heading off
1/12/2014 2:17:38 AM <Pigman168> true
1/12/2014 2:17:53 AM <+BlackCoyote> and wanted a quick reminder of where i left
1/12/2014 2:17:58 AM <+BlackCoyote> saul goodman
1/12/2014 2:18:27 AM <monnierant> ho realy strange i have citizen that say me it is not compatible with my version of minecraft
1/12/2014 2:18:50 AM <Pigman168> versions?
1/12/2014 2:18:51 AM * gabizou renamed to gabizou|away
1/12/2014 2:18:54 AM <monnierant> could it be because we are on spigot ?
1/12/2014 2:18:56 AM <+Morphan1> monnierant, are you using spigot?
1/12/2014 2:18:57 AM <+Morphan1> yeah
1/12/2014 2:19:05 AM <@mcmonkey> monnierant: spigot should be fine
1/12/2014 2:19:07 AM <+Morphan1> change your config.yml settings
1/12/2014 2:19:13 AM <@mcmonkey> Morphan1: nuuu
1/12/2014 2:19:21 AM <monnierant> This server is running CraftBukkit version git-Spigot-1232 (MC: 1.7.2) (Implementing API version 1.7.2-R0.3-SNAPSHOT)
1/12/2014 2:19:26 AM <+Morphan1> should be something like version-check
1/12/2014 2:19:55 AM <@mcmonkey> Morphan1: nu
1/12/2014 2:19:57 AM <@mcmonkey> Morphan1: is not relevant
1/12/2014 2:20:01 AM <Pigman168> mcmonkey: is there a way to check if an item dropped in general / if a plugin destroyed a block?
1/12/2014 2:20:06 AM <+Morphan1> mcmonkey, it is relevant
1/12/2014 2:20:08 AM <monnierant> config.yml of denizen, citizen or bukit ?
1/12/2014 2:20:14 AM <@mcmonkey> Morphan1: I run a spigot server. It's not relevant
1/12/2014 2:20:17 AM <@mcmonkey> monnierant: ignore Morpho
1/12/2014 2:20:18 AM <Pigman168> !events all
1/12/2014 2:20:18 AM <@monkeybot> A list of all events is available here- http://mcmonkey4eva.dyndns.org/evts 
1/12/2014 2:20:28 AM <+Morphan1> mcmonkey, then what else is it?
1/12/2014 2:20:29 AM <@mcmonkey> monnierant: pastebin your startup log
1/12/2014 2:20:59 AM <monnierant> http://paste.ehck.fr/?7bed4994bca730c0#m7fMdamQuHRtK66ajoPJN+QH4vyVvMaglGR/bDcuHaU=
1/12/2014 2:21:02 AM <@monkeybot> Title --> ehck.fr - ZeroBin
1/12/2014 2:21:02 AM <@mcmonkey> Morphan1: taking a random guess, I think he might have accidentally gotten C1 instead of C2
1/12/2014 2:21:10 AM <monnierant> thanks a lot mcmonkey for your help
1/12/2014 2:21:46 AM <Pigman168> mcmonkey: ?
1/12/2014 2:21:51 AM <@mcmonkey> Citizen: status Citizens
1/12/2014 2:21:52 AM <+Citizen> Citizens: last build: 112 (13 days ago): SUCCESS: http://ci.citizensnpcs.co/job/Citizens/112/
1/12/2014 2:21:52 AM <@monkeybot> Title --> Cit.izens #112 [Jenkins]
1/12/2014 2:21:57 AM <@mcmonkey> Citizen: status Citizens2
1/12/2014 2:21:57 AM <+Citizen> Citizens2: last build: 1049 (5 hr 19 min ago): SUCCESS: http://ci.citizensnpcs.co/job/Citizens2/1049/
1/12/2014 2:21:57 AM <@monkeybot> Title --> Cit.izens2 #1049 [Jenkins]
1/12/2014 2:22:03 AM <@mcmonkey> monnierant: ^ get that #1049
1/12/2014 2:22:07 AM <+Morphan1> mcmonkey, OH, Citizen checks Bukkit version, not server version
1/12/2014 2:22:11 AM <+Morphan1> *s
1/12/2014 2:22:16 AM <@mcmonkey> monnierant: you managed to *downgrade* C2 somehow, instead of update
1/12/2014 2:22:43 AM <monnierant> great i rox a lot
1/12/2014 2:22:55 AM <monnierant> i put the good version in server
1/12/2014 2:23:03 AM <+Morphan1> mcmonkey, you run Spigot?
1/12/2014 2:23:04 AM <monnierant> thanks a lot for your help i will check all of this
1/12/2014 2:23:13 AM <@mcmonkey> Morphan1: My public server is Spigot
1/12/2014 2:23:19 AM <@mcmonkey> private/tester is CB
1/12/2014 2:23:31 AM <+Morphan1> mcmonkey, public meaning... the one I go on?
1/12/2014 2:23:38 AM <@mcmonkey> Morphan1: You can't run a large scale server without Spigot; spigot optimizes so much shit
1/12/2014 2:23:40 AM <@mcmonkey> Morphan1: yeah
1/12/2014 2:23:43 AM <+Morphan1> ew
1/12/2014 2:23:54 AM <@mcmonkey> Morphan1: CB is the 'ew' most of the time
1/12/2014 2:24:03 AM <@mcmonkey> CB drops clients on save-all
1/12/2014 2:24:05 AM <@mcmonkey> Spigot does not
1/12/2014 2:24:32 AM <+Morphan1> mcmonkey, CB has a lot of issues, but I still prefer it :P
1/12/2014 2:24:54 AM <+Morphan1> kind of like how before today, I loved Eclipse
1/12/2014 2:25:02 AM <@mcmonkey> mhhhhmmmmm
1/12/2014 2:27:30 AM <Pigman168> mcmonkey: 1. is there a way to check if an item dropped in general / if a plugin destroyed a block? 2. have you seen mr. mackeys parents?
1/12/2014 2:28:24 AM <@mcmonkey>  * mcmonkey is away
1/12/2014 2:28:31 AM <monnierant> perfect it work (i dont' refresh my filezilla so i upload an old version well done) thanks a lot again keep going with this nice spirit and be so helpfull and kindly. And keep making so good stuff
1/12/2014 2:28:53 AM <+BlackCoyote> !update
1/12/2014 2:28:53 AM <@monkeybot> Due to the nature of our project, Denizen is always built against the development builds of Craftbukkit and Citizens.
1/12/2014 2:28:53 AM <@monkeybot> Most errors can be fixed by updating all 3.
1/12/2014 2:28:53 AM <@monkeybot> Denizen- http://ci.citizensnpcs.co/job/Denizen/lastSuccessfulBuild
1/12/2014 2:28:53 AM <@monkeybot> Citizens- http://ci.citizensnpcs.co/job/Citizens2/lastSuccessfulBuild
1/12/2014 2:28:53 AM <@monkeybot> Craftbukkit- http://dl.bukkit.org/downloads/craftbukkit/
1/12/2014 2:29:05 AM <Pigman168> BlackCoyote: do i ask too many questions?
1/12/2014 2:29:24 AM <+BlackCoyote>  * BlackCoyote is away
1/12/2014 2:29:47 AM <+BlackCoyote> just kidding :)
1/12/2014 2:30:01 AM <Pigman168> do i?
1/12/2014 2:30:20 AM <+BlackCoyote> i dont think so
1/12/2014 2:30:58 AM <Pigman168> honestly
1/12/2014 2:31:14 AM <+BlackCoyote> i dont think so
1/12/2014 2:31:16 AM <+BlackCoyote> !tag server
1/12/2014 2:31:16 AM <@monkeybot> I found 20 matches...
1/12/2014 2:31:34 AM <+BlackCoyote> wooot
1/12/2014 2:31:37 AM <+BlackCoyote> server.has_file
1/12/2014 2:31:40 AM <+BlackCoyote> <3
1/12/2014 2:32:14 AM <Pigman168> o.O awesome!
1/12/2014 2:32:20 AM <Pigman168> !tag has_file
1/12/2014 2:32:20 AM <@monkeybot> Found: <server.has_file[<name>]>, which returns a Element(Boolean)
1/12/2014 2:32:20 AM <@monkeybot>   Returns true if the specified file exists. The starting path is /plugins/Denizen.
1/12/2014 2:35:26 AM <+BlackCoyote> !cmd npc
1/12/2014 2:35:26 AM <@monkeybot> That command doesn't seem to exist.
1/12/2014 2:35:31 AM <+BlackCoyote> !cmd all
1/12/2014 2:35:31 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, 
1/12/2014 2:35:31 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, resume, playeffect, playsound, permission, pose, push, queue, random, remove, rename, repeat, reset, rotate, run, runtask, schematic, scoreboard, scribe, shoot, showfake, 
1/12/2014 2:35:31 AM <@monkeybot> sign, sit, spawn, stand, strike, switch, take, teleport, time, trait, trigger, viewer, vulnerable, wait, walk, walkto, weather, yaml, zap
1/12/2014 2:36:33 AM <+BlackCoyote> !tag selected
1/12/2014 2:36:33 AM <@monkeybot> I found 2 matches...
1/12/2014 2:36:33 AM <@monkeybot> [email protected]_npc, server.selected_npc.
1/12/2014 2:37:50 AM <+fullwall> mcmonkey / Morphan1: https://dl.dropboxusercontent.com/u/6701575/out.mp4 NPC climbing up ladder (not perfect yet)
1/12/2014 2:38:19 AM <+Morphan1> fullwall, audio-only?
1/12/2014 2:38:31 AM <+fullwall> ?
1/12/2014 2:38:39 AM <+fullwall> should have video
1/12/2014 2:38:43 AM <+Morphan1> I see no video
1/12/2014 2:38:45 AM <+fullwall> o.O
1/12/2014 2:38:51 AM <+fullwall> brb in 30 mins
1/12/2014 2:39:30 AM <+Morphan1> fullwall, nevermind, Chrome was being dumb
1/12/2014 2:39:35 AM <+Morphan1> downloaded it
1/12/2014 2:40:18 AM <+Morphan1> and yes
1/12/2014 2:40:19 AM <+Morphan1> just yes
1/12/2014 2:41:48 AM <Pigman168> mcmonkey: you there?
1/12/2014 2:45:37 AM * afk1ce renamed to `1cec0ld
1/12/2014 2:49:37 AM <+BlackCoyote> !script http://hastebin.com/gavoworemo.xml
1/12/2014 2:49:37 AM <@monkeybot> I encountered 1 potential problem with that script.
1/12/2014 2:49:37 AM <@monkeybot>   (1) WARNING: Line 71: Spacing grew for no reason!
1/12/2014 2:50:00 AM <+BlackCoyote> oh wow
1/12/2014 2:50:01 AM <+BlackCoyote> i'm an idiot
1/12/2014 2:52:27 AM <+Morphan1> we know
1/12/2014 2:56:55 AM <+BlackCoyote> i kill u
1/12/2014 2:58:35 AM <Pigman168> Morphan1: ?
1/12/2014 2:58:43 AM <+Morphan1> Pigman168, ?
1/12/2014 2:58:45 AM <Pigman168> can you code html?
1/12/2014 2:58:47 AM <+Morphan1> yes
1/12/2014 2:59:02 AM <+Morphan1> that was my first language
1/12/2014 2:59:23 AM <Pigman168> im trying to make a yaml that ignores the html but also so that the html ignores part of the yaml
1/12/2014 2:59:31 AM <Pigman168> its kinda confusing
1/12/2014 2:59:45 AM <+Morphan1> o.O
1/12/2014 2:59:56 AM <Pigman168> i can use the # to have the html ignored but the problem is that the html then doesnt work
1/12/2014 2:59:57 AM <+BlackCoyote> !script http://hastebin.com/sonefucepu.xml
1/12/2014 2:59:58 AM <@monkeybot> I encountered 6 potential problems with that script.
1/12/2014 2:59:58 AM <@monkeybot>   (1) WARNING: Line 156: Category unexpected, still in an IF {..} section!
1/12/2014 2:59:58 AM <@monkeybot>   (2) WARNING: Line 158: Category unexpected, still in an IF {..} section!
1/12/2014 2:59:58 AM <@monkeybot>   (3) WARNING: Line 160: Category unexpected, still in an IF {..} section!
1/12/2014 2:59:58 AM <@monkeybot>   (4) WARNING: Line 162: Category unexpected, still in an IF {..} section!
1/12/2014 2:59:58 AM <@monkeybot>   (5) WARNING: Line 164: Spacing is shorter than the current braced {..} section!
1/12/2014 2:59:58 AM <@monkeybot>   (6) WARNING: Line 169: Unended braced { ... section - missing a }
1/12/2014 3:00:17 AM <Pigman168> do you see what i mean?
1/12/2014 3:00:21 AM <+Morphan1> because # is for comments, yeah
1/12/2014 3:00:25 AM <Pigman168> yea
1/12/2014 3:00:26 AM <+Morphan1> in both languages
1/12/2014 3:00:59 AM <Pigman168> so how would i go about making a website that is yaml readable?
1/12/2014 3:01:02 AM <+BlackCoyote> !script http://hastebin.com/mofexiqesa.xml
1/12/2014 3:01:02 AM <@monkeybot> I encountered 6 potential problems with that script.
1/12/2014 3:01:02 AM <@monkeybot>   (1) WARNING: Line 152: Category unexpected, still in an IF {..} section!
1/12/2014 3:01:02 AM <@monkeybot>   (2) WARNING: Line 154: Category unexpected, still in an IF {..} section!
1/12/2014 3:01:02 AM <@monkeybot>   (3) WARNING: Line 156: Category unexpected, still in an IF {..} section!
1/12/2014 3:01:02 AM <@monkeybot>   (4) WARNING: Line 158: Category unexpected, still in an IF {..} section!
1/12/2014 3:01:02 AM <@monkeybot>   (5) WARNING: Line 160: Spacing is shorter than the current braced {..} section!
1/12/2014 3:01:02 AM <@monkeybot>   (6) WARNING: Line 165: Unended braced { ... section - missing a }
1/12/2014 3:01:08 AM <+BlackCoyote> o_o
1/12/2014 3:01:18 AM <+BlackCoyote> this script works flawlessl
1/12/2014 3:01:19 AM <+BlackCoyote> y
1/12/2014 3:01:25 AM <+BlackCoyote> why is it saying this
1/12/2014 3:01:51 AM <+Morphan1> BlackCoyote, as mcmonkey says, "It's a WARNING, not an ERROR" so you're good if it works
1/12/2014 3:02:25 AM <+Morphan1> Pigman168, yaml readable?...
1/12/2014 3:02:30 AM <Pigman168> via denizen
1/12/2014 3:02:44 AM <Pigman168> it gives me errors if i put in html
1/12/2014 3:03:00 AM <+BlackCoyote> !script http://hastebin.com/cuxokoneme.xml
1/12/2014 3:03:01 AM <@monkeybot> Your script seems valid to me.
1/12/2014 3:03:12 AM <+BlackCoyote> Morphan1: it was right though, i did forget a bracket
1/12/2014 3:03:18 AM <+Morphan1> Pigman168, could you show me an example of what you're trying to do?
1/12/2014 3:03:26 AM <+BlackCoyote> but it worked with no issues without it
1/12/2014 3:03:28 AM <+BlackCoyote> heh
1/12/2014 3:03:36 AM <+Morphan1> o.O okay theem
1/12/2014 3:03:36 AM <Pigman168> Morphan1: yup one second
1/12/2014 3:03:38 AM <+Morphan1> *then
1/12/2014 3:04:25 AM <Pigman168> http://hastebin.com/logegagere.xml
1/12/2014 3:04:27 AM <Pigman168> Morphan1: ^
1/12/2014 3:04:31 AM <+BlackCoyote> probably because i clear queue instead of letting it continue to the else
1/12/2014 3:05:51 AM <+Morphan1> Pigman168, ...so you're trying to display YAML on a HTML page?
1/12/2014 3:05:54 AM <tstom0> Might want to add a doctype btw
1/12/2014 3:06:06 AM <+Morphan1> tstom0, HTML5 doesn't care
1/12/2014 3:06:09 AM <Pigman168> if its not html i cant use it
1/12/2014 3:06:27 AM <tstom0> what about ie though :P does that also default it?
1/12/2014 3:06:28 AM <Pigman168> Morphan1: but yea thats basically what im trying
1/12/2014 3:07:03 AM <+Morphan1> tstom0, yeah, no normal browser should care
1/12/2014 3:07:15 AM <+BlackCoyote> !tag has_file
1/12/2014 3:07:15 AM <@monkeybot> Found: <server.has_file[<name>]>, which returns a Element(Boolean)
1/12/2014 3:07:15 AM <@monkeybot>   Returns true if the specified file exists. The starting path is /plugins/Denizen.
1/12/2014 3:07:17 AM <+Morphan1> not that ie is normal
1/12/2014 3:07:21 AM <tstom0> haha
1/12/2014 3:07:34 AM <+Morphan1> BlackCoyote, oh I added that
1/12/2014 3:07:39 AM <+BlackCoyote> :3
1/12/2014 3:07:46 AM <Pigman168> thanks!
1/12/2014 3:07:49 AM <Pigman168> great idea!
1/12/2014 3:07:51 AM <+BlackCoyote> i was hoping it was that when i read 'added new server tags' on the update
1/12/2014 3:08:06 AM <+BlackCoyote> !cmd yaml
1/12/2014 3:08:06 AM <@monkeybot> yaml: Edits a YAML configuration file.
1/12/2014 3:08:06 AM <@monkeybot> Syntax: - yaml [create]/[load:<file>]/[savefile:<file>]/[write:<key>]/[write:<key> value:<value> (split_list)] [id:<name>]
1/12/2014 3:08:15 AM <Pigman168> that way you can check for essentials users
1/12/2014 3:08:30 AM <tstom0> I remember the old xhtml doctypes :P never again thank god
1/12/2014 3:09:59 AM <Pigman168> Morphan1: any ideas on how i could do that?
1/12/2014 3:10:18 AM <Pigman168> also what is the split_list option for?
1/12/2014 3:10:21 AM <+Morphan1> Pigman168, I'm not quite sure on what exactly you want do with that
1/12/2014 3:10:26 AM <tstom0> whats wrong with using #?
1/12/2014 3:10:34 AM <Pigman168> html messes up
1/12/2014 3:10:44 AM <+Morphan1> *to do
1/12/2014 3:10:58 AM <tstom0> you should add them then remove them later with javascript
1/12/2014 3:11:06 AM <tstom0> window.load
1/12/2014 3:11:08 AM <+Morphan1> and split_list splits a value:<list>
1/12/2014 3:11:11 AM <+Morphan1> into Yaml lists
1/12/2014 3:11:17 AM <Pigman168> ah nice!
1/12/2014 3:12:01 AM <Pigman168> im trying to make a website that uses iframe to get information about the players / leaderboard / server
1/12/2014 3:12:14 AM <Pigman168> which is uploaded by misusing dynmap
1/12/2014 3:12:45 AM <tstom0> why is the iframe necessary?
1/12/2014 3:12:56 AM <Pigman168> how else would i get the info?
1/12/2014 3:13:20 AM <tstom0> so you create a file and misuse dynmap to upload it?
1/12/2014 3:13:26 AM <Pigman168> yup
1/12/2014 3:13:51 AM <tstom0> where does dynmap upload it to
1/12/2014 3:14:21 AM <Pigman168> 0.0.0.0:myport
1/12/2014 3:14:28 AM <Pigman168> i can change the ip too
1/12/2014 3:14:46 AM <Pigman168> oh and then /filename.file_extension
1/12/2014 3:14:47 AM <tstom0> does it get uploaded to your webserver?
1/12/2014 3:15:09 AM <Pigman168> which webserver?
1/12/2014 3:15:22 AM <tstom0> where your website is located
1/12/2014 3:15:34 AM <Pigman168> no, it doesnt
1/12/2014 3:17:03 AM <tstom0> is your webserver an apache server?
1/12/2014 3:17:54 AM <Pigman168> im completely new to webhosting, assume i know as much as an average person
1/12/2014 3:19:08 AM <+Morphan1> I think... JavaScript would be better than embedding the document directly, if I understand what you'e trying to do
1/12/2014 3:19:20 AM <+Morphan1> you're*
1/12/2014 3:19:30 AM <Pigman168> how would i do that?
1/12/2014 3:19:38 AM <Pigman168> does that work with yaml?
1/12/2014 3:19:48 AM <tstom0> http://www.hastebin.com/noberuxumo.xml
1/12/2014 3:19:49 AM <+Morphan1> I'm trying to think
1/12/2014 3:19:53 AM <tstom0> thats what I would do
1/12/2014 3:20:03 AM <tstom0> I would use javascript to retrieve the page
1/12/2014 3:20:03 AM <Pigman168> because if its not a fully valid yaml file it wont be able to read it
1/12/2014 3:20:15 AM <tstom0> but it doesnt work cross server
1/12/2014 3:20:33 AM <Pigman168> cross server?
1/12/2014 3:20:39 AM <tstom0> domain*
1/12/2014 3:20:46 AM <tstom0> if you use ajax to retrieve the page
1/12/2014 3:20:52 AM <tstom0> but if you use php first it works
1/12/2014 3:21:05 AM <Pigman168> thats not html now is it :D
1/12/2014 3:21:06 AM <tstom0> I can modify that so when it loads it removes all the # located in it
1/12/2014 3:21:14 AM <tstom0> thats php and javascript and html :P
1/12/2014 3:21:35 AM <+Morphan1> I never used PHP, or fully understood it
1/12/2014 3:21:37 AM <Pigman168> that would be nice if you could do that
1/12/2014 3:21:39 AM <+Morphan1> I know it's "safer" but
1/12/2014 3:22:05 AM <+Morphan1> JS made more sense
1/12/2014 3:22:06 AM <+Morphan1> :P
1/12/2014 3:22:12 AM <Pigman168> tstom0: you said you could retrieve an element
1/12/2014 3:22:16 AM <Pigman168> what kind?
1/12/2014 3:22:27 AM <tstom0> that script I put above retrieves the whole page
1/12/2014 3:22:33 AM <tstom0> but I can strip it down using javascript
1/12/2014 3:22:36 AM <tstom0> and remove your # comments
1/12/2014 3:22:38 AM <Pigman168> ah ok
1/12/2014 3:22:49 AM <Pigman168> well i would be very thankful if you did
1/12/2014 3:22:55 AM <tstom0> doing that now :P
1/12/2014 3:22:57 AM <tstom0> gimme a min
1/12/2014 3:23:02 AM <Pigman168> thanks a lot!
1/12/2014 3:24:56 AM <Pigman168> if it helps ill make any script for you in return
1/12/2014 3:25:14 AM <Pigman168> within 1500 lines
1/12/2014 3:25:40 AM <tstom0> paste what you are uploading through dynmap
1/12/2014 3:25:45 AM <tstom0> with the comments and all
1/12/2014 3:25:55 AM * Daniel_ joined.
1/12/2014 3:26:03 AM <Daniel_> !tags
1/12/2014 3:26:03 AM <@monkeybot> That command is written as !tags <the start of the tag or just 'all'>
1/12/2014 3:26:06 AM <Daniel_> !tags all
1/12/2014 3:26:06 AM <@monkeybot> A list of all tags is available here- http://mcmonkey4eva.dyndns.org/tags
1/12/2014 3:26:15 AM <Pigman168> yup
1/12/2014 3:26:18 AM <Pigman168> one sec
1/12/2014 3:27:55 AM <+BlackCoyote> !cmd yaml
1/12/2014 3:27:55 AM <@monkeybot> yaml: Edits a YAML configuration file.
1/12/2014 3:27:55 AM <@monkeybot> Syntax: - yaml [create]/[load:<file>]/[savefile:<file>]/[write:<key>]/[write:<key> value:<value> (split_list)] [id:<name>]
1/12/2014 3:28:33 AM <tstom0> I think this would work http://www.hastebin.com/yeturusifo.xml
1/12/2014 3:28:54 AM <Pigman168> http://hastebin.com/tosodutace.xml
1/12/2014 3:29:55 AM <+BlackCoyote> Morphan1: why does this spit my screen full with errors? D: http://hastebin.com/wabosuxuci.sm
1/12/2014 3:29:56 AM <+BlackCoyote> :script http://hastebin.com/wabosuxuci.sm
1/12/2014 3:29:59 AM <+BlackCoyote> !script http://hastebin.com/wabosuxuci.sm
1/12/2014 3:29:59 AM <@monkeybot> Your script seems valid to me.
1/12/2014 3:30:14 AM <tstom0> http://www.hastebin.com/dobiwecoce.xml
1/12/2014 3:30:40 AM <+Morphan1> BlackCoyote, what errors?
1/12/2014 3:31:07 AM <+BlackCoyote> http://hastebin.com/rubapihuvi.rb
1/12/2014 3:31:08 AM <+BlackCoyote> those
1/12/2014 3:31:34 AM <Pigman168> thanks tstom0 ill try it
1/12/2014 3:31:46 AM <+BlackCoyote> oh my
1/12/2014 3:31:48 AM <+BlackCoyote> woah
1/12/2014 3:31:49 AM <+Morphan1> BlackCoyote, probably because you're using Create
1/12/2014 3:31:50 AM <+BlackCoyote> Morphan1:
1/12/2014 3:31:52 AM <+BlackCoyote> yeah
1/12/2014 3:31:54 AM <+BlackCoyote> i dont even
1/12/2014 3:31:55 AM <+BlackCoyote> i
1/12/2014 3:31:56 AM <+BlackCoyote> what
1/12/2014 3:31:57 AM <+BlackCoyote> wow
1/12/2014 3:31:58 AM <+Morphan1> lol
1/12/2014 3:32:20 AM <+BlackCoyote> worst part is i don't even have an excuse
1/12/2014 3:32:56 AM <+Morphan1> you could say like
1/12/2014 3:33:11 AM <+Morphan1> "my 2 year old cousin's nephew coded that"
1/12/2014 3:33:42 AM <+BlackCoyote> oh yah
1/12/2014 3:33:55 AM <+BlackCoyote> thanks
1/12/2014 3:34:14 AM <+BlackCoyote>  - yaml create id:yamltest
1/12/2014 3:34:17 AM <+BlackCoyote> am i forgetting something?
1/12/2014 3:34:33 AM <+BlackCoyote> or
1/12/2014 3:34:33 AM <+BlackCoyote> nvm
1/12/2014 3:34:39 AM <+BlackCoyote> it's not supposed to show up untill i save it
1/12/2014 3:34:42 AM <+BlackCoyote> i really
1/12/2014 3:34:47 AM <+BlackCoyote> am being extremely stupid today
1/12/2014 3:34:58 AM <+Morphan1> [06:34:40] <BlackCoyote> it's not supposed to show up untill i save it
1/12/2014 3:34:58 AM <+Morphan1> that
1/12/2014 3:35:13 AM <+Morphan1> I have no defense for you this time
1/12/2014 3:35:40 AM <+BlackCoyote> i'd say it's getting late but it's noon and i've only been up since 9am
1/12/2014 3:36:26 AM <+Morphan1> it's 6:36 here :P
1/12/2014 3:36:48 AM <+BlackCoyote> you goofy americans
1/12/2014 3:37:12 AM <+BlackCoyote> so id: sets the ID of the file in denizen, while it uses it, regardless of the filename, right?
1/12/2014 3:37:12 AM <Pigman168> theyre not just goofy, they crazy
1/12/2014 3:37:48 AM <+Morphan1> BlackCoyote, yes
1/12/2014 3:37:54 AM <+BlackCoyote> okay cool, thanks
1/12/2014 3:38:05 AM <+Morphan1> it's basically like
1/12/2014 3:38:55 AM <+Morphan1> that
1/12/2014 3:39:03 AM <+BlackCoyote> i see
1/12/2014 3:39:10 AM <+Morphan1> I don't know where I was going with that sentence
1/12/2014 3:39:11 AM <+Morphan1> I typed it
1/12/2014 3:39:12 AM <+Morphan1> and was like
1/12/2014 3:39:15 AM <+Morphan1> "what do I say now?
1/12/2014 3:39:16 AM <+Morphan1> "
1/12/2014 3:39:19 AM <Pigman168> tstom0: the code didnt work, but this is what ive managed to do: http://freerunecraft.wix.com/runecraft
1/12/2014 3:39:19 AM <@monkeybot> Title --> runecraft
1/12/2014 3:39:21 AM <+BlackCoyote> xD
1/12/2014 3:39:27 AM <+BlackCoyote> atleast you have the excuse of it being late
1/12/2014 3:39:47 AM <+BlackCoyote> soooo.. i noticed i forgot to add .yml in the filename, does this mean i can save my file as whatever i want?
1/12/2014 3:39:49 AM <+Morphan1> I woke up at like 9pm yesterday though
1/12/2014 3:39:51 AM <+Morphan1> so
1/12/2014 3:40:00 AM <+BlackCoyote> woah Morphan1
1/12/2014 3:40:03 AM <tstom0> pigman168: Firefox can't establish a connection to the server at 0.0.0.0:8123.? why the 0s?
1/12/2014 3:40:09 AM <tstom0> is your server live
1/12/2014 3:40:12 AM <tstom0> mc server I mean
1/12/2014 3:40:15 AM <Pigman168> yea
1/12/2014 3:40:18 AM <+BlackCoyote> i thought i'd never find someone with a sleeping pattern as messed up as mine
1/12/2014 3:40:33 AM <Pigman168> maybe i should put my own ip in
1/12/2014 3:40:37 AM * NegroBawb joined.
1/12/2014 3:40:39 AM <NegroBawb> shut up
1/12/2014 3:40:41 AM <Pigman168> i gotta go though, ill see you later
1/12/2014 3:40:49 AM <Pigman168> just in time for NegroBawb
1/12/2014 3:40:55 AM <tstom0> cya
1/12/2014 3:41:03 AM <Pigman168> and thanks again
1/12/2014 3:41:04 AM * Pigman168 quit.
1/12/2014 3:41:10 AM <+BlackCoyote> !cmd yaml
1/12/2014 3:41:10 AM <@monkeybot> yaml: Edits a YAML configuration file.
1/12/2014 3:41:10 AM <@monkeybot> Syntax: - yaml [create]/[load:<file>]/[savefile:<file>]/[write:<key>]/[write:<key> value:<value> (split_list)] [id:<name>]
1/12/2014 3:41:15 AM <+Morphan1> NegroBawb, h3100 n008
1/12/2014 3:41:28 AM <+BlackCoyote> !cmd yaml u
1/12/2014 3:41:28 AM <@monkeybot> yaml: Edits a YAML configuration file.
1/12/2014 3:41:28 AM <@monkeybot> Syntax: - yaml [create]/[load:<file>]/[savefile:<file>]/[write:<key>]/[write:<key> value:<value> (split_list)] [id:<name>]
1/12/2014 3:41:28 AM <@monkeybot> Usage: Use to create a new YAML file
1/12/2014 3:41:28 AM <@monkeybot>   - yaml create id:myfile
1/12/2014 3:41:28 AM <@monkeybot> Usage: Use to write to a YAML file
1/12/2014 3:41:28 AM <@monkeybot>   - yaml write:my.key value:myvalue id:myfile
1/12/2014 3:41:28 AM <@monkeybot> Usage: Use to save a YAML file to disk
1/12/2014 3:41:28 AM <@monkeybot>   - yaml savefile:myfile.yml id:myfile
1/12/2014 3:41:28 AM <@monkeybot>  More: http://mcmonkey4eva.dyndns.org/cmds/yaml
1/12/2014 3:41:32 AM <+Morphan1> BlackCoyote, "does this mean i can save my file as whatever i want?"
1/12/2014 3:41:32 AM <+Morphan1> yes
1/12/2014 3:41:38 AM <+BlackCoyote> glory
1/12/2014 3:41:57 AM <+Morphan1> - yaml savefile:WhateverTheF**kIWant.WOOOOOOOOOOOOO
1/12/2014 3:42:04 AM <+BlackCoyote> orgasmic
1/12/2014 3:42:05 AM <+Morphan1> id:key
1/12/2014 3:42:08 AM <+BlackCoyote> xD
1/12/2014 3:42:14 AM <+BlackCoyote> split_list
1/12/2014 3:42:19 AM <+Morphan1> yeah
1/12/2014 3:42:21 AM <+BlackCoyote> does that turn key: value
1/12/2014 3:42:23 AM <+BlackCoyote> into key:
1/12/2014 3:42:24 AM <+BlackCoyote> - value
1/12/2014 3:42:28 AM <+BlackCoyote> - value
1/12/2014 3:42:33 AM <+Morphan1> yes
1/12/2014 3:42:37 AM <+BlackCoyote> bootyful
1/12/2014 3:42:57 AM <+Morphan1> assuming value is li@value|value
1/12/2014 3:43:21 AM <+BlackCoyote> if i write a value to a key
1/12/2014 3:43:23 AM <+BlackCoyote> and do again later
1/12/2014 3:43:27 AM <+BlackCoyote> does it override the old value?
1/12/2014 3:46:01 AM <+BlackCoyote> or can i do like the fancy flag shenanigans with the values too? like value:->:stuff
1/12/2014 3:48:15 AM <+Morphan1> BlackCoyote, yeah it overrides it
1/12/2014 3:48:20 AM <+Citizen> Project CitizensAPI build #402: SUCCESS in 45 sec: http://ci.citizensnpcs.co/job/CitizensAPI/402/
1/12/2014 3:48:21 AM <@monkeybot> Title --> Cit.izensAPI #402 [Jenkins]
1/12/2014 3:48:21 AM <+Citizen> * fullwall: Add new parameters in NavigatorParameters, and better path debugging for A* pathfinder
1/12/2014 3:48:21 AM <+Citizen> * fullwall: Allow NPCs to pathfind up ladders with the new pathfinder
1/12/2014 3:48:39 AM <+BlackCoyote> how would i add a alue to a key
1/12/2014 3:48:41 AM <+BlackCoyote> value*
1/12/2014 3:48:57 AM <+Morphan1> hmm
1/12/2014 3:49:23 AM <+BlackCoyote> !tag value
1/12/2014 3:49:23 AM <@monkeybot> Found: <util.random.element[<value>|...]>, which returns a Element
1/12/2014 3:49:23 AM <@monkeybot>   Returns a random element from a list.
1/12/2014 3:49:28 AM <+BlackCoyote> !tag yaml
1/12/2014 3:49:28 AM <@monkeybot> I found 4 matches...
1/12/2014 3:49:28 AM <@monkeybot> yaml[<id>].contains[<path>], yaml[<id>].read[<path>], yaml[<id>].read[<path>].as_list, yaml[<id>].list_keys[<path>].
1/12/2014 3:49:30 AM <+Morphan1> BlackCoyote, now that I think about it... maybe YAML should use the same system is Flag
1/12/2014 3:49:32 AM <+Citizen> Project Citizens2 build #1050: SUCCESS in 1 min 2 sec: http://ci.citizensnpcs.co/job/Citizens2/1050/
1/12/2014 3:49:33 AM <@monkeybot> Title --> Cit.izens2 #1050 [Jenkins]
1/12/2014 3:49:33 AM <+Citizen> * fullwall: Use new parameter and debug
1/12/2014 3:49:33 AM <+Citizen> * fullwall: Better pathfinding debug
1/12/2014 3:49:41 AM <+BlackCoyote> it would be super duper cool
1/12/2014 3:49:55 AM <+Morphan1> that means no split_list
1/12/2014 3:50:06 AM <+BlackCoyote> i vote for
1/12/2014 3:50:08 AM <+Morphan1> it'll be key:|:value
1/12/2014 3:50:14 AM <+Morphan1> hmm
1/12/2014 3:50:18 AM <+Morphan1> interesting thought
1/12/2014 3:50:50 AM <+BlackCoyote> write playerlist:->:<player.name>
1/12/2014 3:51:26 AM <+Morphan1> yeah
1/12/2014 3:52:08 AM <+BlackCoyote> <yaml[filename]>.key[playerlist]> returns li@player1|player2
1/12/2014 3:52:12 AM <+BlackCoyote> yeee?
1/12/2014 3:52:25 AM <+Morphan1> no
1/12/2014 3:52:26 AM <+BlackCoyote> o
1/12/2014 3:52:27 AM <+Morphan1> BlackCoyote, .as_list
1/12/2014 3:52:30 AM <+BlackCoyote> ohyeh
1/12/2014 3:52:41 AM <+BlackCoyote> im stoopid remember
1/12/2014 3:52:57 AM <+Morphan1> with a capital u, yeah
1/12/2014 3:53:03 AM <+BlackCoyote> :l
1/12/2014 3:53:17 AM <+BlackCoyote> but yeah, i think that would be a cool way to work with the yaml command
1/12/2014 3:53:21 AM <+Morphan1> what I said made no sense, don't :l me
1/12/2014 3:53:31 AM <+Morphan1> hmm
1/12/2014 3:53:51 AM <NegroBawb> why dont you guys shut up
1/12/2014 3:53:56 AM <+Morphan1> BlackCoyote, I'd probably have to add backwards compatibility
1/12/2014 3:53:56 AM <+BlackCoyote> :<
1/12/2014 3:54:01 AM <+BlackCoyote> yeah
1/12/2014 3:54:06 AM <Goma> can you give examples what you could do with the yaml command, right now i am a bit confused what it is for
1/12/2014 3:54:22 AM <+Morphan1> !yaml u Goma@
1/12/2014 3:54:22 AM <@monkeybot> Goma: I don't know how to read that website. Please use http://mcmonkey4eva.dyndns.org/paste
1/12/2014 3:54:24 AM <+BlackCoyote> goma, you can load, create, edit and save any file anywhere on your server
1/12/2014 3:54:28 AM <+Morphan1> oops
1/12/2014 3:54:28 AM <NegroBawb> Its for noobs
1/12/2014 3:54:33 AM <+Morphan1> !cmd yaml u Goma@
1/12/2014 3:54:33 AM <@monkeybot> Goma: yaml: Edits a YAML configuration file.
1/12/2014 3:54:33 AM <@monkeybot> Syntax: - yaml [create]/[load:<file>]/[savefile:<file>]/[write:<key>]/[write:<key> value:<value> (split_list)] [id:<name>]
1/12/2014 3:54:33 AM <@monkeybot> Usage: Use to create a new YAML file
1/12/2014 3:54:33 AM <@monkeybot>   - yaml create id:myfile
1/12/2014 3:54:33 AM <@monkeybot> Usage: Use to write to a YAML file
1/12/2014 3:54:33 AM <@monkeybot>   - yaml write:my.key value:myvalue id:myfile
1/12/2014 3:54:33 AM <@monkeybot> Usage: Use to save a YAML file to disk
1/12/2014 3:54:33 AM <@monkeybot>   - yaml savefile:myfile.yml id:myfile
1/12/2014 3:54:33 AM <@monkeybot>  More: http://mcmonkey4eva.dyndns.org/cmds/yaml
1/12/2014 3:54:35 AM <NegroBawb> Goma: Its a noob command
1/12/2014 3:54:41 AM <+Morphan1> NegroBawb, shush
1/12/2014 3:54:44 AM <NegroBawb> for people who cause embargos
1/12/2014 3:54:49 AM <+BlackCoyote> :<
1/12/2014 3:55:21 AM <Goma> why would i need to write a seperate file when flags etc save in the save.yml anyways
1/12/2014 3:55:37 AM <+BlackCoyote> well personally, with thousands of flags
1/12/2014 3:55:41 AM <+BlackCoyote> i can't touch my savefile anymore
1/12/2014 3:56:06 AM <+Morphan1> Goma, some people have things that need to be stored somwhere besides in flags
1/12/2014 3:56:09 AM <+BlackCoyote> if i'd save each utility script data that replaces a plugin in their own file
1/12/2014 3:56:13 AM <+Morphan1> somewhere*
1/12/2014 3:56:18 AM <NegroBawb> Like I said
1/12/2014 3:56:19 AM <NegroBawb> for noobs
1/12/2014 3:56:26 AM <NegroBawb> who need complication bonors
1/12/2014 3:56:31 AM <Goma> :D
1/12/2014 3:56:53 AM <+BlackCoyote> like this
1/12/2014 3:56:54 AM <+BlackCoyote> http://hastebin.com/cetekufaci.pl
1/12/2014 3:57:05 AM <+BlackCoyote> this is just a fraction of the saves my linkup script creates
1/12/2014 3:57:12 AM <NegroBawb> yup
1/12/2014 3:57:26 AM <+Morphan1> NegroBawb, would you want to do this with flags? https://raw.github.com/aufdemrand/Denizen-Unit-Tests/master/dInventory%20test.dscript
1/12/2014 3:57:28 AM <Goma> this is just flags in another file
1/12/2014 3:57:34 AM <+Morphan1> and then after it's over go through your flags
1/12/2014 3:57:44 AM <+Morphan1> among like 823493039847 unrelated flags
1/12/2014 3:57:49 AM <+Morphan1> and find what you're looking for
1/12/2014 3:58:09 AM <NegroBawb> nothing I recognize
1/12/2014 3:58:18 AM <Goma> i have to problem with that :D
1/12/2014 3:58:29 AM <Goma> no
1/12/2014 3:58:47 AM <+BlackCoyote> well the yaml command has lovely benefits over just one savefile
1/12/2014 3:58:57 AM <NegroBawb> for noobs
1/12/2014 3:58:58 AM <NegroBawb> like I said
1/12/2014 3:59:03 AM <+BlackCoyote> :l
1/12/2014 3:59:05 AM <+Morphan1> for pros*
1/12/2014 3:59:10 AM <+BlackCoyote> ^v
1/12/2014 3:59:15 AM <+Morphan1> who have more info to save than noobs like NegroBawb
1/12/2014 3:59:16 AM <+Morphan1> :P
1/12/2014 4:00:15 AM <NegroBawb> Morphan1: Having more info to save
1/12/2014 4:00:28 AM <NegroBawb> isnt a good thing or showing benefits
1/12/2014 4:00:30 AM <NegroBawb> like I said
1/12/2014 4:00:32 AM <NegroBawb> complication boners
1/12/2014 4:00:50 AM <NegroBawb> In dumb noobs mine complicated = smart and cool
1/12/2014 4:01:03 AM * spazzmatic joined.
1/12/2014 4:01:04 AM * ChanServ gave voice to +spazzmatic.
1/12/2014 4:01:04 AM <NegroBawb> If I write a script thats 500 lines long and no one else can possibly understand it
1/12/2014 4:01:08 AM <NegroBawb> thats a good script?
1/12/2014 4:01:17 AM <NegroBawb> Its noob garbage
1/12/2014 4:01:38 AM <+Morphan1> NegroBawb, you're ridiculous
1/12/2014 4:01:41 AM <+BlackCoyote> what if it's so super efficient and compact
1/12/2014 4:01:44 AM <NegroBawb> the best scripts would need no information stored
1/12/2014 4:01:46 AM <+BlackCoyote> that it's not obvious anymore
1/12/2014 4:01:53 AM <NegroBawb> best scripts
1/12/2014 4:01:56 AM <NegroBawb> would be 1 line
1/12/2014 4:02:04 AM <NegroBawb> need no information stored in the least
1/12/2014 4:02:13 AM <NegroBawb> and would provide daily benefits for players
1/12/2014 4:02:20 AM <+Morphan1> NegroBawb, there's no such thing as a "best script", people have different needs or wants
1/12/2014 4:02:21 AM <NegroBawb> that's what you should work towards
1/12/2014 4:02:22 AM <+Morphan1> it's like sayin
1/12/2014 4:02:34 AM <+Morphan1> "This pickle is the best food"
1/12/2014 4:02:37 AM <NegroBawb> I know Morphan1 we can only work towards
1/12/2014 4:02:39 AM <NegroBawb> the best
1/12/2014 4:02:41 AM <+Morphan1> when someone doesn't like pickles
1/12/2014 4:02:50 AM <NegroBawb> the best food
1/12/2014 4:02:53 AM <NegroBawb> would be cheap to produce
1/12/2014 4:02:59 AM <NegroBawb> and provide much nourishment
1/12/2014 4:03:03 AM <NegroBawb> ^^
1/12/2014 4:03:10 AM <NegroBawb> and be tasty
1/12/2014 4:03:10 AM <NegroBawb> bam
1/12/2014 4:03:14 AM <+Morphan1> but EVERYONE would have to need/want it
1/12/2014 4:03:17 AM <+Morphan1> or find it tasty
1/12/2014 4:03:21 AM <NegroBawb> exactly
1/12/2014 4:03:25 AM <NegroBawb> right?
1/12/2014 4:03:29 AM <NegroBawb> So the best script
1/12/2014 4:03:30 AM <+Morphan1> not right
1/12/2014 4:03:32 AM <NegroBawb> would be 1 character
1/12/2014 4:03:33 AM <+Morphan1> it's not possible
1/12/2014 4:03:35 AM <NegroBawb> just one
1/12/2014 4:03:39 AM <NegroBawb> neer use any energy
1/12/2014 4:03:44 AM <NegroBawb> inormation storeage nothing
1/12/2014 4:03:52 AM <+BlackCoyote> so the best script would be tasty and nourishable
1/12/2014 4:03:53 AM <NegroBawb> and provide people with benefits
1/12/2014 4:03:59 AM <NegroBawb> BlackCoyote: if you eat scripts
1/12/2014 4:04:00 AM <NegroBawb> yes
1/12/2014 4:04:09 AM <+BlackCoyote> i don't eat scripts
1/12/2014 4:04:10 AM <+Morphan1> this conversation
1/12/2014 4:04:11 AM <+BlackCoyote> so your logic fails
1/12/2014 4:04:11 AM <+BlackCoyote> HA
1/12/2014 4:04:17 AM <+Morphan1> is.. so pointless
1/12/2014 4:04:24 AM <NegroBawb> If you eat scripts.... you'd want them nourishable and tasy
1/12/2014 4:04:28 AM <NegroBawb> ^^ sold logic
1/12/2014 4:04:32 AM <NegroBawb> solid* lol
1/12/2014 4:04:41 AM <+BlackCoyote> well i eat saves
1/12/2014 4:04:42 AM <+Morphan1> I don't want anything to be tasy
1/12/2014 4:04:45 AM <+BlackCoyote> so i want a lot of saves files
1/12/2014 4:04:54 AM <+Morphan1> ^bam
1/12/2014 4:05:01 AM <NegroBawb> there you go
1/12/2014 4:05:04 AM <+BlackCoyote> therefor the yaml command is here to stop hunger around the world
1/12/2014 4:05:05 AM <NegroBawb> so if you eat save files
1/12/2014 4:05:07 AM <NegroBawb> by all means
1/12/2014 4:05:09 AM <NegroBawb> use the yaml command
1/12/2014 4:05:16 AM <NegroBawb> and over complicate your scripts
1/12/2014 4:05:30 AM <NegroBawb> If you are trying to write efficient scripts
1/12/2014 4:05:40 AM <NegroBawb> generally shorter ones that dont need their own save fil
1/12/2014 4:05:52 AM <NegroBawb> would be better
1/12/2014 4:05:57 AM <NegroBawb> But Im not a noob
1/12/2014 4:06:04 AM <+BlackCoyote> a denizen script that links buttons through channels
1/12/2014 4:06:07 AM <NegroBawb> I dont spend the days in the noob brains
1/12/2014 4:06:10 AM <+Morphan1> NegroBawb, absolutely nothing is inefficient about using yaml
1/12/2014 4:06:13 AM <+BlackCoyote> how could you reduce the savefile on that
1/12/2014 4:06:18 AM <+BlackCoyote> if it has to save every location anyways
1/12/2014 4:06:29 AM <NegroBawb> links buttons through channels
1/12/2014 4:06:43 AM <NegroBawb> you're sitting on a foundation already
1/12/2014 4:06:50 AM <Goma> basically you don't reduce anything because it is just saved in another place
1/12/2014 4:07:07 AM <+Morphan1> Goma, it's not about reducing
1/12/2014 4:07:10 AM <NegroBawb> No... they want to make their scripts complicated
1/12/2014 4:07:11 AM <Goma> also you have to make your scripts longer
1/12/2014 4:07:13 AM <NegroBawb> so they feel smarter....
1/12/2014 4:07:21 AM <Goma> :D
1/12/2014 4:07:24 AM <NegroBawb> right?
1/12/2014 4:07:31 AM <NegroBawb> If they wrote a simple script thats less than 500 lines
1/12/2014 4:07:35 AM <NegroBawb> and doesnt kill peoples brains
1/12/2014 4:07:39 AM <NegroBawb> something must be wrong
1/12/2014 4:07:59 AM <+Morphan1> ugh...
1/12/2014 4:08:04 AM <NegroBawb> also
1/12/2014 4:08:15 AM <NegroBawb> every script contains an unspoken "Complicated tag contest"
1/12/2014 4:08:17 AM <+BlackCoyote> Morphan1 wanna go have a drink
1/12/2014 4:08:30 AM <+Morphan1> @_@ I want coffee
1/12/2014 4:08:44 AM <+BlackCoyote> i want bob blood
1/12/2014 4:08:48 AM <NegroBawb> <my.npctag,iseating.yours[%becayse%].Ipointlessly.makethis[<reallylongyoudumbnoobs>].qty.isgayer.than[2]>
1/12/2014 4:09:16 AM <NegroBawb> if you dont use at least 5 tags like that
1/12/2014 4:09:19 AM <NegroBawb> something is wrong
1/12/2014 4:09:26 AM <NegroBawb> also
1/12/2014 4:09:27 AM <NegroBawb> ALSO
1/12/2014 4:09:30 AM <NegroBawb> IF
1/12/2014 4:09:33 AM <NegroBawb> for ANY reason
1/12/2014 4:09:37 AM <NegroBawb> your script can be simplified
1/12/2014 4:09:43 AM <+Morphan1> ./ignore NegroBawb
1/12/2014 4:09:43 AM <NegroBawb> DONT DO IT
1/12/2014 4:09:59 AM <NegroBawb> Morphan1: I know you're upset from the lack of hookers and drugs
1/12/2014 4:10:01 AM <NegroBawb> blame BlackCoyote
1/12/2014 4:10:12 AM <+Morphan1> BlackCoyote, give me more drugs
1/12/2014 4:10:18 AM <+BlackCoyote> i don't even know if i'm supposed to be laughing or crying
1/12/2014 4:10:19 AM <+Morphan1> and be my hooker
1/12/2014 4:10:21 AM <+BlackCoyote> what
1/12/2014 4:10:26 AM <+BlackCoyote> i find that disrespectful
1/12/2014 4:10:32 AM <NegroBawb> He doesnt have any drugs
1/12/2014 4:10:36 AM <NegroBawb> the embargo is crushing
1/12/2014 4:10:42 AM <+BlackCoyote> i'm already bound to another man
1/12/2014 4:10:52 AM <+Morphan1> the blasphemy!
1/12/2014 4:11:03 AM <+Morphan1> did I spell that right/is that a word
1/12/2014 4:11:05 AM <NegroBawb> Its been crushing sanctions for denizen
1/12/2014 4:11:30 AM <NegroBawb> fullwalls not been getting kangaroos. Aufdemrand isnt getting his funeral and casket paid for. No drugs or hookers for you or mcmonkey
1/12/2014 4:11:34 AM <+Morphan1> !savelog
1/12/2014 4:11:34 AM <@monkeybot> I have saved a copy of this channel's recent logs to http://mcmonkey4eva.dyndns.org/paste/1268
1/12/2014 4:11:40 AM <NegroBawb> even though I made 50$ today
1/12/2014 4:11:43 AM <NegroBawb> Im not inclined to share
1/12/2014 4:12:07 AM <+Morphan1> NegroBawb, you've made like
1/12/2014 4:12:11 AM <+Morphan1> $1k this month
1/12/2014 4:12:49 AM <NegroBawb> yup
1/12/2014 4:12:54 AM <NegroBawb> and I shared up until the embargo
1/12/2014 4:13:08 AM <+BlackCoyote> did you by selling items on your server?
1/12/2014 4:13:15 AM <NegroBawb> ranks mostly
1/12/2014 4:13:18 AM <+BlackCoyote> wow
1/12/2014 4:13:40 AM <+BlackCoyote> i didnt know that could be that profitable
1/12/2014 4:14:11 AM <Goma> i am scripting a casino right now, i should add hookers
1/12/2014 4:14:20 AM <NegroBawb> Goma: I attempted to do a casino
1/12/2014 4:14:34 AM <Goma> it's hard but i just finished the slot machines
1/12/2014 4:14:35 AM <NegroBawb> found out all games consist of basically generating a random number and them guessing it
1/12/2014 4:14:35 AM <+BlackCoyote> but then he realised it requires saving stuff
1/12/2014 4:14:37 AM <+BlackCoyote> and then he cried
1/12/2014 4:14:55 AM <NegroBawb> BlackCoyote: I manage to make good money without having to use super complicated scripts
1/12/2014 4:15:06 AM <Goma> it is hard to make it look as if the player has a chance :D
1/12/2014 4:15:17 AM <NegroBawb> only person in here more profitable than me is AgentK and hes like.... exponentially bigger than me
1/12/2014 4:15:18 AM <+Morphan1> BlackCoyote, he got like $x from one 7 line script
1/12/2014 4:15:26 AM <@AgentK> xD
1/12/2014 4:15:33 AM <NegroBawb> D'=
1/12/2014 4:15:38 AM <+Morphan1> AgentK, you make more money than him? @_@
1/12/2014 4:15:44 AM <NegroBawb> >.> are you serious
1/12/2014 4:15:50 AM <+BlackCoyote> and that all by selling ranks in game?
1/12/2014 4:15:51 AM <NegroBawb> he works with hypixel
1/12/2014 4:15:52 AM <Goma> for example i let the slot machine run normally with normal chances and then on the last step the real calculation takes place and sets the win or lose. nobody notices
1/12/2014 4:15:55 AM <+Morphan1> WHAT
1/12/2014 4:16:02 AM <@AgentK> lol
1/12/2014 4:16:04 AM <@AgentK> you didn't know?
1/12/2014 4:16:12 AM <+Morphan1> D: I don't know anything anymore
1/12/2014 4:16:13 AM <NegroBawb> Goma: I tried before like I said.... its like a random number generator
1/12/2014 4:16:15 AM <+BlackCoyote> who's hypixel
1/12/2014 4:16:17 AM <@AgentK> I'm CTO, Lead Network Dev, Lead Sysadmin for Hypixel
1/12/2014 4:16:20 AM <@AgentK> http://hypixel.net/
1/12/2014 4:16:21 AM <@monkeybot> Title --> Hypixel - Minecraft Server and Maps
1/12/2014 4:16:22 AM <NegroBawb> the rest is just fluff
1/12/2014 4:16:33 AM <@AgentK> largest MC network in the world, BlackCoyote
1/12/2014 4:16:36 AM <NegroBawb> >.> lead cause of NegroBawb's jelousy
1/12/2014 4:16:46 AM <NegroBawb> lead cause of losing sleep at night
1/12/2014 4:16:47 AM <@AgentK> .mcping localhost
1/12/2014 4:16:51 AM <@AgentK> no .mcping?
1/12/2014 4:16:51 AM <@AgentK> :(
1/12/2014 4:16:57 AM <NegroBawb> !mcping
1/12/2014 4:16:59 AM <NegroBawb> O:
1/12/2014 4:17:02 AM <+BlackCoyote> hypixel reminds me of a youtuber's name
1/12/2014 4:17:02 AM <@AgentK> !mcping mc.hypixel.net
1/12/2014 4:17:06 AM <+BlackCoyote> does that have anything to do with that?
1/12/2014 4:17:07 AM <@AgentK> BlackCoyote, That's where we started
1/12/2014 4:17:18 AM <+Morphan1> AgentK, mcping?
1/12/2014 4:17:24 AM <+Morphan1> what is this and how can I implement it
1/12/2014 4:17:33 AM <@AgentK> Morphan1, you in #spigot?
1/12/2014 4:17:35 AM <+BlackCoyote> is it like a minigame server? AgentK
1/12/2014 4:17:39 AM <+Morphan1> no
1/12/2014 4:17:40 AM <@AgentK> Yes, BlackCoyote
1/12/2014 4:17:40 AM <@AgentK> http://www.youtube.com/watch?v=nCj7DXosxlU
1/12/2014 4:17:41 AM <@monkeybot> Title --> Mega Walls - mc.hypixel.net (Minecraft Minigame) - YouTube
1/12/2014 4:17:45 AM <@AgentK> Morphan1, hop in there real quick
1/12/2014 4:17:55 AM <+BlackCoyote> thats pretty neat
1/12/2014 4:18:48 AM <@AgentK> you should watch that trailer
1/12/2014 4:18:51 AM <@AgentK> our latest game
1/12/2014 4:18:54 AM <@AgentK> a Megagame
1/12/2014 4:18:56 AM <@AgentK> 100 players
1/12/2014 4:19:06 AM <@AgentK> got 1,452 players playing it ATM
1/12/2014 4:19:07 AM <+BlackCoyote> im looking
1/12/2014 4:19:07 AM <Goma> here i am worshipping hypixels maps all the time and a lead dev for hypixel sits right next to me all the months
1/12/2014 4:19:09 AM <+BlackCoyote> woah
1/12/2014 4:19:12 AM <+BlackCoyote> .. AgentK
1/12/2014 4:19:14 AM <@AgentK> lol Goma
1/12/2014 4:19:16 AM <+BlackCoyote> wha..
1/12/2014 4:19:20 AM <NegroBawb> geez....
1/12/2014 4:19:20 AM <@AgentK> that's just that game
1/12/2014 4:19:23 AM <+BlackCoyote> i didnt even know minecraft servers could be that big
1/12/2014 4:19:27 AM <@AgentK> we've got 7,268 players playing Hypixel ATM
1/12/2014 4:19:38 AM <NegroBawb> D'=
1/12/2014 4:19:42 AM <+Morphan1> AgentK, @spigot question
1/12/2014 4:19:45 AM <+BlackCoyote> and you're the lead system admin
1/12/2014 4:19:45 AM <@AgentK> Yeah?
1/12/2014 4:19:47 AM <@AgentK> Yep
1/12/2014 4:19:51 AM <@AgentK> Also:
1/12/2014 4:19:51 AM <@AgentK> rs0:PRIMARY> db.player_data.count();
1/12/2014 4:19:52 AM <@AgentK> 2554031
1/12/2014 4:19:58 AM <+BlackCoyote> i am quite amazed i must say
1/12/2014 4:20:00 AM <NegroBawb> holy
1/12/2014 4:20:00 AM <@AgentK> 2.5 million unique players
1/12/2014 4:20:01 AM <NegroBawb> ghost....
1/12/2014 4:20:05 AM <NegroBawb> is that cracked?
1/12/2014 4:20:07 AM <NegroBawb> or premium?
1/12/2014 4:20:11 AM <@AgentK> premium
1/12/2014 4:20:12 AM <NegroBawb> .-.
1/12/2014 4:20:13 AM <NegroBawb> you
1/12/2014 4:20:14 AM <NegroBawb> fucker
1/12/2014 4:20:23 AM <NegroBawb>  * NegroBawb prepares to hang himself
1/12/2014 4:20:25 AM <@AgentK> so 18.7% of all MC premium accounts
1/12/2014 4:20:41 AM <NegroBawb> I end up with like...
1/12/2014 4:20:42 AM <+BlackCoyote> o_o
1/12/2014 4:20:44 AM <NegroBawb> 12k after 3 months
1/12/2014 4:20:50 AM <NegroBawb> and I think thats a lot
1/12/2014 4:20:59 AM <+BlackCoyote> i had to be happy with 4K in 2 years......;
1/12/2014 4:21:00 AM <+Morphan1> jee
1/12/2014 4:21:01 AM <+Morphan1> zus
1/12/2014 4:21:03 AM <+Morphan1> f**k
1/12/2014 4:21:08 AM <@AgentK> lol
1/12/2014 4:21:10 AM <Goma> we have about 4700 players/ month
1/12/2014 4:21:14 AM <@AgentK> also
1/12/2014 4:21:17 AM <@AgentK> (db query running)
1/12/2014 4:21:21 AM <@AgentK> rs0:PRIMARY> db.player_data.count({"lastLogin":{$gt: 1389356400000}});
1/12/2014 4:21:22 AM <@AgentK> 346018
1/12/2014 4:21:30 AM <@AgentK> 346,018 have visited in the past 48 hours
1/12/2014 4:21:31 AM <NegroBawb> Goma: is that new accounts?
1/12/2014 4:21:38 AM <NegroBawb> <.>
1/12/2014 4:21:52 AM <NegroBawb> AgentK: What is they key.... to getting all those noobs
1/12/2014 4:21:58 AM <@AgentK> out of those,
1/12/2014 4:22:08 AM <@AgentK> 26906 was first login
1/12/2014 4:22:13 AM <NegroBawb> <.>
1/12/2014 4:22:14 AM <+BlackCoyote> have a famous youtuber promote your server? NegroBawb
1/12/2014 4:22:21 AM <Goma> unique but now new, so after a month you revisit and get counted again
1/12/2014 4:22:22 AM <NegroBawb> :L
1/12/2014 4:22:26 AM <Goma> but not new
1/12/2014 4:22:33 AM <NegroBawb> Goma: I get about that too
1/12/2014 4:22:50 AM <NegroBawb> BlackCoyote: Like... who?
1/12/2014 4:22:52 AM <NegroBawb> I dont know youtube
1/12/2014 4:22:53 AM <@AgentK> BlackCoyote, we're so big because we make ORIGINAL shit
1/12/2014 4:22:54 AM <+BlackCoyote> hypixel
1/12/2014 4:22:56 AM <@AgentK> ever heard of Walls?
1/12/2014 4:23:01 AM <+BlackCoyote> yeah
1/12/2014 4:23:07 AM <@AgentK> we INVENTED that
1/12/2014 4:23:12 AM <+BlackCoyote> oh my
1/12/2014 4:23:13 AM <Goma> we were once at 10000/month but then some good people uncluding me got kicked out, now since two days we're back and the server is again controlled by us :D
1/12/2014 4:23:21 AM <@AgentK> http://www.youtube.com/watch?v=HLeXP15vkcM
1/12/2014 4:23:22 AM <@monkeybot> Title --> Minecraft: The Walls (PvP Survival) - YouTube
1/12/2014 4:23:23 AM <@AgentK> original video
1/12/2014 4:23:24 AM <@AgentK> and map
1/12/2014 4:23:31 AM <@AgentK> predating any server
1/12/2014 4:23:33 AM <@AgentK> or other walls video
1/12/2014 4:23:52 AM <@AgentK> that "Published on" is our proof :P
1/12/2014 4:23:54 AM <NegroBawb> Im dying inside...
1/12/2014 4:23:58 AM <Goma> AgentK: so hypixel maps use denizen?
1/12/2014 4:24:06 AM <@AgentK> No
1/12/2014 4:24:11 AM <@AgentK> Not yet ;)
1/12/2014 4:24:11 AM <NegroBawb> I think he just is a dev for citizens
1/12/2014 4:24:13 AM <Goma> :D
1/12/2014 4:24:21 AM <@AgentK>  * AgentK has to hold his tounge
1/12/2014 4:24:31 AM <NegroBawb> JUST a dev for citizens D:<
1/12/2014 4:24:35 AM <+BlackCoyote> planning on using denizens eh
1/12/2014 4:24:49 AM <Goma> i have to tell you a secret, we copied one or two small features from hypixel maps :§ because they were so awesome
1/12/2014 4:24:52 AM <NegroBawb> I imagine its going to take a rewrite
1/12/2014 4:24:58 AM <NegroBawb> to get on a big production server
1/12/2014 4:25:30 AM <NegroBawb> When I get 50 people on I feel good
1/12/2014 4:25:41 AM <NegroBawb> D'= dream crushing realizations
1/12/2014 4:26:50 AM <tstom0> 50 more people than me :D
1/12/2014 4:26:59 AM <+BlackCoyote> why dont we just give up
1/12/2014 4:27:11 AM <@AgentK> eh, the reason we've got more players
1/12/2014 4:27:16 AM <@AgentK> is that we appeal to a different audience
1/12/2014 4:27:28 AM <@AgentK> we appeal to the audience that freely moved between multiple servers
1/12/2014 4:27:31 AM <@AgentK> and spends 5 minutes on each
1/12/2014 4:27:49 AM <@AgentK> *moves
1/12/2014 4:27:59 AM <@AgentK> whereas you guys appeal to a more permanent type of audience
1/12/2014 4:28:36 AM <+BlackCoyote> well with 7k people on, that's the best way to go with no doubt
1/12/2014 4:28:53 AM <@AgentK> but like
1/12/2014 4:28:54 AM <@AgentK> backend
1/12/2014 4:29:01 AM <@AgentK> to hold all of that
1/12/2014 4:29:07 AM <@AgentK> we've got 1,125 spigot servers
1/12/2014 4:29:09 AM <@AgentK> for minigames
1/12/2014 4:29:10 AM <Goma> But with 7k people on it's a real business with real money and real chanced to lose stuff^^
1/12/2014 4:29:23 AM <@AgentK> oh yeah, we're all under NDA for almost everything
1/12/2014 4:29:29 AM <@AgentK> and have business contracts with several companies
1/12/2014 4:30:10 AM <NegroBawb> I imagine
1/12/2014 4:30:22 AM <+BlackCoyote> i can only accept never to have something that succesful
1/12/2014 4:30:27 AM <NegroBawb> Its hard for me to avoid taxes on my server
1/12/2014 4:30:33 AM <@AgentK> ohgodtaxes
1/12/2014 4:30:49 AM <NegroBawb> Yeah... I dont pay them
1/12/2014 4:30:52 AM <NegroBawb> but I should be
1/12/2014 4:30:59 AM <@AgentK> I personally have to pay them
1/12/2014 4:31:03 AM <NegroBawb> AgentK: Could you imagine a sales tax on online purchases?
1/12/2014 4:31:04 AM <@AgentK> fucking self-employment taxes
1/12/2014 4:31:05 AM <NegroBawb> for the server
1/12/2014 4:31:05 AM <@AgentK> 45%
1/12/2014 4:31:13 AM <@AgentK> NegroBawb, we're Canadian
1/12/2014 4:31:15 AM <@AgentK> the company, that is
1/12/2014 4:31:22 AM <NegroBawb> O:
1/12/2014 4:31:27 AM <@AgentK> and guess what the Canadian government tried to pull a few months back
1/12/2014 4:31:33 AM <NegroBawb> internet sales tax?
1/12/2014 4:31:38 AM <@AgentK> "Oh you guys can't prove that everyone's NOT in Canada, so you have to pay sales tax"
1/12/2014 4:31:42 AM <@AgentK> "INCLUDING previous purchases"
1/12/2014 4:31:44 AM <NegroBawb> XD
1/12/2014 4:32:04 AM <NegroBawb> If I make as much money as I do at 30-50 people
1/12/2014 4:32:05 AM <@AgentK> ended up actually having to talk to the Buycraft guys
1/12/2014 4:32:10 AM <NegroBawb> I can imagien what you guys make...
1/12/2014 4:32:16 AM <@AgentK> and having a special checkbox added
1/12/2014 4:32:17 AM <@AgentK> on checkout
1/12/2014 4:32:23 AM <@AgentK> "Are you currently living in Canada"
1/12/2014 4:32:28 AM <NegroBawb> lol
1/12/2014 4:32:30 AM <@AgentK> then had to geoip ALL previous purchases
1/12/2014 4:32:33 AM <@AgentK> and pay taxes
1/12/2014 4:32:34 AM <+BlackCoyote> you use buycraft for hypixel?
1/12/2014 4:32:39 AM <NegroBawb> so you had to pay the taxes?
1/12/2014 4:32:40 AM <@AgentK> on the ones that were canadian
1/12/2014 4:32:46 AM <Goma> oh wow
1/12/2014 4:32:48 AM <@AgentK> but like
1/12/2014 4:33:00 AM <NegroBawb> Cayman Islands are nice
1/12/2014 4:33:37 AM <NegroBawb> Idk what I would do if I had to pay... Id owe more than I have that's for sure
1/12/2014 4:33:54 AM <@AgentK> the % of people that were Canadian on our store, though
1/12/2014 4:33:57 AM <@AgentK> was like 5%
1/12/2014 4:34:02 AM <@AgentK> so we only had to pay a small amount
1/12/2014 4:34:07 AM <@AgentK> relative to paying the sales tax for EVERYONE
1/12/2014 4:34:22 AM <+BlackCoyote> i see codename_b as staff for hypixel too
1/12/2014 4:34:26 AM <@AgentK> yep
1/12/2014 4:34:27 AM <+BlackCoyote> where have i heard his name before
1/12/2014 4:34:34 AM <@AgentK> he wrote the first Bukkit plugin
1/12/2014 4:34:39 AM <@AgentK> as well as bPermissions
1/12/2014 4:34:40 AM <+spazzmatic> [Citizens2] fullwall pushed 1 commit to master branch
1/12/2014 4:34:40 AM <+spazzmatic>  fullwall: Implement getByUniqueId -- http://bit.ly/1iAUP1I
1/12/2014 4:34:41 AM <@AgentK> bSpace
1/12/2014 4:34:49 AM <+BlackCoyote> bpermissions that's it
1/12/2014 4:34:51 AM <+spazzmatic> [CitizensAPI] fullwall pushed 1 commit to master branch
1/12/2014 4:34:52 AM <+spazzmatic>  fullwall: Add getByUniqueId to NPCRegistry -- http://bit.ly/1iAUL26
1/12/2014 4:35:04 AM <@AgentK> http://dev.bukkit.org/profiles/codename_B/
1/12/2014 4:35:04 AM <@monkeybot> Title --> codename_B - Bukkit
1/12/2014 4:35:38 AM <+Citizen> Project CitizensAPI build #403: SUCCESS in 44 sec: http://ci.citizensnpcs.co/job/CitizensAPI/403/
1/12/2014 4:35:39 AM <@monkeybot> Title --> Cit.izensAPI #403 [Jenkins]
1/12/2014 4:35:39 AM <+Citizen> fullwall: Add getByUniqueId to NPCRegistry
1/12/2014 4:35:42 AM <@AgentK> but yeah, he's our Lead Minigame Developer
1/12/2014 4:35:47 AM <+BlackCoyote> well i am quite impressed AgentK
1/12/2014 4:36:00 AM <@AgentK> we've also hired the entire Citizens dev team
1/12/2014 4:36:04 AM <@AgentK> for super secret things :o
1/12/2014 4:36:10 AM <NegroBawb> O:
1/12/2014 4:36:23 AM <+BlackCoyote> you being that mostly quiet guy in here
1/12/2014 4:36:25 AM <+BlackCoyote> didnt expect that
1/12/2014 4:36:30 AM <@AgentK> heh
1/12/2014 4:36:39 AM <@AgentK> fullwall, aufdemrand, and aPunch are in on the secrets :O
1/12/2014 4:36:45 AM <@AgentK> (massping huzzah)
1/12/2014 4:36:52 AM * random_denizen_606 joined.
1/12/2014 4:36:56 AM <+Citizen> Project Citizens2 build #1051: SUCCESS in 1 min 7 sec: http://ci.citizensnpcs.co/job/Citizens2/1051/
1/12/2014 4:36:56 AM <@monkeybot> Title --> Cit.izens2 #1051 [Jenkins]
1/12/2014 4:36:57 AM <+Citizen> fullwall: Implement getByUniqueId
1/12/2014 4:36:57 AM <random_denizen_606> !help
1/12/2014 4:36:57 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
1/12/2014 4:36:57 AM <@monkeybot> For information on script commands, type !cmds
1/12/2014 4:36:57 AM <@monkeybot> To check your script for errors, type !script
1/12/2014 4:36:57 AM <@monkeybot> Other searchable meta types: !tags !events !requirements !languages !tutorials !mechanisms !actions !items !skins
1/12/2014 4:36:57 AM <@monkeybot> Other available informational commands: !repo !enchantments !entities !anchors !tags !potions !assignments !update !newconfig !wiki !sounds !handbook 
1/12/2014 4:36:57 AM <@monkeybot> Other available interactive commands: !seen !message !hello !showoff !math !help !pastebin !logs !yaml !yes !reload !quote !savelog 
1/12/2014 4:36:58 AM <@AgentK> Hello random_denizen_606!
1/12/2014 4:36:59 AM <@AgentK> :D
1/12/2014 4:36:59 AM <NegroBawb> I can just imagine
1/12/2014 4:37:28 AM <random_denizen_606> !script
1/12/2014 4:37:28 AM <@monkeybot> random_denizen_606: that command is written as !script <Link to a text-sharing website such as http://mcmonkey4eva.dyndns.org/paste >
1/12/2014 4:37:28 AM <@monkeybot> OR: !script more <#>
1/12/2014 4:37:30 AM <Goma> awww yeah
1/12/2014 4:37:57 AM <+BlackCoyote> how many members does your staff count AgentK ?
1/12/2014 4:38:05 AM <@AgentK> define staff
1/12/2014 4:38:08 AM <@AgentK> paid staff, or moderation staff
1/12/2014 4:38:17 AM <NegroBawb> paid
1/12/2014 4:38:25 AM <+BlackCoyote> both seperately
1/12/2014 4:38:29 AM <random_denizen_606> !script http://pastebin.com/k5H7kxz9
1/12/2014 4:38:30 AM <@monkeybot> Title --> [YAML] denizen - Pastebin.com
1/12/2014 4:38:30 AM <@monkeybot> I encountered 1 potential problem with that script.
1/12/2014 4:38:30 AM <@monkeybot>   (1) WARNING: Line 9: Script above missing interact scripts category!
1/12/2014 4:38:48 AM <@AgentK> paid we've got 13 iirc
1/12/2014 4:38:51 AM <@AgentK> including myself
1/12/2014 4:39:04 AM <@AgentK> moderation, 130 or so
1/12/2014 4:39:47 AM <@AgentK> most of the paid ones are part time, though
1/12/2014 4:40:01 AM <+BlackCoyote> what about creating buildings in game, how do you guys handle that?
1/12/2014 4:40:14 AM <@AgentK> we're partnered with the Mithrintia build team
1/12/2014 4:40:21 AM <@AgentK> they are our exclusive map provider
1/12/2014 4:40:38 AM <random_denizen_606> !script http://pastebin.com/k5H7kxz9
1/12/2014 4:40:38 AM <@monkeybot> Title --> [YAML] denizen - Pastebin.com
1/12/2014 4:40:39 AM <@monkeybot> I encountered 1 potential problem with that script.
1/12/2014 4:40:39 AM <@monkeybot>   (1) WARNING: Line 9: Script above missing interact scripts category!
1/12/2014 4:40:53 AM <+BlackCoyote> i see
1/12/2014 4:41:34 AM <+BlackCoyote> very interesting
1/12/2014 4:42:00 AM <random_denizen_606> !script http://pastebin.com/k5H7kxz9
1/12/2014 4:42:00 AM <@monkeybot> Title --> [YAML] denizen - Pastebin.com
1/12/2014 4:42:00 AM <@monkeybot> I encountered 1 potential problem with that script.
1/12/2014 4:42:00 AM <@monkeybot>   (1) WARNING: Line 7: Script above missing interact scripts category!
1/12/2014 4:42:01 AM <+BlackCoyote> i can imagine this all didn't just shoot out of the ground, from how early were you involved with this pserver?
1/12/2014 4:42:44 AM <@AgentK> I personally've been involved with the server since April or so
1/12/2014 4:42:48 AM <@AgentK> about a week before we opened :P
1/12/2014 4:43:10 AM <+BlackCoyote> with what kind of numbers did you guys start off with?
1/12/2014 4:43:18 AM <@AgentK> what do you mean?
1/12/2014 4:43:32 AM <+BlackCoyote> unique hits, server specs
1/12/2014 4:43:49 AM <@AgentK> server specs, we started with like 15 boxes
1/12/2014 4:44:12 AM <@AgentK> hit our 300 player cap within 30 mins of opening iirc
1/12/2014 4:44:30 AM <@AgentK> upgraded that to 900 players the next day, hit that the next day
1/12/2014 4:44:55 AM <@AgentK> I wrote a multi-bungee setup that allowed us to expand to a 4k cap that week
1/12/2014 4:45:19 AM <@AgentK> beyond that I don't remember the exact numbers
1/12/2014 4:45:37 AM <+BlackCoyote> how did you start off that big? youtube advertisement?
1/12/2014 4:45:39 AM <@AgentK> I know we've held the world record for most players online for the past 5 months, though
1/12/2014 4:45:49 AM <@AgentK> nah, we didn't even post any videos about the server
1/12/2014 4:45:56 AM <@AgentK> until launch day for the official release
1/12/2014 4:46:02 AM <@AgentK> which wasn't until June iirc
1/12/2014 4:46:12 AM <@AgentK> we were in beta for several months
1/12/2014 4:46:17 AM <NegroBawb> Heres a good quests
1/12/2014 4:46:20 AM <NegroBawb> ions
1/12/2014 4:46:34 AM <NegroBawb> what is your cost/revenue
1/12/2014 4:46:39 AM <@AgentK> NDA
1/12/2014 4:46:48 AM <NegroBawb> Its gotta be huge
1/12/2014 4:46:50 AM <NegroBawb> ->
1/12/2014 4:47:16 AM <NegroBawb> On a good day I can pay my bills for 3 months
1/12/2014 4:47:38 AM <NegroBawb> you must be doing very D: well
1/12/2014 4:48:18 AM <+BlackCoyote> i dont know why but this whole thing amazes me just aswell as it saddens me
1/12/2014 4:48:35 AM <@AgentK> the amazement is from the scope of it
1/12/2014 4:48:43 AM <NegroBawb> sadden is that were not smart enough
1/12/2014 4:48:45 AM <@AgentK> the sadness is from the fact that we're making money off minecraft
1/12/2014 4:49:04 AM <+BlackCoyote> i think the saddnes is my envy for it :p
1/12/2014 4:49:32 AM <NegroBawb> I couldnt do it if I wanted to
1/12/2014 4:49:41 AM <NegroBawb> way over my head
1/12/2014 4:49:52 AM <@AgentK> hey
1/12/2014 4:49:54 AM <@AgentK> I thought the same thing
1/12/2014 4:50:06 AM <@AgentK> then I wrote a program for Hypixel
1/12/2014 4:50:09 AM <@AgentK> about 40k lines of it
1/12/2014 4:50:10 AM <random_denizen_606> !script http://pastebin.com/k5H7kxz9
1/12/2014 4:50:10 AM <@monkeybot> Title --> [YAML] denizen - Pastebin.com
1/12/2014 4:50:10 AM <@monkeybot> Your script seems valid to me.
1/12/2014 4:50:11 AM <@AgentK> over a spare weekend
1/12/2014 4:50:14 AM <@AgentK> because I saw that they needed it
1/12/2014 4:50:17 AM <@AgentK> and that got me hired
1/12/2014 4:50:34 AM <@AgentK> now that program is worth ridiculous amounts
1/12/2014 4:50:46 AM <+BlackCoyote> what is it?
1/12/2014 4:50:51 AM <@AgentK> NDA, unfortunately
1/12/2014 4:50:56 AM <+BlackCoyote> fair enough
1/12/2014 4:50:58 AM <@AgentK> I would LOVE LOVE LOVE to tell you all about it
1/12/2014 4:51:04 AM <+BlackCoyote> do you guys use any public plugins?
1/12/2014 4:51:07 AM <NegroBawb> I heard...
1/12/2014 4:51:07 AM <@AgentK> that's why I get so excited by hiring new people
1/12/2014 4:51:08 AM <NegroBawb> something
1/12/2014 4:51:12 AM <@AgentK> I get to tell them about it
1/12/2014 4:51:14 AM <@AgentK> and see their amazement
1/12/2014 4:51:20 AM <NegroBawb> About a networking system that you wrote
1/12/2014 4:51:27 AM <NegroBawb> like months ago
1/12/2014 4:51:27 AM * random_denizen_606 quit.
1/12/2014 4:51:30 AM <@AgentK> heh
1/12/2014 4:51:31 AM <NegroBawb> i heard that
1/12/2014 4:51:37 AM <@AgentK> from NeonMaster, yes
1/12/2014 4:51:40 AM <NegroBawb> and I was like... the guy who never talks?
1/12/2014 4:51:47 AM <NegroBawb> :L oh gawd
1/12/2014 4:51:50 AM <@AgentK> yeah him xD
1/12/2014 4:51:54 AM <NegroBawb> yea
1/12/2014 4:51:57 AM <@AgentK> we managed to get rid of him a long time ago
1/12/2014 4:52:03 AM <NegroBawb> Did you go to school for programming?
1/12/2014 4:52:05 AM <@AgentK> nope
1/12/2014 4:52:08 AM <NegroBawb> oh gawd
1/12/2014 4:52:10 AM <@AgentK> taught myself all the languages I know
1/12/2014 4:52:12 AM <NegroBawb> how old are you?
1/12/2014 4:52:14 AM <@AgentK> 17
1/12/2014 4:52:18 AM <NegroBawb> oh gawd...
1/12/2014 4:52:20 AM <+BlackCoyote> oèo
1/12/2014 4:52:22 AM <+BlackCoyote> o_o
1/12/2014 4:52:25 AM <+BlackCoyote> *slams head on desk*
1/12/2014 4:52:41 AM <@AgentK> lol
1/12/2014 4:52:44 AM <@AgentK> how old are y'all?
1/12/2014 4:52:47 AM <NegroBawb> 21
1/12/2014 4:52:48 AM <+BlackCoyote> 18
1/12/2014 4:52:54 AM <NegroBawb> never even attempted java until 20
1/12/2014 4:52:58 AM <NegroBawb> feel old
1/12/2014 4:52:59 AM <NegroBawb> already
1/12/2014 4:53:02 AM <@AgentK> that program was the first that I wrote lol
1/12/2014 4:53:11 AM <@AgentK> I had never written a program before
1/12/2014 4:53:24 AM <NegroBawb> a plugin?
1/12/2014 4:53:24 AM <@AgentK> wrote that, gave it to Hypixel for free
1/12/2014 4:53:28 AM <@AgentK> nah, a program
1/12/2014 4:53:40 AM <NegroBawb> nah i mean like had you written plugins
1/12/2014 4:53:42 AM <@AgentK> the thing you apparently know about, NegroBawb
1/12/2014 4:53:49 AM <@AgentK> I had written 2 plugins
1/12/2014 4:53:59 AM <NegroBawb> kk so you started wtih bukkit plugin yeha
1/12/2014 4:54:06 AM <@AgentK> one for a little server known as Eye of Ender (now McTheFridge)
1/12/2014 4:54:07 AM <NegroBawb> yeah*
1/12/2014 4:54:10 AM <@AgentK> who took it
1/12/2014 4:54:12 AM <@AgentK> and ripped me off
1/12/2014 4:54:13 AM <@AgentK> of $100
1/12/2014 4:54:19 AM <@AgentK> for which I vowed revenge
1/12/2014 4:54:22 AM <NegroBawb> lol
1/12/2014 4:54:24 AM <@AgentK> and created The Hypixel Network
1/12/2014 4:54:33 AM <@AgentK> which has successfully CRUSHED THEM OUT OF EXISTANCE MUAHAHHAHAHAHAHHHA
1/12/2014 4:54:40 AM <monnierant> i have a small issue when i try to use <player.group[staff]> it always send false while player are well in this group
1/12/2014 4:54:43 AM <NegroBawb> >.> tbh
1/12/2014 4:54:47 AM <NegroBawb> as soon as I read 17
1/12/2014 4:54:53 AM <NegroBawb> you instantly turned Asian
1/12/2014 4:54:55 AM <NegroBawb> in my mind
1/12/2014 4:54:57 AM <+BlackCoyote> !tag group
1/12/2014 4:54:57 AM <@monkeybot> I found 3 matches...
1/12/2014 4:54:57 AM <@monkeybot> [email protected]_group[<group_name>], [email protected]_group[<group_name>].global, [email protected]_group[<group_name>].world.
1/12/2014 4:54:58 AM <@AgentK> xD
1/12/2014 4:55:02 AM <@AgentK> not Asian
1/12/2014 4:55:05 AM <NegroBawb> thank you
1/12/2014 4:55:12 AM <NegroBawb> I had to get that outta my head
1/12/2014 4:55:14 AM <@AgentK> Murican
1/12/2014 4:55:19 AM <NegroBawb> XD
1/12/2014 4:55:35 AM <+BlackCoyote> monnierant: try <player.in_group[staff].global>
1/12/2014 4:55:51 AM <NegroBawb> inspires me to write plugins again
1/12/2014 4:55:53 AM <+BlackCoyote> what permission plugin are you using?
1/12/2014 4:55:59 AM <NegroBawb> my current obstacle to updating mine is regex
1/12/2014 4:56:05 AM <NegroBawb> and mcmonkey wont tell me :L
1/12/2014 4:56:12 AM <NegroBawb> I gotta like... escape colons or somethign
1/12/2014 4:56:18 AM <@AgentK> nahhh
1/12/2014 4:56:20 AM <@AgentK> I hate regex
1/12/2014 4:56:22 AM <@AgentK> it's brilliant
1/12/2014 4:56:23 AM <@AgentK> but I hate it
1/12/2014 4:56:33 AM <@AgentK> just import the permissions file
1/12/2014 4:56:35 AM <@AgentK> as a YamlConfig
1/12/2014 4:56:38 AM <@AgentK> then for each permission node
1/12/2014 4:56:42 AM <@AgentK> node.split(".");
1/12/2014 4:56:42 AM <+fullwall> NegroBawb: what's your regex?
1/12/2014 4:56:44 AM <monnierant> same issue BlackCoyote
1/12/2014 4:56:45 AM <@AgentK> gets you a String[]
1/12/2014 4:56:46 AM <@AgentK> ohai fullwall
1/12/2014 4:56:55 AM <+fullwall> AgentK: split(".") sounds bad
1/12/2014 4:56:58 AM <@AgentK> LEIS
1/12/2014 4:56:59 AM <+BlackCoyote> monnierant: what permission plugin?
1/12/2014 4:56:59 AM <@AgentK> LIES
1/12/2014 4:57:01 AM <@AgentK> SPLITS ARE AMAZING
1/12/2014 4:57:05 AM <+fullwall> the "." is regex
1/12/2014 4:57:12 AM <+fullwall> so you splitting it on every character?
1/12/2014 4:57:13 AM <@AgentK> SPLIT() RUNS THE HYPIXEL NETWORK
1/12/2014 4:57:20 AM <@AgentK> Oh, that's right
1/12/2014 4:57:22 AM <@AgentK> I remember having to bugfix that
1/12/2014 4:57:23 AM <@AgentK> lol
1/12/2014 4:57:35 AM <monnierant> permissionsBukkit BlackCoyote
1/12/2014 4:57:35 AM <+fullwall> been caught on that a few times :p
1/12/2014 4:57:50 AM <@AgentK> xD
1/12/2014 4:58:19 AM <NegroBawb> Ill show you
1/12/2014 4:58:43 AM <+BlackCoyote> anyone know if permissionbukkit has issues with working with denizen tags?
1/12/2014 4:59:30 AM <NegroBawb> okay
1/12/2014 4:59:36 AM <NegroBawb> https://github.com/GoDieBawb/Bizukkit/blob/master/Bizukkit/src/io/github/GoDieBawb/Bizukkit/SmileyChat.java
1/12/2014 4:59:37 AM <@monkeybot> Title --> Bizukkit/Bizukkit/src/io/github/GoDieBawb/Bizukkit/SmileyChat.java at master · GoDieBawb/Bizukkit · GitHub
1/12/2014 4:59:42 AM * Pigman168 joined.
1/12/2014 4:59:42 AM <NegroBawb> its like a regex nightmare
1/12/2014 5:00:14 AM <NegroBawb> lol
1/12/2014 5:00:17 AM <+BlackCoyote> !paste monnierant@
1/12/2014 5:00:17 AM <@monkeybot> monnierant: Need help with a script issue or server error?
1/12/2014 5:00:17 AM <@monkeybot> Help us help you by pasting your script to http://mcmonkey4eva.dyndns.org/paste
1/12/2014 5:00:17 AM <@monkeybot> From there, save the page and paste the link back in this channel.
1/12/2014 5:00:17 AM <@monkeybot> In-game, type '/denizen debug -r', then run through the broken parts of the script, then type '/denizen submit'. Open the link it gives you, and paste that link back in this channel as well.
1/12/2014 5:00:20 AM <+BlackCoyote> do that for me i'd say
1/12/2014 5:00:26 AM <Pigman168> tstom0: ?
1/12/2014 5:00:27 AM <+BlackCoyote> i'm a bit clueless on why it's not working
1/12/2014 5:00:43 AM <tstom0> pigman168: ??
1/12/2014 5:00:45 AM <+BlackCoyote> hey AgentK if you guys at hypixel ever need some custom music you should totally do a good word for me
1/12/2014 5:00:48 AM <Pigman168> monnierant: can i see it?
1/12/2014 5:00:55 AM <@AgentK> I'll keep that in mind
1/12/2014 5:00:56 AM <+fullwall> NegroBawb: you need to escape the ( )
1/12/2014 5:01:04 AM <+BlackCoyote> :p thanks!
1/12/2014 5:01:05 AM <@AgentK> we're going into indie game development eventually, BlackCoyote
1/12/2014 5:01:11 AM <+BlackCoyote> oo
1/12/2014 5:01:13 AM <Pigman168> tstom0: does the code you gave me require php?
1/12/2014 5:01:23 AM <tstom0> yes
1/12/2014 5:01:29 AM <NegroBawb> with /'s?
1/12/2014 5:01:31 AM <tstom0> the seperate php file at the top of the code I gave you
1/12/2014 5:01:35 AM <tstom0> called grabber.php or something
1/12/2014 5:01:37 AM <+BlackCoyote> i'm currently doing music for the voxelbox and they don't seem to have been dissapointed yet
1/12/2014 5:01:45 AM <Pigman168> ah ok, my website builder doesnt support that which kinda sucks but thanks anyway
1/12/2014 5:02:12 AM <tstom0> ah damn I dont think you will be able to do much while still using weebly or webs or whatever it was you were using
1/12/2014 5:02:19 AM <Pigman168> wix
1/12/2014 5:02:34 AM <tstom0> that one^
1/12/2014 5:02:59 AM <Pigman168> can html filter out some things?
1/12/2014 5:03:46 AM <Pigman168> do you think i could make the html code INSIDE the yaml keys?
1/12/2014 5:05:00 AM <tstom0> Im fairly certain you wont be able to filter out anything using html alone… and idk wtf are yaml keys
1/12/2014 5:05:27 AM <Pigman168> the parent child system
1/12/2014 5:05:31 AM <Pigman168> key 1: value
1/12/2014 5:05:43 AM <Pigman168>  key 2: value
1/12/2014 5:05:49 AM <Pigman168> key 3: value
1/12/2014 5:05:56 AM <+Morphan1> tstom0, theoretically, there could possibly be something in HTML5's JavaScript stuff to let you receive files
1/12/2014 5:06:00 AM <+Morphan1> theoretically
1/12/2014 5:06:14 AM <tstom0> it is located on a different domain though
1/12/2014 5:06:28 AM <+BlackCoyote> anyways AgentK, was fun finding out all that, but i'm gonna get back to making music or else the voxelbox will ditch me and i'll remain nobody D:
1/12/2014 5:06:35 AM <tstom0> trying to load the different domain through an iframe = locked, ajax = locked
1/12/2014 5:06:37 AM <@AgentK> heh, kk
1/12/2014 5:06:40 AM <@AgentK> nice meeting you all
1/12/2014 5:06:41 AM <Pigman168> AgentK: ?
1/12/2014 5:06:44 AM <tstom0> morphan1: ^
1/12/2014 5:06:53 AM <Pigman168> are you gabe?
1/12/2014 5:07:01 AM <@AgentK> No, I'm not Gaben
1/12/2014 5:07:02 AM <@AgentK> lol
1/12/2014 5:07:06 AM <Pigman168> i saw the picture of the meeting and didnt know who gabe was
1/12/2014 5:07:07 AM <+BlackCoyote>  * BlackCoyote shakes head while walking away, and mumbles "17.."
1/12/2014 5:07:12 AM <@AgentK> Oh
1/12/2014 5:07:14 AM <@AgentK> Different Gabe
1/12/2014 5:07:17 AM <@AgentK> No, I'm not him either
1/12/2014 5:07:29 AM <+Morphan1> BlackCoyote, IKR?!!
1/12/2014 5:07:49 AM <+BlackCoyote> i've always felt like i haven't accomplished much
1/12/2014 5:07:59 AM <+BlackCoyote> but this just
1/12/2014 5:08:04 AM <+BlackCoyote> too much for me
1/12/2014 5:08:08 AM <Pigman168> AgentK: ok, thanks
1/12/2014 5:08:10 AM <+BlackCoyote> i died a little
1/12/2014 5:08:28 AM <Pigman168> what do you mean?
1/12/2014 5:08:34 AM <Pigman168> did i say anything wrong?
1/12/2014 5:08:37 AM <+BlackCoyote> no
1/12/2014 5:08:46 AM <+BlackCoyote> i'm just still in quite a shock of agentk's success
1/12/2014 5:09:19 AM <@AgentK> heh, keep at it
1/12/2014 5:09:23 AM <@AgentK> work towards originality
1/12/2014 5:09:24 AM <tstom0> haha
1/12/2014 5:09:26 AM <Pigman168> well he must have worked hard
1/12/2014 5:09:27 AM <@AgentK> innovate
1/12/2014 5:09:30 AM <@AgentK> that's what I did
1/12/2014 5:09:47 AM <Goma> i'm 28 and i just noticed i skipped like 30 minutes of conversation
1/12/2014 5:10:11 AM <Pigman168> what does the age have to do with the time?
1/12/2014 5:10:21 AM <Goma> just don't ask pigman
1/12/2014 5:10:42 AM <+BlackCoyote> excuse me while i go purge my sound driver
1/12/2014 5:10:44 AM <Goma> you weren't there when we talked about age..or better when they talked about it
1/12/2014 5:10:48 AM * +BlackCoyote quit.
1/12/2014 5:10:54 AM <Pigman168> ok, ill check that
1/12/2014 5:10:55 AM <monnierant> http://paste.ehck.fr/?b46eb826d0815a88#+1dCEqI+oc0HqY/JCT+A1vxNCYDfTLw+tIVhX8h3HnQ=
1/12/2014 5:10:56 AM <@monkeybot> Title --> ehck.fr - ZeroBin
1/12/2014 5:10:57 AM <Pigman168> !savelog
1/12/2014 5:10:57 AM <@monkeybot> I have saved a copy of this channel's recent logs to http://mcmonkey4eva.dyndns.org/paste/1269
1/12/2014 5:11:37 AM <+Morphan1> tstom0, I don't think iframes lock different domains
1/12/2014 5:12:12 AM * BlackCoyote joined.
1/12/2014 5:12:14 AM <+Morphan1> lemme try though
1/12/2014 5:12:22 AM * ChanServ gave voice to +BlackCoyote.
1/12/2014 5:13:47 AM <tstom0> hmm after some googling apparently it is possible
1/12/2014 5:14:07 AM <+fullwall> NegroBawb: \\ to escape
1/12/2014 5:14:12 AM <Pigman168> Goma: ok hab verstanden, musst nicht so giftig reagieren
1/12/2014 5:14:17 AM <+fullwall> only escape the ones by themselves
1/12/2014 5:14:26 AM <+fullwall> :) (: -- need to escape both these
1/12/2014 5:14:52 AM <Pigman168> fullwall: do you think its possible to add this kind of commenting: // a comment *//
1/12/2014 5:15:19 AM <Pigman168> commentation? commentary?
1/12/2014 5:15:33 AM <+fullwall> where?
1/12/2014 5:15:36 AM <NegroBawb> fullwall: I have to esocae both ( and ) yea
1/12/2014 5:15:37 AM <NegroBawb> ?
1/12/2014 5:15:43 AM <+fullwall> NegroBawb: only for those two
1/12/2014 5:15:50 AM <+fullwall> because they aren't matched with anything
1/12/2014 5:16:06 AM <+fullwall> (?i) -- don't escape these
1/12/2014 5:16:11 AM <Pigman168> fullwall: in dscript
1/12/2014 5:16:20 AM * EwfsPrince joined.
1/12/2014 5:16:31 AM <NegroBawb> I have to escape all things that are like relevent in regex
1/12/2014 5:16:34 AM <tstom0> Morphan1: this maybe? http://www.hastebin.com/hoxofusode.coffee
1/12/2014 5:16:36 AM <NegroBawb> or hold special meaning?
1/12/2014 5:16:38 AM <Pigman168> because i really like that kind of commentary
1/12/2014 5:16:58 AM <+fullwall> Pigman168: not sure, ask mcmonkey/morphan1
1/12/2014 5:17:05 AM <Pigman168> ok
1/12/2014 5:18:15 AM <Pigman168> Morphan1: could you add the java-like commentary?
1/12/2014 5:18:27 AM <Pigman168>  /* comment */ code
1/12/2014 5:18:43 AM <NegroBawb> #noob
1/12/2014 5:18:57 AM <Pigman168> really?
1/12/2014 5:19:02 AM <Pigman168> hashtagging?
1/12/2014 5:19:02 AM <NegroBawb> no
1/12/2014 5:19:10 AM <Pigman168> dont go that low
1/12/2014 5:19:12 AM <NegroBawb> but you can use that in yaml to comment a line
1/12/2014 5:19:17 AM <+Morphan1> Pigman168, it might be possible... ish... but it wouldn't work correctly all the time
1/12/2014 5:19:24 AM <+Morphan1> if at all
1/12/2014 5:19:25 AM <Pigman168> ok
1/12/2014 5:19:26 AM <NegroBawb> Im insulted you would think I hastagged
1/12/2014 5:19:35 AM <+Morphan1> "Im insulted you"
1/12/2014 5:19:45 AM <NegroBawb> thank you Morphan1
1/12/2014 5:19:46 AM <Pigman168> you did though
1/12/2014 5:19:49 AM <NegroBawb> for putting emphasis
1/12/2014 5:19:52 AM <NegroBawb> I commented it
1/12/2014 5:20:21 AM <NegroBawb> #<-is what you use noob
1/12/2014 5:20:25 AM <Pigman168> with an incorrect use of a hashtag
1/12/2014 5:20:32 AM <Pigman168> # <- for numbers
1/12/2014 5:20:37 AM <Pigman168> # of players
1/12/2014 5:20:39 AM <NegroBawb> DX< #<-ForNoobs
1/12/2014 5:20:39 AM <Pigman168> etc
1/12/2014 5:20:54 AM <Pigman168> # of noobs ?
1/12/2014 5:21:30 AM <NegroBawb> not sure you're hash taggng right
1/12/2014 5:22:04 AM <monnierant> but Pigman168 there is not an exception in console
1/12/2014 5:22:22 AM <monnierant> but it never give me other information that false
1/12/2014 5:22:44 AM <Pigman168> could you show me the log?
1/12/2014 5:24:07 AM <monnierant> http://paste.ehck.fr/?b46eb826d0815a88#+1dCEqI+oc0HqY/JCT+A1vxNCYDfTLw+tIVhX8h3HnQ=
1/12/2014 5:24:07 AM <@monkeybot> Title --> ehck.fr - ZeroBin
1/12/2014 5:24:13 AM <monnierant> yheap Pigman168 just above
1/12/2014 5:24:13 AM <tstom0> morphan1, pigman168, "Unfortunately Wix does not support jQuery/Javacript code. You can try adding external components to your site using HTML widget." I guess its not possible than?
1/12/2014 5:24:32 AM <+Morphan1> oh dang
1/12/2014 5:24:35 AM <Pigman168> only html
1/12/2014 5:25:12 AM <+Morphan1> tstom0, I could only get youtube to work with the iframe anyway :P
1/12/2014 5:25:17 AM <tstom0> xD
1/12/2014 5:25:20 AM <Pigman168> Morphan1: i was thinking of making the keys of a yaml create the html
1/12/2014 5:25:44 AM <tstom0> My advice would be to stop cheaping out and using wix haha
1/12/2014 5:25:55 AM <Pigman168> where should i go?
1/12/2014 5:26:44 AM <tstom0> find a free host that offers a free subdomain, download a free website template, edit it
1/12/2014 5:26:59 AM <tstom0> since you would have had blah.wix anyway
1/12/2014 5:27:05 AM <Pigman168> true
1/12/2014 5:27:06 AM <tstom0> why not blah.random.com
1/12/2014 5:27:12 AM <tstom0> then you have more control
1/12/2014 5:27:17 AM <tstom0> html is super easy to learn
1/12/2014 5:27:21 AM <Pigman168> i know
1/12/2014 5:27:56 AM <tstom0> heres some free website templates http://html5up.net/
1/12/2014 5:27:56 AM <@monkeybot> Title --> HTML5 UP! Responsive HTML5 and CSS3 Site Templates
1/12/2014 5:30:59 AM <tstom0> !savelog