2015-05-31 00:10:12 Testyo [Pikipedia RC] Spherical Atlas by GlassBomb (+87 m Taken from an LP. Presumably the general Spanish name.) http://www.pikminwiki.com/index.php?title=Spherical_Atlas&curid=1497&diff=149876&oldid=145744 2015-05-31 00:10:12 Testyo [Pikipedia RC] Forum:Pikmin 2 Models by Scruffy (+1540 N Rendered Awakening Wood in 3d modeling software.) http://www.pikminwiki.com/index.php?title=Forum:Pikmin_2_Models&curid=18991&diff=149877&oldid=0 2015-05-31 00:28:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-05-31 00:28:17 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-05-31 01:29:21 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Bye bye everyone!) 2015-05-31 01:41:22 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-05-31 03:21:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-05-31 09:40:15 --> Yoshi2 (Yoshi2@4646-0ya5-gr7m-0-2480-i1ud-qg0t-969q.ipv8dyn.netcologne.de) has joined #pikipedia 2015-05-31 11:47:52 --> BluePikmin (Mibbit@ro6-20-270-113-31.compute-5.amazonaws.com) has joined #pikipedia 2015-05-31 11:51:24 BluePikmin Hi i was wondering if you knew some secrets for Pikmin 3 2015-05-31 11:52:19 BluePikmin are you guys there?? 2015-05-31 11:52:46 BluePikmin hello 2015-05-31 11:52:58 BluePikmin COME ON 2015-05-31 11:53:17 Yoshi2 a lot of the people here could be busy with other things at the moment 2015-05-31 11:53:49 BluePikmin oooh 2015-05-31 11:54:02 BluePikmin thanks 2015-05-31 11:55:17 <-- BluePikmin (Mibbit@ro6-20-270-113-31.compute-5.amazonaws.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-05-31 11:55:49 --> BluePikmin (Mibbit@ro0-985-06-60-948.compute-9.amazonaws.com) has joined #pikipedia 2015-05-31 11:56:19 BluePikmin I am back 2015-05-31 11:56:45 Yoshi2 30 seconds passed between you leaving and you returning 2015-05-31 11:57:01 BluePikmin I know 2015-05-31 11:57:31 BluePikmin Aren't I funny 2015-05-31 11:58:27 BluePikmin bye 2015-05-31 11:58:33 Yoshi2 see you 2015-05-31 12:03:33 <-- BluePikmin (Mibbit@ro0-985-06-60-948.compute-9.amazonaws.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-05-31 12:34:09 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-05-31 12:34:10 Testyo Hey everyone! 2015-05-31 12:35:06 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-05-31 12:35:06 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-05-31 12:35:52 Yoshi2 hey Espyo & Testyo 2015-05-31 12:35:53 Testyo they're not TOO flashy 2015-05-31 12:38:13 @Espyo hey 2015-05-31 12:39:47 @J way too flashy 2015-05-31 13:48:26 @Espyo https://www.youtube.com/watch?v=aJOw6phpVKA I REALLY wish I could understand what he's doing 2015-05-31 13:49:54 @Espyo oh, I think I get it 2015-05-31 13:54:02 Yoshi2 alright, so this is really annoying me right now 2015-05-31 13:54:10 Yoshi2 I'm setting up shared memory like this: http://pastebin.com/9x4KkjMu 2015-05-31 13:54:26 Yoshi2 but all the stuff my child processes do in the shared memory is completely ignored 2015-05-31 13:56:28 @Espyo ah processes... 2015-05-31 13:56:32 @Espyo the headaches... 2015-05-31 13:56:37 @Espyo can't you use threads instead? 2015-05-31 13:57:08 Yoshi2 we are supposed to use fork and shared memory and semaphores 2015-05-31 13:57:10 Yoshi2 yay for homework 2015-05-31 13:57:27 @J ignored? 2015-05-31 13:58:06 @Espyo ah nuts 2015-05-31 13:58:31 Yoshi2 J: indeed, it seems as if only the changes the parent process does stick 2015-05-31 13:59:08 @J you mean the child can read back its changes, but the parent can't see them? 2015-05-31 13:59:13 @J or even the child can't see its changes? 2015-05-31 14:00:50 @Espyo I think it's more like the children can't write 2015-05-31 14:00:51 @Espyo only read 2015-05-31 14:01:31 Yoshi2 the children can read, and do changes, but the changes only carry on to the children of the children 2015-05-31 14:02:17 Yoshi2 the parent does not see any of the changes the children have done 2015-05-31 14:02:38 Yoshi2 if it's any help, here is the part of the code where I use the shared memory: http://pastebin.com/zAfQJm5y 2015-05-31 14:03:25 Yoshi2 it's a parallelized implementation of quicksort for sorting strings from a file 2015-05-31 14:05:37 @J you're calling parallel_sort from multiple processes? 2015-05-31 14:07:04 Yoshi2 parallel_sort is called once, which starts parallel_quicksort, and parallel_quicksort calls itself recursively after forking 2015-05-31 14:08:40 @J so the child does nothing right now? 2015-05-31 14:08:57 @J oh, never mind 2015-05-31 14:10:08 Yoshi2 the child calls parallel_quicksort and then exits 2015-05-31 14:11:08 Yoshi2 I am considering continuing work as if it worked correctly, and then ask my tutor about it 2015-05-31 14:11:35 @J I don't see where you're mapping the memory on the child 2015-05-31 14:12:36 Yoshi2 should I map it in the child again? 2015-05-31 14:12:42 @J also you don't assign any memory for the 'children' pointer 2015-05-31 14:13:24 @J well, I've never done this before, but I get the impression you need to actually open the shared memory object in every process 2015-05-31 14:14:47 @J you need to run shm_open without O_CREAT in the child then mmap, I guess 2015-05-31 14:16:11 Yoshi2 that does sound like it's worth giving a try 2015-05-31 14:16:40 @J I guess you've done multiprocessing in Python where you can just use all the variables in the current scope from the parent and it just magically works 2015-05-31 14:17:18 @J AFAIK in C, you shouldn't use _any_ data that was defined or memory that was allocated in the parent 2015-05-31 14:18:06 Yoshi2 as far as I can tell, when forking, the child and the parent are pretty much the same in terms of what data they have 2015-05-31 14:21:58 Yoshi2 in linux, the parent and the child even operate in the same space until the child changes something. Then the child receives its own space somewhere else, but the data for that is copied from the parent 2015-05-31 14:22:36 @J right, which is exactly your problem, isn't it? 2015-05-31 14:24:40 @J I don't know, I might be making stuff up 2015-05-31 14:30:05 Testyo [Pikipedia RC] Scornet by LeGribouilleur (+104) http://www.pikminwiki.com/index.php?title=Scornet&curid=9686&diff=149879&oldid=149800 2015-05-31 15:00:15 Yoshi2 if that does end up being my issue, then I will have to rething the way I think about child processes and shared memory 2015-05-31 15:07:22 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-05-31 15:15:53 Yoshi2 I wonder if I can sue my uni for the psychological issues caused by their homework 2015-05-31 15:19:19 @J pfft 2015-05-31 15:22:53 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit 2015-05-31 15:23:15 Yoshi2 alright, so I changed the thing so it mmap's stuff in the child processes 2015-05-31 15:23:22 Yoshi2 output is the same 2015-05-31 15:26:31 @J oh well 2015-05-31 15:27:08 @J you probably have some minor mistake somewhere 2015-05-31 15:28:49 Yoshi2 that minor mistake has been a major pain in the butt 2015-05-31 15:29:10 Yoshi2 I've sent the code to a friend of mine who (hopefuly) has worked on the task too, let's see what he has to say 2015-05-31 15:30:25 @J when this sort of thing happens, I generally try to write the basic part that's not working in as little code as possible 2015-05-31 15:30:30 @J then add stuff until it breaks 2015-05-31 15:32:14 Yoshi2 for the most part, I've pinned the issue down 2015-05-31 15:32:15 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-05-31 15:33:03 Yoshi2 the issue is some sort of misunderstanding of shared memory on my part, and I need to find it and fix it 2015-05-31 15:33:20 Yoshi2 the "add stuff until it breaks" thing doesn't work very well if the code doesn't break 2015-05-31 15:34:39 @J what do you mean, it doesn't break? 2015-05-31 15:35:13 Yoshi2 no segfaults, no crashes 2015-05-31 15:35:22 Yoshi2 it just doesn't sort the input correctly 2015-05-31 15:35:25 @J by 'break', I mean 'not do the right thing' 2015-05-31 15:35:46 @J your issue was that child processes writing to memory don't affect the memory read by the parent 2015-05-31 15:36:03 @J just a working version of that is probably 20 lines, really simple 2015-05-31 15:36:08 @J then add stuff until it stops working 2015-05-31 15:36:28 Yoshi2 mhm 2015-05-31 16:43:09 --> Yoshi2_ (Yoshi2@1022-4gq7-rkr0-1-q6q2-hx4x-5886-2fz1.ipv0dyn.netcologne.de) has joined #pikipedia 2015-05-31 16:46:16 <-- Yoshi2 (Yoshi2@4646-0ya5-gr7m-0-2480-i1ud-qg0t-969q.ipv8dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-05-31 16:54:12 --> Yoshi2__ (Yoshi2@2001:4dd3:ffb2:w:zzmk:ipnh:jpgv:nvwh) has joined #pikipedia 2015-05-31 16:57:16 <-- Yoshi2_ (Yoshi2@1022-4gq7-rkr0-1-q6q2-hx4x-5886-2fz1.ipv0dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-05-31 17:03:59 -- Yoshi2__ is now known as Yoshi2 2015-05-31 17:04:13 Yoshi2 well, my friend has no idea either 2015-05-31 17:04:47 Yoshi2 guess that settles it 2015-05-31 17:19:14 --> Yoshi2_ (Yoshi2@6522-9pi2-bjs7-1-r6x7-ae4l-0381-7co1.ipv5dyn.netcologne.de) has joined #pikipedia 2015-05-31 17:22:34 <-- Yoshi2 (Yoshi2@2001:4dd3:ffb2:w:zzmk:ipnh:jpgv:nvwh) has quit (Ping timeout: 252 seconds) 2015-05-31 17:37:36 --> Yoshi2__ (Yoshi2@8403-8mh4-uqh8-2-t4b4-iz6w-6074-9dq2.ipv7dyn.netcologne.de) has joined #pikipedia 2015-05-31 17:40:10 <-- Yoshi2_ (Yoshi2@6522-9pi2-bjs7-1-r6x7-ae4l-0381-7co1.ipv5dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-05-31 18:15:05 -- Yoshi2__ is now known as Yoshi2 2015-05-31 19:20:04 Testyo but now, to find yeah 2015-05-31 19:43:12 --> Yoshi2_ (Yoshi2@2001:4dd3:c04c:i:rjug:pjvs:qoth:zzpn) has joined #pikipedia 2015-05-31 19:44:28 <-- Yoshi2 (Yoshi2@8403-8mh4-uqh8-2-t4b4-iz6w-6074-9dq2.ipv7dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-05-31 22:20:57 <-- Yoshi2_ (Yoshi2@2001:4dd3:c04c:i:rjug:pjvs:qoth:zzpn) has quit (Quit: Leaving) 2015-05-31 22:28:29 Testyo hi lol 2015-05-31 22:29:02 @J wow 2015-05-31 22:37:19 @Espyo hm? 2015-05-31 23:02:58 @J [22:28:29] Testyo hi lol 2015-05-31 23:02:59 Testyo >_< what about making one? Or is there a way that it uses the parser for each game and puts out which events it has not encountered 2015-05-31 23:15:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-05-31 23:15:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-01 00:03:19 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-01 00:03:33 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-01 00:30:17 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Ping timeout: 272 seconds) 2015-06-01 00:33:20 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-06-01 01:14:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-01 01:16:48 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-01 01:54:56 -- irc: disconnected from server 2015-06-01 01:55:12 --> J (J@f-771.cust-91586.ip.static.uno.uk.net) has joined #pikipedia 2015-06-01 01:55:12 -- Topic for #pikipedia is "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com | Rules: http://pikminwiki.com/Help:Chat" 2015-06-01 01:55:12 -- Topic set by PikFan on Sat, 03 May 2014 19:36:58 2015-06-01 01:55:12 -- Channel #pikipedia: 7 nicks (1 op, 0 voices, 6 normals) 2015-06-01 01:55:12 -- URL for #pikipedia: http://www.pikminwiki.com 2015-06-01 01:55:12 -- Mode #pikipedia [+o J] by ChanServ 2015-06-01 01:55:13 -- Channel created on Sat, 27 Jul 2013 18:55:16 2015-06-01 05:59:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-01 06:21:11 --> Yoshi2 (Yoshi2@9196-5kd5-o1ol-0-7474-d308-27jy-h02d.ipv8dyn.netcologne.de) has joined #pikipedia 2015-06-01 06:22:41 <-- Yoshi2 (Yoshi2@9196-5kd5-o1ol-0-7474-d308-27jy-h02d.ipv8dyn.netcologne.de) has quit (Client Quit) 2015-06-01 09:10:41 --> Yoshi2 (Yoshi2@063-563.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-01 09:38:06 <-- Yoshi2 (Yoshi2@063-563.eduroam.rwth-aachen.de) has quit (Read error: Connection reset by peer) 2015-06-01 11:04:20 --> Yoshi2 (Yoshi2@063-563.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-01 11:48:28 <-- Yoshi2 (Yoshi2@063-563.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-01 16:05:05 --> Yoshi2 (Yoshi2@2001:4dd3:c1ef:w:ulns:jzkr:ysrg:lsvg) has joined #pikipedia 2015-06-01 16:30:39 --> Yoshi2_ (Yoshi2@2001:4dd3:c492:z:lnrv:khjp:zuvo:hzpj) has joined #pikipedia 2015-06-01 16:34:04 <-- Yoshi2 (Yoshi2@2001:4dd3:c1ef:w:ulns:jzkr:ysrg:lsvg) has quit (Ping timeout: 252 seconds) 2015-06-01 17:29:59 <-- Yoshi2_ (Yoshi2@2001:4dd3:c492:z:lnrv:khjp:zuvo:hzpj) has quit (Read error: Connection reset by peer) 2015-06-01 17:30:36 --> Yoshi2_ (Yoshi2@2001:4dd3:c492:z:lnrv:khjp:zuvo:hzpj) has joined #pikipedia 2015-06-01 18:10:39 --> Yoshi2__ (Yoshi2@2001:4dd3:c4f0:y:yyop:xnvt:nqnx:klwx) has joined #pikipedia 2015-06-01 18:13:37 <-- Yoshi2_ (Yoshi2@2001:4dd3:c492:z:lnrv:khjp:zuvo:hzpj) has quit (Ping timeout: 252 seconds) 2015-06-01 18:14:17 --> Yoshi2_ (Yoshi2@mtkc-10-56-455-440.netcologne.de) has joined #pikipedia 2015-06-01 18:16:22 <-- Yoshi2__ (Yoshi2@2001:4dd3:c4f0:y:yyop:xnvt:nqnx:klwx) has quit (Ping timeout: 252 seconds) 2015-06-01 18:52:32 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-01 18:52:32 Testyo Greetings everyone! 2015-06-01 18:53:19 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-01 18:53:20 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-01 18:54:01 Yoshi2_ hey Espyo & Testyo 2015-06-01 18:54:02 Testyo amazing 2015-06-01 18:54:10 -- Yoshi2_ is now known as Yoshi2 2015-06-01 19:00:35 @Espyo hi 2015-06-01 19:01:16 @J amazing indeed 2015-06-01 19:02:41 @Espyo mhm 2015-06-01 19:02:57 Yoshi2 J: so that issue from yesterday was caused by a swap function which was given to us that I used 2015-06-01 19:03:24 Yoshi2 instead of swapping two pointers, the function swapped the content of two strings 2015-06-01 19:03:45 Yoshi2 now, I only had the pointers in the shared memory, but the actual content was not in the shared memory 2015-06-01 19:04:52 Yoshi2 and you already know the rest of the story 2015-06-01 19:07:39 Yoshi2 What do we learn from this? Never trust the code given to you :V 2015-06-01 19:09:42 Yoshi2 but it does make me rather furious that I spent an entire day on an issue caused by a single function 2015-06-01 19:49:42 @J does sharing pointers between processes even work? 2015-06-01 19:54:08 Yoshi2 well, I can share the pointer values between processes through the shared memory thing 2015-06-01 19:54:38 Yoshi2 but it is kinda weird that the child processes can access the data the pointers point to 2015-06-01 19:57:29 Yoshi2 it would mean that the child processes could peek into the first parent process that started it all 2015-06-01 19:57:34 Yoshi2 without causing a segfault 2015-06-01 20:02:17 @J okay, 'explosive' is not something you want sauce to be 2015-06-01 20:05:58 Yoshi2 explosive sauce sounds interesting 2015-06-01 20:07:49 @J no 2015-06-01 20:08:44 Yoshi2 booom 2015-06-01 20:54:05 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-01 21:36:41 <-- Yoshi2 (Yoshi2@mtkc-10-56-455-440.netcologne.de) has quit (Quit: Leaving) 2015-06-01 21:48:45 Testyo [Pikipedia RC] Forum:Pikmin 2 Models by Bluekirby7 (+677 Asking a small question) http://www.pikminwiki.com/index.php?title=Forum:Pikmin_2_Models&curid=18991&diff=149943&oldid=149886 2015-06-01 21:48:45 Testyo [Pikipedia RC] Forum:Pikmin 2 Models by Bluekirby7 (-2) http://www.pikminwiki.com/index.php?title=Forum:Pikmin_2_Models&curid=18991&diff=149944&oldid=149943 2015-06-01 22:34:00 Testyo [Pikipedia RC] Forum:Pikmin 2 Models by Bluekirby7 (+520) http://www.pikminwiki.com/index.php?title=Forum:Pikmin_2_Models&curid=18991&diff=149946&oldid=149945 2015-06-01 22:44:05 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-01 22:44:05 Testyo [Fanon RC] User account En Passant created http://www.pikminfanon.com/index.php?title=User:En_Passant 2015-06-01 22:44:05 Testyo [Fanon RC] User:Dry Paratroopa by Dry Paratroopa (-474 Changing my username.) http://www.pikminfanon.com/index.php?title=User:Dry_Paratroopa&curid=9203&diff=48140&oldid=45957 2015-06-01 22:44:05 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-01 22:46:14 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-01 22:49:06 Testyo [Fanon RC] Pikmin V by En Passant (-8 m New name.) http://www.pikminfanon.com/index.php?title=Pikmin_V&curid=9285&diff=48142&oldid=48104 2015-06-01 22:49:07 Testyo [Fanon RC] User talk:Dry Paratroopa by Dry Paratroopa (-2556 New name.) http://www.pikminfanon.com/index.php?title=User_talk:Dry_Paratroopa&curid=9202&diff=48143&oldid=47484 2015-06-01 22:49:07 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-01 22:51:48 @Espyo so I'm trying to use Blender to take a screenshot of the Awakening Wood 2015-06-01 22:51:49 @Espyo I 2015-06-01 22:51:51 @Espyo don't know 2015-06-01 22:51:53 @Espyo what I am doing 2015-06-01 22:51:54 @Espyo like 2015-06-01 22:51:55 @Espyo at ALL 2015-06-01 22:54:11 Testyo [Fanon RC] User:Dry Paratroopa/sig by Dry Paratroopa (-123 New name.) http://www.pikminfanon.com/index.php?title=User:Dry_Paratroopa/sig&curid=9205&diff=48146&oldid=45934 2015-06-01 22:54:12 Testyo [Fanon RC] User:Dry Paratroopa/sig by Dry Paratroopa (+123 Actually, I should probably keep it here so I don't break any talk pages.) http://www.pikminfanon.com/index.php?title=User:Dry_Paratroopa/sig&curid=9205&diff=48147&oldid=48146 2015-06-01 22:54:12 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-01 22:59:13 Testyo [Pikipedia RC] User account En Passant created http://www.pikminwiki.com/index.php?title=User:En_Passant 2015-06-01 22:59:13 Testyo [Pikipedia RC] User:Dry Paratroopa by Dry Paratroopa (-60 New name.) http://www.pikminwiki.com/index.php?title=User:Dry_Paratroopa&curid=10607&diff=149948&oldid=85893 2015-06-01 22:59:14 Testyo [Fanon RC] Pikmin 4:Bacterial Outbre... by PikPik1248 (-20) http://www.pikminfanon.com/index.php?title=Pikmin_4:Bacterial_Outbreak&curid=9572&diff=48149&oldid=48139 2015-06-01 22:59:14 Testyo [Fanon RC] File:En Passant.png uploaded by En Passant http://www.pikminfanon.com/index.php?title=File:En_Passant.png 2015-06-01 22:59:14 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-01 23:04:15 Testyo [Pikipedia RC] User talk:Dry Paratroopa by Dry Paratroopa (+33 N Redirected page to [[User talk:En Passant]]) http://www.pikminwiki.com/index.php?title=User_talk:Dry_Paratroopa&curid=18999&diff=149949&oldid=0 2015-06-01 23:04:15 Testyo [Pikipedia RC] User:En Passant by En Passant (+199 N Created page with "Formerly Dry. I changed my name because Dry didn't feel origi...) http://www.pikminwiki.com/index.php?title=User:En_Passant&curid=19000&diff=149950&oldid=0 2015-06-01 23:17:05 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-01 23:20:33 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-01 23:35:18 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Read error: Connection reset by peer) 2015-06-02 00:05:23 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: So long everyone!) 2015-06-02 00:05:28 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-02 00:41:15 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-02 02:14:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-02 02:15:18 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 02:18:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 02:20:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 02:31:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-02 02:31:55 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 02:31:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Remote host closed the connection) 2015-06-02 02:32:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 02:40:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-02 02:41:10 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 02:41:12 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Remote host closed the connection) 2015-06-02 02:42:19 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 02:43:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 02:44:34 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 02:46:06 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 02:46:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 02:58:07 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-02 02:58:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 02:58:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 02:59:23 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 02:59:49 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 03:00:30 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 03:01:18 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 03:02:07 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 03:17:37 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-02 03:17:59 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 03:18:10 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 03:19:06 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 03:22:03 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 03:22:20 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 03:23:26 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 03:23:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 03:24:23 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 03:26:05 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 03:29:55 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-02 03:30:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 03:30:13 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Remote host closed the connection) 2015-06-02 06:38:34 --> Yoshi2 (Yoshi2@2001:4dd3:c6f9:i:npyq:rmrt:isxi:iiwy) has joined #pikipedia 2015-06-02 06:47:49 <-- Yoshi2 (Yoshi2@2001:4dd3:c6f9:i:npyq:rmrt:isxi:iiwy) has quit (Quit: Leaving) 2015-06-02 07:07:53 --> CyborgKing0 (Mibbit@114.108.sgw.il) has joined #pikipedia 2015-06-02 07:08:36 CyborgKing0 Hi. 2015-06-02 07:09:26 <-- CyborgKing0 (Mibbit@114.108.sgw.il) has quit (Client Quit) 2015-06-02 13:45:39 --> Klemen702 (Mibbit@okp-261-769-305.dynamic.siol.net) has joined #pikipedia 2015-06-02 13:45:58 Klemen702 heyo, haven't been here for some time 2015-06-02 13:50:17 <-- Klemen702 (Mibbit@okp-261-769-305.dynamic.siol.net) has quit (Client Quit) 2015-06-02 13:57:40 --> Yoshi2 (Yoshi2@206-162.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-02 15:07:43 <-- Yoshi2 (Yoshi2@206-162.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-02 17:24:43 --> Yoshi2 (Yoshi2@5339-7hx6-c72j-8-680e-p038-14k4-8uw5.ipv9dyn.netcologne.de) has joined #pikipedia 2015-06-02 18:44:19 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-02 18:44:19 Testyo Greetings everyone! 2015-06-02 18:45:48 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-02 18:45:49 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-02 18:46:00 Yoshi2 hey Espyo & Testyo 2015-06-02 18:46:01 Testyo but after asking somebody if I could do it, them going berserk and it doesn't work? 2015-06-02 18:50:24 --> Yoshi2_ (Yoshi2@3903-3yf4-nd41-2-vz41-4h6v-8eky-3807.ipv7dyn.netcologne.de) has joined #pikipedia 2015-06-02 18:53:07 <-- Yoshi2 (Yoshi2@5339-7hx6-c72j-8-680e-p038-14k4-8uw5.ipv9dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-02 18:54:12 --> Yoshi2__ (Yoshi2@sfiy-25-75-737-45.netcologne.de) has joined #pikipedia 2015-06-02 18:55:21 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-02 18:56:58 <-- Yoshi2_ (Yoshi2@3903-3yf4-nd41-2-vz41-4h6v-8eky-3807.ipv7dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-02 18:58:09 @Espyo hi 2015-06-02 18:58:29 @J . 2015-06-02 18:58:30 UltraMario hai 2015-06-02 19:07:51 @Espyo http://splatoon.wikia.com/wiki/Thread:5286 right on the dot 2015-06-02 19:07:52 @Espyo sigh 2015-06-02 19:08:38 UltraMario >wikia 2015-06-02 19:08:39 UltraMario ew 2015-06-02 19:12:18 @J yep 2015-06-02 19:24:39 -- Yoshi2__ is now known as Yoshi2 2015-06-02 19:30:57 --> WikiGuest (Mibbit@arbs-59-497-38-584.washdc.dsl-w.verizon.net) has joined #pikipedia 2015-06-02 19:31:24 <-- WikiGuest (Mibbit@arbs-59-497-38-584.washdc.dsl-w.verizon.net) has quit (Client Quit) 2015-06-02 22:04:30 <-- Yoshi2 (Yoshi2@sfiy-25-75-737-45.netcologne.de) has quit (Quit: Leaving) 2015-06-02 22:21:38 Testyo hey and distribute that around 2015-06-03 00:05:29 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-03 00:05:39 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-03 01:30:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-03 01:30:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-03 01:49:09 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-03 03:10:04 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-03 03:11:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-03 04:22:41 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-03 04:59:58 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-03 06:05:00 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-03 08:50:21 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-03 09:23:39 --> Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-03 10:09:37 <-- Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has quit (Read error: Connection reset by peer) 2015-06-03 10:10:07 --> Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-03 10:47:42 <-- Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-03 11:10:15 --> Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-03 11:54:24 <-- Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-03 13:28:58 --> Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-03 14:44:22 <-- Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-03 14:59:50 --> Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-03 16:36:31 <-- Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-03 18:41:37 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-03 18:41:37 Testyo Greetings everyone! 2015-06-03 18:42:28 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-03 18:42:28 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-03 21:28:26 --> Yoshi2 (Yoshi2@0389-2yf6-nh35-3-5pma-96c2-9ljc-7455.ipv9dyn.netcologne.de) has joined #pikipedia 2015-06-03 21:38:06 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-03 21:38:08 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-03 21:42:58 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-03 21:42:58 Testyo Evening everyone! 2015-06-03 21:43:51 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-03 21:43:51 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-03 21:46:35 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-03 21:51:06 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-03 21:51:07 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-03 21:51:12 @PikFan hi 2015-06-03 21:51:44 Yoshi2 hey PikFan 2015-06-03 21:52:38 @PikFan so for some reason, images are broken on fanon 2015-06-03 21:52:40 @PikFan no clue why 2015-06-03 21:52:49 @Espyo hi 2015-06-03 21:53:09 UltraMario uh 2015-06-03 21:54:09 @PikFan oh, never mind 2015-06-03 21:55:46 @PikFan so I've been organizing the categories 2015-06-03 21:56:39 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-03 21:57:03 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario2))) 2015-06-03 21:58:03 Testyo [Fanon RC] Template:PAODS by PikFan23 (+1 m Holy crap those images were huge. Also changing the category.) http://www.pikminfanon.com/index.php?title=Template:PAODS&curid=9564&diff=48211&oldid=48059 2015-06-03 21:58:52 @PikFan I can't understand this user http://www.pikminfanon.com/User_talk:LoganPikmin 2015-06-03 21:59:09 @PikFan why would you put your game banner template on your user talk 2015-06-03 22:01:16 -- UltraMario2 is now known as UltraMario 2015-06-03 22:02:30 @Espyo heh 2015-06-03 22:02:47 @PikFan ah, noobs 2015-06-03 22:03:09 Testyo [Fanon RC] User talk:LoganPikmin by PikFan23 (+213) http://www.pikminfanon.com/index.php?title=User_talk:LoganPikmin&curid=9559&diff=48212&oldid=48122 2015-06-03 22:05:19 @PikFan it would be super convenient if MediaWiki could let you delete an account 2015-06-03 22:05:28 @Espyo hm, yeah 2015-06-03 22:05:47 @PikFan I did some looking around, and apparently there's an extension for that 2015-06-03 22:05:58 @PikFan though it doesn't delete accounts, but merges them 2015-06-03 22:07:02 Yoshi2 merges them? 2015-06-03 22:07:04 * Yoshi2 shudders 2015-06-03 22:07:09 @PikFan heh 2015-06-03 22:07:39 @PikFan speaking of merging, it's been almost a year since we started merging with Pikmin Wiki 2015-06-03 22:08:12 @PikFan this year also happens to be the 10-year anniversary of Pikipedia's creation 2015-06-03 22:08:14 Testyo [Fanon RC] User talk:En Passant by PikFan23 (+58 /* Renaming */ ) http://www.pikminfanon.com/index.php?title=User_talk:En_Passant&curid=9582&diff=48213&oldid=48205 2015-06-03 22:08:40 @PikFan and the 5-year anniversary of joining NIWA 2015-06-03 22:08:46 @PikFan ...time goes by too fast 2015-06-03 22:09:46 Yoshi2 it is ridiculous how quickly time passes 2015-06-03 22:23:20 Testyo [Fanon RC] User talk:PikFan23 by En Passant (+226 /* Username Change */ ) http://www.pikminfanon.com/index.php?title=User_talk:PikFan23&curid=4203&diff=48214&oldid=48208 2015-06-03 22:31:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-03 22:31:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-03 22:36:24 @PikFan ...I think I made it sound TOO urgent http://www.pikminfanon.com/index.php?title=User_talk%3AEn_Passant&action=historysubmit&diff=48215&oldid=48213 2015-06-03 22:36:38 @PikFan I didn't even mean for it to sound urgent 2015-06-03 22:38:24 Testyo [Fanon RC] User talk:En Passant by PikFan23 (+692 /* Renaming */ ) http://www.pikminfanon.com/index.php?title=User_talk:En_Passant&curid=9582&diff=48215&oldid=48213 2015-06-03 22:44:52 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-03 22:45:01 @PikFan hi 2015-06-03 22:45:48 En_Passant hi 2015-06-03 22:46:03 En_Passant So who does have user account management? 2015-06-03 22:46:16 @PikFan Porplemontage, probably 2015-06-03 22:46:33 @PikFan he's the domain owner, if I remember right 2015-06-03 22:48:37 En_Passant Does he ever come on anymore? 2015-06-03 22:49:22 @PikFan he doesn't edit, no, but should respond if you ask him about it 2015-06-03 22:50:43 En_Passant Who has more rights, admins or bureaucrats? 2015-06-03 22:50:59 @PikFan bureaucrats 2015-06-03 22:52:05 En_Passant oh 2015-06-03 22:52:11 En_Passant so we can't ask Peach 2015-06-03 22:52:18 @PikFan nope 2015-06-03 22:55:41 En_Passant Okay, posted on his talk page 2015-06-03 22:55:55 En_Passant After this stupid captcha, at least 2015-06-03 22:56:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-03 22:56:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-03 22:56:52 @PikFan how come you keep getting captchas? 2015-06-03 22:58:22 En_Passant Beats me 2015-06-03 22:58:30 Testyo [Fanon RC] User talk:Porplemontage by En Passant (+537) http://www.pikminfanon.com/index.php?title=User_talk:Porplemontage&curid=11&diff=48216&oldid=44279 2015-06-03 22:59:01 En_Passant Maybe I haven't had enough page edits 2015-06-03 22:59:08 @PikFan hmm 2015-06-03 22:59:33 @PikFan I wonder if it has to do with you having the same IP as Dry 2015-06-03 23:00:04 En_Passant Hey, he responded already 2015-06-03 23:00:06 En_Passant Said yes 2015-06-03 23:00:10 @PikFan oh wow 2015-06-03 23:00:15 @PikFan great 2015-06-03 23:05:59 @Espyo that is Dry 2015-06-03 23:06:03 @Espyo wait 2015-06-03 23:06:17 @Espyo I'm confused 2015-06-03 23:06:29 En_Passant I am Dry, yes 2015-06-03 23:06:37 En_Passant I changed my name because I didn't like it 2015-06-03 23:06:44 En_Passant And I did so by making a new account 2015-06-03 23:06:54 En_Passant as I didn't know renaming was a thing 2015-06-03 23:07:30 En_Passant Now I do, so Porple will delete the new account so Dry can be renamed and I can keep my edit count 2015-06-03 23:08:32 Testyo [Fanon RC] User:En Passant by En Passant (+10 m) http://www.pikminfanon.com/index.php?title=User:En_Passant&curid=9581&diff=48221&oldid=48218 2015-06-03 23:08:32 Testyo [Fanon RC] User talk:Dry Paratroopa by Dry Paratroopa (+3892) http://www.pikminfanon.com/index.php?title=User_talk:Dry_Paratroopa&curid=9202&diff=48222&oldid=48143 2015-06-03 23:08:33 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-03 23:09:04 @PikFan welp 2015-06-03 23:09:11 @PikFan all's well that ends well 2015-06-03 23:10:01 En_Passant Also, my signature broke 2015-06-03 23:10:06 En_Passant It doesn't like the new picture 2015-06-03 23:12:16 En_Passant I should probably stop editing until the rename happens 2015-06-03 23:12:34 @PikFan hm, yeah 2015-06-03 23:12:37 En_Passant So that I quit being confused on what I'm doing 2015-06-03 23:12:42 @PikFan heh 2015-06-03 23:12:56 @PikFan I should ask Porple what is going on with all the errors and stuff 2015-06-03 23:13:05 @PikFan is the wiki slow for you? 2015-06-03 23:13:23 En_Passant Yes, and I get fatal errors sometimes 2015-06-03 23:13:30 @PikFan ah 2015-06-03 23:13:34 Testyo [Fanon RC] (log) User:Porplemontage by Porplemontage (0) http://www.pikminfanon.com/index.php?title=User:Porplemontage&curid=12&diff=0&oldid=0 2015-06-03 23:13:34 Testyo [Fanon RC] (log) User:Dry Paratroopa by Porplemontage (0 71 edits. Reason: ) http://www.pikminfanon.com/index.php?title=User:Dry_Paratroopa&curid=9203&diff=0&oldid=0 2015-06-03 23:13:34 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-03 23:13:39 @PikFan so you're getting those, too 2015-06-03 23:13:58 @PikFan Espyo, didn't you also say you got those, too? 2015-06-03 23:14:30 @PikFan and what's up with all the broken images, good grief 2015-06-03 23:17:45 En_Passant What happened to the cool background 2015-06-03 23:17:48 En_Passant On Fanon, at least 2015-06-03 23:18:07 @PikFan the grassy one? 2015-06-03 23:18:11 En_Passant Yes 2015-06-03 23:18:15 @PikFan hmm 2015-06-03 23:18:19 @PikFan is the background white? 2015-06-03 23:18:27 En_Passant Yes 2015-06-03 23:18:35 Testyo [Fanon RC] User talk:Porplemontage by En Passant (+74) http://www.pikminfanon.com/index.php?title=User_talk:Porplemontage&curid=11&diff=48234&oldid=48223 2015-06-03 23:18:37 @PikFan yeah, I don't know what's up with that 2015-06-03 23:18:41 @PikFan it randomly does that 2015-06-03 23:18:52 En_Passant Wait, is account renaming possible on Pikminwiki too? 2015-06-03 23:18:56 @PikFan I think it's related to the fatal error thing 2015-06-03 23:19:02 @PikFan probably 2015-06-03 23:19:16 En_Passant *sigh* 2015-06-03 23:19:20 @PikFan I didn't think that fanon had that extension 2015-06-03 23:19:34 @PikFan (I'm talking about the deleting/merging) 2015-06-03 23:21:40 En_Passant Espyo, you can take care of the switch on Pikminwiki, can't you? 2015-06-03 23:21:41 @Espyo I got what, sorry? 2015-06-03 23:21:59 @PikFan fatal errors 2015-06-03 23:22:13 @PikFan also slowness and random white backgrounds 2015-06-03 23:25:12 @Espyo oh 2015-06-03 23:25:14 @Espyo I used to get that, yeah 2015-06-03 23:25:17 @Espyo haven't checked of late 2015-06-03 23:25:33 @Espyo En_Passant: switch? 2015-06-03 23:26:08 <-- Yoshi2 (Yoshi2@0389-2yf6-nh35-3-5pma-96c2-9ljc-7455.ipv9dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-03 23:29:49 @PikFan delete En Passant so you can move Dry Paratroopa to En Passant 2015-06-03 23:35:28 @PikFan though I don't think you can do that 2015-06-03 23:42:01 En_Passant Yeah 2015-06-04 00:06:33 @Espyo I can't 2015-06-04 00:06:41 @PikFan yep 2015-06-04 00:06:43 @Espyo wait, delete the user page? 2015-06-04 00:06:53 @PikFan the user 2015-06-04 00:07:06 @Espyo nope, can't 2015-06-04 00:07:08 @Espyo and now bed 2015-06-04 00:07:08 @Espyo night 2015-06-04 00:07:11 @PikFan night 2015-06-04 00:07:19 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-04 00:07:23 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-04 00:08:04 En_Passant Night 2015-06-04 00:08:44 En_Passant Kinda bummed, I was hoping to restart the clean up project since we had a few users on 2015-06-04 00:09:16 @PikFan hm 2015-06-04 00:09:28 @PikFan have you noticed my organizing the categories? 2015-06-04 00:09:55 En_Passant Yeah 2015-06-04 00:10:05 En_Passant This was more for cleaning up pages, though 2015-06-04 00:10:12 @PikFan right, I know 2015-06-04 00:10:35 @PikFan but I feel like part of the reason why we have such a hard time to getting around to cleaning the pages is lack of structure 2015-06-04 00:10:55 @PikFan sure, the pages need cleaning 2015-06-04 00:10:59 @PikFan that's a given 2015-06-04 00:11:09 @PikFan but we also need some sort of framework to do it 2015-06-04 00:11:15 @PikFan and we don't have that 2015-06-04 00:14:05 @PikFan ooh, so I had an idea for infoboxes 2015-06-04 00:14:41 @PikFan so for like enemies, it lists the areas where the enemies occur 2015-06-04 00:14:46 @PikFan right now, there's no order 2015-06-04 00:14:50 @PikFan BUT 2015-06-04 00:15:24 @PikFan if we use the
tag and the show/hide feature, we could easily condense and organize the info 2015-06-04 00:19:02 En_Passant We have something like a structure 2015-06-04 00:19:04 En_Passant http://www.pikminfanon.com/Talk:Project_Clean_Up 2015-06-04 00:19:15 En_Passant Peach and I had a discussion about it a long time ago 2015-06-04 00:20:00 En_Passant Oh yeah, we were waiting for Espyo to greenlight the project 2015-06-04 00:20:31 @PikFan I thought he did already 2015-06-04 00:21:16 En_Passant He hadn't written anything in the discussion 2015-06-04 00:21:17 @PikFan hey, if you want to, go ahead and organize Orange Pikmin 2015-06-04 00:21:24 @PikFan hmm 2015-06-04 00:21:52 @PikFan well, I think it should be fine, with or without his input 2015-06-04 00:22:00 @PikFan your plan does seem pretty solid 2015-06-04 00:22:10 @PikFan and besides, he'd probably agree 2015-06-04 00:22:26 @PikFan holy crap September 2014 2015-06-04 00:22:31 @PikFan ...was it really that long ago? 2015-06-04 00:22:32 @PikFan wow 2015-06-04 00:22:55 @PikFan 9 months later... 2015-06-04 00:23:03 @PikFan time has certainly flown 2015-06-04 00:23:04 En_Passant Yeah 2015-06-04 00:23:13 En_Passant I got busy after that and forgot about it 2015-06-04 00:23:26 @PikFan I see 2015-06-04 00:28:25 En_Passant I don't think we need the Sandbox pages, as the layout has been generally agreed upon 2015-06-04 00:28:29 En_Passant I don't know why Peach made those 2015-06-04 00:28:46 En_Passant But I would wait just a little bit while I copy what's in Sandbox 1 to the appropriate pages 2015-06-04 00:30:05 @PikFan hmm 2015-06-04 00:30:51 En_Passant I hope I don't get in trouble for making such huge structural changes since I'm not an admin 2015-06-04 00:30:53 @PikFan just to let you know, I'm going to be leaving soon 2015-06-04 00:31:00 @PikFan oh, don't worry about it 2015-06-04 00:31:01 En_Passant Okay 2015-06-04 00:31:11 @PikFan you've got my approval so it's fine 2015-06-04 00:31:46 @PikFan Peach and Espyo are the only other activeish admins 2015-06-04 00:31:54 En_Passant It'll require a lot of page deletion once I'm done, though 2015-06-04 00:32:02 En_Passant Since all of the individual pages will be obsoleted 2015-06-04 00:32:11 @PikFan hmm, okay 2015-06-04 00:32:38 @PikFan if I don't delete them within the first few days, mark them with {{delete}} so they do get deleted eventually 2015-06-04 00:32:55 @PikFan actually, just put {{delete}} on them 2015-06-04 00:33:35 En_Passant Okay 2015-06-04 00:33:41 @PikFan hey, so how's Pikmin V going? 2015-06-04 00:33:51 En_Passant It's okay 2015-06-04 00:34:08 En_Passant Kind of just making treasures and enemies at this point 2015-06-04 00:34:10 @PikFan not to get off-topic or anything, just curious because I like where the game idea is going 2015-06-04 00:34:13 @PikFan ah, I see 2015-06-04 00:34:30 En_Passant I'm trying to decide how Polar Mountain should be designed as well 2015-06-04 00:34:37 @PikFan yes... 2015-06-04 00:34:41 @PikFan the eternal struggle 2015-06-04 00:34:50 En_Passant Not sure how I can tie in the latter two areas to real-life stuff 2015-06-04 00:34:54 @PikFan heh 2015-06-04 00:35:08 En_Passant Because White-Out Zone definitely won't be on top of an actual mountain 2015-06-04 00:35:24 @PikFan is it going to be a tundra or something like that? 2015-06-04 00:35:58 En_Passant Do you know what a white-out is? 2015-06-04 00:36:09 @PikFan a blizzard? 2015-06-04 00:36:57 En_Passant Kind of. As the name implies, everything appears white 2015-06-04 00:37:03 En_Passant It becomes hard to distinguish anything 2015-06-04 00:37:09 @PikFan hmm 2015-06-04 00:37:12 En_Passant Never experienced one myself 2015-06-04 00:37:19 @PikFan same 2015-06-04 00:37:28 En_Passant Just thought it'd be a cool level design 2015-06-04 00:37:36 En_Passant But I dunno, maybe I'll change it 2015-06-04 00:38:09 @PikFan your call 2015-06-04 00:47:55 En_Passant What do you think of what I have so far? 2015-06-04 00:47:55 @PikFan of your game, or of the cleanup? 2015-06-04 00:47:55 En_Passant My game 2015-06-04 00:47:55 @PikFan oh 2015-06-04 00:47:56 @PikFan I definitely like the regions concept 2015-06-04 00:47:56 @PikFan it's an original idea 2015-06-04 00:47:56 @PikFan I also think it's cool how there are P3-style and P2-style bosses 2015-06-04 00:47:56 @PikFan it incorporates the mechanics from both games nicely 2015-06-04 00:47:56 <-- J (J@f-771.cust-91586.ip.static.uno.uk.net) has quit (Ping timeout: 252 seconds) 2015-06-04 00:47:56 -- irc: disconnected from server 2015-06-04 00:48:07 --> J (J@f-771.cust-91586.ip.static.uno.uk.net) has joined #pikipedia 2015-06-04 00:48:07 -- Topic for #pikipedia is "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com | Rules: http://pikminwiki.com/Help:Chat" 2015-06-04 00:48:07 -- Topic set by PikFan on Sat, 03 May 2014 19:36:58 2015-06-04 00:48:07 -- Channel #pikipedia: 9 nicks (2 ops, 0 voices, 7 normals) 2015-06-04 00:48:07 -- URL for #pikipedia: http://www.pikminwiki.com 2015-06-04 00:48:07 -- Mode #pikipedia [+o J] by ChanServ 2015-06-04 00:48:08 -- Channel created on Sat, 27 Jul 2013 18:55:16 2015-06-04 00:48:34 @PikFan so far, I like the enemies names, too 2015-06-04 00:48:45 En_Passant All two of them, lol 2015-06-04 00:48:49 @PikFan yep 2015-06-04 00:48:53 En_Passant I have more 2015-06-04 00:48:58 En_Passant But they're not on the site 2015-06-04 00:49:02 @PikFan hmm 2015-06-04 00:49:14 @PikFan but yeah, most enemies are recolors, sadly 2015-06-04 00:49:34 En_Passant I want to finish making all of the enemies and them add them all at once 2015-06-04 00:49:49 @PikFan I see 2015-06-04 00:49:53 En_Passant And yeah, most of our contributors are pre-teens without much creativity 2015-06-04 00:50:07 @PikFan I'm 15, lol 2015-06-04 00:50:34 @PikFan I started editing back when I was 11 2015-06-04 00:50:46 @PikFan a lot has happened in the 4 years that I've been on the wiki 2015-06-04 00:50:56 @PikFan I've matured quite a bit in that time, too 2015-06-04 00:51:57 @PikFan I was given adminship very early on because I impressed the admins with the quality of my work 2015-06-04 00:52:24 @PikFan however, I soon was revoked of it, because... well, I kinda bullied a user :x 2015-06-04 00:52:43 @PikFan so I had it taken away and nearly left 2015-06-04 00:53:03 @PikFan but after that incident I became more mature, more respectful of others 2015-06-04 00:53:33 @PikFan I gained the admins' trust again, and was promoted to admin, then to bureaucrat 2015-06-04 00:53:48 @PikFan I've been a bureaucrat for nearly 3 years 2015-06-04 00:54:31 @PikFan I'm sorry, have I made you lost? lol 2015-06-04 00:54:56 @PikFan ...I went into a whole spiel of my wiki-life, heh 2015-06-04 00:55:03 En_Passant No, it's fine 2015-06-04 00:55:12 En_Passant I like learning about other people 2015-06-04 00:55:18 @PikFan ah 2015-06-04 00:55:22 En_Passant I can't say I have any stories about myself, though 2015-06-04 00:55:35 @PikFan it's okay 2015-06-04 00:55:44 @PikFan you'll make your own 2015-06-04 00:56:11 @PikFan but yeah, I've tried to make my game detailed 2015-06-04 00:56:36 En_Passant Which one? You have two 2015-06-04 00:56:50 @PikFan Connection of the Worlds 2015-06-04 00:57:29 @PikFan the only reason why End of Time exists is because I hated having only just one game 2015-06-04 00:57:49 @PikFan it's kinda sad, really 2015-06-04 00:57:57 @PikFan I need to get around to developing that 2015-06-04 00:58:24 @PikFan ...like I've said about many things, but ended up never doing :| 2015-06-04 00:58:36 @PikFan don't we just love procrastination 2015-06-04 00:58:45 En_Passant Yeah, I have so many unfinished projects 2015-06-04 00:59:00 @PikFan mm 2015-06-04 00:59:01 En_Passant Making games is my hobby, and I have partially done ones for at least 5 series 2015-06-04 00:59:21 @PikFan I see 2015-06-04 01:00:22 @PikFan heck, I even wrote on my userpage "...I probably will never finish these games" 2015-06-04 01:00:42 @PikFan mainly due to procrastination, yes 2015-06-04 01:01:01 @PikFan but also the fact that if I come up with a new idea, I can just go back and add it 2015-06-04 01:01:16 @PikFan it isn't set in stone, nor will it ever be 2015-06-04 01:01:39 @PikFan unless I make an actual, real life game about it (SUPER likely) 2015-06-04 01:09:58 En_Passant So, back to Pikmin V, do you think I have a balanced Pikmin variety? 2015-06-04 01:11:55 @PikFan yeah 2015-06-04 01:11:59 @PikFan seems balanced 2015-06-04 01:13:34 En_Passant Do you think the Pikmin 3 nerfs are good? 2015-06-04 01:13:45 @PikFan which ones? 2015-06-04 01:14:08 @PikFan I didn't like them getting rid of blues saving drowning Pikmin 2015-06-04 01:14:29 En_Passant I mean the nerfs to the Rock and Winged Pikmin in Pikmin V 2015-06-04 01:14:30 @PikFan also, I thought Purples were overly nerfed 2015-06-04 01:14:36 @PikFan oh 2015-06-04 01:15:05 En_Passant I was also wondering if Purples and Whites are balanced enough 2015-06-04 01:16:25 @PikFan most of it is alright 2015-06-04 01:16:38 @PikFan I'm just not sure about the wind resistance bit 2015-06-04 01:17:03 En_Passant Really? 2015-06-04 01:17:10 En_Passant Purples were immune in 2 2015-06-04 01:17:22 @PikFan yeah, I know 2015-06-04 01:17:28 @PikFan I meant how I felt about it 2015-06-04 01:17:38 @PikFan I think I get why you made them not resistant 2015-06-04 01:18:01 En_Passant Oh, you mean on Purples, not Oranges 2015-06-04 01:18:01 @PikFan because wind is a unique element, but it doesn't kill, so why bother making them resistant? 2015-06-04 01:18:18 @PikFan wait, Oranges are resistant to wind? 2015-06-04 01:18:23 En_Passant Yeah 2015-06-04 01:18:28 @PikFan oh, never mind then 2015-06-04 01:18:41 En_Passant I made Purples not resistant because they're big, so there's a lot to be pushed around 2015-06-04 01:19:00 @PikFan hmm 2015-06-04 01:19:07 En_Passant 18-wheelers are prone to wind despite their bulk 2015-06-04 01:19:27 @PikFan I see 2015-06-04 01:19:40 @PikFan at the same time, they're heavier, though 2015-06-04 01:19:59 @PikFan eh, Oranges are resistant to wind, so I won't fuss over it 2015-06-04 01:20:23 @PikFan as for Whites: they're fine 2015-06-04 01:25:06 En_Passant What do you think of them having Onions now? 2015-06-04 01:25:31 @PikFan it's fine 2015-06-04 01:26:54 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-04 01:27:10 @PikFan yay 2015-06-04 01:27:13 @PikFan fatal errors 2015-06-04 01:28:52 @PikFan hmm 2015-06-04 01:29:02 @PikFan I think I should get rid of the moon 2015-06-04 01:29:23 @PikFan the moon will still be there, of course, but I don't think it should be an explorable area 2015-06-04 01:29:56 @PikFan also, I should merge the Portal and the Garden, and I should redo the Garden 2015-06-04 01:30:07 @PikFan it should become a more forest-like area 2015-06-04 01:31:05 En_Passant Uhh 2015-06-04 01:31:22 @PikFan (talking about PCW) 2015-06-04 01:31:23 En_Passant So one of the Pikmin pages that's been renovated/obsoleted was featured 2015-06-04 01:31:29 En_Passant What should I do? 2015-06-04 01:31:33 En_Passant (I know) 2015-06-04 01:31:42 @PikFan oh uh 2015-06-04 01:31:43 @PikFan hmm 2015-06-04 01:31:49 @PikFan is it Orange Pikmin? 2015-06-04 01:33:19 En_Passant It's the Pikmin Choronicles version 2015-06-04 01:33:25 @PikFan oh 2015-06-04 01:33:29 En_Passant Which somehow got featured despite not spelling Chronicles correctly 2015-06-04 01:34:39 @PikFan Featured Pikmin is a very outdated thing 2015-06-04 01:35:02 @PikFan it's been out of use for years and I don't think anyone cares about it anymore 2015-06-04 01:36:15 @PikFan yeah, 3 years 2015-06-04 01:36:21 @PikFan just ignore it 2015-06-04 01:36:31 @PikFan well, actually 2015-06-04 01:37:06 @PikFan are you turning that page into a section of another pages? 2015-06-04 01:37:07 @PikFan *page 2015-06-04 01:38:30 En_Passant Yeah 2015-06-04 01:38:38 @PikFan hmm 2015-06-04 01:38:48 @PikFan alright, here's what you do: 2015-06-04 01:39:14 @PikFan just move the Featured Pikmin template and put it there 2015-06-04 01:39:43 @PikFan I'll work out the details later; I'll make a page for old featured article systems 2015-06-04 01:41:08 En_Passant Okay 2015-06-04 01:42:21 En_Passant So here's what I've got: 2015-06-04 01:42:26 En_Passant http://www.pikminfanon.com/Orange_Pikmin_(explosives) 2015-06-04 01:42:41 En_Passant Aw, the explosives part didn't make it into the URL 2015-06-04 01:43:01 En_Passant http://www.pikminfanon.com/Category:Pikmin_Family 2015-06-04 01:43:21 En_Passant Go here instead, and find the Orange Pikmin pageswith descriptions in parentheses after the name 2015-06-04 01:43:29 @PikFan okay 2015-06-04 01:45:19 @PikFan so you've got explosives, spiky, sand immune, parasitic, and miscellaneous? 2015-06-04 01:45:25 En_Passant Yeah 2015-06-04 01:45:29 @PikFan alright 2015-06-04 01:45:30 En_Passant Those are the ones I found 2015-06-04 01:45:45 En_Passant The plan is to turn the original Orange Pikmin page into a disambiguation 2015-06-04 01:45:52 @PikFan mhm 2015-06-04 01:45:57 En_Passant And I guess the current disambiguation page would be unnecessary 2015-06-04 01:46:03 @PikFan right, yes 2015-06-04 01:46:08 @PikFan I'll delete it 2015-06-04 01:46:12 En_Passant Cool 2015-06-04 01:46:35 @PikFan though we shouldn't have disambig in the title, though 2015-06-04 01:46:47 @PikFan it should just be "Orange Pikmin" 2015-06-04 01:47:02 @PikFan ...hmmm... 2015-06-04 01:47:19 @PikFan ugh, linking is going to be a pain 2015-06-04 01:47:48 En_Passant Yeah, that's what I mean 2015-06-04 01:48:00 @PikFan well, drat 2015-06-04 01:48:05 @PikFan uh 2015-06-04 01:48:17 @PikFan can I ask a favor of you? 2015-06-04 01:48:27 En_Passant The page titled "Orange Pikmin" explains that there are many types, see them on such and such page, etc. 2015-06-04 01:48:31 En_Passant Yeah, sure 2015-06-04 01:48:35 @PikFan alright 2015-06-04 01:49:10 @PikFan could you merge all the types into one page? keep the individual types, but have them as header 1 sections 2015-06-04 01:49:28 @PikFan like =Explosive=, then the explosive types would go there, etc 2015-06-04 01:49:53 @PikFan that way we won't have all these parentheses in the page titles 2015-06-04 01:49:58 En_Passant I could, yeah 2015-06-04 01:50:05 En_Passant That's how the Sandbox page was organized 2015-06-04 01:50:05 @PikFan I should have realized this earlier 2015-06-04 01:50:10 @PikFan ...oh 2015-06-04 01:50:28 * @PikFan facepalms at self's silliness 2015-06-04 01:50:36 En_Passant And it was in the discussion before we decided on having the pages lol 2015-06-04 01:50:48 @PikFan alright, I'm stupid 2015-06-04 01:50:53 En_Passant I explained the pros and cons of different organizations 2015-06-04 01:50:55 @PikFan so yeah, go ahead and do that 2015-06-04 01:51:14 En_Passant We figured having them on different pages would keep the Orange Pikmin page from being super long 2015-06-04 01:51:39 @PikFan eh, it shouldn't get TOO long 2015-06-04 01:52:00 En_Passant And, now that I think about it, it also prevents lazy editors who tack their games to the bottom from screwing up too much 2015-06-04 01:52:16 @PikFan Orange Pikmin is only the 89th longest page on the wiki 2015-06-04 01:52:17 En_Passant I dunno, the original Orange Pikmin page is pretty f-ed up 2015-06-04 01:52:54 @PikFan make it clear at the top that if they want to add a new type, they need to categorize it according to the types 2015-06-04 01:53:23 En_Passant That wouldn't stop them 2015-06-04 01:53:33 En_Passant We have policies about editing that nobody follows already lol 2015-06-04 01:53:51 @PikFan ...true 2015-06-04 01:54:08 En_Passant http://www.pikminfanon.com/Talk:Project_Clean_Up 2015-06-04 01:54:10 En_Passant Here 2015-06-04 01:54:22 En_Passant The first thing on the page discusses how we should organize it 2015-06-04 01:54:23 @PikFan alright, keep the individual pages for now 2015-06-04 01:54:58 @PikFan if linking becomes too much of an issue, we'll recombine them into one page 2015-06-04 01:55:27 @PikFan although... 2015-06-04 01:55:34 En_Passant Oh, by linking, you mean links from the game pages to the Pikmin page 2015-06-04 01:55:42 @PikFan yeah 2015-06-04 01:56:02 @PikFan I could have Espyo cook up a template that would simplify links 2015-06-04 01:56:43 En_Passant That could work 2015-06-04 01:57:51 @PikFan for example, say you wanted to link to the explosive Orange Pikmin, to the game Key of Beginnings 2015-06-04 01:58:36 @PikFan you'd have to write it out as [[Orange Pikmin (explosives)#Pikmin: The Key of Beginnings|Orange Pikmin]] 2015-06-04 01:58:50 @PikFan that's way too long for anybody to comfortably write out 2015-06-04 01:58:55 En_Passant Yeah 2015-06-04 01:59:16 @PikFan so instead, you do this: {{orange|e|Pikmin: The Key of Beginnings}} 2015-06-04 01:59:30 @PikFan and it still links to that page, but displays as "Orange Pikmin" 2015-06-04 01:59:57 En_Passant I guess, but the template would probably start with {{pikmin| to clarify that it is a Pikmin link 2015-06-04 02:00:10 En_Passant So {{pikmin 2015-06-04 02:00:14 En_Passant Dangit 2015-06-04 02:00:25 En_Passant *{{pikmin|color|type|game}} 2015-06-04 02:00:41 @PikFan hm, yeah 2015-06-04 02:00:43 En_Passant With pikmin being static 2015-06-04 02:00:48 @PikFan right 2015-06-04 02:01:07 @PikFan I'll have to ask Espyo 2015-06-04 02:01:17 @PikFan he's much better with templates than I am 2015-06-04 02:04:19 En_Passant Oh, another thing that could go on the Orange Pikmin page 2015-06-04 02:04:31 @PikFan hmm? 2015-06-04 02:04:33 En_Passant A mention of Pikmin which are orange-colored but not called Orange Pikmin specifically 2015-06-04 02:05:23 En_Passant If there are any 2015-06-04 02:05:35 En_Passant It'd be more useful on the Black Pikmin page 2015-06-04 02:05:46 En_Passant But we're using Orange as our example, so might as well 2015-06-04 02:05:49 @PikFan hmm 2015-06-04 02:05:59 @PikFan aren't your Clawed Pikmin black? 2015-06-04 02:06:07 En_Passant Yes 2015-06-04 02:06:12 En_Passant Which is my point exactly 2015-06-04 02:06:18 En_Passant They're not the only ones like that 2015-06-04 02:06:22 @PikFan I see 2015-06-04 02:06:29 @PikFan yeah, Rocks and Wingeds 2015-06-04 02:07:05 En_Passant And other fan types, like Assassin Pikmin which are also black 2015-06-04 02:07:11 @PikFan mhm 2015-06-04 02:07:31 @PikFan Clawed may be the same color as Black Pikmin, but they're a different type altogether 2015-06-04 02:07:48 En_Passant Well, kind of 2015-06-04 02:07:58 En_Passant There's a type of Black Pikmin that's almost identical 2015-06-04 02:08:09 En_Passant http://www.pikminfanon.com/Black_Pikmin_(Sticky) 2015-06-04 02:08:46 En_Passant Though that page will be repurposed for the project since it has sticky in the title 2015-06-04 02:08:55 @PikFan right 2015-06-04 02:09:26 @PikFan hmm 2015-06-04 02:09:54 @PikFan I'd say that if they don't have "Black" in their name, we should keep them separate 2015-06-04 02:10:12 @PikFan we can mention that they are black colored, yes 2015-06-04 02:10:19 @PikFan but are distinct from Black Pikmin 2015-06-04 02:10:25 En_Passant That's what I was saying 2015-06-04 02:10:35 @PikFan ...oh 2015-06-04 02:10:37 @PikFan guh 2015-06-04 02:10:54 @PikFan 18:04 En_Passant A mention of Pikmin which are orange-colored but not called Orange Pikmin specifically 2015-06-04 02:11:04 @PikFan now I understand what you meant by that 2015-06-04 02:19:02 En_Passant Oh, never mind, a lowercase s is counted as a different page 2015-06-04 02:30:55 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-04 02:46:14 @PikFan alright, just got done reorganizing the featured stuff 2015-06-04 02:46:23 @PikFan ...I think 2015-06-04 02:49:50 @PikFan going now, bye 2015-06-04 02:49:54 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-04 03:51:53 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-04 04:00:04 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Killed (NickServ (GHOST command used by BetaMastre))) 2015-06-04 04:00:10 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-06-04 04:55:03 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-04 05:00:14 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-04 07:07:09 --> CyborgKing0 (Mibbit@114.108.sgw.il) has joined #pikipedia 2015-06-04 07:08:51 <-- CyborgKing0 (Mibbit@114.108.sgw.il) has quit (Client Quit) 2015-06-04 08:17:07 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 252 seconds) 2015-06-04 08:20:06 --> Yoshi2 (Yoshi2@6077-4pn2-j795-1-4b3g-89u1-w944-xy86.ipv5dyn.netcologne.de) has joined #pikipedia 2015-06-04 15:47:20 --> Yoshi2_ (Yoshi2@0884-2wb1-l637-8-1250-0x0f-2r4t-024m.ipv4dyn.netcologne.de) has joined #pikipedia 2015-06-04 15:50:19 <-- Yoshi2 (Yoshi2@6077-4pn2-j795-1-4b3g-89u1-w944-xy86.ipv5dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-04 16:42:45 -- Yoshi2_ is now known as Yoshi2 2015-06-04 19:01:38 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-04 19:01:45 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-04 19:01:45 Testyo Evening everyone! 2015-06-04 19:02:31 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-04 19:02:32 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-04 19:04:28 Yoshi2 hey Testyo & Espyo 2015-06-04 19:04:28 Testyo and I think there's no 2015-06-04 19:07:33 @Espyo hi 2015-06-04 19:21:28 @Espyo so I uploaded Pikan to the wiki 2015-06-04 19:21:31 @Espyo screw making the code better 2015-06-04 19:21:37 @Espyo I just cannot handle Javascript's sass 2015-06-04 19:21:53 @Espyo http://www.pikminwiki.com/User:Espyo/Pikan 2015-06-04 19:22:03 @Espyo http://www.pikminwiki.com/User:Espyo/pikan.js it's kinda weird that this page is being categorized, thoguh 2015-06-04 19:22:05 @Espyo *though 2015-06-04 19:26:15 @J no news item? 2015-06-04 19:29:22 @Espyo it's not on common.js 2015-06-04 19:29:29 @Espyo gonna try it elsewhere real quick 2015-06-04 19:29:35 @Espyo and wait for you super quick peer review 2015-06-04 19:29:40 @Espyo which I know you can't resist doing 2015-06-04 19:29:41 @J oh, okay 2015-06-04 19:30:10 @J well then the info page should probably have instructions on setting it up, if you want others to use it 2015-06-04 19:30:27 @Espyo on other wikis? 2015-06-04 19:30:36 @J even on Pikipedia 2015-06-04 19:30:44 @Espyo I thought the plan was to have it run on common.js 2015-06-04 19:30:45 @Espyo for everybody 2015-06-04 19:30:50 @J oh, yeah 2015-06-04 19:31:06 @J okay, so you don't really intend others to use it until it's there 2015-06-04 19:31:19 @J got it, wasn't sure how long you were thinking until doing that 2015-06-04 19:31:29 @Espyo right 2015-06-04 19:31:34 @Espyo though I should still explain how to add it on other wikis 2015-06-04 19:31:53 @J you kind of did 2015-06-04 19:32:10 @Espyo just kind of 2015-06-04 19:32:29 @Espyo I was thinking more along the lines of the part where you have to add the include to a subpage under your user name 2015-06-04 19:33:20 @J but if someone's going to have to edit the JS to get it to work anyway, chances are they know how to set it up 2015-06-04 19:35:07 @Espyo hm, you're right 2015-06-04 19:39:14 @Espyo so I finished Link's Awakening today 2015-06-04 19:39:17 @Espyo it's a really good game 2015-06-04 19:39:35 @Espyo it's one of those games that left me with a feeling of happiness just because I played it 2015-06-04 19:41:13 UltraMario dx or original 2015-06-04 19:42:07 Testyo [Fanon RC] Green Pikmin (Flip-gill) by En Passant (+55 m) http://www.pikminfanon.com/index.php?title=Green_Pikmin_(Flip-gill)&curid=4136&diff=48313&oldid=21398 2015-06-04 19:42:08 Testyo [Fanon RC] Green Pikmin (acid immune... by En Passant (+614) http://www.pikminfanon.com/index.php?title=Green_Pikmin_(acid_immune)&curid=9613&diff=48314&oldid=48291 2015-06-04 19:42:34 @Espyo dx 2015-06-04 19:42:46 UltraMario oh 2015-06-04 19:42:48 @Espyo still gotta try the alternate ending 2015-06-04 19:42:49 UltraMario on 3ds vc? 2015-06-04 19:42:50 @Espyo and 100% 2015-06-04 19:42:53 @Espyo yep, 3ds vc 2015-06-04 19:43:40 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-04 19:43:59 En_Passant Espyo, has PikFan talked to you since yesterday? 2015-06-04 19:44:03 @Espyo hi 2015-06-04 19:44:05 @Espyo nope 2015-06-04 19:45:46 En_Passant So the deal is, we've gone through with that old plan for cleaning up the wiki 2015-06-04 19:45:52 En_Passant Or, the Pikmin, at least 2015-06-04 19:45:56 @Espyo oh, right 2015-06-04 19:45:59 @Espyo how's that going? 2015-06-04 19:46:27 En_Passant I got Black, Green, Orange, and Brown Pikmin done 2015-06-04 19:46:31 En_Passant Those were the big ones 2015-06-04 19:46:49 En_Passant There are a couple of types that I'm not sure what to do, though 2015-06-04 19:46:52 @J I never played any 2D Zelda games 2015-06-04 19:47:39 En_Passant For example, Gray/Grey Pikmin, which have appeared in 8 games with different abilities in every one 2015-06-04 19:47:54 En_Passant So they can't really be categorized by ability 2015-06-04 19:48:11 @Espyo the 2D Zeldas have a really big charm to them 2015-06-04 19:48:23 @Espyo hmm... yeah 2015-06-04 19:48:31 @Espyo you might just have to go with two different article styles 2015-06-04 19:49:27 En_Passant Yeah, ALBW was really fun. A tad easy 2015-06-04 19:50:07 En_Passant That's actually a really good idea, Espyo 2015-06-04 19:50:22 UltraMario ive played a little of zelda 1, a little of zelda 2 if you consider that a "2d" zelda game, half of lttp, some of la, beat four swords, played a bit ph, none of spirit tracks, and beat half of albw 2015-06-04 19:50:24 UltraMario oh yeah 2015-06-04 19:50:32 UltraMario and played up to the first world in fsa 2015-06-04 19:50:41 UltraMario never played the oracle games\ 2015-06-04 19:50:47 @Espyo Zelda 2 is probably the most 2D, heh 2015-06-04 19:51:14 UltraMario lol 2015-06-04 19:51:23 UltraMario and the first 2 cdi games 2015-06-04 19:51:55 En_Passant But we don't speak of those 2015-06-04 19:52:16 UltraMario they're still sidescrollers like zelda 2 2015-06-04 19:52:17 UltraMario :P 2015-06-04 19:53:09 @Espyo yep 2015-06-04 20:02:16 Testyo [Fanon RC] Pink Pikmin (Pikmin Choro... by En Passant (+46 m) http://www.pikminfanon.com/index.php?title=Pink_Pikmin_(Pikmin_Choronicles)&curid=1369&diff=48315&oldid=31373 2015-06-04 20:02:16 Testyo [Fanon RC] Pink Pikmin by En Passant (+1490 Cleanup.) http://www.pikminfanon.com/index.php?title=Pink_Pikmin&curid=1097&diff=48316&oldid=38823 2015-06-04 20:04:17 En_Passant Oh, and I'm not sure what we should do with Cyan Pikmin 2015-06-04 20:04:25 En_Passant Because it has that weird format 2015-06-04 20:07:17 Testyo [Fanon RC] Gold Pikmin(Pikmin Choron... by En Passant (+46 m) http://www.pikminfanon.com/index.php?title=Gold_Pikmin(Pikmin_Choronicles)&curid=1373&diff=48317&oldid=8256 2015-06-04 20:07:17 Testyo [Fanon RC] Gold Pikmin by En Passant (+1096) http://www.pikminfanon.com/index.php?title=Gold_Pikmin&curid=230&diff=48318&oldid=39827 2015-06-04 20:20:32 --> PikFan (Mibbit@guou-224-843.shs.lane.edu) has joined #pikipedia 2015-06-04 20:20:32 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-04 20:20:39 @PikFan hey 2015-06-04 20:20:52 UltraMario hi 2015-06-04 20:20:52 @PikFan Pikan's done? 2015-06-04 20:20:53 @PikFan sweet 2015-06-04 20:22:02 @Espyo yep 2015-06-04 20:22:05 @Espyo gonna make it public now 2015-06-04 20:22:22 @Espyo btw, PikFan, I don't know if you know 2015-06-04 20:22:28 @Espyo but the Splatoon wiki became independent 2015-06-04 20:22:31 @Espyo next step is going to NIWA 2015-06-04 20:22:40 @PikFan ooh, sweet 2015-06-04 20:22:45 @PikFan was it on wikis? 2015-06-04 20:22:47 @PikFan *wikia 2015-06-04 20:22:53 @Espyo it was 2015-06-04 20:22:58 @Espyo we snatched it quite cleanly 2015-06-04 20:23:03 @Espyo and it's growing like crazy 2015-06-04 20:23:04 UltraMario wait wut 2015-06-04 20:23:05 @PikFan we? 2015-06-04 20:23:08 @PikFan who's we? 2015-06-04 20:23:09 UltraMario splatoon is not wikia anymore? 2015-06-04 20:23:30 @Espyo jpmrocks from Pikipedia was the one to approach the Splatoon wikia folk with a move 2015-06-04 20:23:44 @Espyo I assisted by convincing them to join, and later, by taking care of the backend things 2015-06-04 20:23:50 UltraMario sweet 2015-06-04 20:24:01 @Espyo it's still on wikia because we can't remove it... but it's pretty much moved 2015-06-04 20:24:05 UltraMario i hope they bring that squid girl outfit to america 2015-06-04 20:24:22 @PikFan have they had problems using wikia 2015-06-04 20:24:29 @Espyo yeah, I hate region lock 2015-06-04 20:24:30 En_Passant That was fast 2015-06-04 20:24:37 @Espyo more like "they loved becoming independent" 2015-06-04 20:24:41 @PikFan hehe 2015-06-04 20:24:43 En_Passant I was wondering if they were going to do it 2015-06-04 20:24:46 UltraMario espyo we don't know if it's going to become japan only yet :P 2015-06-04 20:24:52 @Espyo they loved both the freedom to implement their own style, and the freedom to add their own addons 2015-06-04 20:25:03 @Espyo yeah, but it's looking like it's Japan only 2015-06-04 20:25:11 @Espyo take a look: http://splatoonwiki.org/wiki/Main_Page 2015-06-04 20:25:13 @PikFan has the wikia staff done anything yet? 2015-06-04 20:25:20 UltraMario ono 2015-06-04 20:25:36 @Espyo one of them talked to one of the admins, saying the usual, how we can't have a banner up on the front page calling people out 2015-06-04 20:25:39 @Espyo blech 2015-06-04 20:25:56 UltraMario uh 2015-06-04 20:25:58 UltraMario espyo 2015-06-04 20:26:06 @PikFan I can't understand why they do that 2015-06-04 20:26:10 @PikFan it's a tiny wiki 2015-06-04 20:26:12 @PikFan TINY 2015-06-04 20:26:14 @Espyo because they won't throw away a cash cow 2015-06-04 20:26:16 @Espyo it's not that tiny 2015-06-04 20:26:19 UltraMario it doesn't say anthing about squid girl on that link 2015-06-04 20:26:25 @PikFan well, it's tiny for now 2015-06-04 20:26:27 @Espyo Pikmin wikia is like 1/10th, and it's still sort of big 2015-06-04 20:26:31 UltraMario it'll grow pikfab 2015-06-04 20:26:32 @Espyo hm, it should say 2015-06-04 20:26:32 @PikFan oh 2015-06-04 20:26:33 UltraMario *pikfa 2015-06-04 20:26:35 @Espyo they haven't added yet 2015-06-04 20:26:37 UltraMario dammit 2015-06-04 20:26:43 @PikFan *PikFan 2015-06-04 20:26:44 UltraMario it's only been like 2015-06-04 20:26:55 UltraMario 5 days or something since splatoon came out 2015-06-04 20:26:57 UltraMario give it time 2015-06-04 20:27:05 @Espyo but the thing is 2015-06-04 20:27:14 @Espyo we announced this on reddit, on the splatoon forums 2015-06-04 20:27:19 @Espyo and everybody was pleased 2015-06-04 20:27:25 @Espyo so I think NIWA is winning this war 2015-06-04 20:27:41 @PikFan yep 2015-06-04 20:27:54 Yoshi2 wooohooo 2015-06-04 20:27:56 UltraMario wait espyo 2015-06-04 20:27:59 UltraMario splatoon forums 2015-06-04 20:28:04 UltraMario you mean squidboards? 2015-06-04 20:28:09 @PikFan we should try getting WiKirby and Kirby Wikia to merge 2015-06-04 20:28:16 @Espyo squidboards, yep 2015-06-04 20:28:18 UltraMario per pikfan 2015-06-04 20:28:26 @Espyo might be a lot more difficult 2015-06-04 20:28:27 UltraMario that way wikirby won't suck 2015-06-04 20:28:28 UltraMario :P 2015-06-04 20:28:31 @Espyo Kirby's already so established... 2015-06-04 20:28:36 UltraMario but 2015-06-04 20:28:38 UltraMario wikirby sux 2015-06-04 20:28:58 @PikFan true 2015-06-04 20:29:00 UltraMario :p 2015-06-04 20:29:07 En_Passant While we're throwing out mergers, maybe Nookipedia and Animal Crossing Wikia? 2015-06-04 20:29:12 UltraMario eh 2015-06-04 20:29:14 UltraMario i dunno 2015-06-04 20:29:15 En_Passant Nook's not bad, but AC is better 2015-06-04 20:29:15 @PikFan ...all this talk of wikia is distracting me from reading features of Pikan 2015-06-04 20:29:25 UltraMario nookipedia seems to be better than acwikia from what i've seen 2015-06-04 20:29:31 @Espyo okay, added 2015-06-04 20:29:33 @Espyo it should be working 2015-06-04 20:29:36 UltraMario added what 2015-06-04 20:29:49 @Espyo Pikan 2015-06-04 20:30:04 @Espyo http://www.pikminwiki.com/index.php?title=10-day_run&action=edit do you guys see anything? 2015-06-04 20:30:06 @Espyo try ctrl+f5 2015-06-04 20:30:21 @Espyo oh, wait 2015-06-04 20:30:23 @Espyo it's giving an error 2015-06-04 20:30:24 @Espyo hmm... 2015-06-04 20:30:51 En_Passant It loads for me 2015-06-04 20:31:10 @PikFan okay, so how do I use Pikan? 2015-06-04 20:31:18 @PikFan do I just c+p it into my .js? 2015-06-04 20:31:46 En_Passant What's Pikan? 2015-06-04 20:31:52 @J Espyo just added it to common.js, but it's not working quite yet 2015-06-04 20:32:08 @Espyo it should be global, PikFan 2015-06-04 20:32:11 UltraMario pikan is pikfan without an f 2015-06-04 20:32:12 UltraMario ;) 2015-06-04 20:32:15 @Espyo I mean, everybody should see it 2015-06-04 20:32:18 @Espyo even anons 2015-06-04 20:32:19 @Espyo but something's not quite right 2015-06-04 20:33:10 @PikFan oh, Espyo 2015-06-04 20:33:37 @PikFan so yesterday, on Fanon, En Passant and I decided to split the Orange Pikmin page 2015-06-04 20:33:51 @Espyo he said 2015-06-04 20:33:59 @PikFan mm 2015-06-04 20:34:29 @PikFan we realized that linking to a specific game would be horrendous, so we were wondering if you could make a template for that 2015-06-04 20:35:04 En_Passant Oh yeah, I forgot to mention that part 2015-06-04 20:35:37 En_Passant I did Black, Brown, and Green too, by the way 2015-06-04 20:35:46 @PikFan we thought the template would go something like: {{|||}} 2015-06-04 20:35:47 Testyo "|||" template = http://www.pikminwiki.com/index.php?title=Template:||| 2015-06-04 20:36:22 @PikFan it would be the same as using a normal link, yes... 2015-06-04 20:36:27 @Espyo hmm 2015-06-04 20:36:32 @Espyo give me an example usage 2015-06-04 20:36:36 @Espyo you may wanna use pastebin 2015-06-04 20:36:45 @PikFan but we thought that we could abbreviate the subpage to just one letter 2015-06-04 20:38:04 @PikFan {{Pikmin|orange|e|Pikmin: The Key of Beginnings}} 2015-06-04 20:38:04 Testyo "Pikmin|orange|e|Pikmin:_The_Key_of_Beginnings" template = http://www.pikminwiki.com/index.php?title=Template:Pikmin|orange|e|Pikmin:_The_Key_of_Beginnings 2015-06-04 20:38:14 @Espyo oh! I think it's working now 2015-06-04 20:38:16 @Espyo http://www.pikminwiki.com/index.php?title=Child_of_the_Earth&action=edit 2015-06-04 20:38:23 @Espyo again, try ctrl+f5 if you don't see it 2015-06-04 20:38:41 @PikFan (actually, the text to be displayed as thing is an alternate text; it defaults as "Orange Pikmin" 2015-06-04 20:39:02 @Espyo I'm really confused, I don't have any context 2015-06-04 20:39:13 @PikFan okay, so 2015-06-04 20:39:48 @PikFan say that you wanted to link to the Pikmin: The Key of Beginnings version of Orange Pikmin 2015-06-04 20:40:01 @PikFan and you wanted the link to display as "Orange Pikmin" 2015-06-04 20:40:09 @PikFan you'd have to write it as [[Orange Pikmin (explosives)#Pikmin: The Key of Beginnings|Orange Pikmin]] 2015-06-04 20:40:09 Testyo "Orange_Pikmin_(explosives)#Pikmin:_The_Key_of_Beginnings|Orange_Pikmin" article = http://www.pikminwiki.com/index.php?title=Orange_Pikmin_(explosives)#Pikmin:_The_Key_of_Beginnings|Orange_Pikmin 2015-06-04 20:40:23 @PikFan and that link is too long for anybody to write comfortably 2015-06-04 20:40:27 @Espyo right 2015-06-04 20:40:42 @PikFan so we thought that if we had a template to do it, it'd be easier 2015-06-04 20:41:09 @Espyo okay 2015-06-04 20:41:21 @PikFan so we came up with this: {{Pikmin|orange|e|Pikmin: The Key of Beginnings}} 2015-06-04 20:41:21 Testyo "Pikmin|orange|e|Pikmin:_The_Key_of_Beginnings" template = http://www.pikminwiki.com/index.php?title=Template:Pikmin|orange|e|Pikmin:_The_Key_of_Beginnings 2015-06-04 20:41:28 @Espyo yeah, I see 2015-06-04 20:41:32 @Espyo should be easy 2015-06-04 20:41:34 @Espyo want me to do it then? 2015-06-04 20:41:41 @PikFan do you understand what the parameters mean? 2015-06-04 20:41:46 @Espyo yeah 2015-06-04 20:41:49 @PikFan okay 2015-06-04 20:42:03 @PikFan for the third parameter, we thought we should just abbreviate each type 2015-06-04 20:42:16 En_Passant One letter probably isn't a good idea 2015-06-04 20:42:23 @PikFan maybe 2015-06-04 20:42:24 En_Passant Because some categories are very similar 2015-06-04 20:42:34 @PikFan two, three letters? 2015-06-04 20:42:35 En_Passant Like the sticky and sticky resistant Black Pikmin types 2015-06-04 20:42:43 @Espyo it probably works by shortening as much as possible 2015-06-04 20:42:53 @Espyo |s| and |sr| 2015-06-04 20:43:17 @Espyo or you could have it like 2015-06-04 20:43:39 @Espyo {{pik|PTKoB Orange}} 2015-06-04 20:43:39 Testyo "pik|PTKoB_Orange" template = http://www.pikminwiki.com/index.php?title=Template:pik|PTKoB_Orange 2015-06-04 20:43:43 @Espyo and then a huge list with all combinations 2015-06-04 20:43:51 @Espyo pro: people don't have to memorize what page it's on 2015-06-04 20:43:54 @Espyo nor write the whole game name 2015-06-04 20:44:06 @Espyo cons: every new game maker would have to add their Pikmin to the template's list 2015-06-04 20:44:25 @Espyo I suggest you guys make every game use an acronym as an ID 2015-06-04 20:44:34 @Espyo and whenever stuff like this is needed, you can use the ID instead of a long name 2015-06-04 20:44:38 @Espyo find some policy for it 2015-06-04 20:44:45 @PikFan what about sections that aren't games? 2015-06-04 20:44:50 @Espyo like "if there's a clash, the first game gets the acronym, the second gets a different one" 2015-06-04 20:44:55 En_Passant There shouldn't be any 2015-06-04 20:44:57 @Espyo how so? 2015-06-04 20:45:18 @Espyo yeah, there shouldn't be any 2015-06-04 20:45:20 @PikFan because I was thinking that this could be applied to many other pages 2015-06-04 20:45:35 En_Passant This specific template's for the Pikmin, isn't it? 2015-06-04 20:45:44 @PikFan the first section could be written as 1, next section as 2, etc 2015-06-04 20:45:55 @PikFan hm, yeah 2015-06-04 20:46:02 @PikFan okay, let's just stick with Pikmin 2015-06-04 20:46:11 @PikFan Espyo: Pikan's not appearing 2015-06-04 20:46:17 @Espyo ctrl+f5? 2015-06-04 20:46:46 @PikFan er, I'm using a mac, so I don't know what the equivalent combo is 2015-06-04 20:47:35 En_Passant Seriously, what's Pikan 2015-06-04 20:48:05 Yoshi2 pikipedia analyzer 2015-06-04 20:48:05 @Espyo cmd+f5 2015-06-04 20:48:26 @PikFan ...it gives me something called voice over 2015-06-04 20:48:49 @PikFan is it a refresh? 2015-06-04 20:48:56 @PikFan that is, the command 2015-06-04 20:49:15 @Espyo it is 2015-06-04 20:49:18 @Espyo but it skips the cache 2015-06-04 20:49:32 @Espyo hold shift and press the refresh button on the toolbar? 2015-06-04 20:49:39 @Espyo or hold command and press the toolbar button 2015-06-04 20:50:14 @PikFan nope, nothing 2015-06-04 20:50:17 @Espyo I see Pikan on my tablet 2015-06-04 20:50:20 @PikFan not seeing it 2015-06-04 20:50:23 @PikFan >tablet 2015-06-04 20:50:39 @PikFan bleh, I'll look when I get home 2015-06-04 20:50:50 @Espyo do command + r 2015-06-04 20:50:52 @Espyo says the internet 2015-06-04 20:51:08 @PikFan still nothing 2015-06-04 20:51:15 @Espyo you're on an edit page, right? 2015-06-04 20:51:18 @PikFan mhm 2015-06-04 20:51:33 @PikFan what's the button look like? 2015-06-04 20:51:50 @Espyo a button with an arrow circling clockwise 2015-06-04 20:52:03 @Espyo it could be a safari-exclusive error 2015-06-04 20:52:22 @Espyo Open Safari and choose Safari > Preferences > Advanced. Then select Show Develop menu in menu bar. 2015-06-04 20:52:22 @Espyo Choose Develop > Show Error Console. 2015-06-04 20:52:42 @PikFan hm 2015-06-04 20:53:41 @Espyo I can see it on my tablet with both Chrome and Firefox 2015-06-04 20:53:45 @Espyo both logged in and not 2015-06-04 20:53:54 @PikFan well, it's a school computer, so I don't want to tamper with anything 2015-06-04 20:53:55 @Espyo either your browser isn't really refreshing the cache 2015-06-04 20:54:01 @PikFan like I said, I'll look when I get home 2015-06-04 20:54:02 @Espyo or it's a safari bug 2015-06-04 20:54:04 @Espyo hm, right 2015-06-04 20:54:09 @Espyo well, there's one last quick thing you can try 2015-06-04 20:54:13 @Espyo close it down and open it again :| 2015-06-04 20:54:22 UltraMario use another browser 2015-06-04 20:54:24 @PikFan why the :| ? 2015-06-04 20:54:24 UltraMario :p 2015-06-04 20:54:27 @PikFan ...oh 2015-06-04 20:54:30 @PikFan duh 2015-06-04 20:54:30 @Espyo because it's stupid simple |: 2015-06-04 20:54:32 @PikFan brb 2015-06-04 20:54:36 <-- PikFan (Mibbit@guou-224-843.shs.lane.edu) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-04 20:55:02 --> PikFan (Mibbit@guou-224-843.shs.lane.edu) has joined #pikipedia 2015-06-04 20:55:02 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-04 20:55:13 En_Passant Pikipedia's not banned on your school's computers? 2015-06-04 20:55:16 @PikFan alright, on firefox 2015-06-04 20:55:17 @PikFan nope 2015-06-04 20:55:53 @PikFan ah, here we go 2015-06-04 20:56:01 @Espyo you see it? 2015-06-04 20:56:29 @PikFan yep 2015-06-04 20:56:39 @PikFan ooh, I need to go 2015-06-04 20:56:43 @PikFan bye 2015-06-04 20:56:50 <-- PikFan (Mibbit@guou-224-843.shs.lane.edu) has quit (Client Quit) 2015-06-04 20:57:19 En_Passant Well, at least he got it working 2015-06-04 20:57:48 @Espyo nice 2015-06-04 20:59:39 En_Passant Hmm... 2015-06-04 20:59:48 En_Passant I'm trying to figure out where to put Louie in my game 2015-06-04 21:00:44 En_Passant It makes sense for him to be near the final boss, but there's already another reason for the main characters to be fighting it 2015-06-04 21:02:00 En_Passant Never mind, figured it out 2015-06-04 21:03:20 @Espyo heh 2015-06-04 21:05:43 En_Passant Feels good to have a finished story. Now I need to make a lot of treasures and enemies 2015-06-04 21:06:19 @Espyo yep 2015-06-04 21:07:44 Testyo [Fanon RC] Pikmin V by En Passant (+249) http://www.pikminfanon.com/index.php?title=Pikmin_V&curid=9285&diff=48319&oldid=48309 2015-06-04 21:12:46 Testyo [Pikipedia RC] White Flower Garden by Jpmrocks (-13) http://www.pikminwiki.com/index.php?title=White_Flower_Garden&curid=1446&diff=150024&oldid=148915 2015-06-04 21:12:50 Testyo [Fanon RC] Pikmin V by En Passant (-23 m) http://www.pikminfanon.com/index.php?title=Pikmin_V&curid=9285&diff=48320&oldid=48319 2015-06-04 21:33:11 Testyo [Fanon RC] Pikmin V by En Passant (+1137 Just kidding, there's more.) http://www.pikminfanon.com/index.php?title=Pikmin_V&curid=9285&diff=48321&oldid=48320 2015-06-04 21:38:18 Testyo [Fanon RC] Pikmin V by En Passant (+1 m) http://www.pikminfanon.com/index.php?title=Pikmin_V&curid=9285&diff=48322&oldid=48321 2015-06-04 22:23:48 <-- Yoshi2 (Yoshi2@0884-2wb1-l637-8-1250-0x0f-2r4t-024m.ipv4dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-04 22:35:05 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-04 22:42:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-04 23:07:45 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-04 23:11:58 @J http://stuff.ikn.org.uk/fileshare/e%3D1.mkv http://stuff.ikn.org.uk/fileshare/e%3D0.5.mkv 2015-06-04 23:12:10 @J I've picked up my physics engine again 2015-06-04 23:12:21 @J it's _so close_ to kind of working now 2015-06-04 23:24:21 Testyo [Pikipedia RC] User:Espyo/pikan.js by Porplemontage (+26) http://www.pikminwiki.com/index.php?title=User:Espyo/pikan.js&curid=19009&diff=150026&oldid=150023 2015-06-04 23:26:25 @Espyo oh? looks like Porple's fixing it 2015-06-04 23:26:41 @Espyo ...yeah, I DID think about adding that too 2015-06-04 23:26:46 @Espyo but I figured there had to be a better solution 2015-06-04 23:26:48 @Espyo well, whatever works 2015-06-04 23:29:22 Testyo [Pikipedia RC] User talk:Porplemontage by Porplemontage (+262 /* User script categorization */) http://www.pikminwiki.com/index.php?title=User_talk:Porplemontage&curid=2141&diff=150027&oldid=150025 2015-06-04 23:31:07 @Espyo sexy, J 2015-06-04 23:58:52 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-04 23:59:22 <-- Testyo (Testyo@89.152.yos.pwz) has quit (*.net *.split) 2015-06-04 23:59:22 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (*.net *.split) 2015-06-04 23:59:22 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (*.net *.split) 2015-06-04 23:59:23 <-- smuckola (smuckola@e7.smuckola.org) has quit (*.net *.split) 2015-06-05 00:02:34 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Ping timeout: 252 seconds) 2015-06-05 00:04:58 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-05 00:04:58 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-05 00:04:58 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-05 00:04:58 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-05 00:04:58 --> smuckola (smuckola@e7.smuckola.org) has joined #pikipedia 2015-06-05 00:07:26 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: I'm going as well) 2015-06-05 00:16:04 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-05 00:16:04 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-05 00:16:19 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-06-05 00:28:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-05 00:33:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-05 02:02:49 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-05 04:28:44 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-05 04:30:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-05 06:27:12 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-05 06:27:15 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-05 08:33:26 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2015-06-05 09:07:49 --> Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-05 10:24:47 <-- Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-05 10:48:16 --> Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-05 11:45:57 <-- Yoshi2 (Yoshi2@023-026.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-05 13:34:46 --> Klemen702 (Mibbit@okp-261-769-305.dynamic.siol.net) has joined #pikipedia 2015-06-05 13:43:52 <-- Klemen702 (Mibbit@okp-261-769-305.dynamic.siol.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-05 13:53:58 --> Yoshi2 (Yoshi2@7710-1aj3-w343-9-0b4h-1558-95vv-3p3v.ipv6dyn.netcologne.de) has joined #pikipedia 2015-06-05 16:05:13 --> Yoshi2_ (Yoshi2@2001:4dd3:d566:k:nxsq:zouz:gmrk:hhkz) has joined #pikipedia 2015-06-05 16:08:22 <-- Yoshi2 (Yoshi2@7710-1aj3-w343-9-0b4h-1558-95vv-3p3v.ipv6dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-05 17:55:42 --> Klemen702 (Mibbit@okp-261-769-305.dynamic.siol.net) has joined #pikipedia 2015-06-05 17:58:14 <-- Klemen702 (Mibbit@okp-261-769-305.dynamic.siol.net) has quit (Client Quit) 2015-06-05 18:55:59 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-05 19:35:00 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-05 19:35:00 Testyo Evening everyone! 2015-06-05 19:35:50 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-05 19:35:50 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-05 19:37:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-05 19:37:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-05 19:38:35 Yoshi2_ hey Espyo & Testyo 2015-06-05 19:38:36 Testyo mm, I guess? Like I said, I was unlocking the framerate to get it to load faster (might be placebo) 2015-06-05 19:39:11 @J sad that NintendoWiki stayed broken for like a month 2015-06-05 19:40:35 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-05 19:50:13 @Espyo but is it fixed now? 2015-06-05 19:50:14 @Espyo also, hu 2015-06-05 19:50:16 @Espyo *hi 2015-06-05 19:56:17 UltraMario rip nintendo wiki 2015-06-05 20:03:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-05 20:04:04 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-05 20:05:15 @J Espyo: I just patched it today, but it really needs a MW update 2015-06-05 20:05:23 @J also hu 2015-06-05 20:06:19 @Espyo hm, right 2015-06-05 20:07:54 -- Yoshi2_ is now known as Yoshi2 2015-06-05 20:19:44 --> PikFan (Mibbit@nnax-081-096.shs.lane.edu) has joined #pikipedia 2015-06-05 20:19:45 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-05 20:19:52 @PikFan hi 2015-06-05 20:20:10 @PikFan so I've got finals next week 2015-06-05 20:20:13 @PikFan should be fun 2015-06-05 20:20:15 Yoshi2 hey PikFan 2015-06-05 20:20:19 @Espyo hi 2015-06-05 20:20:21 Yoshi2 oOoO, good luck 2015-06-05 20:20:23 @Espyo hm, finals 2015-06-05 20:20:24 @Espyo good luck 2015-06-05 20:20:29 @PikFan science and math final 2015-06-05 20:20:37 @PikFan the science should be a 1 day thing 2015-06-05 20:20:40 @PikFan math is 2 days 2015-06-05 20:20:54 @PikFan not sure if I'm going to have finals in other classes 2015-06-05 20:21:19 @PikFan though I do have two papers to write 2015-06-05 20:21:30 @PikFan ...one of which I've been holding off for weeks 2015-06-05 20:21:35 @PikFan *putting off 2015-06-05 20:21:43 @PikFan where did I get holding off 2015-06-05 20:22:29 @PikFan anyway, so if you haven't noticed already, I got confused about the game icon reports 2015-06-05 20:22:56 @PikFan but I still think that it should report only if there are no game icons 2015-06-05 20:23:07 @PikFan because we can make them using the infoboxes 2015-06-05 20:23:08 @Espyo it can't know 2015-06-05 20:23:14 @PikFan really? 2015-06-05 20:23:26 @PikFan it can't search for a game icon parameter? 2015-06-05 20:23:59 @Espyo it does that 2015-06-05 20:24:05 @Espyo if it finds {{game icons}}, it shuts up 2015-06-05 20:24:06 Testyo "game_icons" template = http://www.pikminwiki.com/index.php?title=Template:game_icons 2015-06-05 20:24:07 @Espyo if not, it reports 2015-06-05 20:24:12 @Espyo it can't know that a template already includes it 2015-06-05 20:24:24 @PikFan how come? 2015-06-05 20:24:37 @Espyo it reads what you read on the textbox 2015-06-05 20:24:53 @Espyo {{infobox enemy| bla bla }} The bla bla is a bla bla. 2015-06-05 20:24:53 Testyo "infobox_enemy|_bla_bla_" template = http://www.pikminwiki.com/index.php?title=Template:infobox_enemy|_bla_bla_ 2015-06-05 20:24:55 @Espyo this is what it reads 2015-06-05 20:25:00 @Espyo it doesn't find any "{{game icons}}" in that text 2015-06-05 20:25:01 Testyo "game_icons" template = http://www.pikminwiki.com/index.php?title=Template:game_icons 2015-06-05 20:25:04 @Espyo so as far as it knows, it's not there 2015-06-05 20:25:32 @PikFan hmmmm 2015-06-05 20:26:00 @PikFan but if you make |pikmin = y, that makes a game icon 2015-06-05 20:26:11 @Espyo still 2015-06-05 20:26:15 @Espyo all it sees is a |pikmin = y 2015-06-05 20:26:36 @PikFan can't you write it into the code that that means a game icon appears? 2015-06-05 20:26:38 @Espyo I COULD make it so that it knows that a |pikmin = y, on the infobox enemy template, means an icon is there 2015-06-05 20:26:43 @Espyo but I'd have to add that for every parameter 2015-06-05 20:26:45 @Espyo for every infobox 2015-06-05 20:26:49 @Espyo and update it every time a new infobox came out 2015-06-05 20:26:53 @Espyo or got removed 2015-06-05 20:26:54 @PikFan hm, yeah 2015-06-05 20:27:02 @Espyo so... let's just leave it as a question 2015-06-05 20:27:10 @PikFan fair enough 2015-06-05 20:27:24 @PikFan or until better code comes out 2015-06-05 20:27:38 @PikFan I really should learn how to program 2015-06-05 20:29:37 @PikFan oh 2015-06-05 20:29:44 @PikFan so I had some ideas about my fangame 2015-06-05 20:30:02 @PikFan I was thinking about redoing the Garden and turning it into more of a forest-like area 2015-06-05 20:30:15 @Espyo hmm 2015-06-05 20:30:17 @Espyo classic forest 2015-06-05 20:30:24 @PikFan and I'd merge the Portal and the Garden into one area 2015-06-05 20:30:35 Testyo [Pikipedia RC] User:Piktoad by Piktoad (+4 m He he, Pikan is pretty funny... My user page has 47 problems.) http://www.pikminwiki.com/index.php?title=User:Piktoad&curid=18158&diff=150067&oldid=149404 2015-06-05 20:30:42 @PikFan also, I should get rid of the Moon as an explorable area 2015-06-05 20:31:00 @PikFan the final dungeon is there 2015-06-05 20:31:23 @PikFan so the Portal would end up becoming like the cave entrance, and the final dungeon the cave 2015-06-05 20:31:46 @PikFan thing is, you can go back any time 2015-06-05 20:32:17 @PikFan really, there only should be six areas 2015-06-05 20:32:38 @PikFan technically seven, as the final dungeon is kind of a mix between area and dungeon 2015-06-05 20:32:47 @PikFan but eh, I'll work out those details later 2015-06-05 20:32:59 @Espyo heh 2015-06-05 20:33:10 @Espyo hm, sounds good 2015-06-05 20:33:16 @PikFan also, I was thinking about combining Tan and Brown Pikmin 2015-06-05 20:33:25 @PikFan because really, how much different is sand from dirt? 2015-06-05 20:33:52 @PikFan there shouldn't be two Pikmin for two things that are very similar 2015-06-05 20:34:39 @PikFan also, maybe merge Burgundy and Red Pikmin's abilities 2015-06-05 20:34:46 @PikFan that way, there'd be only three new types 2015-06-05 20:35:38 @PikFan I still haven't created [[f:Ancient Valley]] yet 2015-06-05 20:35:38 Testyo "Ancient_Valley" article = http://www.pikminfanon.com/index.php?title=Ancient_Valley 2015-06-05 20:35:39 @Espyo heh yeah 2015-06-05 20:35:56 @PikFan I started writing it, but that was on the desktop 2015-06-05 20:36:15 @PikFan I've got a bunch of files about my fangames stuck on the desktop 2015-06-05 20:36:43 @PikFan I also need to create the rest of the caves 2015-06-05 20:36:49 @PikFan but guides, ugh 2015-06-05 20:37:51 @PikFan my game is a lot different now than it was 4 years ago 2015-06-05 20:38:01 @PikFan oh, also 2015-06-05 20:38:27 @PikFan if you look at [[f:Rugged Tundra]], and go to the Caves section, you'll see a cave called Trial of Ice 2015-06-05 20:38:28 Testyo "Rugged_Tundra" article = http://www.pikminfanon.com/index.php?title=Rugged_Tundra 2015-06-05 20:39:10 @PikFan I made that cave some time ago 2015-06-05 20:39:21 @PikFan (well, not made it, but you get what I mean) 2015-06-05 20:39:55 @PikFan it's only 5 sublevels long, but is quite hard and only Cyan Pikmin can go in 2015-06-05 20:40:16 @PikFan I wanted to make similarly-themed caves for the other new types of Pikmin, but never got around to doing it 2015-06-05 20:40:43 @PikFan it was meant to continue the storyline past the final boss 2015-06-05 20:41:20 @PikFan the adventurer in me craves a story past the final boss 2015-06-05 20:41:39 @PikFan but how I'm going to do that, I don't know 2015-06-05 20:41:59 @PikFan I have so many ideas for my game 2015-06-05 20:42:10 @PikFan I need a notebook to jot all these ideas down 2015-06-05 20:44:55 @Espyo yep 2015-06-05 20:47:35 @PikFan and now my friends are bothering me 2015-06-05 20:47:40 @PikFan yay 2015-06-05 20:52:23 @Espyo heh 2015-06-05 20:55:04 @PikFan alright, gotta go 2015-06-05 20:55:04 @PikFan bye 2015-06-05 20:55:09 <-- PikFan (Mibbit@nnax-081-096.shs.lane.edu) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-05 21:27:16 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-05 21:30:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-05 21:30:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-05 21:41:04 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-05 21:41:11 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-05 21:53:24 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-05 22:41:33 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-05 22:52:49 Testyo :/ around with namespaces much 2015-06-05 23:05:23 <-- Yoshi2 (Yoshi2@2001:4dd3:d566:k:nxsq:zouz:gmrk:hhkz) has quit (Quit: Leaving) 2015-06-05 23:21:39 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-05 23:21:50 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-06 00:08:08 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-06 00:08:19 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-06 01:16:04 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-06 01:16:10 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-06 02:32:57 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-06 02:32:57 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-06 02:33:04 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-06-06 03:11:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-06 03:17:51 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-06 04:33:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-06 04:45:27 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-06 05:10:40 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-06 05:10:47 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-06 05:45:58 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-06 08:43:29 --> Yoshi2 (Yoshi2@0839-2hs6-o087-8-l352-406x-23l8-c6d.ipv9dyn.netcologne.de) has joined #pikipedia 2015-06-06 11:35:39 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-06 12:07:18 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-06 12:07:18 Testyo Good afternoon everyone! 2015-06-06 12:08:14 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-06 12:08:15 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-06 12:49:10 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Read error: Connection reset by peer) 2015-06-06 12:49:53 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Ping timeout: 252 seconds) 2015-06-06 12:51:30 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-06 12:51:30 Testyo Hi everyone! 2015-06-06 12:52:24 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-06 12:52:24 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-06 14:31:55 Testyo [Pikipedia RC] Maturity by Klemen702 (+11 m Fixed some mistakes Pikan isn't programmed to analyze.) http://www.pikminwiki.com/index.php?title=Maturity&curid=18754&diff=150098&oldid=148385 2015-06-06 14:37:59 @Espyo uhm, I didn't really mean for people to go through all articles and use Pikan on them... 2015-06-06 14:38:05 @Espyo that's not BAD, but 2015-06-06 14:41:17 Yoshi2 so Pikan is the Wiki version of Python's PEP8? 2015-06-06 14:42:59 @Espyo hehe yeah 2015-06-06 14:57:01 Testyo [Pikipedia RC] Merchandise by CyborgKing0 (-1 /* e-cards */) http://www.pikminwiki.com/index.php?title=Merchandise&curid=833&diff=150099&oldid=149739 2015-06-06 15:22:09 Testyo [Pikipedia RC] Talk:Music by Scruffy (+296) http://www.pikminwiki.com/index.php?title=Talk:Music&curid=8776&diff=150101&oldid=150063 2015-06-06 15:52:18 Testyo [Fanon RC] Pikmin 4:Bacterial Outbre... by PikPik1248 (+697) http://www.pikminfanon.com/index.php?title=Pikmin_4:Bacterial_Outbreak&curid=9572&diff=48326&oldid=48282 2015-06-06 15:59:25 Testyo and so far, saw absolutely answer questions for their life 2015-06-06 16:01:40 --> Yoshi2_ (Yoshi2@8403-8ky9-a031-7-e590-649o-16o5-d2k.ipv3dyn.netcologne.de) has joined #pikipedia 2015-06-06 16:04:25 <-- Yoshi2 (Yoshi2@0839-2hs6-o087-8-l352-406x-23l8-c6d.ipv9dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-06 16:55:43 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-06 17:30:38 -- Yoshi2_ is now known as Yoshi2 2015-06-06 17:58:48 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-06 17:58:55 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-06 18:23:44 Testyo [Pikipedia RC] Red Pikmin by AeroBlaze777 (+465 m) http://www.pikminwiki.com/index.php?title=Red_Pikmin&curid=1188&diff=150118&oldid=150113 2015-06-06 18:43:49 Testyo [Pikipedia RC] Blue Pikmin by AeroBlaze777 (+861 /* Pikmin 3 */) http://www.pikminwiki.com/index.php?title=Blue_Pikmin&curid=40&diff=150119&oldid=150112 2015-06-06 18:44:54 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-06 18:44:54 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-06 18:45:05 @PikFan hi 2015-06-06 18:47:56 @J hey 2015-06-06 19:01:45 @Espyo hi 2015-06-06 20:02:26 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Read error: Connection reset by peer) 2015-06-06 20:02:54 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-06-06 20:16:52 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-06 20:21:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-06 20:25:58 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Read error: Connection reset by peer) 2015-06-06 21:40:38 @PikFan gah 2015-06-06 21:40:45 @PikFan so I'm trying to edit my Google name 2015-06-06 21:40:54 @PikFan I'm trying to change it to PikFan23 2015-06-06 21:41:15 @PikFan but when I try to, it forces you to have a space in the middle 2015-06-06 21:41:41 @PikFan not that I'll ever use it, but I'm doing it mainly for youtube 2015-06-06 21:42:03 @PikFan and I don't understand how users come up with their names 2015-06-06 21:42:29 Yoshi2 PikFan 23 2015-06-06 21:42:38 @PikFan no, but 2015-06-06 21:42:49 @PikFan there's users on YT that don't have spaces in their name 2015-06-06 21:42:55 @PikFan that's what I'm trying to figure out 2015-06-06 21:43:27 Yoshi2 I have a name without a space \o/ 2015-06-06 21:44:11 Yoshi2 at one point, Google tried to force G+ onto every youtube user, and they wanted everybody to input their real name 2015-06-06 21:44:20 @PikFan hm 2015-06-06 21:44:23 @PikFan hey Espyo 2015-06-06 21:44:42 Yoshi2 eventually, they gave up and I was able to keep my previous name 2015-06-06 21:45:00 @PikFan your YT username is just Espyo, and then your google name is whatever your real name is, right? 2015-06-06 21:45:16 @Espyo hi 2015-06-06 21:45:20 @PikFan how did you do that? 2015-06-06 21:45:21 @Espyo srb2Espyo is the channel id 2015-06-06 21:45:25 @Espyo I have no idea 2015-06-06 21:45:30 @Espyo I just mashed out of google+ as fast as possible 2015-06-06 21:45:46 @Espyo oh, do note that I've had srb2Espyo prior to g+ 2015-06-06 21:46:28 @PikFan hm 2015-06-06 21:46:34 @PikFan maybe that's my problem 2015-06-06 21:46:39 @PikFan since I use g+ 2015-06-06 21:46:44 @PikFan ...thanks, RL friends :| 2015-06-06 21:46:50 Yoshi2 that might be the case 2015-06-06 21:49:02 @PikFan oh, I see 2015-06-06 21:49:12 @PikFan so I just have to disconnect my YT from g+ 2015-06-06 21:49:27 @PikFan then I can make my YT name whatever I want 2015-06-06 21:50:51 @PikFan "New channels created with a Google+ page or profile don't have an old username and can't disconnect Google+." 2015-06-06 21:50:52 @PikFan ... 2015-06-06 21:51:00 @PikFan screw you too, google 2015-06-06 21:54:13 @PikFan well, I guess that works 2015-06-06 21:54:24 @PikFan I just made a new channel under my email 2015-06-06 21:59:27 @Espyo hm 2015-06-06 22:07:03 @PikFan http://www.pikminfanon.com/Pikmin:_Connection_of_the_Worlds#Pikmin 2015-06-06 22:07:12 @PikFan a table would be very nice right there 2015-06-06 22:07:46 @PikFan still debating about merging tans and browns though 2015-06-06 22:08:03 @PikFan ...although... 2015-06-06 22:08:05 @PikFan hmm 2015-06-06 22:08:43 @PikFan now that I think about it, no Pikmin are discovered in the Distant Desert for Part I of the game 2015-06-06 22:09:26 @PikFan also, I'm not sure if blues should be found in the Shimmering Lake during the first visit 2015-06-06 22:10:33 @PikFan ooh 2015-06-06 22:10:49 @PikFan maybe they could be found at the new forest area 2015-06-06 22:11:04 @PikFan (I haven't made a name for it yet) 2015-06-06 22:11:48 @PikFan hm 2015-06-06 22:12:17 @PikFan if we did this, and also merged tans and browns... 2015-06-06 22:14:42 @PikFan http://mibpaste.com/O02zKx 2015-06-06 22:15:14 @PikFan well, I didn't include the other types because I have to make it non-linear 2015-06-06 22:17:00 @PikFan hmm... 2015-06-06 22:17:11 @PikFan the 3 canon games all have something in common: 2015-06-06 22:17:25 @PikFan at least 1 area with no Pikmin discovered in it 2015-06-06 22:17:36 @PikFan which is the final area 2015-06-06 22:17:46 @PikFan Pikmin 1 has two, though 2015-06-06 22:18:55 @PikFan hmmmm... 2015-06-06 22:20:13 @PikFan ah, I see 2015-06-06 22:20:28 @PikFan I need to make different paths to places 2015-06-06 22:20:35 @PikFan each with a different obstacle 2015-06-06 22:25:05 Testyo [Pikipedia RC] Music (Pikmin) by Scruffy (+11816 Added links and descriptions to all cutscene themes. Area themes come next!) http://www.pikminwiki.com/index.php?title=Music_(Pikmin)&curid=18980&diff=150120&oldid=150066 2015-06-06 22:34:19 --> RingtailedFox (foxfoxfox@2001:470:1d:yxw:siiu:ouvw:xhp:mivs) has joined #pikipedia 2015-06-06 22:35:08 Testyo [Pikipedia RC] Blue Pikmin by AeroBlaze777 (+189 m /* Pikmin 3 */) http://www.pikminwiki.com/index.php?title=Blue_Pikmin&curid=40&diff=150121&oldid=150119 2015-06-06 22:40:10 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-06 22:58:35 <-- Yoshi2 (Yoshi2@8403-8ky9-a031-7-e590-649o-16o5-d2k.ipv3dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-07 00:15:47 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 00:32:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 00:34:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 01:00:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 01:00:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 01:02:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-07 01:02:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 01:03:13 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-07 01:04:10 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 01:05:46 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-07 01:06:18 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 01:18:46 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Bye bye everyone!) 2015-06-07 01:19:09 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-07 02:33:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 02:40:32 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-07 02:41:00 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-07 02:46:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 03:12:42 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 03:13:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 03:14:07 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-07 03:14:43 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 05:02:46 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 05:04:52 <-- RingtailedFox (foxfoxfox@2001:470:1d:yxw:siiu:ouvw:xhp:mivs) has quit (Ping timeout: 252 seconds) 2015-06-07 05:15:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 05:25:25 --> RingtailedFox (foxfoxfox@2001:470:1d:yxw:siiu:ouvw:xhp:mivs) has joined #pikipedia 2015-06-07 05:26:33 <-- RingtailedFox (foxfoxfox@2001:470:1d:yxw:siiu:ouvw:xhp:mivs) has quit (Read error: No route to host) 2015-06-07 05:27:07 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-07 05:50:23 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 06:03:10 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 252 seconds) 2015-06-07 06:20:57 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-07 06:24:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 06:29:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 06:36:55 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 272 seconds) 2015-06-07 06:46:46 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-07 06:49:45 --> Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-07 06:49:54 <-- Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Client Quit) 2015-06-07 06:53:34 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 265 seconds) 2015-06-07 06:59:21 --> RingtailedFox (foxfoxfox@2001:470:1d:lmu:qmpr:pvxv:jqgp:jlzk) has joined #pikipedia 2015-06-07 08:09:44 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: w) 2015-06-07 08:41:28 --> Yoshi2 (Yoshi2@0889-2wb1-l2d2-8-0366-unjb-95j6-5c70.ipv4dyn.netcologne.de) has joined #pikipedia 2015-06-07 12:44:31 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-07 12:44:32 Testyo Afternoon everyone! 2015-06-07 12:45:32 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-07 12:45:32 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-07 13:04:36 Testyo [Pikipedia RC] Talk:Music by Scruffy (+612) http://www.pikminwiki.com/index.php?title=Talk:Music&curid=8776&diff=150133&oldid=150117 2015-06-07 14:09:51 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+5662 N Created page with all menus and some cutscenes filled in.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=150134&oldid=0 2015-06-07 15:30:21 --> Yoshi2_ (Yoshi2@3408-3pi9-za75-7-o46h-9472-764y-3z28.ipv2dyn.netcologne.de) has joined #pikipedia 2015-06-07 15:33:31 <-- Yoshi2 (Yoshi2@0889-2wb1-l2d2-8-0366-unjb-95j6-5c70.ipv4dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-07 15:57:22 Testyo That one was easy for me, just because it about it 2015-06-07 16:17:05 -- Yoshi2_ is now known as Yoshi2 2015-06-07 16:23:33 --> Shard1 (Mibbit@945-928-066-991.lightspeed.cicril.sbcglobal.net) has joined #pikipedia 2015-06-07 16:23:38 Shard1 Hey guys 2015-06-07 16:26:51 Shard1 Am I the only one having Amiibo problems? 2015-06-07 16:27:02 @Espyo hi 2015-06-07 16:27:03 Yoshi2 good day 2015-06-07 16:27:07 @Espyo on Splatoon? 2015-06-07 16:27:08 Yoshi2 what kind of Amiibo problems? 2015-06-07 16:27:45 Shard1 The Splatoon ones are my biggest problem 2015-06-07 16:28:14 Shard1 They are practically extinct 2015-06-07 16:28:38 Yoshi2 in that case 2015-06-07 16:28:42 Yoshi2 no, you are not the only one 2015-06-07 16:29:09 Shard1 Apparantly somebody hijacked a truck full of squid amiibo in the UK 2015-06-07 16:31:29 Testyo [Pikipedia RC] Winged Pikmin by AeroBlaze777 (-99 m /* In the Super Smash Bros. series */) http://www.pikminwiki.com/index.php?title=Winged_Pikmin&curid=8140&diff=150136&oldid=150109 2015-06-07 16:34:07 Yoshi2 really? 2015-06-07 16:34:26 Yoshi2 that's crazy 2015-06-07 16:34:45 Yoshi2 I've heard they are pretty rare, but I didn't think anybody would do that 2015-06-07 16:36:34 @Espyo mhm, that happened some weeks ago 2015-06-07 16:41:08 Shard1 Yeah, and the fact that it didn't have a tracking device or something. 2015-06-07 16:42:01 Shard1 That was just stupid. 2015-06-07 16:42:15 Shard1 I mean, what's the person going to do with all those amiibos and Splatoon copies? 2015-06-07 16:45:48 Shard1 I haven't had this much trouble with Amiibo since Toon Link and Sheik. 2015-06-07 16:49:25 Shard1 Hopefully Olimar and Ganondorf won't be this hard to get. 2015-06-07 16:50:47 Shard1 Anybody else hoping to see Pikmin 4 at E3? I know it probably won't happen, but I can hope. 2015-06-07 16:57:47 Shard1 What are your guys' thoughts on Mario Party 10? 2015-06-07 17:01:45 Testyo [Pikipedia RC] File:Hocotate Theme.png uploaded by Scruffy (The Hocotate motif in Pikmin 2.) http://www.pikminwiki.com/index.php?title=File:Hocotate_Theme.png 2015-06-07 17:10:24 Shard1 Found some notes for the Palace Theme and the Deku Palace 2015-06-07 17:11:47 Testyo [Pikipedia RC] File:Pikmin 2 Theme.png uploaded by Scruffy (The motif of Pikmin 2's main theme.) http://www.pikminwiki.com/index.php?title=File:Pikmin_2_Theme.png 2015-06-07 17:16:48 Testyo [Pikipedia RC] File:Success and Adventure Motif.png uploaded by Scruffy (An adventuring motif in Pikmin 2, also used to denote success.) http://www.pikminwiki.com/index.php?title=File:Success_and_Adventure_Motif.png 2015-06-07 17:24:08 Shard1 Hello? Anyone? 2015-06-07 17:28:06 Yoshi2 Shard1: we can hear you loud and clear 2015-06-07 17:28:53 Shard1 Hopefully anyways. 2015-06-07 17:34:57 Yoshi2 I wouldn't mind a Pikmin for the 3DS, but I doubt one will be announced for the Wii U 2015-06-07 17:40:15 Yoshi2 I haven't played MP10, or any of the other Mario Party games myself, so I can't say much about that 2015-06-07 17:41:34 Shard1 I haven't played and Mario Party game either, just not into them 2015-06-07 17:47:43 Shard1 Does anybody else here play Hyrule Warriors? 2015-06-07 17:49:24 Yoshi2 it's on my list of games I want to buy (and play) 2015-06-07 17:49:54 Shard1 It'll take a ridiculous amount of time if you want to 100% it 2015-06-07 17:57:38 Yoshi2 I already have a ridiculous amount of games I need to finish 2015-06-07 17:57:49 Shard1 So do I. 2015-06-07 18:00:11 Yoshi2 and let's not even get started on all the shows I want to watch 2015-06-07 18:03:37 Shard1 You mean all the shows I've never heard of because I don't really watch TV? 2015-06-07 18:10:10 Yoshi2 not TV shows 2015-06-07 18:10:18 Yoshi2 mostly anime 2015-06-07 18:11:21 Shard1 Well, I don't watch shows either. 2015-06-07 18:11:57 Yoshi2 if I can't watch it on my computer or phone, I don't watch it 2015-06-07 18:12:02 Testyo [Pikipedia RC] File:HocotateMotif.ogg uploaded by Scruffy (The sound of the Hocotate motif.) http://www.pikminwiki.com/index.php?title=File:HocotateMotif.ogg 2015-06-07 18:13:42 @Espyo this guy 2015-06-07 18:13:46 @Espyo this guy is awesome 2015-06-07 18:14:47 Shard1 What guy are we talking about here? 2015-06-07 18:16:24 Yoshi2 Espyo: sounds a lot like the file was created from a midi 2015-06-07 18:17:04 Testyo [Pikipedia RC] File:Pikmin2Motif.ogg uploaded by Scruffy (The sound of the Pikmin 2 main motif.) http://www.pikminwiki.com/index.php?title=File:Pikmin2Motif.ogg 2015-06-07 18:17:04 Testyo [Pikipedia RC] File:SuccessMotif.ogg uploaded by Scruffy (The sound of the success/adventure motif.) http://www.pikminwiki.com/index.php?title=File:SuccessMotif.ogg 2015-06-07 18:18:19 @Espyo I think he created it from scratch 2015-06-07 18:18:21 @Espyo but yes, midi 2015-06-07 18:18:40 Shard1 Ooh, music! :) 2015-06-07 18:18:59 @Espyo I think I'd rather he create midis 2015-06-07 18:19:01 @Espyo they're smaller 2015-06-07 18:19:03 @Espyo more useful for mankind 2015-06-07 18:19:11 @Espyo and /everything/ can play MIDI nowadays 2015-06-07 18:19:18 @Espyo if not, we could always add a link to the ogg 2015-06-07 18:19:30 Shard1 Well, it's piano. 2015-06-07 18:19:35 Shard1 (States the plainly obvious) 2015-06-07 18:22:37 @Espyo ye 2015-06-07 18:28:11 Shard1 three inches 2015-06-07 18:28:22 Shard1 in. 2015-06-07 18:28:27 Shard1 3 in. 2015-06-07 18:28:39 Shard1 3 cm 2015-06-07 18:28:40 Testyo 3 cm = 1.1814 in / 0.0984 ft / 1.57895 Olimar-heights 2015-06-07 18:28:50 Shard1 1.5 cm 2015-06-07 18:28:50 Testyo 1.5 cm = 0.5907 in / 0.0492 ft / 0.789474 Olimar-heights 2015-06-07 18:28:56 Shard1 1.7 cm 2015-06-07 18:28:57 Testyo 1.7 cm = 0.66946 in / 0.05576 ft / 0.894737 Olimar-heights 2015-06-07 18:29:00 Shard1 1.8 cm 2015-06-07 18:29:01 Testyo 1.8 cm = 0.70884 in / 0.05904 ft / 0.947369 Olimar-heights 2015-06-07 18:29:26 Yoshi2 3 in 2015-06-07 18:29:29 Yoshi2 3 inches 2015-06-07 18:29:29 Testyo 3 inches = 7.62 cm 2015-06-07 18:29:44 Yoshi2 3 olimar-heights 2015-06-07 18:29:48 Yoshi2 3 Olimar-heights 2015-06-07 18:29:55 Yoshi2 3 Oh 2015-06-07 18:30:03 Yoshi2 :| 2015-06-07 18:42:11 Testyo [Pikipedia RC] File:New Record.ogg by Scruffy (+63 Licensed file.) http://www.pikminwiki.com/index.php?title=File:New_Record.ogg&curid=19018&diff=150143&oldid=150125 2015-06-07 18:47:12 Testyo [Pikipedia RC] File:Find Lost Ship Part.... by Scruffy (+49 Licensed file.) http://www.pikminwiki.com/index.php?title=File:Find_Lost_Ship_Part.ogg&curid=19019&diff=150144&oldid=150126 2015-06-07 18:52:13 Testyo [Pikipedia RC] Music (Pikmin) by Scruffy (+42 Licensed sound clips and cleanup.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin)&curid=18980&diff=150145&oldid=150127 2015-06-07 18:58:56 Shard1 It doesn't work with inches, only cm 2015-06-07 18:59:49 Shard1 oh, so it doesn't work when you do three inches 2015-06-07 18:59:52 Shard1 ony 3 inches 2015-06-07 18:59:52 Testyo 3 inches = 7.62 cm 2015-06-07 19:00:28 Shard1 :l 2015-06-07 19:00:49 Shard1 :| 2015-06-07 19:02:16 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+9653 Worked on descriptions; added Motifs section.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=150146&oldid=150134 2015-06-07 19:05:33 Shard1 I consider myself musically inclined, but I have no idea how to help with this section 2015-06-07 19:07:33 <-- Shard1 (Mibbit@945-928-066-991.lightspeed.cicril.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 19:13:31 <-- RingtailedFox (foxfoxfox@2001:470:1d:lmu:qmpr:pvxv:jqgp:jlzk) has quit (Ping timeout: 252 seconds) 2015-06-07 19:17:59 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-07 19:24:44 --> Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-07 19:28:19 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 272 seconds) 2015-06-07 19:35:28 --> Ringtailed_Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-07 19:39:11 <-- Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 265 seconds) 2015-06-07 19:39:13 <-- Ringtailed_Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Client Quit) 2015-06-07 19:56:01 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-07 19:56:21 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-07 21:31:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 21:38:41 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 21:39:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 21:46:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 21:47:11 <-- Yoshi2 (Yoshi2@3408-3pi9-za75-7-o46h-9472-764y-3z28.ipv2dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-07 21:47:24 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 22:21:59 @J I have a great bug in the physics engine when two objects colliding with the same other object in the same direction in the same frame 2015-06-07 22:22:43 @J for example, when object A is sitting on B, and C lands on B, for some reason A gets fired upwards 2015-06-07 22:23:29 @J somehow the change in velocity meant to make C stop (since elasticity is 0 here) makes A jump 2015-06-07 22:27:11 @J http://stuff.ikn.org.uk/fileshare/crazy%20see-saw.mkv 2015-06-07 22:31:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 22:32:27 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 22:43:37 Testyo [Pikipedia RC] Music (Pikmin) by Scruffy (-10 m Corrected a small factual error.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin)&curid=18980&diff=150147&oldid=150145 2015-06-07 22:47:18 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 22:48:07 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 22:54:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 22:56:17 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 22:56:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-07 22:57:32 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 23:03:40 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 23:04:00 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 23:26:51 @Espyo looks more like an awesome feature to me 2015-06-07 23:29:12 @J I suppose with large elasticity you'd actually expect that to happen (though the yellow one would bounce too) 2015-06-07 23:29:19 @J but with 0 elasticity, it should just stop 2015-06-07 23:29:21 @Espyo mhm 2015-06-07 23:38:52 Testyo [Fanon RC] Pikmin 4:Bacterial Outbre... by PikPik1248 (+727) http://www.pikminfanon.com/index.php?title=Pikmin_4:Bacterial_Outbreak&curid=9572&diff=48327&oldid=48326 2015-06-07 23:39:36 --> RingtailedFox (foxfoxfox@2001:470:1d:vrp:qgow:ylmr:hkjw:gtqw) has joined #pikipedia 2015-06-07 23:41:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-07 23:45:34 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-07 23:45:51 --> Gamefreak75 (NewYokuba@66.116.jyr.xps) has joined #pikipedia 2015-06-07 23:56:13 <-- RingtailedFox (foxfoxfox@2001:470:1d:vrp:qgow:ylmr:hkjw:gtqw) has quit (Ping timeout: 252 seconds) 2015-06-08 00:01:39 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-08 00:14:07 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-08 00:14:11 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-08 00:24:23 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 00:26:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 00:30:20 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 00:31:02 <-- Gamefreak75 (NewYokuba@66.116.jyr.xps) has quit (Ping timeout: 252 seconds) 2015-06-08 00:31:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 00:31:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 00:31:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 00:43:55 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-08 00:43:55 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-08 00:44:11 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-06-08 01:19:49 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 01:20:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 01:21:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 01:21:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 01:27:53 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 01:28:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 01:40:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 01:41:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 01:47:52 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 01:49:03 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 02:14:04 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 02:14:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 02:14:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 02:15:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 02:18:20 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 02:18:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 02:41:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Ping timeout: 245 seconds) 2015-06-08 02:43:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 03:07:42 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 03:08:04 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 03:10:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 03:10:42 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 03:12:48 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 03:14:19 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 03:15:16 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 03:17:11 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 03:19:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 03:20:54 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 03:23:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 03:24:33 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 03:26:49 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 03:27:04 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 03:29:35 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 03:51:41 --> T3 (T3@108.162.mlq.nk) has joined #pikipedia 2015-06-08 04:35:16 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 245 seconds) 2015-06-08 06:19:49 --> Yoshi2 (Yoshi2@2001:4dd3:de21:v:zrlt:zqz:hxvl:mhou) has joined #pikipedia 2015-06-08 07:00:34 <-- Yoshi2 (Yoshi2@2001:4dd3:de21:v:zrlt:zqz:hxvl:mhou) has quit (Quit: Leaving) 2015-06-08 10:57:57 --> Yoshi2 (Yoshi2@665-220.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-08 11:55:40 <-- Yoshi2 (Yoshi2@665-220.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-08 18:30:32 --> Yoshi2 (Yoshi2@0834-7ya1-k3y7-8-91mb-6h57-53vy-ix43.ipv4dyn.netcologne.de) has joined #pikipedia 2015-06-08 18:50:15 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-08 18:50:15 Testyo Hey everyone! 2015-06-08 18:51:03 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-08 18:51:03 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-08 19:19:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 19:19:42 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 19:19:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 19:26:20 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 19:26:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 19:49:09 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 19:49:23 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 20:13:43 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 20:13:55 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 20:40:58 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+7206 /* Areas */) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=150175&oldid=150173 2015-06-08 21:01:11 Testyo [Fanon RC] Pikmin V/Controls by En Passant (+1187 Now with buttons!) http://www.pikminfanon.com/index.php?title=Pikmin_V/Controls&curid=9297&diff=48356&oldid=48100 2015-06-08 21:22:05 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-08 21:55:29 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 21:55:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 21:58:58 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Ping timeout: 252 seconds) 2015-06-08 21:59:55 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-08 22:05:10 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 22:13:00 Testyo so I may Esp? 2015-06-08 22:13:04 <-- Yoshi2 (Yoshi2@0834-7ya1-k3y7-8-91mb-6h57-53vy-ix43.ipv4dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-08 22:14:51 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-08 22:28:13 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 22:28:17 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Remote host closed the connection) 2015-06-08 22:28:32 -- UltraMario2 is now known as UltraMario 2015-06-08 22:39:00 @Espyo so I tried returning to the ISO-as-folder thing in Dolphin 2015-06-08 22:39:05 @Espyo I remember the problem now 2015-06-08 22:39:07 @Espyo it just boots as black 2015-06-08 22:39:14 @Espyo I mean, nothing happens in the game 2015-06-08 22:39:21 @Espyo although Dolphin claims it runs at 60fps, 100% speed 2015-06-08 22:41:55 @Espyo wait 2015-06-08 22:41:56 @Espyo it's working now 2015-06-08 22:42:07 @Espyo I think I might've tried Pikmin 1's .dol with Pikmin 2's folder 2015-06-08 22:42:24 @Espyo even though I octople-checked to make sure I WOULDN'T DO THAT 2015-06-08 22:42:53 @Espyo hm 2015-06-08 22:42:58 @Espyo it just does not work with Pikmin 2 2015-06-08 22:43:01 @Espyo fine with P1, though 2015-06-08 22:43:04 @Espyo or maybe I broke something 2015-06-08 22:44:34 En_Passant I have no idea 2015-06-08 22:44:47 En_Passant What I do know is that I've spent way too much drawing drawing a Pikmin 2015-06-08 22:44:51 @Espyo hehehe 2015-06-08 22:44:53 En_Passant *time drawing 2015-06-08 22:44:57 @Espyo never too much time drawing 2015-06-08 22:45:14 En_Passant six hours? 2015-06-08 22:45:38 En_Passant I still have the arms, extremities, and leaf/bud/flower to do 2015-06-08 22:46:01 En_Passant At least I can copy most of it to make Red, Yellow, and Blue 2015-06-08 22:46:12 En_Passant But then I want to draw the remaining four types plus my two 2015-06-08 22:46:57 En_Passant So I'll have to do it all over again 2015-06-08 22:47:37 @Espyo eh, probably still not too much 2015-06-08 22:48:01 En_Passant I also have no idea how to do the Red Pikmin's nose because I'm bad at shading 2015-06-08 22:48:35 @Espyo hmm 2015-06-08 22:48:41 @Espyo google simple cone shades 2015-06-08 22:49:24 En_Passant Paint.NET might have a gradient for that 2015-06-08 22:49:31 En_Passant I'll have to check once I get there 2015-06-08 22:50:12 @Espyo I think it's just a linear gradient 2015-06-08 22:50:19 @Espyo you just have to crop it in a triangle shape 2015-06-08 22:50:40 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Ping timeout: 252 seconds) 2015-06-08 22:50:54 En_Passant It's a frontal pose 2015-06-08 22:51:02 @Espyo hmm... 2015-06-08 22:51:21 En_Passant Basically, I'm replicating the Pikmin 3 art lol 2015-06-08 22:58:32 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-08 23:07:31 @Espyo hm, either it doesn't work with the PAL version 2015-06-08 23:07:33 @Espyo or I ruined it 2015-06-08 23:07:38 @Espyo because it's working now 2015-06-08 23:09:36 En_Passant My guess is the former 2015-06-08 23:09:44 En_Passant But I don't know anything about Dolphin 2015-06-08 23:15:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-08 23:23:05 En_Passant fingers are hard 2015-06-08 23:38:55 En_Passant Finally got something I'm satisfied with. Time for toes 2015-06-08 23:53:18 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Bye everyone!) 2015-06-08 23:53:20 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-09 00:08:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-09 00:18:20 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-09 00:32:25 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Ping timeout: 252 seconds) 2015-06-09 03:04:05 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-09 03:05:55 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-09 03:06:33 -- UltraMario2 is now known as UltraMario 2015-06-09 03:48:34 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-09 03:48:38 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-09 06:01:52 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-09 07:34:41 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-09 07:35:52 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-09 09:10:56 --> Yoshi2 (Yoshi2@134.61.pg.rsm) has joined #pikipedia 2015-06-09 09:58:16 <-- Yoshi2 (Yoshi2@134.61.pg.rsm) has quit (Quit: Leaving) 2015-06-09 10:21:09 --> Yoshi2 (Yoshi2@134.61.pg.rsm) has joined #pikipedia 2015-06-09 12:32:43 <-- Yoshi2 (Yoshi2@134.61.pg.rsm) has quit (Quit: Leaving) 2015-06-09 15:17:59 --> Yoshi2 (Yoshi2@9641-0bl5-g2v5-5-7p42-3ok6-2ww2-0vyh.ipv8dyn.netcologne.de) has joined #pikipedia 2015-06-09 16:00:57 --> Yoshi2_ (Yoshi2@2710-1pi8-a9a7-4-kt5r-0r87-vt8z-x062.ipv1dyn.netcologne.de) has joined #pikipedia 2015-06-09 16:04:07 <-- Yoshi2 (Yoshi2@9641-0bl5-g2v5-5-7p42-3ok6-2ww2-0vyh.ipv8dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-09 16:35:46 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-06-09 16:39:06 -- Yoshi2_ is now known as Yoshi2 2015-06-09 19:02:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-09 19:04:27 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-09 19:04:27 Testyo Good evening everyone! 2015-06-09 19:05:26 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-09 19:05:26 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-09 19:10:26 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-09 19:10:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-09 19:52:13 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-09 19:54:35 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-09 20:06:02 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-09 20:09:00 -- UltraMario2 is now known as UltraMario 2015-06-09 20:11:21 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-09 20:12:19 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-09 20:12:29 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-09 20:20:08 Testyo [Pikipedia RC] Winged Pikmin by En Passant (+378 m Uses.) http://www.pikminwiki.com/index.php?title=Winged_Pikmin&curid=8140&diff=150198&oldid=150194 2015-06-09 21:20:49 <-- T3 (T3@108.162.mlq.nk) has quit (Ping timeout: 272 seconds) 2015-06-09 21:40:58 <-- Yoshi2 (Yoshi2@2710-1pi8-a9a7-4-kt5r-0r87-vt8z-x062.ipv1dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-10 00:27:43 --> SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has joined #pikipedia 2015-06-10 00:40:40 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-06-10 00:40:46 Waterpikmin hi espyo! 2015-06-10 00:42:33 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Client Quit) 2015-06-10 00:49:22 <-- SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has quit (Ping timeout: 252 seconds) 2015-06-10 00:49:47 --> SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has joined #pikipedia 2015-06-10 00:51:57 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: So long everyone!) 2015-06-10 00:52:00 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-10 01:04:54 --> RingtailedFox (foxfoxfox@2001:470:1d:gwz:zosu:mnug:gvwo:ytkq) has joined #pikipedia 2015-06-10 01:28:13 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-10 01:30:20 <-- RingtailedFox (foxfoxfox@2001:470:1d:gwz:zosu:mnug:gvwo:ytkq) has quit (Read error: No route to host) 2015-06-10 01:31:15 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-10 01:33:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-10 01:34:48 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-10 01:35:14 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-10 01:37:15 -- SailorHaumea is now known as SailorMakemake 2015-06-10 01:46:32 -- SailorMakemake is now known as Galacta_Knight 2015-06-10 01:47:25 -- Galacta_Knight is now known as DarkMetaKnight 2015-06-10 01:47:56 -- DarkMetaKnight is now known as MaskedDedede 2015-06-10 02:11:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-10 02:11:54 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-10 02:23:26 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-10 02:25:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-10 03:04:22 <-- MaskedDedede (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has quit (Read error: Connection reset by peer) 2015-06-10 03:05:26 --> MaskedDedede (MaskedDede@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has joined #pikipedia 2015-06-10 03:13:12 -- MaskedDedede is now known as SailorHaumea 2015-06-10 04:08:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-10 05:56:35 --> Gamefreak75 (NewYokuba@66.116.jyr.xps) has joined #pikipedia 2015-06-10 06:06:53 --> Gamefreak75_ (NewYokuba@66.116.jyr.xps) has joined #pikipedia 2015-06-10 06:07:21 <-- Gamefreak75 (NewYokuba@66.116.jyr.xps) has quit (Ping timeout: 245 seconds) 2015-06-10 06:07:25 -- Gamefreak75_ is now known as Gamefreak75 2015-06-10 06:10:02 <-- Gamefreak75 (NewYokuba@66.116.jyr.xps) has quit (Client Quit) 2015-06-10 07:23:49 <-- SailorHaumea (MaskedDede@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has quit (Read error: Connection reset by peer) 2015-06-10 07:24:44 --> SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has joined #pikipedia 2015-06-10 09:51:25 --> Yoshi2 (Yoshi2@134.61.pg.rsm) has joined #pikipedia 2015-06-10 09:57:14 <-- Yoshi2 (Yoshi2@134.61.pg.rsm) has quit (Quit: Leaving) 2015-06-10 10:27:05 --> Yoshi2 (Yoshi2@134.61.pg.rsm) has joined #pikipedia 2015-06-10 10:31:15 --> Ringtailed-Fox (foxfoxfox@2001:470:1d:gwz:zosu:mnug:gvwo:ytkq) has joined #pikipedia 2015-06-10 10:33:28 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 252 seconds) 2015-06-10 11:03:26 <-- Yoshi2 (Yoshi2@134.61.pg.rsm) has quit (Quit: Leaving) 2015-06-10 11:13:46 --> Yoshi2 (Yoshi2@134.61.pg.rsm) has joined #pikipedia 2015-06-10 11:19:11 <-- Ringtailed-Fox (foxfoxfox@2001:470:1d:gwz:zosu:mnug:gvwo:ytkq) has quit (Read error: No route to host) 2015-06-10 11:22:59 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-10 12:02:17 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-10 12:02:17 Testyo Hi everyone! 2015-06-10 12:03:05 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-10 12:03:05 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-10 12:03:52 <-- Yoshi2 (Yoshi2@134.61.pg.rsm) has quit (Quit: Leaving) 2015-06-10 14:05:01 SailorHaumea hi 2015-06-10 14:05:07 @Espyo hi 2015-06-10 14:05:20 SailorHaumea how has your day been 2015-06-10 14:05:34 @Espyo good so far 2015-06-10 14:05:35 @Espyo yours? 2015-06-10 14:05:46 SailorHaumea good 2015-06-10 14:05:50 SailorHaumea Just woke up 2015-06-10 14:10:44 --> Miles_ (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-10 14:12:32 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 252 seconds) 2015-06-10 15:14:03 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+3894 /* Caves */ Locations halfway done.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=150203&oldid=150201 2015-06-10 15:44:26 Testyo but maybe it when out of focus, I still don't think it's enough 2015-06-10 15:52:58 --> Yoshi2 (Yoshi2@2001:4dd3:ea8f:l:vm:qwpn:giko:hghk) has joined #pikipedia 2015-06-10 17:35:19 <-- SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has quit (Ping timeout: 252 seconds) 2015-06-10 17:40:16 --> SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has joined #pikipedia 2015-06-10 18:22:22 <-- Yoshi2 (Yoshi2@2001:4dd3:ea8f:l:vm:qwpn:giko:hghk) has quit (Quit: Leaving) 2015-06-10 18:27:22 --> Yoshi2 (Yoshi2@2001:4dd3:ea8f:z:iipt:klyp:jjuq:zyqp) has joined #pikipedia 2015-06-10 18:51:48 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-10 19:11:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-10 19:14:58 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-10 19:35:46 Testyo same buy one more 2015-06-10 19:43:08 @J everyone should check the current Humble Bundle 2015-06-10 19:43:20 @J high chance you have most of the games, but if not, you should 2015-06-10 19:48:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-10 19:48:11 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-10 19:52:03 @Espyo I will 2015-06-10 19:52:31 @Espyo hmm, good bundle, yeah 2015-06-10 19:53:47 Yoshi2 not bad 2015-06-10 21:19:42 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-10 21:20:41 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Read error: Connection reset by peer) 2015-06-10 21:21:53 En_Passant Espyo, are Yellow Pikmin thrown farther than others or just higher? 2015-06-10 21:33:18 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-10 21:39:11 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-10 21:40:46 @Espyo just higher 2015-06-10 21:41:57 <-- Yoshi2 (Yoshi2@2001:4dd3:ea8f:z:iipt:klyp:jjuq:zyqp) has quit (Quit: Leaving) 2015-06-10 21:46:03 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-10 21:46:03 Testyo Hey everyone! 2015-06-10 21:55:23 En_Passant Uh 2015-06-10 21:55:29 En_Passant I thought Testyo was a bot 2015-06-10 21:55:30 Testyo and we have no technology to edit that doesn't sound right 2015-06-10 21:55:34 @Espyo he is 2015-06-10 22:01:28 @J don't Yellow Pikmin go further if you throw while running? 2015-06-10 22:03:03 @Espyo that's all Pikmin 2015-06-10 22:04:42 En_Passant Oh yeah, I finished some of my Pikmin drawings 2015-06-10 22:04:47 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-10 22:04:49 @Espyo neat 2015-06-10 22:04:53 En_Passant Got the main trio 2015-06-10 22:05:05 En_Passant And I'll finish Purple once I stop procrastinating 2015-06-10 22:05:30 En_Passant All I have to do is make a bud and flower for it 2015-06-10 22:06:59 @J I mean, don't they go further than other colours in that case? 2015-06-10 22:07:52 En_Passant No, because they have the same horizontal speed and running only adds horizontal momentum 2015-06-10 22:08:07 @Espyo ^this, I think 2015-06-10 22:08:10 @Espyo at least I'm pretty sure 2015-06-10 22:12:30 @J but if they go higher they're in the air for longer 2015-06-10 22:13:07 @J not that I was really trying to apply physics to Pikmin, I just thought I remembered it feeling like they went further 2015-06-10 22:16:47 @Espyo I know what you mean 2015-06-10 22:17:03 @Espyo but I think vertical speed and horizontal one are independent 2015-06-10 22:18:15 @J I didn't say they're not 2015-06-10 22:19:43 @J if you're talking about why they would go further than others when thrown with greater horizontal speed, I would say it's because when you're standing still, distance is limited by the cursor, not by actual horizontal speed 2015-06-10 22:19:56 @J and in that case you actually throw yellows with _less_ horizontal speed 2015-06-10 22:20:07 @J except NPC; in that case I have no idea 2015-06-10 22:22:31 @Espyo hmm 2015-06-10 22:22:42 @Espyo right, I get what you mean 2015-06-10 22:22:44 @Espyo well, should be fun to test 2015-06-10 23:01:44 -- SailorHaumea is now known as DarkMetaKnight 2015-06-10 23:02:03 -- DarkMetaKnight is now known as SailorHaumea 2015-06-10 23:02:17 Testyo [Fanon RC] File:Purple Pikmin V.png uploaded by En Passant (Artwork of Purple Pikmin for ''Pikmin V''.) http://www.pikminfanon.com/index.php?title=File:Purple_Pikmin_V.png 2015-06-10 23:03:19 En_Passant Bam 2015-06-10 23:27:23 Testyo [Fanon RC] Pikmin V/Pikmin types by En Passant (+571 I feel like a Purple Pikmin.) http://www.pikminfanon.com/index.php?title=Pikmin_V/Pikmin_types&curid=9293&diff=48364&oldid=48361 2015-06-10 23:34:50 <-- SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has quit (Read error: Connection reset by peer) 2015-06-10 23:36:24 --> SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has joined #pikipedia 2015-06-10 23:36:57 En_Passant I still don't like my Purple Pikmins' arms, but I don't know how to make them better 2015-06-10 23:54:51 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 00:07:59 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-11 00:08:27 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-11 00:23:35 --> last (Mibbit@490-538-22-49.lightspeed.rcsntx.sbcglobal.net) has joined #pikipedia 2015-06-11 00:23:40 last hoy 2015-06-11 00:28:31 <-- last (Mibbit@490-538-22-49.lightspeed.rcsntx.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 02:04:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 02:09:18 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 02:57:37 <-- SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has quit (Read error: Connection reset by peer) 2015-06-11 02:57:59 --> SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has joined #pikipedia 2015-06-11 02:58:33 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-11 03:43:15 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-11 03:50:05 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 03:58:34 <-- SailorHaumea (SailorHaum@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has left #pikipedia 2015-06-11 04:36:37 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-11 04:41:23 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 05:05:25 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 05:15:13 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 07:17:09 --> Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-11 07:20:02 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 265 seconds) 2015-06-11 07:24:34 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-11 07:26:32 <-- Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 252 seconds) 2015-06-11 08:37:06 --> Yoshi2 (Yoshi2@134.61.pg.rsm) has joined #pikipedia 2015-06-11 08:51:21 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 272 seconds) 2015-06-11 08:53:55 <-- Yoshi2 (Yoshi2@134.61.pg.rsm) has quit (Quit: Leaving) 2015-06-11 09:11:15 --> Yoshi2 (Yoshi2@134.61.pg.rsm) has joined #pikipedia 2015-06-11 09:28:31 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Read error: Connection reset by peer) 2015-06-11 09:49:14 --> Yoshi2_ (Yoshi2@137-545.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-11 09:52:40 <-- Yoshi2 (Yoshi2@134.61.pg.rsm) has quit (Ping timeout: 252 seconds) 2015-06-11 10:01:33 --> Yoshi2__ (Yoshi2@137-545.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-11 10:04:13 <-- Yoshi2_ (Yoshi2@137-545.eduroam.rwth-aachen.de) has quit (Ping timeout: 252 seconds) 2015-06-11 10:42:07 <-- Yoshi2__ (Yoshi2@137-545.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-11 11:52:22 --> Yoshi2 (Yoshi2@137-545.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-11 14:13:23 <-- Yoshi2 (Yoshi2@137-545.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-11 14:47:18 --> Yoshi2 (Yoshi2@137-545.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-11 15:28:30 --> T3 (T3@298-257-224-48.cable.teksavvy.com) has joined #pikipedia 2015-06-11 15:38:47 --> Yoshi2_ (Yoshi2@137-545.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-11 15:41:55 <-- Yoshi2 (Yoshi2@137-545.eduroam.rwth-aachen.de) has quit (Ping timeout: 252 seconds) 2015-06-11 16:32:44 <-- Yoshi2_ (Yoshi2@137-545.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-11 18:41:46 <-- T3 (T3@298-257-224-48.cable.teksavvy.com) has quit (Ping timeout: 252 seconds) 2015-06-11 18:41:53 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-11 18:41:53 Testyo Good evening everyone! 2015-06-11 18:42:49 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-11 18:42:49 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-11 18:50:49 --> Yoshi2 (Yoshi2@4196-5kd0-lf2i-5-8992-5fic-q8nb-6n24.ipv3dyn.netcologne.de) has joined #pikipedia 2015-06-11 18:59:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 19:23:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Ping timeout: 252 seconds) 2015-06-11 19:24:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 19:24:34 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-11 19:24:46 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 19:25:14 -- UltraMario is now known as UltraMii 2015-06-11 19:54:29 --> Yoshi2_ (Yoshi2@2001:4dd3:f08e:h:wlrh:vzxi:srkq:yylq) has joined #pikipedia 2015-06-11 19:56:34 <-- Yoshi2 (Yoshi2@4196-5kd0-lf2i-5-8992-5fic-q8nb-6n24.ipv3dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-11 19:58:38 --> Yoshi2__ (Yoshi2@igfx-08-21-062-567.netcologne.de) has joined #pikipedia 2015-06-11 20:01:31 <-- Yoshi2_ (Yoshi2@2001:4dd3:f08e:h:wlrh:vzxi:srkq:yylq) has quit (Ping timeout: 252 seconds) 2015-06-11 20:09:24 <-- UltraMii (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Ping timeout: 252 seconds) 2015-06-11 20:14:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 20:16:41 -- Yoshi2__ is now known as Yoshi2 2015-06-11 21:01:09 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 21:01:21 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 21:05:57 Yoshi2 Testyo: pls help 2015-06-11 21:05:58 Testyo when the image with the season switcher + its upgrades came out, I thought it was like some sort of... uh 2015-06-11 21:06:10 Yoshi2 linear algebra is kicking my butt again 2015-06-11 21:06:19 @Espyo yep 2015-06-11 21:08:25 Yoshi2 though this time we are doing something fun 2015-06-11 21:08:27 Yoshi2 linear codes 2015-06-11 21:47:46 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 21:48:20 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 22:12:05 Testyo How do up at 11 2015-06-11 22:28:22 <-- Yoshi2 (Yoshi2@igfx-08-21-062-567.netcologne.de) has quit (Quit: Leaving) 2015-06-11 22:28:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 22:40:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 22:49:24 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-11 22:49:24 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-11 22:49:32 @PikFan hi 2015-06-11 22:50:47 @Espyo hi 2015-06-11 22:50:57 @PikFan school ended for me yesterday 2015-06-11 22:51:03 @Espyo ooh, nice 2015-06-11 22:51:18 @PikFan it starts again September 9 2015-06-11 22:51:47 @PikFan hey, do you know about agar.io? 2015-06-11 22:51:58 @PikFan it's... interesting 2015-06-11 22:52:08 @PikFan it's addicting, but very frustrating 2015-06-11 22:54:34 @Espyo I've heard of it 2015-06-11 22:54:36 @Espyo don't want to get hooked 2015-06-11 22:54:42 @PikFan yeah 2015-06-11 22:54:57 --> RingtailedFox (foxfoxfox@2001:470:1d:osr:wmrx:ywhq:nqss:xsjq) has joined #pikipedia 2015-06-11 22:54:57 @PikFan I get too frustrated to play it for a long time 2015-06-11 22:54:59 @PikFan so that works 2015-06-11 22:55:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 22:55:19 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 23:19:26 <-- RingtailedFox (foxfoxfox@2001:470:1d:osr:wmrx:ywhq:nqss:xsjq) has quit (Read error: No route to host) 2015-06-11 23:20:21 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-11 23:33:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-11 23:34:00 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-11 23:47:11 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Ping timeout: 252 seconds) 2015-06-11 23:47:44 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Ping timeout: 252 seconds) 2015-06-11 23:48:09 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-11 23:48:09 Testyo Evening everyone! 2015-06-11 23:49:00 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-11 23:49:00 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-11 23:50:13 --> Shard1 (Mibbit@945-928-066-991.lightspeed.cicril.sbcglobal.net) has joined #pikipedia 2015-06-11 23:50:26 Shard1 Helloeveryone 2015-06-11 23:51:57 Shard1 Has anybody else played the Kelp Dome stage? 2015-06-11 23:52:38 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Client Quit) 2015-06-11 23:58:07 Testyo [Pikipedia RC] Pluck by Pikpikonion27 (+32 m /* Plucking speeds */) http://www.pikminwiki.com/index.php?title=Pluck&curid=9954&diff=150214&oldid=148407 2015-06-11 23:58:53 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: I'm going as well) 2015-06-11 23:59:48 <-- Shard1 (Mibbit@945-928-066-991.lightspeed.cicril.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-12 00:21:26 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-12 00:51:30 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-12 00:51:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-12 01:33:45 --> T3 (T3@298-257-224-48.cable.teksavvy.com) has joined #pikipedia 2015-06-12 05:40:17 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-12 06:29:11 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-12 06:29:20 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-12 07:05:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-12 08:12:08 --> Yoshi2 (Yoshi2@134.61.tt.tiq) has joined #pikipedia 2015-06-12 08:35:50 <-- Yoshi2 (Yoshi2@134.61.tt.tiq) has quit (Quit: Leaving) 2015-06-12 08:36:00 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-12 08:36:04 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-12 09:11:17 --> Yoshi2 (Yoshi2@134.61.tt.tiq) has joined #pikipedia 2015-06-12 10:01:44 --> Ringtailed-Fox (foxfoxfox@2001:470:1d:osr:wmrx:ywhq:nqss:xsjq) has joined #pikipedia 2015-06-12 10:04:40 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 252 seconds) 2015-06-12 10:32:06 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-12 10:38:16 <-- Yoshi2 (Yoshi2@134.61.tt.tiq) has quit (Quit: Leaving) 2015-06-12 11:13:57 --> Yoshi2 (Yoshi2@134.61.tt.tiq) has joined #pikipedia 2015-06-12 12:02:20 <-- Yoshi2 (Yoshi2@134.61.tt.tiq) has quit (Quit: Leaving) 2015-06-12 12:57:52 --> Yoshi2 (Yoshi2@134.61.tt.tiq) has joined #pikipedia 2015-06-12 14:30:14 --> penis (Mibbit@bvl-77iw7895.dyn.optonline.net) has joined #pikipedia 2015-06-12 14:30:32 <-- penis (Mibbit@bvl-77iw7895.dyn.optonline.net) has quit (Client Quit) 2015-06-12 14:46:58 <-- Yoshi2 (Yoshi2@134.61.tt.tiq) has quit (Quit: Leaving) 2015-06-12 15:05:39 --> Klemen702 (Mibbit@okp-261-769-305.dynamic.siol.net) has joined #pikipedia 2015-06-12 15:06:45 Klemen702 hello 2015-06-12 15:23:49 <-- Klemen702 (Mibbit@okp-261-769-305.dynamic.siol.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-12 16:07:31 <-- Miles_ (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit 2015-06-12 18:09:04 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-12 18:35:21 --> Yoshi2 (Yoshi2@1027-9hs2-q578-1-k056-7g6q-o3ma-0yh.ipv7dyn.netcologne.de) has joined #pikipedia 2015-06-12 19:08:15 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-12 19:10:38 --> Yoshi2_ (Yoshi2@2001:4dd3:f596:g:jpyn:szwz:iqou:yhp) has joined #pikipedia 2015-06-12 19:14:40 <-- Yoshi2 (Yoshi2@1027-9hs2-q578-1-k056-7g6q-o3ma-0yh.ipv7dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-12 19:14:58 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-12 19:14:58 Testyo Hi everyone! 2015-06-12 19:15:39 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-12 19:15:39 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-12 19:18:19 --> Yoshi2__ (Yoshi2@eyuw-53-76-010-550.netcologne.de) has joined #pikipedia 2015-06-12 19:18:27 Yoshi2__ hey Espyo & Testyo 2015-06-12 19:18:28 Testyo again with the Pikmin short movies logo 2015-06-12 19:20:43 <-- Yoshi2_ (Yoshi2@2001:4dd3:f596:g:jpyn:szwz:iqou:yhp) has quit (Ping timeout: 252 seconds) 2015-06-12 19:23:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-12 19:24:08 -- Yoshi2__ is now known as Yoshi2 2015-06-12 19:24:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-12 19:27:59 @Espyo hi 2015-06-12 19:35:09 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-12 19:35:28 --> Yoshi2_ (Yoshi2@2001:4dd3:f5ad:i:nspp:wsiw:hoph:skq) has joined #pikipedia 2015-06-12 19:38:49 <-- Yoshi2 (Yoshi2@eyuw-53-76-010-550.netcologne.de) has quit (Ping timeout: 272 seconds) 2015-06-12 19:39:58 En_Passant Stupid White, Rock, and Winged Pikmin 2015-06-12 19:40:07 En_Passant Not being friendly in their artwork 2015-06-12 19:40:54 @Espyo heh 2015-06-12 19:40:59 --> Yoshi2__ (Yoshi2@2001:4dd3:f5b2:l:yutx:numz:nvyz:jrp) has joined #pikipedia 2015-06-12 19:42:43 En_Passant I don't know what to do about it 2015-06-12 19:43:03 En_Passant There's other artwork showing them in a neutral pose, but it's also simplified 2015-06-12 19:43:49 <-- Yoshi2_ (Yoshi2@2001:4dd3:f5ad:i:nspp:wsiw:hoph:skq) has quit (Ping timeout: 252 seconds) 2015-06-12 19:44:55 --> Yoshi2 (Yoshi2@2001:4dd3:f5b5:q:jkts:xuhu:sqoz:jmu) has joined #pikipedia 2015-06-12 19:46:34 <-- Yoshi2__ (Yoshi2@2001:4dd3:f5b2:l:yutx:numz:nvyz:jrp) has quit (Ping timeout: 252 seconds) 2015-06-12 19:49:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-12 20:49:36 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-12 21:02:38 <-- Yoshi2 (Yoshi2@2001:4dd3:f5b5:q:jkts:xuhu:sqoz:jmu) has quit (Quit: Leaving) 2015-06-12 21:19:08 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-12 21:26:00 Testyo [Pikipedia RC] Rock Pikmin by En Passant (+186 /* Mandatory uses */) http://www.pikminwiki.com/index.php?title=Rock_Pikmin&curid=7833&diff=150238&oldid=150153 2015-06-12 21:26:01 Testyo [Pikipedia RC] Rock Pikmin by En Passant (0 m /* Mandatory uses */ Should've previewed...) http://www.pikminwiki.com/index.php?title=Rock_Pikmin&curid=7833&diff=150239&oldid=150238 2015-06-12 21:26:01 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2015-06-12 21:52:08 <-- T3 (T3@298-257-224-48.cable.teksavvy.com) has quit (Ping timeout: 252 seconds) 2015-06-12 22:10:42 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-12 22:15:14 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Ping timeout: 252 seconds) 2015-06-12 22:17:26 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-12 22:17:26 Testyo Hi everyone! 2015-06-12 22:17:36 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-12 22:17:37 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-12 23:31:15 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Bye bye everyone!) 2015-06-12 23:33:02 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-12 23:42:46 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 245 seconds) 2015-06-12 23:50:49 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-12 23:59:47 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 00:03:15 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-13 00:03:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 00:06:39 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-13 00:06:47 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 01:09:13 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 01:09:17 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario2))) 2015-06-13 01:09:19 -- UltraMario2 is now known as UltraMario 2015-06-13 02:31:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 02:35:22 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 03:17:03 <-- Ringtailed-Fox (foxfoxfox@2001:470:1d:osr:wmrx:ywhq:nqss:xsjq) has quit (Read error: Connection reset by peer) 2015-06-13 03:21:09 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 272 seconds) 2015-06-13 03:56:41 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 03:57:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 04:52:00 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-13 05:17:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 05:17:50 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 05:38:23 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 05:38:35 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 06:24:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 06:25:00 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 07:14:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 07:15:58 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 08:07:35 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-13 08:27:15 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 08:27:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 08:43:13 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 08:48:48 --> Yoshi2 (Yoshi2@2001:4dd3:f75b:m:mpkp:xkpi:jqsm:lih) has joined #pikipedia 2015-06-13 12:36:19 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-13 12:36:19 Testyo Good afternoon everyone! 2015-06-13 12:37:01 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-13 12:37:01 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-13 13:25:55 --> Yoshi2_ (Yoshi2@6522-4ol7-h025-1-71vv-u58u-9bk2-58a8.ipv0dyn.netcologne.de) has joined #pikipedia 2015-06-13 13:29:10 <-- Yoshi2 (Yoshi2@2001:4dd3:f75b:m:mpkp:xkpi:jqsm:lih) has quit (Ping timeout: 252 seconds) 2015-06-13 13:55:10 --> Yoshi2 (Yoshi2@gccm-15-06-56-48.netcologne.de) has joined #pikipedia 2015-06-13 13:57:46 <-- Yoshi2_ (Yoshi2@6522-4ol7-h025-1-71vv-u58u-9bk2-58a8.ipv0dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-13 15:28:35 @J turns out you can get _really_ cheap VPSs these days 2015-06-13 15:28:38 @J like, $5/year 2015-06-13 15:28:39 Testyo $ 5 = 4.5985 € / £ 3.2495 2015-06-13 15:29:04 @J okay, they're not full OSs and they have low resources, but you can still run whatever program you want 2015-06-13 15:29:39 Yoshi2 5 bucks per year? 2015-06-13 15:29:48 Yoshi2 that is a very nice price 2015-06-13 15:30:01 Yoshi2 probably good for running an irc bot 2015-06-13 15:30:07 Yoshi2 *cough* Testyo *cough* 2015-06-13 15:30:08 Testyo what's the Root ...what 2015-06-13 15:31:47 Yoshi2 but maybe the uptime isn't so good 2015-06-13 15:32:12 Yoshi2 e.g. your instance could be interrupted in favor of others 2015-06-13 15:37:08 @J quite possibly 2015-06-13 15:37:35 @Espyo hmmmmm... 2015-06-13 15:39:46 @J but yeah, if you just want to test stuff, it basically costs nothing 2015-06-13 15:41:19 @J also http://www.cloudatcost.com/ seems to offer lifetime plans, which is interesting 2015-06-13 15:41:25 @J as in you pay once then never again 2015-06-13 15:42:10 @J stated like that it's more like when you buy your own computer - it lasts until the specs are obsolete and you need something more 2015-06-13 15:42:58 Testyo alright, dreyn 2015-06-13 15:43:54 @J mhm 2015-06-13 20:40:04 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 20:44:02 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Quit: jhi) 2015-06-13 20:57:31 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 20:57:55 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 21:35:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 21:35:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 22:07:07 Testyo i mean the guy Fanon game on the catagorie 2015-06-13 22:10:23 Testyo [Pikipedia RC] User talk:Espyo by Scruffy (+448) http://www.pikminwiki.com/index.php?title=User_talk:Espyo&curid=5393&diff=150262&oldid=150237 2015-06-13 22:10:49 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 22:11:02 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 22:23:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 22:24:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 22:40:30 Testyo [Pikipedia RC] User talk:Espyo by Scruffy (+635) http://www.pikminwiki.com/index.php?title=User_talk:Espyo&curid=5393&diff=150266&oldid=150263 2015-06-13 22:47:47 <-- Yoshi2 (Yoshi2@gccm-15-06-56-48.netcologne.de) has quit (Quit: Leaving) 2015-06-13 22:50:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 22:50:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-13 23:23:30 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-13 23:52:38 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 00:46:46 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Ping timeout: 252 seconds) 2015-06-14 00:50:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 01:14:09 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 01:16:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 01:18:57 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-14 01:19:16 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-14 01:30:48 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 01:31:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 01:58:24 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-14 02:03:30 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 02:05:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 02:56:37 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 03:01:15 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 03:31:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 03:31:47 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 03:31:52 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-14 03:32:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 03:49:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 03:49:55 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 04:57:55 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 04:58:07 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 06:50:26 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 07:18:44 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-14 07:18:51 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Client Quit) 2015-06-14 07:43:10 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-14 08:06:46 --> Yoshi2 (Yoshi2@9141-5xd5-rh0w-5-99h3-x404-683z-3f5o.ipv8dyn.netcologne.de) has joined #pikipedia 2015-06-14 09:24:01 --> Yoshi2_ (Yoshi2@2001:4dd3:fdd1:l:svzh:mhyh:xqgw:lyri) has joined #pikipedia 2015-06-14 09:26:31 <-- Yoshi2 (Yoshi2@9141-5xd5-rh0w-5-99h3-x404-683z-3f5o.ipv8dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-14 09:38:22 --> Yoshi2 (Yoshi2@2001:4dd3:fdde:r:nljt:trym:mvny:jixh) has joined #pikipedia 2015-06-14 09:40:26 --> Yoshi2__ (Yoshi2@2001:4dd3:fde0:p:osir:ktnz:ssww:zzrp) has joined #pikipedia 2015-06-14 09:40:49 <-- Yoshi2_ (Yoshi2@2001:4dd3:fdd1:l:svzh:mhyh:xqgw:lyri) has quit (Ping timeout: 252 seconds) 2015-06-14 09:43:01 <-- Yoshi2 (Yoshi2@2001:4dd3:fdde:r:nljt:trym:mvny:jixh) has quit (Ping timeout: 252 seconds) 2015-06-14 09:53:46 --> Yoshi2_ (Yoshi2@2260-6iu8-zdlc-9-l6cp-k017-10x3-9414.ipv1dyn.netcologne.de) has joined #pikipedia 2015-06-14 09:56:46 <-- Yoshi2__ (Yoshi2@2001:4dd3:fde0:p:osir:ktnz:ssww:zzrp) has quit (Ping timeout: 252 seconds) 2015-06-14 10:01:48 --> Yoshi2__ (Yoshi2@dwqo-70-70-845-774.netcologne.de) has joined #pikipedia 2015-06-14 10:03:55 <-- Yoshi2_ (Yoshi2@2260-6iu8-zdlc-9-l6cp-k017-10x3-9414.ipv1dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-14 10:07:27 --> Yoshi2 (Yoshi2@2001:4dd3:fdfa:h:sgto:ymtw:mvny:oxsw) has joined #pikipedia 2015-06-14 10:09:26 <-- Yoshi2__ (Yoshi2@dwqo-70-70-845-774.netcologne.de) has quit (Ping timeout: 245 seconds) 2015-06-14 10:09:53 --> Yoshi2_ (Yoshi2@wntz-49-37-105-86.netcologne.de) has joined #pikipedia 2015-06-14 10:12:43 <-- Yoshi2 (Yoshi2@2001:4dd3:fdfa:h:sgto:ymtw:mvny:oxsw) has quit (Ping timeout: 252 seconds) 2015-06-14 10:25:01 --> Yoshi2 (Yoshi2@2001:4dd3:fe0d:j:wouq:ipzo:lytq:sljy) has joined #pikipedia 2015-06-14 10:26:21 --> Yoshi2__ (Yoshi2@2001:4dd3:fe10:i:uzrp:lvmi:tpvp:qhgn) has joined #pikipedia 2015-06-14 10:27:34 <-- Yoshi2_ (Yoshi2@wntz-49-37-105-86.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-14 10:29:46 <-- Yoshi2 (Yoshi2@2001:4dd3:fe0d:j:wouq:ipzo:lytq:sljy) has quit (Ping timeout: 252 seconds) 2015-06-14 10:32:31 <-- Yoshi2__ (Yoshi2@2001:4dd3:fe10:i:uzrp:lvmi:tpvp:qhgn) has quit (Ping timeout: 252 seconds) 2015-06-14 10:43:16 --> Yoshi2 (Yoshi2@7265-6ol8-cf72-9-s1lc-k517-65x3-4419.ipv1dyn.netcologne.de) has joined #pikipedia 2015-06-14 10:54:41 --> Yoshi2_ (Yoshi2@5889-2dp1-pk61-3-x8ag-x498-58s0-2033.ipv4dyn.netcologne.de) has joined #pikipedia 2015-06-14 10:57:49 <-- Yoshi2 (Yoshi2@7265-6ol8-cf72-9-s1lc-k517-65x3-4419.ipv1dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-14 11:22:16 --> Yoshi2__ (Yoshi2@2760-6er3-tn9d-4-j1yh-z017-10w8-9914.ipv6dyn.netcologne.de) has joined #pikipedia 2015-06-14 11:25:19 <-- Yoshi2_ (Yoshi2@5889-2dp1-pk61-3-x8ag-x498-58s0-2033.ipv4dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-14 11:26:58 <-- Yoshi2__ (Yoshi2@2760-6er3-tn9d-4-j1yh-z017-10w8-9914.ipv6dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-14 11:50:44 --> Yoshi2 (Yoshi2@2001:4dd3:fe6c:s:uzwu:qqhs:tulu:ghgs) has joined #pikipedia 2015-06-14 12:05:46 --> Yoshi2_ (Yoshi2@8403-3ft9-xa3b-7-o5iw-d874-46e2-5657.ipv2dyn.netcologne.de) has joined #pikipedia 2015-06-14 12:08:13 <-- Yoshi2 (Yoshi2@2001:4dd3:fe6c:s:uzwu:qqhs:tulu:ghgs) has quit (Ping timeout: 252 seconds) 2015-06-14 12:16:25 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-14 12:16:25 Testyo Hello everyone! 2015-06-14 12:17:20 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-14 12:17:20 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-14 12:24:39 Yoshi2_ hey Espyo & Testyo 2015-06-14 12:24:40 Testyo and the MediaWiki API is giving a thumbnail 2015-06-14 12:24:46 @Espyo hi 2015-06-14 13:25:24 --> Yoshi2 (Yoshi2@xknn-13-44-410-897.netcologne.de) has joined #pikipedia 2015-06-14 13:27:58 <-- Yoshi2_ (Yoshi2@8403-3ft9-xa3b-7-o5iw-d874-46e2-5657.ipv2dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-14 15:54:17 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 16:17:23 Testyo hmmm version, but it's bigger 2015-06-14 16:20:41 Yoshi2 that's the entire point of versions 2015-06-14 16:48:17 Testyo [Pikipedia RC] Pikmin 3 by 37.152.251.47 (+33 /* Demo version */) http://www.pikminwiki.com/index.php?title=Pikmin_3&curid=1346&diff=150280&oldid=149850 2015-06-14 16:49:15 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 16:56:48 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 17:24:05 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Ping timeout: 252 seconds) 2015-06-14 17:29:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 17:57:09 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 17:58:47 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 18:27:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 18:27:42 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 19:29:12 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 19:29:22 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 19:36:39 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-14 19:52:08 Yoshi2 so this time, instead of implementing a sorting algorithm that uses fork()ing, we had to implement true and false from the coreutils 2015-06-14 19:55:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 19:55:19 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 19:58:53 --> RingtailedFox (foxfoxfox@2001:470:1d:hyy:lmwl:ozpq:guzo:gosw) has joined #pikipedia 2015-06-14 20:08:55 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 20:09:29 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 20:37:07 @J isn't that just exit(0) and exit(1)? 2015-06-14 20:37:10 @J uh 2015-06-14 20:37:15 @J return, I guess 2015-06-14 20:38:13 Yoshi2 J: yup 2015-06-14 21:39:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 21:39:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 21:43:47 --> En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has joined #pikipedia 2015-06-14 22:01:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 22:01:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 22:03:42 <-- En_Passant (Mibbit@10-756-846-873.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 22:37:27 <-- Yoshi2 (Yoshi2@xknn-13-44-410-897.netcologne.de) has quit (Quit: Leaving) 2015-06-14 22:41:29 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2015-06-14 22:50:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-14 22:51:07 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-14 22:55:18 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-14 23:37:25 Testyo yeah a big slope 2015-06-14 23:38:02 @Espyo he goes "yeah" a lot 2015-06-14 23:40:21 UltraMario espyo 2015-06-14 23:40:24 UltraMario earthbound beginnings 2015-06-14 23:40:26 UltraMario are you hyped 2015-06-14 23:40:33 @Espyo somebody talked to me about it 2015-06-14 23:40:37 @Espyo but not much was said 2015-06-14 23:40:41 @Espyo what is happening, exactly? 2015-06-14 23:41:15 UltraMario earthbound 0 on vc 2015-06-14 23:41:16 UltraMario :> 2015-06-14 23:41:32 UltraMario now all we need is mother 3 2015-06-14 23:41:52 @Espyo but 2015-06-14 23:41:56 @Espyo I thought it wasn't translated 2015-06-14 23:42:02 UltraMario it was 2015-06-14 23:42:09 UltraMario it was an english prototype 2015-06-14 23:42:12 UltraMario it was translated 2015-06-14 23:42:12 UltraMario but 2015-06-14 23:42:15 UltraMario never released 2015-06-14 23:42:23 UltraMario until now 2015-06-14 23:42:56 UltraMario unless you meant mother 3:P 2015-06-14 23:42:56 @Espyo right, but isn't the prototype all in Engrish and such? 2015-06-14 23:43:00 @Espyo I meant Mother 1 2015-06-14 23:43:05 UltraMario i dunno 2015-06-14 23:43:11 UltraMario maybe it had some engrish here and there 2015-06-14 23:46:19 @Espyo but yeah, I'm hyped 2015-06-14 23:46:22 @Espyo Mother 3 eventually 2015-06-14 23:46:23 @Espyo speaking of Mother 2015-06-14 23:46:43 @Espyo I don't think it's legal for Nintendo to make THIS the Lucas Classic credits image panel 2015-06-14 23:47:00 @Espyo Nintendo can't just KILL hearts, that has to be bound to some years in jail 2015-06-14 23:47:08 @Espyo I just completed Classic, looking a the image right now 2015-06-14 23:47:57 UltraMario huh 2015-06-14 23:48:17 @Espyo it's an image of Lucas holding hands with Claus in a heavenly background 2015-06-14 23:48:24 @Espyo you can't just DO that, Nintendo 2015-06-14 23:48:30 UltraMario oh 2015-06-14 23:48:35 UltraMario but 2015-06-14 23:48:36 UltraMario the feeels 2015-06-14 23:48:38 UltraMario :< 2015-06-14 23:49:43 @Espyo exactly 2015-06-15 00:01:03 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-15 00:01:10 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-15 00:04:43 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 00:06:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 01:45:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 01:45:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 02:17:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 02:17:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 02:33:25 <-- RingtailedFox (foxfoxfox@2001:470:1d:hyy:lmwl:ozpq:guzo:gosw) has quit (Ping timeout: 272 seconds) 2015-06-15 02:36:43 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 02:37:10 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 02:42:09 --> RingtailedFox (foxfoxfox@2001:470:1d:tnh:kjht:zlhy:unl:umwv) has joined #pikipedia 2015-06-15 03:01:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 03:10:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 04:09:24 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-15 04:42:08 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-15 05:07:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 05:39:03 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 08:06:39 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 09:08:28 --> Yoshi2 (Yoshi2@804-229.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-15 09:17:51 --> Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-15 09:20:55 <-- RingtailedFox (foxfoxfox@2001:470:1d:tnh:kjht:zlhy:unl:umwv) has quit (Ping timeout: 252 seconds) 2015-06-15 10:38:44 <-- Yoshi2 (Yoshi2@804-229.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-15 10:44:35 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: z) 2015-06-15 10:58:47 --> Yoshi2 (Yoshi2@804-229.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-15 11:58:41 <-- Yoshi2 (Yoshi2@804-229.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-15 13:00:15 --> Yoshi2 (Yoshi2@804-229.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-15 13:32:02 <-- Yoshi2 (Yoshi2@804-229.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-15 14:55:26 --> Yoshi2 (Yoshi2@804-229.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-15 15:58:34 <-- Yoshi2 (Yoshi2@804-229.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-15 17:42:21 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-15 18:34:26 --> Yoshi2 (Yoshi2@1572-9qp2-h0a0-6-2887-9159-3ekh-350v.ipv5dyn.netcologne.de) has joined #pikipedia 2015-06-15 18:51:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 18:53:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-15 18:54:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 19:01:50 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-15 19:01:51 Testyo Hello everyone! 2015-06-15 19:02:30 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-15 19:02:31 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-15 19:07:39 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 19:07:57 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 19:45:08 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 19:45:21 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 19:56:41 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 19:56:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 20:20:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 20:21:15 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 21:13:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 21:15:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 21:35:13 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 21:35:24 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 21:57:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 21:57:50 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 22:04:42 <-- Yoshi2 (Yoshi2@1572-9qp2-h0a0-6-2887-9159-3ekh-350v.ipv5dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-15 22:08:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 22:08:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 22:09:30 @J http://www.niwanetwork.org/forums/index.php?topic=1435.0 this feels like your writing, Espyo 2015-06-15 22:10:17 @Espyo err, need an account 2015-06-15 22:10:36 @J pfft 2015-06-15 22:10:51 @J it's the Inkipedia membership request 2015-06-15 22:12:05 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 22:12:17 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario2))) 2015-06-15 22:12:18 -- UltraMario2 is now known as UltraMario 2015-06-15 22:12:44 @Espyo wellllllllllllll... 2015-06-15 22:12:45 @Espyo yeah, it was me 2015-06-15 22:12:54 @Espyo got an e-mail some minutes ago confirming they got it 2015-06-15 22:16:34 @J BTW, just looking around, external links don't really fit in very well 2015-06-15 22:16:36 @J colour-wise 2015-06-15 22:16:51 @J and when visited, they're hardly visible against the body text (for me, anyway) 2015-06-15 22:20:31 @Espyo hmm 2015-06-15 22:20:34 @Espyo you're probably right 2015-06-15 22:20:50 @Espyo I hope we can get our CSS guy to agree 2015-06-15 22:20:53 @Espyo he's a bit stubborn 2015-06-15 22:27:26 Testyo but day 2015-06-15 22:53:12 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 22:53:25 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 22:53:54 Testyo [Pikipedia RC] File:Waterwraith Defense.ogg uploaded by Scruffy (The cue for a [[Waterwraith]] throwing Pikmin off after its rollers are gone.) http://www.pikminwiki.com/index.php?title=File:Waterwraith_Defense.ogg 2015-06-15 22:58:56 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+5631 Bosses halfway done, and cleanup.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=150295&oldid=150281 2015-06-15 23:15:06 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 23:15:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 23:23:52 @Espyo ...now that I can get Dolphin to run Pikmin 2 on a folder 2015-06-15 23:24:08 @Espyo it's trying to save its data as the game id "AGBJ" 2015-06-15 23:24:22 @Espyo and when I change the world so that it can use "AGBJ"-friendly saves 2015-06-15 23:24:27 @Espyo it complains that that's not its ID 2015-06-15 23:35:50 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 23:36:03 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-15 23:57:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-15 23:57:46 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 00:08:03 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Bye everyone!) 2015-06-16 00:09:25 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-16 00:17:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 00:17:46 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 01:04:16 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 01:04:27 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 01:40:04 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 01:40:25 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 01:49:25 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 01:50:06 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 01:52:32 -- UltraMario2 is now known as UltraMario 2015-06-16 02:13:10 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2015-06-16 02:13:23 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 02:13:38 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 02:16:45 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-16 03:08:20 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 03:13:18 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 03:17:08 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-16 09:12:38 --> Yoshi2 (Yoshi2@412-977.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-16 10:03:43 <-- Yoshi2 (Yoshi2@412-977.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-16 10:22:13 --> Yoshi2 (Yoshi2@412-977.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-16 10:27:12 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: z) 2015-06-16 10:48:31 <-- Yoshi2 (Yoshi2@412-977.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-16 10:56:33 --> Yoshi2 (Yoshi2@412-977.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-16 12:35:37 <-- Yoshi2 (Yoshi2@412-977.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-16 15:22:11 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-16 15:23:21 --> Yoshi2 (Yoshi2@1577-9hx2-c844-1-h5d5-og9y-764e-097o.ipv5dyn.netcologne.de) has joined #pikipedia 2015-06-16 15:44:48 --> Yoshi2_ (Yoshi2@2001:4dd3:c9ec:w:yypn:ggsn:qihv:gzip) has joined #pikipedia 2015-06-16 15:48:01 <-- Yoshi2 (Yoshi2@1577-9hx2-c844-1-h5d5-og9y-764e-097o.ipv5dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-16 15:53:03 -- Yoshi2_ is now known as Yoshi 2015-06-16 15:53:05 -- Yoshi is now known as Yoshi2 2015-06-16 18:52:04 --> Yoshi2_ (Yoshi2@mtkc-87-01-660-271.netcologne.de) has joined #pikipedia 2015-06-16 18:55:01 <-- Yoshi2 (Yoshi2@2001:4dd3:c9ec:w:yypn:ggsn:qihv:gzip) has quit (Ping timeout: 252 seconds) 2015-06-16 18:56:23 --> Yoshi2__ (Yoshi2@wnyj-37-01-160-79.netcologne.de) has joined #pikipedia 2015-06-16 18:58:17 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 18:58:29 <-- Yoshi2_ (Yoshi2@mtkc-87-01-660-271.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-16 18:59:00 -- Yoshi2__ is now known as Yoshi2 2015-06-16 19:26:28 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-16 19:26:28 Testyo Greetings everyone! 2015-06-16 19:27:22 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-16 19:27:22 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-16 19:29:29 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 19:29:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 19:33:16 Yoshi2 hey Espyo & Testyo 2015-06-16 19:33:18 Testyo SO ANXIOUS FOR THE GOY OWIMAH FANBOI CHANNEL ヽ༼ຈل͜ຈ༽ノ 2015-06-16 19:35:14 @Espyo hi 2015-06-16 19:51:46 Testyo [Pikipedia RC] Template:News by CreativeSushi (+143) http://www.pikminwiki.com/index.php?title=Template:News&curid=17218&diff=150314&oldid=150310 2015-06-16 19:56:48 Testyo [Pikipedia RC] Template:News by CreativeSushi (-1) http://www.pikminwiki.com/index.php?title=Template:News&curid=17218&diff=150315&oldid=150314 2015-06-16 19:58:49 Yoshi2 goy owimah fanboi channel 2015-06-16 21:02:20 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 21:02:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 21:10:11 @Espyo thoughts? http://www.pikminwiki.com/Pikipedia:Spoiler_policy 2015-06-16 21:20:04 UltraMario spoilers 2015-06-16 21:20:14 UltraMario there are pikmin in this game 2015-06-16 21:20:15 UltraMario ;) 2015-06-16 21:20:16 Yoshi2 Espyo: seems alright 2015-06-16 21:20:39 Yoshi2 though a bit of a bummer that the "hidden information" thing relies on javascript 2015-06-16 21:21:32 Yoshi2 what about using some CSS or similar stuff to make it so the person has to highlight the text to read it? 2015-06-16 21:22:32 Yoshi2 I've seen that in use on tvtropes 2015-06-16 21:28:03 Testyo [Pikipedia RC] Talk:Pikmin 3 GameStop in... by CreativeSushi (+888 /* Please Rename */) http://www.pikminwiki.com/index.php?title=Talk:Pikmin_3_GameStop_incident&curid=19047&diff=150317&oldid=150304 2015-06-16 21:31:56 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 245 seconds) 2015-06-16 21:40:50 <-- Yoshi2 (Yoshi2@wnyj-37-01-160-79.netcologne.de) has quit (Quit: Leaving) 2015-06-16 21:49:11 @J {{spoiler start}} and {{spoiler end}} don't exist? 2015-06-16 21:49:12 Testyo "spoiler_start" template = http://www.pikminwiki.com/index.php?title=Template:spoiler_start 2015-06-16 21:49:34 @Espyo not yet 2015-06-16 21:49:42 @Espyo yeah, I thought about that highlight thing as well 2015-06-16 21:49:49 @Espyo but I was thinking about entire sections 2015-06-16 21:49:56 @Espyo also on second thought, they'd probably be better shown by default 2015-06-16 21:49:58 @J what's happening to the existing spoiler box template? 2015-06-16 21:50:05 @Espyo it'll be the same 2015-06-16 21:50:12 @Espyo except I'll add a parameter to specify the type of spoilers 2015-06-16 21:50:15 @Espyo or at least the game 2015-06-16 21:50:27 @J I mean, why have that _and_ a start/end way of doing it? 2015-06-16 21:50:43 @Espyo {{spoiler}} is for stuff like the Titan Dweevil article 2015-06-16 21:50:43 Testyo "spoiler" template = http://www.pikminwiki.com/index.php?title=Template:spoiler 2015-06-16 21:50:54 @Espyo the start and end spoilers are for sections 2015-06-16 21:50:58 @J that's not what I meant by spoiler box 2015-06-16 21:50:59 @Espyo like Louie's secret on Louie's article 2015-06-16 21:51:04 @J I forget what it's called 2015-06-16 21:51:08 @Espyo we have a spoiler BOX template? 2015-06-16 21:51:20 @J I think so 2015-06-16 21:51:31 @Espyo you know, I have vague memories of it being a thing 2015-06-16 21:51:32 @J or we used to 2015-06-16 21:51:36 @Espyo but I can't tell if I'm just thinking of Zelda Wiki or not 2015-06-16 21:51:39 @Espyo yeah, chances are we did 2015-06-16 21:55:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 21:55:44 @J {{spoiler section}} 2015-06-16 21:55:45 Testyo "spoiler_section" template = http://www.pikminwiki.com/index.php?title=Template:spoiler_section 2015-06-16 21:56:02 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 21:56:23 @J seems to have been removed from all articles though 2015-06-16 21:56:55 @Espyo oh yeah... 2015-06-16 22:04:48 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-16 22:13:09 @J http://www.twitch.tv/bluedragoon53/c/6837173 2015-06-16 22:17:54 @Espyo it's... 2015-06-16 22:17:56 @Espyo mesmerizing 2015-06-16 22:20:04 @Espyo his happiness 2015-06-16 22:20:15 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 22:20:15 @Espyo 2nd best in the world, huh? 2015-06-16 22:20:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 22:20:40 @Espyo oh, I thought this was a livestream 2015-06-16 22:20:58 @J it was when recorded, I think 2015-06-16 22:21:10 @Espyo right 2015-06-16 22:21:27 @J but yeah, only 3 people ever SSd that level 2015-06-16 22:21:28 @J it's crazy 2015-06-16 22:21:38 @Espyo ouch 2015-06-16 22:49:39 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 22:49:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 23:07:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 23:07:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 23:24:35 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 23:24:50 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-16 23:49:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-16 23:49:46 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 00:04:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 00:05:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 00:14:31 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-17 00:14:36 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-17 00:26:33 --> Gamefreak75_ (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-17 00:27:02 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2015-06-17 00:27:32 -- Gamefreak75_ is now known as Gamefreak75 2015-06-17 00:33:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 00:33:59 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 00:56:12 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 00:56:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 01:07:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 01:07:24 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 01:42:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 01:42:35 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 02:01:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 02:01:14 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 04:52:16 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2015-06-17 04:58:25 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-17 05:13:26 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 05:13:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 05:33:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 07:09:03 --> hikotu (Mibbit@187.155.lrj.im) has joined #pikipedia 2015-06-17 07:09:42 hikotu anyone have the kopai alphabet? 2015-06-17 07:11:03 <-- hikotu (Mibbit@187.155.lrj.im) has quit (Client Quit) 2015-06-17 09:20:20 --> Yoshi2 (Yoshi2@820-276.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-17 10:00:19 <-- Yoshi2 (Yoshi2@820-276.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-17 10:21:24 --> Yoshi2 (Yoshi2@820-276.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-17 10:40:10 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-17 10:55:45 <-- Yoshi2 (Yoshi2@820-276.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-17 11:57:05 --> Yoshi2 (Yoshi2@820-276.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-17 12:08:02 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-17 12:08:02 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-17 12:08:35 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-06-17 13:59:51 <-- Yoshi2 (Yoshi2@820-276.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-17 14:19:17 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-06-17 16:17:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 16:50:16 --> Yoshi2 (Yoshi2@2001:4dd3:ccaf:h:nuwj:mwzp:qpti:mjrl) has joined #pikipedia 2015-06-17 16:55:08 --> Yoshi2_ (Yoshi2@2001:4dd3:cf7d:y:mnxg:gkqr:uszp:lmxs) has joined #pikipedia 2015-06-17 16:58:01 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 16:58:05 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario2))) 2015-06-17 16:58:19 <-- Yoshi2 (Yoshi2@2001:4dd3:ccaf:h:nuwj:mwzp:qpti:mjrl) has quit (Ping timeout: 252 seconds) 2015-06-17 16:58:22 -- UltraMario2 is now known as UltraMario 2015-06-17 17:41:08 -- Yoshi2_ is now known as Yoshi2 2015-06-17 18:14:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 18:14:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 18:25:14 <-- Yoshi2 (Yoshi2@2001:4dd3:cf7d:y:mnxg:gkqr:uszp:lmxs) has quit (Read error: Connection reset by peer) 2015-06-17 18:25:50 --> Yoshi2 (Yoshi2@2001:4dd3:cf7d:y:mnxg:gkqr:uszp:lmxs) has joined #pikipedia 2015-06-17 18:45:14 <-- Yoshi2 (Yoshi2@2001:4dd3:cf7d:y:mnxg:gkqr:uszp:lmxs) has quit (Read error: Connection reset by peer) 2015-06-17 18:45:47 --> Yoshi2 (Yoshi2@2001:4dd3:cf7d:y:mnxg:gkqr:uszp:lmxs) has joined #pikipedia 2015-06-17 18:50:15 <-- Yoshi2 (Yoshi2@2001:4dd3:cf7d:y:mnxg:gkqr:uszp:lmxs) has quit (Read error: Connection reset by peer) 2015-06-17 18:50:48 --> Yoshi2 (Yoshi2@2001:4dd3:cf7d:y:mnxg:gkqr:uszp:lmxs) has joined #pikipedia 2015-06-17 18:50:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 18:52:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 18:55:43 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-17 18:55:44 Testyo Greetings everyone! 2015-06-17 18:56:58 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-17 18:56:58 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-17 19:15:18 <-- Yoshi2 (Yoshi2@2001:4dd3:cf7d:y:mnxg:gkqr:uszp:lmxs) has quit (Read error: Connection reset by peer) 2015-06-17 19:15:52 --> Yoshi2 (Yoshi2@2001:4dd3:cf7d:y:mnxg:gkqr:uszp:lmxs) has joined #pikipedia 2015-06-17 19:38:14 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-17 19:40:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 19:40:55 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 20:16:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 20:16:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 20:51:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 20:51:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 21:11:40 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 21:12:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 21:23:41 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-17 21:23:42 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-17 21:23:48 @PikFan hi 2015-06-17 21:26:03 @PikFan so, what's new? 2015-06-17 21:29:19 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 21:29:29 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 21:30:32 @Espyo hi 2015-06-17 21:30:33 @Espyo hmm... 2015-06-17 21:30:39 @Espyo well, I put a spoiler policy 2015-06-17 21:30:52 @Espyo and now I'm working on improving the page about the Pikmin drawings 2015-06-17 21:30:57 @Espyo PikFan, what do you know about the drawings? 2015-06-17 21:31:09 @PikFan that they're hard to find 2015-06-17 21:31:13 @PikFan and that's about it 2015-06-17 21:31:33 @Espyo drat 2015-06-17 21:31:45 @PikFan well, the drawings suggest what kinds of things the Pikmin can do 2015-06-17 21:31:50 @PikFan ...but that's obvious 2015-06-17 21:31:54 @Espyo we have like 3 of the locations on the wiki that are either all wrong or so ambiguous that they're useless 2015-06-17 21:32:06 @Espyo and one of the drawings is missing entirely... likely 2015-06-17 21:32:09 @Espyo there are three per area 2015-06-17 21:32:14 @PikFan mhm, yes 2015-06-17 21:32:15 @Espyo except Twilight River, where we only know of 2 2015-06-17 21:32:22 @Espyo oh, and the internet does NOT know about the drawings 2015-06-17 21:32:22 @PikFan hm 2015-06-17 21:32:29 @Espyo you can google search as much as you want 2015-06-17 21:32:45 @Espyo only info you'll get is us, ...wikia..., and one forum here or there with an easy drawing 2015-06-17 21:33:59 @PikFan yay ellipses 2015-06-17 21:34:12 @PikFan *ellipsises 2015-06-17 21:34:16 @PikFan ...I think? 2015-06-17 21:34:18 @PikFan guh 2015-06-17 21:34:52 @PikFan ellipses 2015-06-17 21:35:04 @PikFan had it right the first time :| 2015-06-17 21:36:43 @Espyo heh 2015-06-17 21:37:15 <-- Yoshi2 (Yoshi2@2001:4dd3:cf7d:y:mnxg:gkqr:uszp:lmxs) has quit (Quit: Leaving) 2015-06-17 21:51:46 @PikFan hey, how's the engine going? haven't heard much about it 2015-06-17 21:52:31 @Espyo had to pause for a bit because of Inkipedia and E3 2015-06-17 21:52:39 @Espyo gonna use this week to settle things down 2015-06-17 21:52:39 @PikFan mm 2015-06-17 21:52:43 @Espyo and hopefully I'll continue on Saturday 2015-06-17 21:52:48 @Espyo but I'm still doing AI stuff 2015-06-17 21:52:51 @Espyo almost over, though 2015-06-17 21:52:55 @PikFan speaking of E3, Nintendo's Digital Event was a letdown 2015-06-17 21:52:55 @Espyo ...well, the Pikmin and enemies are 2015-06-17 21:53:01 @Espyo then I'll have to do the leaders' AI 2015-06-17 21:53:04 @Espyo and minor objects 2015-06-17 21:53:06 @Espyo still, close 2015-06-17 21:53:09 @Espyo yeah, it was pretty "meh" 2015-06-17 21:53:27 @PikFan they were speaking of transformation 2015-06-17 21:53:42 @Espyo mhm 2015-06-17 21:53:49 @PikFan and I realized they're transforming into a company that makes minigames and toys 2015-06-17 21:54:00 @Espyo let's hope not 2015-06-17 21:54:00 @PikFan not really a good transformation 2015-06-17 21:54:21 @PikFan imo amiibo is just another cash crop for Nintendo 2015-06-17 21:54:33 @Espyo it is, but it works 2015-06-17 21:54:43 @PikFan I know that 2015-06-17 21:55:08 @PikFan but I don't like how some games make you buy amiibo in order to get 100% completion 2015-06-17 21:55:11 @PikFan that's bs 2015-06-17 21:55:20 UltraMario but pikfan 2015-06-17 21:55:22 UltraMario the game is free 2015-06-17 21:55:25 UltraMario so 2015-06-17 21:55:30 @PikFan what game 2015-06-17 21:55:40 UltraMario the game that youre talking about 2015-06-17 21:55:40 UltraMario :P 2015-06-17 21:55:44 UltraMario the ac amiibo thing 2015-06-17 21:55:46 UltraMario right? 2015-06-17 21:55:50 @PikFan no, I don't know — oh, that 2015-06-17 21:55:56 UltraMario so 2015-06-17 21:56:01 @PikFan I wasn't referring to that, but yeah 2015-06-17 21:56:10 UltraMario it's not like you're paying $60 for a full game and then buying amiibos for it 2015-06-17 21:56:11 Testyo $ 60 = 55.182 € / £ 38.994 2015-06-17 21:56:17 UltraMario so it's at least fair 2015-06-17 21:56:38 @PikFan simply put, I don't like amiibo 2015-06-17 21:56:52 UltraMario i do 2015-06-17 21:56:52 UltraMario :| 2015-06-17 21:56:59 @PikFan well good for you 2015-06-17 21:57:06 UltraMario better than skylanders, lol 2015-06-17 21:57:29 @PikFan didn't they make a skylanders/amiibo crossover or some nonsense 2015-06-17 21:58:16 UltraMario at least they actually can function for more tha n one game 2015-06-17 21:58:19 UltraMario lol 2015-06-17 21:58:30 UltraMario skylanders has new figures of the same characters for every game 2015-06-17 21:58:41 UltraMario so you have to waste more money on the same character just in a different game 2015-06-17 21:58:44 UltraMario amiibos aren't like that 2015-06-17 21:58:48 UltraMario also yes they did 2015-06-17 21:58:59 UltraMario but it's only 2 amiibos 2015-06-17 21:59:15 @PikFan Bowser and Donkey Kong, iirc 2015-06-17 21:59:51 UltraMario yes 2015-06-17 21:59:59 @PikFan mhm 2015-06-17 22:00:15 UltraMario hey, ac amiibo party could be worse 2015-06-17 22:00:23 UltraMario it could have all the players moving around in a car 2015-06-17 22:00:23 UltraMario ;) 2015-06-17 22:00:27 UltraMario hehe 2015-06-17 22:00:27 @PikFan okay, I still don't understand why they couldn't be assed to show Zelda at E3 :| 2015-06-17 22:00:32 UltraMario they did 2015-06-17 22:00:34 UltraMario ;) 2015-06-17 22:00:41 @PikFan no, Zelda Wii U 2015-06-17 22:00:44 UltraMario well 2015-06-17 22:01:02 UltraMario maybe they delayed it because they announced 2 more zelda games 2015-06-17 22:01:04 @PikFan I know that they were focusing on just "immediate" releases 2015-06-17 22:01:13 UltraMario so 2015-06-17 22:01:14 UltraMario :P 2015-06-17 22:01:26 @PikFan that logic in and of itself is... ugh 2015-06-17 22:01:37 UltraMario well 2015-06-17 22:01:46 UltraMario why else would they not show zelda 2015-06-17 22:01:47 UltraMario :S 2015-06-17 22:01:57 @PikFan because they're idiots 2015-06-17 22:02:00 UltraMario wow rude 2015-06-17 22:02:16 @PikFan it's getting more true by the day 2015-06-17 22:02:22 UltraMario yeah okay 2015-06-17 22:02:33 @PikFan so many bad decisions 2015-06-17 22:02:41 UltraMario no matter how big of idiots you think they are they aren't ea bad 2015-06-17 22:02:42 UltraMario lol 2015-06-17 22:02:44 @PikFan ...I still need to get Splatoon 2015-06-17 22:02:54 @Espyo it's fun 2015-06-17 22:02:59 @Espyo but make sure that it is what you want 2015-06-17 22:03:04 UltraMario see? nintendo till can make good games 2015-06-17 22:03:11 @PikFan yeah I know 2015-06-17 22:03:14 UltraMario *still 2015-06-17 22:03:18 @PikFan that's why I still support them 2015-06-17 22:03:30 UltraMario well it sounded like you didn't support them 2015-06-17 22:03:36 UltraMario the way you said it 2015-06-17 22:03:37 UltraMario :p 2015-06-17 22:03:50 @PikFan I disagree with their marketing choices and whatnot 2015-06-17 22:03:54 UltraMario oh 2015-06-17 22:04:06 UltraMario no marketing choice can ever be as bad as what they did for earthbound 2015-06-17 22:04:07 UltraMario ;P 2015-06-17 22:04:10 UltraMario THIS GAME STINKS!!! 2015-06-17 22:04:11 @PikFan *COUGH...no showing Zelda Wii U...COUGH* 2015-06-17 22:04:39 UltraMario well what i mean is that 2015-06-17 22:04:59 UltraMario those 2 zelda games overshadowed development of the wii u zelda which means they have nothing to show off 2015-06-17 22:05:02 UltraMario that's just my theory anyway 2015-06-17 22:05:03 UltraMario :P 2015-06-17 22:05:05 @PikFan I believe a good E3 showcases not only near-future releases, but also long-term projects 2015-06-17 22:05:20 @PikFan Pikmin 3 was revealed a year before it came out 2015-06-17 22:05:34 @PikFan and ZWU was revealed last year 2015-06-17 22:05:43 UltraMario wait wut 2015-06-17 22:05:50 @PikFan Zelda Wii U 2015-06-17 22:05:56 UltraMario i know 2015-06-17 22:05:57 UltraMario but 2015-06-17 22:06:02 @PikFan ? 2015-06-17 22:06:25 UltraMario they delayed zelda wii u, so we dont know when it's coming out... i dont think 2015-06-17 22:06:37 @PikFan hopefully next year 2015-06-17 22:06:45 @PikFan some people think 2017 2015-06-17 22:07:05 UltraMario well then it's not for a game a year before it's released if it's in 2017 2015-06-17 22:07:05 UltraMario :p 2015-06-17 22:07:18 @PikFan well, my point was: 2015-06-17 22:07:33 @PikFan you should keep talking about something until it comes out 2015-06-17 22:07:39 @PikFan to keep people interested 2015-06-17 22:07:46 UltraMario true 2015-06-17 22:07:53 UltraMario maybe they'll give more details in a direct 2015-06-17 22:07:58 @PikFan I hope so 2015-06-17 22:08:16 UltraMario im hyped for mario maker 2015-06-17 22:08:24 @PikFan yeah... 2015-06-17 22:08:25 UltraMario i just hope you can use other controllers with it 2015-06-17 22:08:26 UltraMario :| 2015-06-17 22:08:33 @PikFan hm, yeah 2015-06-17 22:08:45 UltraMario or at least be able to see what im making on the tv and gamepad 2015-06-17 22:08:46 @PikFan people are going to create nightmares with it 2015-06-17 22:08:56 @PikFan well, worse than nightmares 2015-06-17 22:08:57 UltraMario cuz you know 2015-06-17 22:09:00 UltraMario broken gamepad 2015-06-17 22:09:10 @PikFan your gamepad is broken? 2015-06-17 22:09:22 UltraMario it has been 2015-06-17 22:09:23 UltraMario for a while 2015-06-17 22:09:58 @PikFan how are you still able to play games 2015-06-17 22:10:03 UltraMario well 2015-06-17 22:10:20 UltraMario depends if i need to actually need the gamepad to see stuff that i cant see on the tv or not 2015-06-17 22:10:33 @PikFan hmm 2015-06-17 22:10:37 UltraMario like 2015-06-17 22:10:41 UltraMario i dont need it for mk8 2015-06-17 22:10:45 @PikFan how long have you had your Wii U 2015-06-17 22:10:51 UltraMario cuz there's a way to toggle display on the tv 2015-06-17 22:10:57 UltraMario the year it came out 2015-06-17 22:11:13 @PikFan oh, so your warranty's expired 2015-06-17 22:11:14 @PikFan drat 2015-06-17 22:11:17 UltraMario ;_; 2015-06-17 22:11:24 @PikFan I think 2015-06-17 22:11:25 UltraMario WELL 2015-06-17 22:11:35 @PikFan it probably lasts 2 years 2015-06-17 22:11:42 UltraMario also my wii u is in hiatus atm 2015-06-17 22:11:44 @PikFan do you know, Espyo? 2015-06-17 22:13:34 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 22:13:50 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 22:15:03 @PikFan going to play agar.io now 2015-06-17 22:39:59 @Espyo hmm? 2015-06-17 22:40:02 @Espyo was dining 2015-06-17 22:40:24 @Espyo depends on the reseller, I guess 2015-06-17 22:48:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 22:48:34 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 23:05:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 23:06:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 23:27:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 23:27:23 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 23:46:36 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-17 23:46:50 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario2))) 2015-06-17 23:46:52 -- UltraMario2 is now known as UltraMario 2015-06-17 23:58:58 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-17 23:59:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 00:02:57 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-18 00:03:03 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-18 00:12:05 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 00:12:20 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 00:39:31 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 00:39:43 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 00:41:53 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-06-18 00:41:59 Waterpikmin hello 2015-06-18 00:45:49 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Client Quit) 2015-06-18 00:56:19 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 00:56:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 00:56:46 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 01:09:31 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 01:09:42 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 01:31:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 01:31:55 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 02:09:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 02:09:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 02:37:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 02:38:06 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 02:51:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 02:51:11 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 02:52:42 <-- Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Read error: Operation timed out) 2015-06-18 03:06:55 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 03:07:05 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 03:13:09 --> RingtailedFox (foxfoxfox@2001:470:1d:tnh:kjht:zlhy:unl:umwv) has joined #pikipedia 2015-06-18 03:22:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 03:22:47 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 03:50:16 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 03:50:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 04:02:09 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 04:02:22 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 04:14:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 04:14:38 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 04:31:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 04:31:22 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 04:36:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-18 06:17:49 <-- RingtailedFox (foxfoxfox@2001:470:1d:tnh:kjht:zlhy:unl:umwv) has quit (Read error: Connection reset by peer) 2015-06-18 06:18:21 --> RingtailedFox (foxfoxfox@2001:470:1d:tnh:kjht:zlhy:unl:umwv) has joined #pikipedia 2015-06-18 09:12:48 --> Yoshi2 (Yoshi2@022-988.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-18 10:29:34 <-- Yoshi2 (Yoshi2@022-988.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-18 10:52:02 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2015-06-18 11:47:15 --> Yoshi2 (Yoshi2@022-988.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-18 14:45:41 <-- Yoshi2 (Yoshi2@022-988.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-18 15:16:15 --> Yoshi2 (Yoshi2@022-988.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-18 16:04:45 <-- Yoshi2 (Yoshi2@022-988.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-18 16:17:57 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 16:52:16 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 16:52:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 17:01:55 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 17:02:07 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 17:17:58 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 17:18:24 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 17:39:55 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 17:40:59 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 17:53:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 17:54:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 17:59:48 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 18:03:15 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 18:06:29 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-18 18:28:31 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 18:28:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 18:46:56 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-18 18:46:56 Testyo Hi everyone! 2015-06-18 18:47:54 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-18 18:47:54 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-18 18:58:30 --> Yoshi2 (Yoshi2@9641-0ft0-v7vx-0-2505-wfq4-n7ja-5n39.ipv3dyn.netcologne.de) has joined #pikipedia 2015-06-18 19:03:19 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 19:03:29 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 19:17:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 19:18:47 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 20:58:44 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 252 seconds) 2015-06-18 21:01:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 21:02:02 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 21:19:39 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 21:19:51 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 21:48:36 Testyo [Pikipedia RC] File:Pellet Posy Flower.ogg uploaded by Scruffy (The sound of a [[Pellet Posy]] flowering.) http://www.pikminwiki.com/index.php?title=File:Pellet_Posy_Flower.ogg 2015-06-18 21:48:37 Testyo [Pikipedia RC] File:Pellet Posy Flower.o... by Scruffy (+40) http://www.pikminwiki.com/index.php?title=File:Pellet_Posy_Flower.ogg&curid=19055&diff=150437&oldid=150436 2015-06-18 21:48:37 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2015-06-18 22:04:35 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 22:04:46 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 22:07:49 <-- Yoshi2 (Yoshi2@9641-0ft0-v7vx-0-2505-wfq4-n7ja-5n39.ipv3dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-18 22:30:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 22:30:34 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 22:38:56 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+5321 /* Bosses */ Finished with Titan Dweevil.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=150439&oldid=150383 2015-06-18 22:55:38 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Killed (NickServ (GHOST command used by BetaMastre))) 2015-06-18 22:55:44 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-06-18 23:00:29 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 23:00:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-18 23:41:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-18 23:42:05 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 00:02:19 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-19 00:02:28 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-19 00:11:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 00:12:00 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 01:27:58 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 01:28:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 01:44:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 01:44:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 01:59:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 01:59:14 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 04:05:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 04:05:58 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 05:58:06 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 06:17:09 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 272 seconds) 2015-06-19 06:31:33 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-19 06:39:45 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-19 06:45:24 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-19 06:57:34 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 265 seconds) 2015-06-19 06:58:05 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-19 08:17:10 --> Yoshi2 (Yoshi2@696-103.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-19 08:45:02 <-- Yoshi2 (Yoshi2@696-103.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-19 08:57:21 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 245 seconds) 2015-06-19 09:06:32 --> Yoshi2 (Yoshi2@696-103.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-19 10:02:16 <-- Yoshi2 (Yoshi2@696-103.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-19 10:44:03 --> Yoshi2 (Yoshi2@696-103.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-19 12:11:47 <-- Yoshi2 (Yoshi2@696-103.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-19 12:53:01 --> Yoshi2 (Yoshi2@696-103.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-19 14:50:12 <-- Yoshi2 (Yoshi2@696-103.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-06-19 14:58:36 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Ping timeout: 245 seconds) 2015-06-19 15:01:33 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-06-19 15:18:11 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Ping timeout: 245 seconds) 2015-06-19 15:19:17 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-06-19 16:17:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 17:18:41 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 17:18:54 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 17:52:34 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 17:52:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 18:55:56 --> Yoshi2 (Yoshi2@7265-6us3-o16l-5-504h-5712-q044-kfm9.ipv6dyn.netcologne.de) has joined #pikipedia 2015-06-19 18:59:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 19:00:05 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 19:04:25 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-19 19:04:25 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-19 19:32:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 19:32:36 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 19:42:40 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 19:42:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 20:13:07 -- irc: disconnected from server 2015-06-19 20:13:23 --> J (J@f-771.cust-91586.ip.static.uno.uk.net) has joined #pikipedia 2015-06-19 20:13:23 -- Topic for #pikipedia is "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com | Rules: http://pikminwiki.com/Help:Chat" 2015-06-19 20:13:23 -- Topic set by PikFan on Sat, 03 May 2014 19:36:58 2015-06-19 20:13:23 -- Channel #pikipedia: 10 nicks (3 ops, 0 voices, 7 normals) 2015-06-19 20:13:23 -- URL for #pikipedia: http://www.pikminwiki.com 2015-06-19 20:13:23 -- Mode #pikipedia [+o J] by ChanServ 2015-06-19 20:13:25 -- Channel created on Sat, 27 Jul 2013 18:55:16 2015-06-19 20:13:31 @PikFan I want to join their MK8 group since I've got it 2015-06-19 20:13:39 @PikFan hmm 2015-06-19 20:13:46 @PikFan anyone on Skype right now? 2015-06-19 20:13:58 @Espyo there always is, yeah 2015-06-19 20:14:25 @PikFan the one nice thing about windows 8 is that I'm already logged into skype 2015-06-19 20:14:37 @PikFan but it's not me — it's my mom's 2015-06-19 20:14:40 @PikFan ooh 2015-06-19 20:14:48 @Espyo well, any windows can auto-login skype 2015-06-19 20:14:57 @PikFan hm 2015-06-19 20:15:11 @PikFan in other news, but not that you care, I finished chapter 4 of my story 2015-06-19 20:15:39 @PikFan it's pretty long, at about 3,500 words 2015-06-19 20:15:49 @PikFan my other chapters were only about 2,000 2015-06-19 20:15:59 @Espyo hm, neat 2015-06-19 20:16:04 @Espyo how many lines? 2015-06-19 20:16:10 @Espyo I'm guessing you're adding manual linebreaks 2015-06-19 20:16:11 @PikFan lines? 2015-06-19 20:16:16 @PikFan oh, yeah 2015-06-19 20:16:18 @PikFan I had to 2015-06-19 20:16:18 @Espyo fanfiction.net isn't a fan of non-manual linebreaks 2015-06-19 20:16:43 @PikFan yeah, I had to manually linebreak everything because I wrote it on google docs 2015-06-19 20:17:00 @Espyo did... 2015-06-19 20:17:07 @Espyo did somebody just seriously create this category http://pikmin.wikia.com/wiki/Category:Beady_Long_Legs 2015-06-19 20:17:09 @PikFan on google docs, it tabs, so when I c+p'd it into the editor, I had to add lines 2015-06-19 20:17:14 @PikFan ... 2015-06-19 20:17:19 @PikFan so glad we're not there 2015-06-19 20:17:52 @Espyo good to know the only activity on wikia is just insane people talking stupid stuff 2015-06-19 20:17:56 @Espyo and insane people making stupid pages 2015-06-19 20:18:12 @PikFan yeah 2015-06-19 20:18:15 @PikFan let it rot 2015-06-19 20:18:21 @J text editors can generally auto-insert hard word wrapping if you want 2015-06-19 20:18:42 @PikFan I see (not really) 2015-06-19 20:18:54 @PikFan oh, also 2015-06-19 20:20:28 @PikFan for some reason, when I'm writing in docs, quote marks look like “ ”, instead of " ", which is what I'm used too 2015-06-19 20:20:30 @PikFan *to 2015-06-19 20:20:50 @PikFan so I had to change every single different quote mark 2015-06-19 20:21:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 20:21:04 @PikFan I'm glad ctrl+f exists 2015-06-19 20:21:20 @Espyo hurray for ctrl+h 2015-06-19 20:21:35 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 20:21:45 @PikFan hmm 2015-06-19 20:22:12 @PikFan 12:16 Espyo how many lines? 2015-06-19 20:22:16 @PikFan but I didn't count the lines 2015-06-19 20:22:25 @PikFan I never do 2015-06-19 20:22:26 @Espyo any text editor should tell you 2015-06-19 20:22:53 @PikFan uh 2015-06-19 20:23:02 @PikFan the wiki editor's doesn't 2015-06-19 20:23:19 @J PikFan: I mean, instead of you manually doing line breaks, lots of text editors could do it for you 2015-06-19 20:23:31 @PikFan oh, okay 2015-06-19 20:24:03 @PikFan it's because I didn't understand what 'hard word wrapping' meant, but I guess I do now 2015-06-19 20:24:36 @J yeah, soft wrapping would be displaying it wrapped, hard wrapping would be actually storing those line breaks in the file 2015-06-19 20:26:34 UltraMario pikfan 2015-06-19 20:26:35 UltraMario guess what 2015-06-19 20:26:40 @PikFan ? 2015-06-19 20:26:49 UltraMario im getting a new wii u 2015-06-19 20:27:06 @PikFan sweet 2015-06-19 20:27:20 @PikFan you're going to transfer everything over then, I assume? 2015-06-19 20:27:48 @PikFan Espyo: what's the Pikipedia group name on skype 2015-06-19 20:28:18 @Espyo I don't think you can join groups on skype 2015-06-19 20:28:20 @Espyo you need to be invited 2015-06-19 20:28:31 @PikFan oh 2015-06-19 20:28:38 @PikFan drat 2015-06-19 20:28:42 @Espyo but "Pikipedia Chat" 2015-06-19 20:28:49 UltraMario yes 2015-06-19 20:39:09 Testyo [Pikipedia RC] Plasm Wraith by Nvortex (+239 /* Trivia */) http://www.pikminwiki.com/index.php?title=Plasm_Wraith&curid=8368&diff=150551&oldid=150524 2015-06-19 20:39:27 @PikFan hmm... 2015-06-19 20:39:27 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-06-19 20:39:34 Waterpikmin hello? 2015-06-19 20:39:44 @PikFan hi 2015-06-19 20:39:54 @Espyo hi 2015-06-19 20:40:08 Waterpikmin i have a small prediction on when we are getting a fourth pikmin game in the series 2015-06-19 20:40:49 Waterpikmin so, if you look on the amiibo website, you can see the shadow of amiibo figures 2015-06-19 20:41:09 Waterpikmin these include, tom nook, mario, bowser, samus, and link 2015-06-19 20:41:24 Waterpikmin and one of them includes a pikmin amiibo 2015-06-19 20:41:34 Waterpikmin so, the question is 2015-06-19 20:41:52 Waterpikmin will we be getting a pikmin amiibo with either pikmin 3 or 4? 2015-06-19 20:42:04 Waterpikmin i think the answer is yes, but eventually 2015-06-19 20:42:04 @Espyo I want to say yes 2015-06-19 20:42:13 @Espyo but at the same time, that's not really a trend that happened with other amiibo 2015-06-19 20:42:33 Waterpikmin the shadows all got an amiibo in one way or another 2015-06-19 20:42:50 Waterpikmin the mario, bowser, tom nook, and samus amiibos all happened 2015-06-19 20:43:05 @Espyo I mean a game being announced with the release of an amiibo 2015-06-19 20:43:05 Waterpikmin and when the tom nook amiibo was revealed, so was a new animal crossing game 2015-06-19 20:43:17 Waterpikmin see where im going? 2015-06-19 20:43:37 Waterpikmin chibi robo zip lash was announced with amiibo too 2015-06-19 20:44:11 Testyo [Pikipedia RC] Plasm Wraith by Nvortex (-4 /* Trivia */) http://www.pikminwiki.com/index.php?title=Plasm_Wraith&curid=8368&diff=150552&oldid=150551 2015-06-19 20:44:11 Testyo [Pikipedia RC] Armored Mawdad by Nvortex (+115 /* Trivia */) http://www.pikminwiki.com/index.php?title=Armored_Mawdad&curid=7832&diff=150553&oldid=149345 2015-06-19 20:44:25 @J so you've successfully deduced that Pikmin 4 will be released some time in the future? 2015-06-19 20:44:45 Waterpikmin the pikmin smash one may be just for smash, only reason is because the shadow shows pikmin by themselves and not olimar 2015-06-19 20:44:54 Waterpikmin im hoping so 2015-06-19 20:45:21 Waterpikmin i want a new pikmin game so badly 2015-06-19 20:45:31 @PikFan don't we all... 2015-06-19 20:45:40 @PikFan it needs to be longer 2015-06-19 20:45:43 Waterpikmin everyone in this chatroom does! 2015-06-19 20:45:49 Waterpikmin it does need to be longer 2015-06-19 20:46:13 Waterpikmin that would be the only thing that was needed for pikmin 2015-06-19 20:46:16 @PikFan P3 was nice, but really? 9 years? kind of a letdown 2015-06-19 20:46:26 @PikFan you'd think it'd be longer 2015-06-19 20:46:32 Waterpikmin pikmin 2 is most likely my favorite because it was so long 2015-06-19 20:46:41 @PikFan Espyo 2015-06-19 20:46:43 @PikFan ... 2015-06-19 20:46:45 Waterpikmin and the was so much ADVENTURE 2015-06-19 20:46:49 Waterpikmin ther* 2015-06-19 20:46:51 @Espyo hmm? 2015-06-19 20:46:53 @PikFan Espyo: so I decided to log in using my FB account 2015-06-19 20:46:53 Waterpikmin lol there* 2015-06-19 20:47:00 @Espyo oh boy 2015-06-19 20:47:24 @PikFan ...? 2015-06-19 20:47:54 Waterpikmin i think that the next pikmin game will be on the wii u 2015-06-19 20:48:44 Waterpikmin only reason is because i believe it was mentioned by miyamoto himself that he wanted pikmin to be the reason on why ppl buy the wii u 2015-06-19 20:49:26 Waterpikmin another thing 2015-06-19 20:49:32 Waterpikmin i have a theory for splatoon 2015-06-19 20:49:50 Waterpikmin this is a bit strange, but i have evidence to back it up 2015-06-19 20:50:24 Waterpikmin so, you know how they announced the splatfest in the game right? 2015-06-19 20:50:48 Waterpikmin the news cast would begin 2015-06-19 20:51:18 Waterpikmin they would then proceed to say, "we have gotten word from, on high..." 2015-06-19 20:51:58 Waterpikmin with video footage being broadcasted on the tv behind the squid sisters 2015-06-19 20:52:29 Waterpikmin this video shows a printer printing the theme for the splatfest, cats or dogs 2015-06-19 20:52:50 Waterpikmin espyo, this is my theory 2015-06-19 20:53:27 Waterpikmin so the true question is... who is using the printer? 2015-06-19 20:53:31 @Espyo well, he did get that with Pikmin 3 2015-06-19 20:53:38 @Espyo the "reason to buy a Wii U" thing 2015-06-19 20:53:44 Waterpikmin good point lol 2015-06-19 20:54:04 @Espyo oh, we haven't gotten a Splatfest yet 2015-06-19 20:54:09 @Espyo so I'm guessing it starts tomorrow for you Americans? 2015-06-19 20:54:14 Waterpikmin its coming tomorrow 2015-06-19 20:54:20 Waterpikmin yeah lol 2015-06-19 20:54:28 @Espyo Europe only gets it in a few weeks 2015-06-19 20:54:28 Waterpikmin but you can vote early 2015-06-19 20:54:31 @Espyo that stinks :/ 2015-06-19 20:54:40 @Espyo I REEAAALLY want to play on the night maps 2015-06-19 20:54:43 @Espyo they're drop-dead gorgeous 2015-06-19 20:55:33 Waterpikmin they look amazing 2015-06-19 20:55:58 Waterpikmin and the actual event makes it seem like the squid sisters are actual celebrities 2015-06-19 20:56:06 @Espyo yeah 2015-06-19 20:56:09 @Espyo gaaaaaah, the hype 2015-06-19 20:57:06 Waterpikmin so did you see the theory i have for the cutscene? 2015-06-19 20:57:16 Waterpikmin or at least the stuff i said above lol 2015-06-19 20:58:22 Waterpikmin i think the person using the printer is the last person in the world of splatoon 2015-06-19 20:58:49 Waterpikmin in splatoon you see no mention about a dog at ALl 2015-06-19 20:58:54 Waterpikmin ALL* 2015-06-19 20:59:40 Waterpikmin so the only person that would have any knowledge of a dog would have to be a human 2015-06-19 21:00:23 Waterpikmin and if callie is describing the printer as, "from, on high..." they must not know what the printer actually is 2015-06-19 21:01:01 Waterpikmin and the squid sisters also mention a dog as " man's best friend" as if it were nothing 2015-06-19 21:01:09 Waterpikmin so they must know something 2015-06-19 21:02:12 Waterpikmin so espyo, what do you think about the theory? 2015-06-19 21:08:57 @Espyo hm, yes 2015-06-19 21:09:00 @Espyo it's plausible 2015-06-19 21:09:23 Waterpikmin im trying to find the cutscene so you can see it 2015-06-19 21:10:21 @Espyo I saw an image 2015-06-19 21:10:27 @Espyo but I'll see it when our Splatfest happens 2015-06-19 21:11:02 Waterpikmin its of the squid sisters looking at the printer that is printing out the theme 2015-06-19 21:11:07 @Espyo yes 2015-06-19 21:12:17 Waterpikmin its also the same printer that is on one of the sunken scrolls 2015-06-19 21:13:09 Waterpikmin this printer is important in the game's lore 2015-06-19 21:13:24 Waterpikmin i dont exactly know what importance it will have 2015-06-19 21:13:33 Waterpikmin but there is something starneg 2015-06-19 21:13:36 Waterpikmin strange* 2015-06-19 21:14:17 UltraMario one of the squid sisters reminds me of bayonetta 2015-06-19 21:14:26 Waterpikmin callie lol 2015-06-19 21:14:26 @Espyo yeah 2015-06-19 21:14:30 @Espyo and apparently the other is her sister 2015-06-19 21:14:32 @Espyo from the second game 2015-06-19 21:14:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 21:14:58 <-- Yoshi2 (Yoshi2@7265-6us3-o16l-5-504h-5712-q044-kfm9.ipv6dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-19 21:16:31 Waterpikmin i am seriously excited for the new mario and luigi game 2015-06-19 21:16:47 Waterpikmin paper mario is in it which make me really happy 2015-06-19 21:21:28 Waterpikmin i think im gonna head out, it was nice talking! 2015-06-19 21:26:37 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 21:40:17 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 22:19:57 Testyo [Pikipedia RC] Vehemoth Phosbat by Nvortex (+183 /* Trivia */) http://www.pikminwiki.com/index.php?title=Vehemoth_Phosbat&curid=8262&diff=150554&oldid=150050 2015-06-19 22:19:57 Testyo [Pikipedia RC] Scornet Maestro by Nvortex (+183 /* Trivia  */) http://www.pikminwiki.com/index.php?title=Scornet_Maestro&curid=9278&diff=150555&oldid=149802 2015-06-19 22:27:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 22:34:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 22:59:25 @PikFan this theme is so creepy http://downloads.khinsider.com/game-soundtracks/album/pikmin-3/106-formidable-oak-exterior-night-.mp3 2015-06-19 23:01:18 @PikFan and this sounds like an evil circus http://downloads.khinsider.com/game-soundtracks/album/pikmin-3/107-formidable-oak-exterior-rain-.mp3 2015-06-19 23:01:30 @PikFan Final Trial sounds like an evil circus, too 2015-06-19 23:04:31 @Espyo hehe 2015-06-19 23:08:22 @PikFan https://www.youtube.com/watch?v=1xdv1QGnCLU 2015-06-19 23:08:28 @PikFan JPM: "Much sex." 2015-06-19 23:08:30 @PikFan traitor 2015-06-19 23:08:32 @PikFan how could you 2015-06-19 23:08:53 @Espyo he just likes circuses 2015-06-19 23:08:55 @Espyo spooky ones 2015-06-19 23:09:02 @PikFan apparently 2015-06-19 23:09:17 @PikFan he has fantasies about them 2015-06-19 23:22:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 23:22:57 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 23:27:13 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-19 23:27:33 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-19 23:39:33 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-19 23:44:47 Testyo something... the manual away from me 2015-06-19 23:50:38 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-19 23:50:38 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-20 00:00:01 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-20 00:00:20 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-20 00:16:36 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 00:45:18 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 00:49:07 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-20 00:56:04 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 01:24:16 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 01:24:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 02:27:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 02:27:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 02:27:41 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Remote host closed the connection) 2015-06-20 02:28:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 02:51:24 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-20 03:00:16 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 245 seconds) 2015-06-20 03:01:13 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: sleepy) 2015-06-20 06:31:33 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-20 08:10:16 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 245 seconds) 2015-06-20 08:13:23 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-20 08:15:07 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: g) 2015-06-20 08:43:28 --> Yoshi2 (Yoshi2@3958-8ky9-agch-2-1531-x6u7-u955-t007.ipv2dyn.netcologne.de) has joined #pikipedia 2015-06-20 12:36:26 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-20 12:36:26 Testyo Greetings everyone! 2015-06-20 12:37:26 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-20 12:37:27 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-20 13:16:47 Yoshi2 hey Testyo & Espyo 2015-06-20 13:16:48 Testyo well, if it has anything about my game in it, im removing the control character 0x07 2015-06-20 13:16:52 @Espyo hi 2015-06-20 15:38:10 Testyo but charging the remote's it works 2015-06-20 15:46:06 --> Drigibug313 (Mibbit@vmry-79-578-416-92.phlapa.fios.verizon.net) has joined #pikipedia 2015-06-20 15:46:55 <-- Drigibug313 (Mibbit@vmry-79-578-416-92.phlapa.fios.verizon.net) has quit (Client Quit) 2015-06-20 15:51:59 --> Yoshi2_ (Yoshi2@8953-8ne9-rm95-7-b0p9-46h9-dl90-03x3.ipv2dyn.netcologne.de) has joined #pikipedia 2015-06-20 15:54:46 <-- Yoshi2 (Yoshi2@3958-8ky9-agch-2-1531-x6u7-u955-t007.ipv2dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-20 16:07:23 Testyo [Fanon RC] User:LoganPikmin by LoganPikmin (+11) http://www.pikminfanon.com/index.php?title=User:LoganPikmin&curid=9547&diff=48393&oldid=48312 2015-06-20 16:07:46 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 16:22:26 Testyo [Fanon RC] User:LoganPikmin by LoganPikmin (+77) http://www.pikminfanon.com/index.php?title=User:LoganPikmin&curid=9547&diff=48394&oldid=48393 2015-06-20 16:22:27 Testyo [Fanon RC] Template:Pikmin: Attack o... by LoganPikmin (+9 N Created page with "{{PAODS}}") http://www.pikminfanon.com/index.php?title=Template:Pikmin:_Attack_of_DeathSpike&curid=9645&diff=48395&oldid=0 2015-06-20 16:32:32 -- Yoshi2_ is now known as Yoshi2 2015-06-20 16:40:37 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 16:40:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 16:47:34 Testyo [Fanon RC] User:LoganPikmin by LoganPikmin (0) http://www.pikminfanon.com/index.php?title=User:LoganPikmin&curid=9547&diff=48396&oldid=48394 2015-06-20 17:22:55 --> Nvortex (Mibbit@189.157.mmn.vpq) has joined #pikipedia 2015-06-20 17:23:07 Nvortex are you here everyday? 2015-06-20 17:23:50 UltraMario yes 2015-06-20 17:24:11 @Espyo yep 2015-06-20 17:24:15 @Espyo when I'm not at work 2015-06-20 17:24:19 Yoshi2 every day 2015-06-20 18:06:47 <-- Nvortex (Mibbit@189.157.mmn.vpq) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 18:27:47 --> Yoshi2_ (Yoshi2@9141-0tv0-zi28-0-w9a5-89d6-ql64-15c1.ipv3dyn.netcologne.de) has joined #pikipedia 2015-06-20 18:30:58 <-- Yoshi2 (Yoshi2@8953-8ne9-rm95-7-b0p9-46h9-dl90-03x3.ipv2dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-20 18:39:59 --> T3 (T3@298-257-224-48.cable.teksavvy.com) has joined #pikipedia 2015-06-20 18:48:26 Testyo [Pikipedia RC] Armored Cannon Beetle by Nvortex (+459) http://www.pikminwiki.com/index.php?title=Armored_Cannon_Beetle&curid=187&diff=150593&oldid=150542 2015-06-20 18:49:04 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 18:49:18 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 18:53:28 Testyo [Pikipedia RC] Armored Cannon Beetle by Nvortex (+12) http://www.pikminwiki.com/index.php?title=Armored_Cannon_Beetle&curid=187&diff=150596&oldid=150593 2015-06-20 19:00:09 -- Yoshi2_ is now known as Yoshi2 2015-06-20 19:13:34 Testyo [Pikipedia RC] Beady Long Legs by Nvortex (+440) http://www.pikminwiki.com/index.php?title=Beady_Long_Legs&curid=45&diff=150606&oldid=150601 2015-06-20 19:15:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 19:15:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 19:36:40 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 19:36:51 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 19:53:07 UltraMario yoshi2 2015-06-20 19:53:09 UltraMario come back 2015-06-20 19:53:11 UltraMario they kicked you 2015-06-20 19:53:12 UltraMario ;_; 2015-06-20 19:53:35 @Espyo what? mariowiki chat? 2015-06-20 19:53:44 UltraMario no 2015-06-20 19:53:46 UltraMario my chat 2015-06-20 19:53:47 UltraMario :P 2015-06-20 19:53:54 UltraMario someone did a clear users 2015-06-20 19:53:56 UltraMario and everyone died 2015-06-20 19:53:58 @Espyo hm 2015-06-20 19:59:48 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 20:00:15 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 20:14:44 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit 2015-06-20 20:21:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 20:21:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 20:29:21 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-20 20:42:33 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-20 20:43:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 20:43:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 20:51:37 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-20 20:51:37 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-20 20:51:45 @PikFan hi 2015-06-20 20:52:11 @PikFan so last night I was playing NPC! P2 and I noticed something weird 2015-06-20 20:52:37 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 20:52:46 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 20:52:46 @PikFan so for whatever reason, I like playing as Louie/The President over Olimar 2015-06-20 20:52:57 @PikFan and I happened to be sitting close to the TV 2015-06-20 20:53:36 @PikFan so I switched to Louie, and I saw that the cut out in his bubble wasn't his shape, but that of Olimar 2015-06-20 20:54:35 @PikFan like 2015-06-20 20:54:50 @PikFan so there's Louie's icon, surrounded by the bubble 2015-06-20 20:55:28 @PikFan but there's an empty space surrounding Louie's head that looks like Olimar's icon 2015-06-20 20:55:51 @PikFan ugh, brb, firefox is lagging 2015-06-20 20:55:57 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-06-20 20:56:20 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-20 20:56:21 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-20 21:01:20 @Espyo huh 2015-06-20 21:01:23 @Espyo that's weird 2015-06-20 21:01:30 @Espyo anything in particular that you were doing at the time? 2015-06-20 21:01:34 @Espyo involving leaders? 2015-06-20 21:02:32 @PikFan well, I was on Day 2... 2015-06-20 21:02:51 @PikFan gaaaaaaaaah 2015-06-20 21:03:13 @PikFan see, this is EXACTLY why I want a screen capture 2015-06-20 21:03:42 @Espyo hehe 2015-06-20 21:03:45 @Espyo but they're so pricey 2015-06-20 21:03:55 @Espyo I want a good one now, so I can capture Pikmin 3 2015-06-20 21:04:01 @Espyo because I REALLY want to make a video showing all drawings 2015-06-20 21:04:03 @Espyo but hey, guess what 2015-06-20 21:04:07 @Espyo I'm not MADE OF MONEY 2015-06-20 21:04:20 @Espyo the one I have wasn't too expensive, but it doesn't support PAL60 2015-06-20 21:04:54 @PikFan I saw one somewhere that supported GCN, Wii, and Wii U 2015-06-20 21:05:07 @PikFan as well as a bunch of other consoles 2015-06-20 21:05:39 @PikFan I forgot what it was called and its price, but I thought it was reasonably priced 2015-06-20 21:06:26 @PikFan oh, right 2015-06-20 21:06:34 @PikFan Elgato Game Capture HD 2015-06-20 21:07:09 @PikFan wow, only $150 2015-06-20 21:07:09 Testyo $ 150 = 137.955 € / £ 97.485 2015-06-20 21:11:39 @Espyo ..."only" 2015-06-20 21:12:01 @PikFan well, at least it isn't like $300 2015-06-20 21:12:02 Testyo $ 300 = 275.91 € / £ 194.97 2015-06-20 21:12:04 @Espyo it's just a thing that receives signal and copies it elsewhere 2015-06-20 21:12:10 @Espyo it's not made of unicorn urine 2015-06-20 21:12:29 @PikFan are you saying it shouldn't be that costly 2015-06-20 21:12:38 UltraMario im a squid now 2015-06-20 21:12:41 UltraMario im akid now 2015-06-20 21:12:55 @PikFan because I agree with you 2015-06-20 21:13:08 @Espyo it really shouldn't 2015-06-20 21:13:26 UltraMario espyo im hyped for splatoooooooooon 2015-06-20 21:13:27 @Espyo it receives signal like a simple SCART cable 2015-06-20 21:13:27 UltraMario :> 2015-06-20 21:13:30 UltraMario it looks so fuuuuuuun 2015-06-20 21:13:35 @Espyo which doesn't cost more than 2€ 2015-06-20 21:13:35 Testyo 2 € = £ 1.4132 / $ 2.1744 2015-06-20 21:13:42 @Espyo and sends it via, normally, USB 2015-06-20 21:13:54 @Espyo the conversion could be a thing that takes some manufacturing to get right 2015-06-20 21:13:57 @Espyo but 150? 2015-06-20 21:14:00 @Espyo that's 100 too many 2015-06-20 21:14:07 @Espyo and a cost of 50-60 is still pretty pricey 2015-06-20 21:14:28 @Espyo I smell company agreements on this 2015-06-20 21:14:31 UltraMario splatooooooooooooooooooooooooooooooooooooon 2015-06-20 21:14:35 @Espyo there's already a big monopoly with Elgato 2015-06-20 21:14:47 @Espyo but other companies that get in on the screen capture device deal 2015-06-20 21:14:53 UltraMario Espyo are you a kid or a squid 2015-06-20 21:14:53 @Espyo might all make their prices match 2015-06-20 21:14:56 @Espyo both 2015-06-20 21:15:00 @Espyo it's fun, UM 2015-06-20 21:15:02 @Espyo you getting it, then? 2015-06-20 21:15:33 UltraMario :> 2015-06-20 21:15:35 UltraMario yes 2015-06-20 21:15:41 UltraMario when i get a new wii u 2015-06-20 21:15:42 UltraMario :p 2015-06-20 21:15:43 @PikFan I really want Splatoon... 2015-06-20 21:15:58 UltraMario im a kid im a squid im a kid im a squid im a kid *inkplodes* 2015-06-20 21:17:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 21:17:50 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 21:28:26 @PikFan so I made an account at fanfiction.net 2015-06-20 21:29:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 21:29:25 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 21:30:02 @PikFan the policy is rather strict 2015-06-20 21:30:42 @PikFan you have to reagree to the story guidelines every week in order to keep updating your story, which is ridiculous 2015-06-20 21:32:56 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-20 21:36:54 @Espyo woah 2015-06-20 21:37:02 UltraMario hoaw 2015-06-20 21:37:06 UltraMario *haow 2015-06-20 21:37:06 UltraMario :p 2015-06-20 21:39:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 21:39:29 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 21:59:35 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 21:59:46 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 22:01:51 <-- Yoshi2 (Yoshi2@9141-0tv0-zi28-0-w9a5-89d6-ql64-15c1.ipv3dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-20 22:08:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 22:08:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 22:24:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 22:25:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 22:26:44 --> Spark (sparkles@2602:306:3717:wruo:likg:tvmp:syhl:zxkg) has joined #pikipedia 2015-06-20 22:39:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 22:39:48 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 22:56:23 <-- RingtailedFox (foxfoxfox@2001:470:1d:tnh:kjht:zlhy:unl:umwv) has quit (Quit: Leaving) 2015-06-20 23:00:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 23:00:43 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 23:19:20 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 23:19:32 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 23:31:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 23:31:43 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-20 23:44:40 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-20 23:44:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 00:03:08 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 00:03:15 @PikFan alright 2015-06-21 00:03:17 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 00:03:26 @PikFan so I FINALLY got my fanfic uploaded 2015-06-21 00:03:35 @PikFan after I edited it 2015-06-21 00:06:27 @Espyo hm 2015-06-21 00:07:51 @PikFan in chapter 3, instead of having everything to be explained, I just made a book 2015-06-21 00:08:06 @PikFan the title is Piklopedia: A History and Encyclopedia of Pikminkind 2015-06-21 00:09:23 @PikFan well then, I await people to read it and review 2015-06-21 00:09:24 @PikFan ooh 2015-06-21 00:09:32 @PikFan speaking of reviews, I should add that 2015-06-21 00:10:30 @PikFan hey, Espyo 2015-06-21 00:10:42 @Espyo hm? 2015-06-21 00:10:43 @PikFan does 384 mean anything in programming? 2015-06-21 00:10:55 @Espyo nope 2015-06-21 00:11:01 @PikFan oh 2015-06-21 00:11:16 @PikFan that's the character limit for the summary box 2015-06-21 00:11:47 @Espyo hm 2015-06-21 00:11:51 @Espyo nothing special, though 2015-06-21 00:11:58 @PikFan I see 2015-06-21 00:13:35 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 00:13:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 00:13:47 @PikFan oh 2015-06-21 00:13:51 @PikFan it's 128*3 2015-06-21 00:15:35 @PikFan ...oh, drat 2015-06-21 00:15:59 @PikFan so I did a search for "mysterious world" 2015-06-21 00:16:32 @Espyo I was gonna suggest "check if it's 128 * 3" 2015-06-21 00:16:32 @Espyo nice 2015-06-21 00:16:40 @PikFan and I find this https://en.wikipedia.org/wiki/Arthur_C._Clarke%27s_Mysterious_World 2015-06-21 00:17:41 @PikFan well, uh... 2015-06-21 00:17:50 @PikFan if anyone asks, I'll pretend I don't know 2015-06-21 00:23:36 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-21 00:32:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 00:32:34 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 00:52:03 @PikFan going now, bye 2015-06-21 00:52:08 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 01:07:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 01:07:46 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 01:14:55 <-- Spark (sparkles@2602:306:3717:wruo:likg:tvmp:syhl:zxkg) has quit (Quit: Tidings.) 2015-06-21 01:29:31 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 01:29:57 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 01:56:10 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 01:56:23 Testyo [Pikipedia RC] Valley of Repose by Pikmin1254 (+4196 Overhaul of page according to the Area article policy.) http://www.pikminwiki.com/index.php?title=Valley_of_Repose&curid=1644&diff=150610&oldid=149816 2015-06-21 01:56:36 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 02:05:10 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-21 02:05:34 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-21 02:24:12 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 02:24:24 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 02:38:53 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 02:39:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 02:52:50 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 02:52:59 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 03:27:25 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 03:27:36 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 03:33:42 --> En_Passant (Mibbit@42-731-91-657.hlrn.qwest.net) has joined #pikipedia 2015-06-21 03:42:58 <-- En_Passant (Mibbit@42-731-91-657.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 03:50:47 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 03:50:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 04:06:16 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 04:06:25 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 04:42:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 04:42:29 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 05:00:43 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 05:00:51 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 05:13:35 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 05:13:47 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 05:44:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 05:45:06 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 06:17:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 06:18:02 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 06:28:35 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 08:19:09 --> Yoshi2 (Yoshi2@2001:4dd3:dfcb:x:xypt:xxwm:skui:tjlj) has joined #pikipedia 2015-06-21 09:54:28 --> Yoshi2_ (Yoshi2@2001:4dd3:e107:v:shum:pvss:pnnn:mri) has joined #pikipedia 2015-06-21 09:56:37 <-- Yoshi2 (Yoshi2@2001:4dd3:dfcb:x:xypt:xxwm:skui:tjlj) has quit (Ping timeout: 252 seconds) 2015-06-21 09:59:01 --> Yoshi2__ (Yoshi2@2001:4dd3:e10b:q:imph:uqis:uixn:hhx) has joined #pikipedia 2015-06-21 10:01:34 <-- Yoshi2_ (Yoshi2@2001:4dd3:e107:v:shum:pvss:pnnn:mri) has quit (Ping timeout: 252 seconds) 2015-06-21 10:01:47 --> Yoshi2_ (Yoshi2@2001:4dd3:e116:l:smkm:klsn:zsii:rwn) has joined #pikipedia 2015-06-21 10:04:52 <-- Yoshi2__ (Yoshi2@2001:4dd3:e10b:q:imph:uqis:uixn:hhx) has quit (Ping timeout: 252 seconds) 2015-06-21 11:42:56 --> Yoshi2 (Yoshi2@8453-8og4-w372-2-s5q2-o141-9k72-c48.ipv8dyn.netcologne.de) has joined #pikipedia 2015-06-21 11:44:25 <-- Yoshi2_ (Yoshi2@2001:4dd3:e116:l:smkm:klsn:zsii:rwn) has quit (Ping timeout: 252 seconds) 2015-06-21 12:41:56 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-21 12:41:56 Testyo Afternoon everyone! 2015-06-21 12:43:00 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-21 12:43:00 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-21 12:44:24 Yoshi2 hey Testyo & Espyo 2015-06-21 12:44:25 Testyo yeah, you there, you're from NOE, right? 2015-06-21 13:02:20 @Espyo hi 2015-06-21 13:03:04 Yoshi2 Testyo: lm 2015-06-21 13:03:04 Testyo I said yeah, you there, you're from NOE, right? because Yoshi2 mentioned my name. This random message came from the messages yeah, you probably shouldn't use GPBot and hey, you there, you're from NOE, right?. They were joined by the common word you. 2015-06-21 13:03:18 Yoshi2 now I'm curious 2015-06-21 13:03:39 Yoshi2 who is GPBot? :> 2015-06-21 13:09:03 @Espyo Greenpickle's bot 2015-06-21 13:09:04 @Espyo J's bot 2015-06-21 15:57:08 Testyo okay a bit to go 2015-06-21 16:03:37 Testyo [Pikipedia RC] Onion by Nvortex (+380 /* Types */) http://www.pikminwiki.com/index.php?title=Onion&curid=1377&diff=150619&oldid=150421 2015-06-21 16:38:51 Testyo [Pikipedia RC] Prototype information by Nvortex (+1402) http://www.pikminwiki.com/index.php?title=Prototype_information&curid=7523&diff=150620&oldid=148281 2015-06-21 16:53:55 Testyo [Pikipedia RC] Prototype information by Nvortex (+64 /* Pikmin */) http://www.pikminwiki.com/index.php?title=Prototype_information&curid=7523&diff=150621&oldid=150620 2015-06-21 19:19:30 Testyo [Pikipedia RC] Prototype information by Nvortex (+7 /* Prototype gameplay */) http://www.pikminwiki.com/index.php?title=Prototype_information&curid=7523&diff=150622&oldid=150621 2015-06-21 19:28:51 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 265 seconds) 2015-06-21 20:27:17 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 20:32:22 --> Yoshi2_ (Yoshi2@1577-9fo7-m939-1-d7r0-q577-8j39-v50.ipv7dyn.netcologne.de) has joined #pikipedia 2015-06-21 20:35:10 <-- Yoshi2 (Yoshi2@8453-8og4-w372-2-s5q2-o141-9k72-c48.ipv8dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-21 20:40:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 20:40:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 20:44:43 -- Yoshi2_ is now known as Yoshi2 2015-06-21 20:57:20 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 20:57:33 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 21:05:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 21:05:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 21:17:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 21:17:54 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 21:27:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 21:27:17 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 21:40:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 21:40:30 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 22:02:09 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 22:02:19 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 22:03:37 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-21 22:03:37 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-21 22:03:42 @PikFan hi 2015-06-21 22:05:03 UltraMario hi pikfan 2015-06-21 22:13:46 <-- Yoshi2 (Yoshi2@1577-9fo7-m939-1-d7r0-q577-8j39-v50.ipv7dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-21 22:16:21 Testyo [Pikipedia RC] File:Side pikmin3demo.jpg uploaded by CreativeSushi (The advertisement used on the Gamestop website.) http://www.pikminwiki.com/index.php?title=File:Side_pikmin3demo.jpg 2015-06-21 22:21:22 Testyo [Pikipedia RC] File:960x170 Pikmin3Demo.jpg uploaded by CreativeSushi (The Banner on Gamestop's Website for the Pikmin 3 Gamestop Hands-on event) http://www.pikminwiki.com/index.php?title=File:960x170_Pikmin3Demo.jpg 2015-06-21 22:21:50 @PikFan so I'm taking a look at the cropped screenshots of P2 enemies 2015-06-21 22:22:02 @PikFan compared to P3 enemies, they've got a lot less polygons 2015-06-21 22:22:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 22:22:22 @PikFan I'm not surprised, but I think it's still interesting 2015-06-21 22:22:24 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 22:31:27 Testyo [Pikipedia RC] File:Ebgames canada pikmin 3.jpg uploaded by CreativeSushi (The EB Games advertisement for the Pikmin 3 Hands-on event.) http://www.pikminwiki.com/index.php?title=File:Ebgames_canada_pikmin_3.jpg 2015-06-21 22:36:29 Testyo [Pikipedia RC] Pikmin 3 GameStop inciden... by CreativeSushi (+855 Changed page to be based around the event itself, rather than the Incident that ...) http://www.pikminwiki.com/index.php?title=Pikmin_3_GameStop_incident&curid=18956&diff=150634&oldid=150303 2015-06-21 22:41:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 22:41:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 22:46:31 Testyo [Pikipedia RC] Pikmin 3 Gamestop Hands-o... by CreativeSushi (+5356 N Created page with "{{DISPLAYTITLE:''Pikmin 3'' GameStop Hands-on event}}{{game i...) http://www.pikminwiki.com/index.php?title=Pikmin_3_Gamestop_Hands-on_Event&curid=19072&diff=150635&oldid=0 2015-06-21 22:46:31 Testyo [Pikipedia RC] Pikmin 3 GameStop inciden... by CreativeSushi (-5310 Redirected page to [[Pikmin 3 GameStop Hands-on event]]) http://www.pikminwiki.com/index.php?title=Pikmin_3_GameStop_incident&curid=18956&diff=150636&oldid=150634 2015-06-21 22:46:32 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2015-06-21 22:52:25 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 22:52:36 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 23:01:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 23:01:29 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 23:02:26 T3 does anybody here have this channel's chat history from like 2011-2012? 2015-06-21 23:02:37 T3 i'd like to check some stuff 2015-06-21 23:09:28 @Espyo hmmm... 2015-06-21 23:09:30 @Espyo I might have 2015-06-21 23:09:32 @Espyo gimme a bit 2015-06-21 23:09:33 @Espyo playing Splatoon 2015-06-21 23:10:29 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 23:10:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 23:13:48 Testyo just the the official instruments 2015-06-21 23:16:07 T3 miles? 2015-06-21 23:16:45 @J mine starts February 2011 2015-06-21 23:17:04 @Espyo november 2011 for me 2015-06-21 23:17:06 @Espyo *december 2015-06-21 23:17:25 T3 february is fine 2015-06-21 23:18:33 @J you mean you want me to just send them? 2015-06-21 23:19:22 @J up until what date? (whole thing is 20MiB) 2015-06-21 23:19:22 T3 how many are there? 2015-06-21 23:20:03 T3 let's say september 2012 2015-06-21 23:22:14 @J http://stuff.ikn.org.uk/fileshare/irc.darkmyst.%23pikipedia.weechatlog 2015-06-21 23:23:02 @J this only has stuff for when I was online though 2015-06-21 23:23:25 @J my continous logs don't start until October 2013 2015-06-21 23:31:37 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 23:31:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario2))) 2015-06-21 23:31:52 -- UltraMario2 is now known as UltraMario 2015-06-21 23:46:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-21 23:46:33 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-21 23:48:23 @PikFan woah 2015-06-21 23:48:38 @PikFan my Cookie Clicker legacy has been running for exactly 1.5 years 2015-06-21 23:48:43 @PikFan exactly 2015-06-21 23:49:37 @PikFan because 13,140 hours / 24 = 547.5 days 2015-06-21 23:49:47 @PikFan 547.5 days / 365 = 1.5 years 2015-06-21 23:51:51 @PikFan hmm, so my run began on December 21st, 2013 2015-06-21 23:51:51 Testyo 21 st = 133.356 kg / 294 lb / 4704 oz 2015-06-21 23:54:02 @PikFan ...precisely, sometime during 3 am 2015-06-21 23:56:44 T3 thanks btw 2015-06-21 23:59:09 T3 miles' log is probably more complete though so hopefully he sees this 2015-06-21 23:59:20 @Espyo you can always PM 2015-06-21 23:59:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 00:00:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 00:05:17 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-22 00:05:19 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-22 00:06:59 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-22 00:08:08 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 00:08:17 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 00:11:26 --> RingtailedFox (foxfoxfox@2001:470:1d:tnh:kjht:zlhy:unl:umwv) has joined #pikipedia 2015-06-22 00:20:03 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 00:31:11 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-06-22 01:43:19 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 02:10:07 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 02:10:23 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 02:29:11 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 02:30:25 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario2))) 2015-06-22 02:30:26 -- UltraMario2 is now known as UltraMario 2015-06-22 02:39:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 02:39:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 02:42:45 --> Ringtailed-Fox (foxfoxfox@2001:470:yj:lmu::gvu) has joined #pikipedia 2015-06-22 02:46:13 <-- RingtailedFox (foxfoxfox@2001:470:1d:tnh:kjht:zlhy:unl:umwv) has quit (Ping timeout: 272 seconds) 2015-06-22 02:48:12 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 02:48:21 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 03:12:48 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 03:12:58 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 03:36:25 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 03:36:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 04:10:47 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 04:10:58 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 04:26:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 04:42:33 --> a (Mibbit@70.49.pyz.u) has joined #pikipedia 2015-06-22 04:43:08 <-- a (Mibbit@70.49.pyz.u) has quit (Client Quit) 2015-06-22 09:39:08 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-22 10:23:29 <-- Ringtailed-Fox (foxfoxfox@2001:470:yj:lmu::gvu) has quit (Ping timeout: 272 seconds) 2015-06-22 11:00:48 --> Yoshi2 (Yoshi2@134.61.vu.jr) has joined #pikipedia 2015-06-22 11:51:33 <-- Yoshi2 (Yoshi2@134.61.vu.jr) has quit (Quit: Leaving) 2015-06-22 16:52:52 --> Yoshi2 (Yoshi2@7760-1cn3-k257-9-3wta-18i9-s863-07t1.ipv6dyn.netcologne.de) has joined #pikipedia 2015-06-22 18:36:12 --> Marostar (Mibbit@xbzt21-229-202-799.range76-274.btcentralplus.com) has joined #pikipedia 2015-06-22 18:36:17 Marostar E3 was hype. 2015-06-22 18:38:16 Marostar You there, Ultimate? 2015-06-22 18:38:22 --> Ultimate (Mibbit@qyg1-mtqf3-7-1-inlr140.4-3.cable.virginm.net) has joined #pikipedia 2015-06-22 18:38:36 Marostar 'ello 2015-06-22 18:38:50 Ultimate Marostar... 2015-06-22 18:38:58 Marostar https://miiverse.nintendo.net/users/callumnew_wiiu 2015-06-22 18:39:20 Marostar I think l took my revenge a little too far... 2015-06-22 18:40:36 Ultimate Nah, he was just being stupid. 2015-06-22 18:40:52 Marostar ( ͡° ͜ʖ ͡°) 2015-06-22 18:40:59 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-22 18:40:59 Testyo Hi everyone! 2015-06-22 18:41:01 Yoshi2 oh joy 2015-06-22 18:41:04 Marostar That was one of my alts. 2015-06-22 18:41:30 Marostar I did it so that kid would be hated. He tried to troll me. 2015-06-22 18:41:31 Ultimate Did Testyo just comment because I said stupid... XD 2015-06-22 18:41:32 Testyo I'll use Dolphin and I jump into the water with 5 non-Blue Pikmin 2015-06-22 18:41:45 Marostar BS @Testyo 2015-06-22 18:41:46 Testyo in some cases the class was quiet for the entire duration of the easiest to figure out if they're working 2015-06-22 18:41:52 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-22 18:41:52 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-22 18:42:11 Ultimate Why was Espyo not op... 2015-06-22 18:42:25 Marostar He was out of the server and logged back in. 2015-06-22 18:42:31 Marostar l think... kinda. 2015-06-22 18:42:38 Ultimate Ah, well. 2015-06-22 18:42:58 Marostar But yeah, that "consolebanstop" is where you can actually see who l was trying to troll. 2015-06-22 18:43:12 Marostar Normal troll: spams your notifications. 2015-06-22 18:43:17 Yoshi2 hey Espyo & Testyo 2015-06-22 18:43:18 Testyo get and transform place things on my incompetence aside, it's a really nice user-created level 2015-06-22 18:43:44 Marostar Better: Trys to interfere with your life. 2015-06-22 18:43:50 Ultimate Ok, I'll check it out in a sec... >:D 2015-06-22 18:43:58 Marostar Me: Ruins all your fucking reputation. ( ͡° ͜ʖ ͡°) 2015-06-22 18:44:07 Ultimate XD 2015-06-22 18:44:08 Yoshi2 Marostar: yup, if you log off, your OP is taken away so chanserv needs to give it back to you the next time you log in and identify yourself 2015-06-22 18:46:11 Marostar I also ruin y' life. 2015-06-22 18:46:21 @Espyo hi 2015-06-22 18:46:21 <-- Ultimate (Mibbit@qyg1-mtqf3-7-1-inlr140.4-3.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 18:46:34 Marostar Hai hai hai. 2015-06-22 18:46:54 --> Ultimate (Mibbit@qyg1-mtqf3-7-1-inlr140.4-3.cable.virginm.net) has joined #pikipedia 2015-06-22 18:47:04 Marostar l just ruined a troll's life. 2015-06-22 18:47:22 Ultimate YAAAAAAY! 2015-06-22 18:48:11 Marostar ( ͡° ͜ʖ ͡°) 2015-06-22 18:48:24 Ultimate Wait, what happened to the "i" in your name...? 2015-06-22 18:48:39 Marostar iDK 2015-06-22 18:48:49 Marostar ;) 2015-06-22 18:48:55 Ultimate It just keeps making me think of bones... 2015-06-22 18:49:18 Marostar Check your PM in this chat. 2015-06-22 18:49:28 -- Marostar is now known as Mariostar 2015-06-22 18:49:48 Yoshi2 I'm fairly positive Mariostar has a malfunctioning I key 2015-06-22 18:50:08 Yoshi2 because I's often end up being l's 2015-06-22 18:50:58 Mariostar I'm typing this on my Wii U. 2015-06-22 18:51:23 Mariostar It's aII done for speed. 2015-06-22 18:52:07 Yoshi2 I see 2015-06-22 18:53:37 Mariostar Anyways, bye! 2015-06-22 18:53:38 <-- Ultimate (Mibbit@qyg1-mtqf3-7-1-inlr140.4-3.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 18:53:45 <-- Mariostar (Mibbit@xbzt21-229-202-799.range76-274.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-22 18:54:02 Yoshi2 o.ô 2015-06-22 18:54:09 Yoshi2 Ultimate == Mariostar? 2015-06-22 19:04:17 @J confirmed 2015-06-22 19:06:56 Yoshi2 definitely 2015-06-22 19:08:29 Yoshi2 both use mibbit, and both have disconnected in the same time span 2015-06-22 19:33:40 --> Yoshi2_ (Yoshi2@mtkh-96-45-635-130.netcologne.de) has joined #pikipedia 2015-06-22 19:36:46 <-- Yoshi2 (Yoshi2@7760-1cn3-k257-9-3wta-18i9-s863-07t1.ipv6dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-22 19:46:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 19:46:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-22 19:46:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-22 19:51:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-22 21:48:29 <-- Yoshi2_ (Yoshi2@mtkh-96-45-635-130.netcologne.de) has quit (Quit: Leaving) 2015-06-22 21:52:24 Testyo [Fanon RC] User talk:En Passant by LoganPikmin (+153 /* Pikmin V (Helping?) */ new section) http://www.pikminfanon.com/index.php?title=User_talk:En_Passant&curid=9202&diff=48400&oldid=48232 2015-06-22 22:01:55 Testyo ah, treasure? 2015-06-22 22:02:35 Testyo [Pikipedia RC] Indigenous Life (Explorat... by En Passant (0 m /* Quaggled Mireclops #2 */ Wrong picture.) http://www.pikminwiki.com/index.php?title=Indigenous_Life_(Exploration_Notes)&curid=11629&diff=150689&oldid=148823 2015-06-22 22:02:37 Testyo [Fanon RC] User:LoganPikmin by LoganPikmin (+92 I add what pikmins i own) http://www.pikminfanon.com/index.php?title=User:LoganPikmin&curid=9547&diff=48401&oldid=48396 2015-06-22 22:26:00 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-22 22:26:00 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-22 22:26:13 @PikFan hi 2015-06-22 22:26:56 @Espyo hi 2015-06-22 22:39:30 @PikFan holy cow there's a lot of uncategorized images [[Special:UncategorizedFiles]] 2015-06-22 22:39:30 Testyo "Special:UncategorizedFiles" article = http://www.pikminwiki.com/index.php?title=Special:UncategorizedFiles 2015-06-22 22:39:57 @PikFan most of those probably don't have licenses 2015-06-22 22:41:35 @Espyo yuh-huh 2015-06-22 22:41:37 @Espyo *all of those 2015-06-22 22:41:40 @Espyo licenses categorize 2015-06-22 22:41:52 @PikFan hm 2015-06-22 22:42:45 @PikFan [[Template:Columns]] 2015-06-22 22:42:45 Testyo "Template:Columns" article = http://www.pikminwiki.com/index.php?title=Template:Columns 2015-06-22 22:42:48 @PikFan >no category 2015-06-22 22:42:53 @PikFan Espyo you traitor 2015-06-22 22:43:14 @Espyo No! 2015-06-22 22:43:17 @PikFan hmm, so I was looking around for what subcategory it could go into 2015-06-22 22:43:18 @Espyo you've got it all wrong! 2015-06-22 22:43:23 @Espyo it-it was just a mistake, is all 2015-06-22 22:43:28 @Espyo Category:Templates 2015-06-22 22:43:35 @Espyo inline templates? 2015-06-22 22:43:45 @PikFan eh... 2015-06-22 22:43:55 @PikFan don't inline templates mean, you know, inline? 2015-06-22 22:44:04 @PikFan and columns are more than one line 2015-06-22 22:44:14 @PikFan ...I think it should just be Category:Templates 2015-06-22 22:44:55 @Espyo hmm, semantic 2015-06-22 22:45:13 @PikFan is that even a category 2015-06-22 22:45:20 @PikFan no 2015-06-22 22:45:35 @PikFan not yet, anyway 2015-06-22 22:46:17 @PikFan [[Template:Merging]] and [[Template:Merging subpage]] are uncategorized too 2015-06-22 22:46:18 Testyo "Template:Merging" article = http://www.pikminwiki.com/index.php?title=Template:Merging 2015-06-22 22:46:21 * @PikFan looks at J 2015-06-22 22:46:51 @Espyo hmmmmmmmmmmm 2015-06-22 22:48:03 Testyo [Pikipedia RC] Template:Merging by PikFan23 (+50 m Cat.) http://www.pikminwiki.com/index.php?title=Template:Merging&curid=10090&diff=150690&oldid=143894 2015-06-22 22:48:38 @PikFan oh yeah, and if you haven't noticed, I went back to using proper caps for summaries 2015-06-22 22:50:14 @PikFan gah 2015-06-22 22:50:36 @PikFan so I wanted to add Twitter to [[Template:Community]] 2015-06-22 22:50:37 Testyo "Template:Community" article = http://www.pikminwiki.com/index.php?title=Template:Community 2015-06-22 22:50:46 @PikFan ...but then that lock showed up 2015-06-22 22:51:31 @Espyo good 2015-06-22 22:51:44 @Espyo ? 2015-06-22 22:52:16 @PikFan because that's already there 2015-06-22 22:52:26 @Espyo whaa? 2015-06-22 22:52:28 @Espyo lemme take a look 2015-06-22 22:53:06 Testyo [Pikipedia RC] Template:Merging subpage by PikFan23 (+50 m Cat.) http://www.pikminwiki.com/index.php?title=Template:Merging_subpage&curid=10092&diff=150691&oldid=147699 2015-06-22 22:53:45 @Espyo seems fine if I try 2015-06-22 22:53:47 @Espyo want me to save it? 2015-06-22 22:53:56 @PikFan do it 2015-06-22 22:54:41 @Espyo done 2015-06-22 22:54:57 @Espyo if you can't see the change, try opening the page with edit 2015-06-22 22:55:20 @PikFan no lock 2015-06-22 22:55:20 @PikFan good 2015-06-22 22:55:45 @PikFan ...oh, it's because I thought that one would affect both 2015-06-22 22:55:48 @PikFan oops 2015-06-22 22:56:09 @Espyo nope 2015-06-23 00:09:35 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-23 00:11:51 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-23 00:49:12 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-23 01:44:59 --> En_Passant (Mibbit@42-731-91-657.hlrn.qwest.net) has joined #pikipedia 2015-06-23 01:45:10 En_Passant hey pik 2015-06-23 01:45:17 En_Passant And whoever else is here, I guess 2015-06-23 01:46:54 @PikFan hi 2015-06-23 01:47:58 En_Passant Do you think Rock Pikmin would look better if they were symmetrical? 2015-06-23 01:48:10 @PikFan not necessarily 2015-06-23 01:53:36 En_Passant I made some artwork of them that way, I'll upload it to Fanon and ask your opinion on it 2015-06-23 01:54:44 @PikFan hmm, alright 2015-06-23 01:55:26 En_Passant http://www.pikminfanon.com/File:Rock_Pikmin_V.png 2015-06-23 01:55:39 En_Passant Uhh 2015-06-23 01:55:48 En_Passant Didn't realize pasting the URL of an image shows the image 2015-06-23 01:55:56 @PikFan they look alright 2015-06-23 05:37:34 <-- En_Passant (Mibbit@42-731-91-657.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-23 07:19:15 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-23 08:32:59 <-- smuckola (smuckola@e7.smuckola.org) has quit (*.net *.split) 2015-06-23 08:37:23 --> smuckola (smuckola@e7.smuckola.org) has joined #pikipedia 2015-06-23 09:29:40 --> Yoshi2 (Yoshi2@099-508.eduroam.rwth-aachen.de) has joined #pikipedia 2015-06-23 09:42:40 <-- Yoshi2 (Yoshi2@099-508.eduroam.rwth-aachen.de) has quit (Ping timeout: 252 seconds) 2015-06-23 11:35:03 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-23 14:53:50 --> Yoshi2 (Yoshi2@1577-9dp7-oc30-1-6m55-j77y-5f1o-0og0.ipv0dyn.netcologne.de) has joined #pikipedia 2015-06-23 19:04:34 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-23 19:04:34 Testyo Hello everyone! 2015-06-23 19:05:25 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-23 19:05:25 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-23 19:16:44 --> Yoshi2_ (Yoshi2@2001:4dd3:edeb:g:ytjm:wint:hlgw:oktu) has joined #pikipedia 2015-06-23 19:19:12 --> RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has joined #pikipedia 2015-06-23 19:19:37 <-- Yoshi2 (Yoshi2@1577-9dp7-oc30-1-6m55-j77y-5f1o-0og0.ipv0dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-23 19:39:28 <-- RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has quit (Read error: No route to host) 2015-06-23 19:39:41 --> RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has joined #pikipedia 2015-06-23 19:47:19 Yoshi2_ hey Espyo & Testyo 2015-06-23 19:47:20 Testyo is using making a template function for creating a tower as a member of the base class UnplacedTower a MW wiki like that... 2015-06-23 19:47:31 @Espyo hi 2015-06-23 19:47:48 Yoshi2_ I started hitting my bms project with a PEP8 bat over and over again 2015-06-23 19:48:45 Yoshi2_ back then I used to think that my coding style was alrigt, but now I can't look at the way I named my functions and variables anymore 2015-06-23 19:49:04 Yoshi2_ it looks so silly, so I'm renaming everything now 2015-06-23 19:53:03 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-23 19:53:04 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-23 19:53:12 @PikFan hi 2015-06-23 19:54:15 Yoshi2_ hey PikFan 2015-06-23 19:54:41 @PikFan wow this guy can't spell or grammar http://www.pikminwiki.com/index.php?title=Iridescent_Flint_Beetle&curid=922&diff=150862&oldid=150704 2015-06-23 19:55:16 @Espyo hi 2015-06-23 19:55:21 @Espyo I nearly gagged 2015-06-23 19:55:39 @Espyo that's the problem with cleaning, Yoshi2_ 2015-06-23 19:56:11 Yoshi2_ indeed 2015-06-23 20:20:35 Testyo [Fanon RC] Talk:Project Clean Up by LoganPikmin (+135) http://www.pikminfanon.com/index.php?title=Talk:Project_Clean_Up&curid=9210&diff=48436&oldid=48421 2015-06-23 20:20:50 @PikFan bah 2015-06-23 20:20:55 @PikFan what good can he do 2015-06-23 20:21:04 @PikFan he can barely even form a proper sentence 2015-06-23 20:23:42 @Espyo pretty much 2015-06-23 20:23:50 @Espyo but I STILL prefer him being a goof here than on wikia 2015-06-23 20:23:58 @Espyo at least he's not destructive 2015-06-23 20:23:59 @Espyo he's just... 2015-06-23 20:24:01 @Espyo ... 2015-06-23 20:24:02 @Espyo active 2015-06-23 20:24:08 @PikFan a little lost 2015-06-23 20:24:37 @PikFan I see three errors just in that post 2015-06-23 20:26:29 @Espyo and it's only a sentence 2015-06-23 20:26:40 @Espyo but eh, at least one out of every 10 of his edits are actually good 2015-06-23 20:26:46 @Espyo or the barebones to something good 2015-06-23 20:26:51 @PikFan I suppose 2015-06-23 20:27:12 @PikFan ugh, Fanon is such a mess 2015-06-23 20:27:16 @PikFan ...like I've said millions of times 2015-06-23 20:27:18 @Espyo hehe 2015-06-23 20:27:41 @PikFan it's because it's such a mess that I don't want to clean it 2015-06-23 20:27:45 @PikFan it's just... so huge 2015-06-23 20:28:07 <-- RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has quit (Read error: No route to host) 2015-06-23 20:28:22 Yoshi2_ in what way is it a mess? 2015-06-23 20:28:24 --> RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has joined #pikipedia 2015-06-23 20:28:35 @PikFan [[f:Special:Random]] 2015-06-23 20:28:36 Testyo "Special:Random" article = http://www.pikminfanon.com/index.php?title=Special:Random 2015-06-23 20:29:08 Yoshi2_ "Obsidian Candypop Buds are native life found in Pikmin 5, and as their name states, Turn other pikmin into Black Pikmin." 2015-06-23 20:29:14 Yoshi2_ WAIT A MINUTE 2015-06-23 20:29:38 @PikFan ? 2015-06-23 20:29:57 Yoshi2_ pikmin 4 isn't even a thing yet and people are already thinking up a sequel to it? :o 2015-06-23 20:30:18 @PikFan maybe they already made a Pikmin 4...? 2015-06-23 20:30:19 <-- RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has quit (Read error: No route to host) 2015-06-23 20:30:28 @PikFan uh 2015-06-23 20:30:32 --> RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has joined #pikipedia 2015-06-23 20:30:33 @PikFan that was ambiguous 2015-06-23 20:30:54 @PikFan by "they" I meant the user who made Pikmin 5 2015-06-23 20:31:27 @PikFan hmm... 2015-06-23 20:31:42 Yoshi2_ quite possible 2015-06-23 20:31:44 @PikFan I still need to rename the Garden and turn it into a true forest area 2015-06-23 20:33:46 @PikFan so far, my fanfic has... 2015-06-23 20:33:48 @PikFan ...1 follow 2015-06-23 21:25:21 <-- RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has quit (Read error: No route to host) 2015-06-23 21:25:34 --> RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has joined #pikipedia 2015-06-23 21:27:22 <-- RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has quit (Read error: No route to host) 2015-06-23 21:27:35 --> RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has joined #pikipedia 2015-06-23 21:35:34 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Quit: jhi) 2015-06-23 21:46:27 <-- Yoshi2_ (Yoshi2@2001:4dd3:edeb:g:ytjm:wint:hlgw:oktu) has quit (Quit: Leaving) 2015-06-23 21:52:29 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-06-23 23:28:48 <-- RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has quit (Read error: No route to host) 2015-06-23 23:29:01 --> RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has joined #pikipedia 2015-06-23 23:33:22 <-- RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has quit (Read error: No route to host) 2015-06-23 23:33:36 --> RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has joined #pikipedia 2015-06-23 23:46:53 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Read error: Connection reset by peer) 2015-06-23 23:47:29 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-23 23:47:53 <-- RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has quit (Read error: No route to host) 2015-06-23 23:48:07 --> RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has joined #pikipedia 2015-06-24 01:23:45 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Later everyone!) 2015-06-24 01:23:52 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-24 01:27:04 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-06-24 02:10:04 <-- RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has quit (Read error: No route to host) 2015-06-24 02:10:23 --> RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has joined #pikipedia 2015-06-24 03:50:53 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-06-24 03:50:59 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Client Quit) 2015-06-24 04:34:56 <-- RingtailedFox (foxfoxfox@2001:470:1d:ysr:vhqs:xjiz:utzw:nlvq) has quit (Read error: No route to host) 2015-06-24 04:35:51 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-24 10:51:33 --> CyborgKing0 (Mibbit@114.108.igr.lnn) has joined #pikipedia 2015-06-24 10:51:54 CyborgKing0 :) 2015-06-24 10:52:31 <-- CyborgKing0 (Mibbit@114.108.igr.lnn) has quit (Client Quit) 2015-06-24 12:00:12 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-24 12:00:12 Testyo Greetings everyone! 2015-06-24 12:01:06 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-24 12:01:06 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-24 13:18:29 --> Yoshi2 (Yoshi2@134.61.tp.uw) has joined #pikipedia 2015-06-24 14:24:17 <-- Yoshi2 (Yoshi2@134.61.tp.uw) has quit (Quit: Leaving) 2015-06-24 15:47:55 Testyo "he/she" is just... to a tab that never loads 2015-06-24 17:26:55 --> Yoshi2 (Yoshi2@6022-4er7-o892-1-anh2-y6x8-c11k-f50n.ipv0dyn.netcologne.de) has joined #pikipedia 2015-06-24 19:02:55 Testyo I mean, that text you do 2015-06-24 19:04:12 Yoshi2 heeeeeeeeeyyyyyyyy Testyo 2015-06-24 19:04:13 Testyo is it a voice call? 2015-06-24 19:05:44 Yoshi2 I've seen somebody list the name of my bot in the credits for a dota2 mod they made 2015-06-24 19:10:37 @Espyo neat 2015-06-24 19:11:25 --> Yoshi2_ (Yoshi2@3408-8er9-o4i5-2-qoe9-s2l7-e30j-y98z.ipv2dyn.netcologne.de) has joined #pikipedia 2015-06-24 19:12:55 <-- Yoshi2 (Yoshi2@6022-4er7-o892-1-anh2-y6x8-c11k-f50n.ipv0dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-24 20:06:08 -- Yoshi2_ is now known as Yoshi2 2015-06-24 21:45:59 <-- Yoshi2 (Yoshi2@3408-8er9-o4i5-2-qoe9-s2l7-e30j-y98z.ipv2dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-24 22:02:16 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-24 22:02:17 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-24 22:02:28 @PikFan hi 2015-06-24 22:03:09 @PikFan really? ugh http://www.pikminfanon.com/Topic:what_is_an_admin 2015-06-24 22:03:38 @PikFan that made me almost angry 2015-06-24 22:03:51 @PikFan we have help pages for a reason :| 2015-06-24 22:04:26 @PikFan I think he's like 9 or 10 or something 2015-06-24 22:05:16 @PikFan also this http://www.pikminfanon.com/index.php?title=User_talk:Cheepy-Cheepy/archive03&curid=5954&diff=48438&oldid=48420 2015-06-24 22:05:28 @PikFan why would you post on an archive... 2015-06-24 22:05:41 @PikFan I moved it to his regular talk, but ugh, that irked me 2015-06-24 22:06:20 @PikFan anyway... 2015-06-24 22:06:24 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-06-24 22:06:29 En_Passant The Explorer's Logs are canon, right? 2015-06-24 22:07:42 @PikFan Explorer's Logs...? 2015-06-24 22:07:51 @PikFan what are those 2015-06-24 22:08:01 @PikFan OH 2015-06-24 22:08:45 @PikFan you mean the videos from the secret files, right? 2015-06-24 22:09:06 En_Passant Yes 2015-06-24 22:09:18 @PikFan hm 2015-06-24 22:09:22 En_Passant If they are, it changes the Canon page considerably 2015-06-24 22:09:48 @PikFan ask Espyo 2015-06-24 22:10:09 @PikFan I want to go with questionably canon, but that doesn't seem right 2015-06-24 22:16:23 En_Passant I think it's canon, based on our description 2015-06-24 22:16:36 En_Passant "Bonus content... can vary in canon, but whenever it does not contradict with – and makes sense within the context of – the main story mode, it is considered canon." 2015-06-24 22:18:01 Testyo why is heh 2015-06-24 22:18:03 En_Passant The Explorer's Logs expand on what Olimar and Louie did on PNF-404, so it fits 2015-06-24 22:22:10 En_Passant Is it sad that I just now understand that Testyo = Test Espyo? 2015-06-24 22:22:11 Testyo I have to replace so many things, it is for abbreviation 2015-06-24 22:23:19 @Espyo lol 2015-06-24 22:23:21 @Espyo it's not that sad 2015-06-24 22:23:36 @Espyo what needs to be asked to me? 2015-06-24 22:23:44 En_Passant Are the Explorer's Logs canon 2015-06-24 22:23:53 @Espyo yep 2015-06-24 22:23:58 @Espyo the data files in Pikmin 3? 2015-06-24 22:24:12 @PikFan yeah, the secret file videos 2015-06-24 22:27:02 @Espyo ah, those 2015-06-24 22:27:06 @Espyo I'd say they are 2015-06-24 23:40:11 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-24 23:45:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-25 00:06:18 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-25 00:13:34 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-25 00:14:27 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-06-25 01:31:47 -- irc: disconnected from server 2015-06-25 01:34:22 --> J (J@f-771.cust-91586.ip.static.uno.uk.net) has joined #pikipedia 2015-06-25 01:34:22 -- Topic for #pikipedia is "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com | Rules: http://pikminwiki.com/Help:Chat" 2015-06-25 01:34:22 -- Topic set by PikFan on Sat, 03 May 2014 19:36:58 2015-06-25 01:34:22 -- Channel #pikipedia: 8 nicks (1 op, 0 voices, 7 normals) 2015-06-25 01:34:22 -- URL for #pikipedia: http://www.pikminwiki.com 2015-06-25 01:34:22 -- Mode #pikipedia [+o J] by ChanServ 2015-06-25 01:34:25 -- Channel created on Sat, 27 Jul 2013 18:55:16 2015-06-25 07:03:25 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Read error: Connection reset by peer) 2015-06-25 07:03:56 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-25 07:30:10 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-25 12:22:56 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Read error: Connection reset by peer) 2015-06-25 12:25:40 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-25 14:57:30 --> Yoshi2 (Yoshi2@134.61.xq.ppy) has joined #pikipedia 2015-06-25 16:06:04 <-- Yoshi2 (Yoshi2@134.61.xq.ppy) has quit (Quit: Leaving) 2015-06-25 18:42:19 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-25 18:42:19 Testyo Hi everyone! 2015-06-25 18:42:58 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-25 18:42:58 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-25 18:44:47 --> Yoshi2 (Yoshi2@2001:4dd3:f718:h:myiq:uhig:gkss:kppq) has joined #pikipedia 2015-06-25 20:51:38 --> UltraMario (Mibbit@73.29.mgw.mm) has joined #pikipedia 2015-06-25 20:53:32 Testyo [Pikipedia RC] (log) User:Piki Blowhog by Piki Blowhog (0) http://www.pikminwiki.com/index.php?title=User:Piki_Blowhog&curid=10651&diff=0&oldid=0 2015-06-25 20:54:15 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-25 20:54:59 <-- UltraMario (Mibbit@73.29.mgw.mm) has quit (Killed (NickServ (GHOST command used by UltraMario2!Mibbit@d-75-69-344-16.hsd6.nj.comcast.net))) 2015-06-25 21:00:01 <-- UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-25 21:29:15 Testyo [Pikipedia RC] File:ZlCfzTWx SIXFQGkkU.jpg uploaded by Nvortex http://www.pikminwiki.com/index.php?title=File:ZlCfzTWx_SIXFQGkkU.jpg 2015-06-25 21:29:15 Testyo [Pikipedia RC] File:ZlCfzTXF WEjdohgXA.jpg uploaded by Nvortex http://www.pikminwiki.com/index.php?title=File:ZlCfzTXF_WEjdohgXA.jpg 2015-06-25 21:29:15 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2015-06-25 21:34:22 Testyo [Pikipedia RC] File:ZlCfzTXVVLEGc8cQV1.jpg uploaded by Nvortex http://www.pikminwiki.com/index.php?title=File:ZlCfzTXVVLEGc8cQV1.jpg 2015-06-25 21:34:22 Testyo [Pikipedia RC] File:ZlCfzTXWexYu8ffsUP.jpg uploaded by Nvortex http://www.pikminwiki.com/index.php?title=File:ZlCfzTXWexYu8ffsUP.jpg 2015-06-25 21:39:26 Testyo [Pikipedia RC] Peckish Aristocrab by Nvortex (+59 /* Gallery */) http://www.pikminwiki.com/index.php?title=Peckish_Aristocrab&curid=8618&diff=150895&oldid=149323 2015-06-25 21:44:29 Testyo [Pikipedia RC] Phosbat by Nvortex (+254 /* Strategy */) http://www.pikminwiki.com/index.php?title=Phosbat&curid=11630&diff=150896&oldid=150233 2015-06-25 21:44:29 Testyo [Pikipedia RC] Phosbat by Nvortex (+3 /* Gallery */) http://www.pikminwiki.com/index.php?title=Phosbat&curid=11630&diff=150897&oldid=150896 2015-06-25 21:44:29 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2015-06-25 21:49:31 Testyo [Pikipedia RC] Vehemoth Phosbat by Nvortex (+71 /* Gallery */) http://www.pikminwiki.com/index.php?title=Vehemoth_Phosbat&curid=8262&diff=150899&oldid=150554 2015-06-25 21:49:32 Testyo [Pikipedia RC] Tunnel by Nvortex (+65) http://www.pikminwiki.com/index.php?title=Tunnel&curid=18322&diff=150900&oldid=145777 2015-06-25 21:49:32 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2015-06-25 21:54:33 Testyo [Pikipedia RC] Burrowing Snagret by Nvortex (+89 /* Gallery */) http://www.pikminwiki.com/index.php?title=Burrowing_Snagret&curid=323&diff=150904&oldid=149848 2015-06-25 21:55:24 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-25 22:06:02 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-25 22:06:26 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-06-25 22:06:32 -- UM is now known as UltraMario 2015-06-25 22:08:17 @Espyo right, so CyborgKing0 actually suggested a good idea 2015-06-25 22:08:23 @Espyo a navbox for Pikmin abilities 2015-06-25 22:08:27 @Espyo instead, I made a general Pikmin navbox 2015-06-25 22:08:28 @Espyo http://www.pikminwiki.com/Pikipedia:Sandbox 2015-06-25 22:08:30 @Espyo thoughts? 2015-06-25 22:08:37 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-25 22:09:17 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-06-25 22:09:21 -- UM is now known as UltraMario 2015-06-25 22:10:30 Testyo Hi as 'different' as the other 2015-06-25 22:12:02 <-- Yoshi2 (Yoshi2@2001:4dd3:f718:h:myiq:uhig:gkss:kppq) has quit (Quit: Leaving) 2015-06-25 22:14:33 UltraMario hey Espyo 2015-06-25 22:14:40 @Espyo hi 2015-06-25 22:15:58 UltraMario do i have your Nnid 2015-06-25 22:16:19 @Espyo I don't know 2015-06-25 22:17:12 UltraMario oh 2015-06-25 22:17:23 UltraMario what is your NNID 2015-06-25 22:17:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-25 22:24:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-25 22:31:08 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-25 22:35:32 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-25 23:10:20 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-25 23:13:44 --> UltraMario (Mibbit@73.29.mgw.mm) has joined #pikipedia 2015-06-25 23:18:49 <-- UltraMario (Mibbit@73.29.mgw.mm) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-25 23:22:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-25 23:23:49 --> UltraMario2 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-25 23:23:58 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario2))) 2015-06-25 23:24:00 -- UltraMario2 is now known as UltraMario 2015-06-25 23:37:29 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-25 23:40:42 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-26 00:00:14 Testyo [Fanon RC] User account PikFan22 created http://www.pikminfanon.com/index.php?title=User:PikFan22 2015-06-26 00:01:52 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-26 00:02:14 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-26 00:03:34 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-26 00:05:35 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-26 00:07:51 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-26 00:08:38 <-- UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-26 00:13:19 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-26 00:29:04 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-26 00:43:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-26 00:43:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-26 01:04:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-26 01:05:18 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-26 01:19:50 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-26 01:51:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-26 02:04:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-26 02:08:29 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-26 02:13:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-26 03:42:53 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-26 04:28:19 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 252 seconds) 2015-06-26 06:35:03 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-26 06:35:03 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-26 06:48:57 --> Yoshi2 (Yoshi2@2001:4dd3:f979:m:rrxv:wopq:glmm:yrgi) has joined #pikipedia 2015-06-26 06:49:08 @PikFan hi 2015-06-26 06:49:15 @PikFan you're on awfully early 2015-06-26 06:49:16 Yoshi2 good morning 2015-06-26 06:49:28 Yoshi2 indeed 2015-06-26 06:49:40 @PikFan what time is it for you again? 2015-06-26 06:49:42 Yoshi2 I've got a bit of time before I have to leave for classes 2015-06-26 06:49:47 @PikFan oh 2015-06-26 06:50:04 Yoshi2 almost 8 am 2015-06-26 06:50:08 @PikFan I see 2015-06-26 06:50:15 @PikFan almost 11 pm for me 2015-06-26 06:50:57 @PikFan so on the fanon wiki I think somebody tried to impersonate me 2015-06-26 06:51:21 @PikFan my wiki username is PikFan23, and this guy made their username PikFan22 2015-06-26 06:51:36 Yoshi2 oh joy 2015-06-26 06:51:48 @PikFan so I told him he has three days to pick a new one 2015-06-26 06:51:58 @PikFan if he doesn't respond I'm changing it anyway 2015-06-26 06:52:24 @PikFan ah, to be an admin... 2015-06-26 06:53:06 @PikFan at least Fanon isn't super popular, or I'd get a headache from shenanigans like these 2015-06-26 06:53:16 @PikFan *this 2015-06-26 06:54:25 Yoshi2 mhm, the potential damage that person could cause is pretty low 2015-06-26 06:54:38 @PikFan yeah 2015-06-26 07:01:06 @PikFan oh, yay, I got another follower 2015-06-26 07:01:17 @PikFan still waiting for a review 2015-06-26 07:01:43 @PikFan about my Pikmin fanfic on fanfiction.net 2015-06-26 08:34:56 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-06-26 08:48:06 <-- Yoshi2 (Yoshi2@2001:4dd3:f979:m:rrxv:wopq:glmm:yrgi) has quit (Quit: Leaving) 2015-06-26 11:01:51 --> Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-06-26 12:08:46 --> Yoshi2 (Yoshi2@134.61.xq.ppy) has joined #pikipedia 2015-06-26 12:10:42 <-- Yoshi2 (Yoshi2@134.61.xq.ppy) has quit (Client Quit) 2015-06-26 14:58:49 --> Yoshi2 (Yoshi2@7265-6gq3-mvd6-4-55n9-97fr-kwyg-r779.ipv6dyn.netcologne.de) has joined #pikipedia 2015-06-26 17:18:11 -- Pi is now known as RandomYoshisWoollyWorld 2015-06-26 19:15:45 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-26 19:15:45 Testyo Hi everyone! 2015-06-26 19:16:32 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-26 19:16:32 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-26 19:33:56 Yoshi2 hey Testyo & Espyo 2015-06-26 19:33:57 Testyo but Prod's looking into it 2015-06-26 19:34:05 -- RandomYoshisWoollyWorld is now known as Pi 2015-06-26 19:34:17 Pi hi 2015-06-26 19:35:49 Yoshi2 hiho Pi 2015-06-26 19:36:19 @Espyo hi 2015-06-26 19:37:04 Pi how have you all been 2015-06-26 19:40:22 @Espyo pretty good 2015-06-26 19:40:23 @Espyo you? 2015-06-26 19:40:31 Pi same, really 2015-06-26 19:42:29 BetaMaster Pi. 2015-06-26 19:42:36 Pi BetaMaster. 2015-06-26 19:43:34 BetaMaster jhi 2015-06-26 19:43:40 BetaMaster *hi 2015-06-26 19:45:01 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 265 seconds) 2015-06-26 20:26:11 Testyo [Fanon RC] Category talk:Fanon by En Passant (+436 N Created page with "Why does this category even exist? Everything here is fanon b...) http://www.pikminfanon.com/index.php?title=Category_talk:Fanon&curid=9664&diff=48483&oldid=0 2015-06-26 20:27:00 Pi I forgot Testyo was amazing like this. 2015-06-26 20:27:01 Testyo I was silly to download the sound effects/music from pikmin 3? 2015-06-26 20:27:43 @Espyo yep, pretty useful 2015-06-26 20:48:21 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-26 20:55:20 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-26 20:55:20 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-26 20:55:45 @PikFan hi 2015-06-26 20:55:54 @PikFan ...Pi? 2015-06-26 20:55:59 @PikFan ...is that you? 2015-06-26 20:56:16 @PikFan holy crap Pi you exist again yay 2015-06-26 20:57:09 @PikFan alright, so 2015-06-26 20:57:46 @PikFan on Fanon, LoganPikmin decided to make a game adaptation of my fanfic 2015-06-26 20:57:55 @PikFan (@ Espyo btw) 2015-06-26 20:58:04 @PikFan ...ugh 2015-06-26 20:58:05 @Espyo hi 2015-06-26 20:58:07 @PikFan I'm so tired 2015-06-26 20:58:09 @Espyo hm, neat 2015-06-26 20:58:35 @PikFan also some user tried to impersonate me, I think 2015-06-26 20:58:54 @PikFan their username was PikFan22 2015-06-26 20:59:08 @PikFan so I told them they have 3 days to pick a new username 2015-06-26 20:59:23 @PikFan if they don't reply in those 3 days I'm renaming him to Pikmin22 2015-06-26 20:59:44 @PikFan also this http://www.pikminfanon.com/Category_talk:Fanon 2015-06-26 20:59:49 @PikFan he raises a good point 2015-06-26 21:00:10 @PikFan hm 2015-06-26 21:00:24 @PikFan maybe the Fanon category should be strictly fanon objects 2015-06-26 21:00:32 @Espyo yeah, I've seen a PikFan22 about 2015-06-26 21:01:11 @Espyo I think the category shouldn't exist 2015-06-26 21:01:23 @Espyo only canon stuff should have a category 2015-06-26 21:01:41 @PikFan ...oh, some anon made it 2015-06-26 21:01:48 @PikFan just a month after we went independent 2015-06-26 21:02:30 Pi yes i am a thing again 2015-06-26 21:02:55 @PikFan Pi: where have you been all this time 2015-06-26 21:03:04 @PikFan Espyo: I'll go ahead and start removing pages 2015-06-26 21:03:17 @Espyo hm 2015-06-26 21:03:49 Pi PikFan: studying 2015-06-26 21:04:16 @PikFan for college? 2015-06-26 21:04:33 Pi It's called university here, though I'd guess it's the same deal. 2015-06-26 21:04:46 @PikFan I wanted to type university but eh 2015-06-26 21:06:15 @PikFan Espyo: why is {{f:NoReal}} even still a thing 2015-06-26 21:06:15 Testyo "NoReal" template = http://www.pikminfanon.com/index.php?title=Template:NoReal 2015-06-26 21:06:21 @PikFan first page I go to, that's there 2015-06-26 21:06:24 Testyo [Fanon RC] Category talk:Fanon by PikFan23 (+237) http://www.pikminfanon.com/index.php?title=Category_talk:Fanon&curid=9664&diff=48484&oldid=48483 2015-06-26 21:06:25 Testyo [Fanon RC] 20,000 Pokos by PikFan23 (-12 m) http://www.pikminfanon.com/index.php?title=20,000_Pokos&curid=6719&diff=48485&oldid=34490 2015-06-26 21:07:29 @PikFan agh 2015-06-26 21:07:38 @PikFan seeing user signatures on these pages, too 2015-06-26 21:07:49 @PikFan ...may as well just go through every page on the wiki 2015-06-26 21:07:53 @PikFan this should be fun 2015-06-26 21:08:01 @Espyo hm, wasn't that made when I announced the engine? 2015-06-26 21:08:02 @PikFan but I should shut up and get to work 2015-06-26 21:08:10 @PikFan no 2015-06-26 21:08:13 @PikFan much older 2015-06-26 21:08:15 @Espyo the prospect of labeling games that are (would be) real and the ones that aren't 2015-06-26 21:08:39 @PikFan the canon games just redirect to Pikipedia, so no need to 2015-06-26 21:08:57 @PikFan [[f:Pikmin 2]] 2015-06-26 21:08:57 Testyo "Pikmin_2" article = http://www.pikminfanon.com/index.php?title=Pikmin_2 2015-06-26 21:11:26 Testyo [Fanon RC] Acid Armor by PikFan23 (-12) http://www.pikminfanon.com/index.php?title=Acid_Armor&curid=17&diff=48486&oldid=40 2015-06-26 21:11:26 Testyo [Fanon RC] Acid Armor by PikFan23 (-28 m No sigs on articles.) http://www.pikminfanon.com/index.php?title=Acid_Armor&curid=17&diff=48487&oldid=48486 2015-06-26 21:11:26 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-26 21:11:46 Pi holy crap 2015-06-26 21:11:54 @PikFan ? 2015-06-26 21:12:06 Pi I've never seen that functionality before 2015-06-26 21:12:15 @PikFan meet Testyo 2015-06-26 21:12:16 Testyo mine implies that they all go through a preliminary stage of "just type whatever", and then get cleaned up myself 2015-06-26 21:12:24 Pi [[Submerged Castle]] 2015-06-26 21:12:25 Testyo "Submerged_Castle" article = http://www.pikminwiki.com/index.php?title=Submerged_Castle 2015-06-26 21:12:30 Pi holy crap 2015-06-26 21:12:48 Pi I've known about its excellence before, but this is amazing 2015-06-26 21:12:56 @PikFan yeah, Testyo's pretty convenient 2015-06-26 21:12:58 Testyo so people don't think you're just some bum who is an admin for no reason and never really cheap. 2015-06-26 21:13:14 @PikFan oh, also, did Espyo mention that Pikipedia and the Pikmin wikia merged? 2015-06-26 21:13:21 Pi oh 2015-06-26 21:13:23 Pi FINALLY 2015-06-26 21:13:34 @PikFan it happened last summer 2015-06-26 21:13:41 Pi lmao I'm out of the loop 2015-06-26 21:13:50 Pi so what triggered this anyway 2015-06-26 21:14:04 @PikFan a user from Pikmin Wiki approached Espyo 2015-06-26 21:14:15 @PikFan and they wanted to discuss things 2015-06-26 21:14:30 @PikFan so they talked on skype, and Espyo convinced them to come here 2015-06-26 21:14:36 @PikFan since Pikipedia is the better host 2015-06-26 21:14:44 Pi ah 2015-06-26 21:14:55 @PikFan (by they I mean the PW admins) 2015-06-26 21:15:10 Pi so it still exists, because Wikia cannot delete it, but everyone came to the better place 2015-06-26 21:15:13 @PikFan so Espyo and J used GPBot to import all the pages and what not 2015-06-26 21:15:16 @PikFan mhm 2015-06-26 21:15:16 Pi and because Wikia sucks 2015-06-26 21:15:22 @PikFan money 2015-06-26 21:15:27 @PikFan all about the money 2015-06-26 21:15:27 Pi it's awful 2015-06-26 21:15:36 Pi Jimmy Wales is the owner of Wikia 2015-06-26 21:15:39 Pi that's the scary part 2015-06-26 21:15:53 @PikFan wikia is the dark side of wikipedia 2015-06-26 21:15:55 Pi so he owns Wikipedia and Wikia 2015-06-26 21:16:19 Pi sadly, the Harry Potter Wikia hasn't made the transition yet — but what's weird is that the Dutch version of it has 2015-06-26 21:16:27 Pi but not the English one 2015-06-26 21:16:32 Pi which is super duper weird 2015-06-26 21:16:54 @PikFan but yeah, we got everything imported, and we manually merged the articles 2015-06-26 21:17:02 Pi good on you 2015-06-26 21:17:13 @PikFan the sad thing is 2015-06-26 21:17:19 @PikFan by we I mean mostly Espyo 2015-06-26 21:17:33 @PikFan he did most of the work 2015-06-26 21:17:46 @PikFan heck, recently he made a page analyzer 2015-06-26 21:17:53 @PikFan [[User:Espyo/Pikan]] 2015-06-26 21:17:54 Testyo "User:Espyo/Pikan" article = http://www.pikminwiki.com/index.php?title=User:Espyo/Pikan 2015-06-26 21:18:19 @PikFan ...oh, I suppose I should link to the merge, haha 2015-06-26 21:18:30 @PikFan [[User:Espyo/Pikmin Wiki welcome]] 2015-06-26 21:18:31 Testyo "User:Espyo/Pikmin_Wiki_welcome" article = http://www.pikminwiki.com/index.php?title=User:Espyo/Pikmin_Wiki_welcome 2015-06-26 21:21:05 @PikFan http://www.pikminwiki.com/Brittany#Trivia 2015-06-26 21:21:11 @PikFan >Brittany's hair is not naturally pink, it's coloured. 2015-06-26 21:21:14 @PikFan uh 2015-06-26 21:21:21 @PikFan where does it say that? 2015-06-26 21:21:35 @PikFan I'm thinking that's not real 2015-06-26 21:21:41 Pi Why does it need to be in a trivia section? Why are there trivia sections? 2015-06-26 21:22:01 @PikFan http://www.pikminwiki.com/Pikipedia:Policy#Trivia 2015-06-26 21:22:53 Pi Ah, okay. 2015-06-26 21:23:29 @PikFan yeah, Espyo also expanded the policy a great deal 2015-06-26 21:24:16 Pi amazing 2015-06-26 21:24:21 Pi no that was not sarcasm 2015-06-26 21:24:28 @PikFan heh 2015-06-26 21:24:29 Pi either way, I need to get some shuteye now 2015-06-26 21:24:38 Pi because I am tired 2015-06-26 21:24:45 @PikFan will you be back later? 2015-06-26 21:24:54 Pi yes, will be here for the summer 2015-06-26 21:24:58 @PikFan sweet 2015-06-26 21:25:03 @PikFan bye 2015-06-26 21:25:11 Pi seeya 2015-06-26 21:25:47 -- Pi is now known as Pidgey|SLP 2015-06-26 21:31:33 Testyo [Fanon RC] Acidic Bulblax by PikFan23 (-140 m) http://www.pikminfanon.com/index.php?title=Acidic_Bulblax&curid=18&diff=48489&oldid=27118 2015-06-26 21:31:33 Testyo [Fanon RC] Acidic Dirigibug by PikFan23 (-123 m) http://www.pikminfanon.com/index.php?title=Acidic_Dirigibug&curid=385&diff=48490&oldid=1868 2015-06-26 21:31:34 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-26 21:33:29 @PikFan oh 2015-06-26 21:33:44 @PikFan so last night, I came up with an idea for a new fanfic 2015-06-26 21:33:47 @Espyo so many mentions of my name 2015-06-26 21:34:14 @Espyo I can barely remember you Pi 2015-06-26 21:34:15 @PikFan it'll be called Pikmin: The Lost Days, and it will detail what happens to the Pikmin between the first two games 2015-06-26 21:34:20 @Espyo so sorry if I didn't let you in on the loop 2015-06-26 21:35:21 @Espyo oh, night Pi 2015-06-26 21:35:29 @Espyo hm, interesting 2015-06-26 21:35:33 @Espyo you're having fun with these fics 2015-06-26 21:35:37 @PikFan I am 2015-06-26 21:36:23 @PikFan Espyo, did I forget to mention anything? I think I got most of the big stuff 2015-06-26 21:36:35 Testyo [Fanon RC] Acidious Armored Cannon B... by PikFan23 (-107) http://www.pikminfanon.com/index.php?title=Acidious_Armored_Cannon_Beetle&curid=348&diff=48492&oldid=31247 2015-06-26 21:36:35 Testyo [Fanon RC] Acidwisp by PikFan23 (-142 m) http://www.pikminfanon.com/index.php?title=Acidwisp&curid=387&diff=48493&oldid=1889 2015-06-26 21:36:35 @Espyo I think so too 2015-06-26 21:36:38 @Espyo uh, the engine? 2015-06-26 21:36:43 @PikFan ...drat 2015-06-26 21:36:52 @PikFan speaking of, how's it going? 2015-06-26 21:36:59 @Espyo actually making progress lately 2015-06-26 21:37:02 @PikFan yay 2015-06-26 21:37:05 @Espyo I think the enemy and Pikmin AI is all done 2015-06-26 21:37:09 @Espyo much more solid and flexible 2015-06-26 21:37:19 @Espyo (those two should be contradicting, but aren't :| ) 2015-06-26 21:37:30 @PikFan heh 2015-06-26 21:37:34 @Espyo now I have to revamp the leader AI too 2015-06-26 21:37:36 @Espyo then some other objects 2015-06-26 21:37:44 @Espyo and then I can move on to something else, like the music, or gates 2015-06-26 21:38:05 @PikFan I see 2015-06-26 21:38:27 @PikFan hey, question 2015-06-26 21:38:32 @PikFan how will caves work? 2015-06-26 21:43:07 @PikFan ...oh, looks like I need to go 2015-06-26 21:43:08 @PikFan bye 2015-06-26 21:43:10 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-06-26 21:46:38 Testyo [Fanon RC] Acidwraith by PikFan23 (-117 m) http://www.pikminfanon.com/index.php?title=Acidwraith&curid=388&diff=48494&oldid=38905 2015-06-26 22:00:00 --> Yoshi2_ (Yoshi2@0339-2tq1-ri50-8-a206-72e7-p3gv-1064.ipv4dyn.netcologne.de) has joined #pikipedia 2015-06-26 22:03:13 <-- Yoshi2 (Yoshi2@7265-6gq3-mvd6-4-55n9-97fr-kwyg-r779.ipv6dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-26 22:06:44 Testyo [Fanon RC] Category talk:Fanon by LoganPikmin (+107) http://www.pikminfanon.com/index.php?title=Category_talk:Fanon&curid=9664&diff=48495&oldid=48484 2015-06-26 22:28:37 <-- Yoshi2_ (Yoshi2@0339-2tq1-ri50-8-a206-72e7-p3gv-1064.ipv4dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-26 22:31:52 Testyo [Fanon RC] User talk:Peach Bulborb by LoganPikmin (+260 /* LoganPikmin Joining the Guild Of Bulborbs */ new section) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=48496&oldid=48419 2015-06-26 22:36:53 Testyo [Fanon RC] Talk:Black Pikmin (Pikmin... by LoganPikmin (+116 N Created page with "Can I adopt this page? ~~~~") http://www.pikminfanon.com/index.php?title=Talk:Black_Pikmin_(Pikmin_3)&curid=9665&diff=48497&oldid=0 2015-06-26 22:39:45 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-26 22:41:55 Testyo [Fanon RC] Cyan Pikmin by LoganPikmin (+34 /* Games */) http://www.pikminfanon.com/index.php?title=Cyan_Pikmin&curid=989&diff=48498&oldid=47814 2015-06-26 22:46:56 Testyo [Fanon RC] User:LoganPikmin by LoganPikmin (+14) http://www.pikminfanon.com/index.php?title=User:LoganPikmin&curid=9547&diff=48499&oldid=48401 2015-06-26 22:51:58 Testyo [Fanon RC] User:LoganPikmin by LoganPikmin (+30) http://www.pikminfanon.com/index.php?title=User:LoganPikmin&curid=9547&diff=48500&oldid=48499 2015-06-26 22:51:59 Testyo [Fanon RC] User:LoganPikmin by LoganPikmin (+25) http://www.pikminfanon.com/index.php?title=User:LoganPikmin&curid=9547&diff=48501&oldid=48500 2015-06-26 23:07:04 Testyo [Fanon RC] PikminFanon talk:Guild of... by LoganPikmin (+123 /* Apprentice Requests */) http://www.pikminfanon.com/index.php?title=PikminFanon_talk:Guild_of_Bulborbs/Working_Wild&curid=8134&diff=48502&oldid=47197 2015-06-26 23:12:04 Testyo [Pikipedia RC] File:RealLifeFiddlehead.jpg uploaded by Scruffy (A real-life example of a fiddlehead.) http://www.pikminwiki.com/index.php?title=File:RealLifeFiddlehead.jpg 2015-06-26 23:17:06 Testyo [Pikipedia RC] Plants and fungi by Scruffy (+367 Added Margaret and Fiddlehead. Plus cleanup.) http://www.pikminwiki.com/index.php?title=Plants_and_fungi&curid=16479&diff=150934&oldid=150833 2015-06-26 23:22:09 Testyo [Fanon RC] User talk:RuddieTheRedBul... by LoganPikmin (+94 /* Master Red Bulborb? */ new section) http://www.pikminfanon.com/index.php?title=User_talk:RuddieTheRedBulborb&curid=8884&diff=48503&oldid=48418 2015-06-27 00:02:12 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-27 00:02:17 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-27 00:51:35 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-27 01:41:03 -- Pidgey|SLP is now known as Pidgey 2015-06-27 02:07:16 <-- Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: z) 2015-06-27 03:40:02 --> Bulbminlead101 (Mibbit@03.48.27.0.res-cmts.eph5.ptd.net) has joined #pikipedia 2015-06-27 03:40:27 <-- Bulbminlead101 (Mibbit@03.48.27.0.res-cmts.eph5.ptd.net) has quit (Client Quit) 2015-06-27 03:52:07 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-27 05:26:49 --> Spark (sparkles@2602:306:3717:unms:ogvm:utpr:utwy:lpqw) has joined #pikipedia 2015-06-27 05:49:03 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-27 06:09:16 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-27 06:12:28 <-- Spark (sparkles@2602:306:3717:unms:ogvm:utpr:utwy:lpqw) has quit (Quit: Tidings.) 2015-06-27 08:53:16 --> Yoshi2 (Yoshi2@8908-3ux9-abhy-2-5ag5-7n18-ia54-ple.ipv8dyn.netcologne.de) has joined #pikipedia 2015-06-27 09:50:08 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-27 11:35:21 --> Yoshi2_ (Yoshi2@1527-9ne2-l1eq-6-n25d-2x3w-vxd4-76o1.ipv5dyn.netcologne.de) has joined #pikipedia 2015-06-27 11:38:19 <-- Yoshi2 (Yoshi2@8908-3ux9-abhy-2-5ag5-7n18-ia54-ple.ipv8dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-27 11:51:55 --> Yoshi2__ (Yoshi2@2001:4dd3:c0bc:h:llrg:kkhv:phnt:shkh) has joined #pikipedia 2015-06-27 11:54:49 <-- Yoshi2_ (Yoshi2@1527-9ne2-l1eq-6-n25d-2x3w-vxd4-76o1.ipv5dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-27 11:56:45 --> Yoshi2_ (Yoshi2@satz-96-94-689-621.netcologne.de) has joined #pikipedia 2015-06-27 11:59:13 <-- Yoshi2__ (Yoshi2@2001:4dd3:c0bc:h:llrg:kkhv:phnt:shkh) has quit (Ping timeout: 252 seconds) 2015-06-27 12:00:27 --> Yoshi2 (Yoshi2@2001:4dd3:c0c4:l:yrjz:xvju:ispi:vnwq) has joined #pikipedia 2015-06-27 12:01:25 <-- Yoshi2_ (Yoshi2@satz-96-94-689-621.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-27 12:38:58 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-27 12:38:59 Testyo Hey everyone! 2015-06-27 12:39:42 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-27 12:39:42 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-27 12:40:16 Yoshi2 hey Espyo & Testyo 2015-06-27 12:40:17 Testyo night to see if they match 2015-06-27 12:40:56 Yoshi2 I noticed that I wrote schedule as "shedule" 2015-06-27 12:41:01 * Yoshi2 shudders 2015-06-27 12:44:34 @Espyo hi 2015-06-27 12:44:37 @Espyo eh, happens 2015-06-27 12:49:59 Yoshi2 yup, though at that point I actually thought schedule was written shedule 2015-06-27 12:52:16 @Espyo hmmm... 2015-06-27 14:14:09 --> Yoshi2_ (Yoshi2@7760-6pi8-y546-9-g68p-1v4x-xbg3-38z4.ipv1dyn.netcologne.de) has joined #pikipedia 2015-06-27 14:15:04 <-- Yoshi2 (Yoshi2@2001:4dd3:c0c4:l:yrjz:xvju:ispi:vnwq) has quit (Ping timeout: 252 seconds) 2015-06-27 15:33:24 --> Yoshi2 (Yoshi2@2001:4dd3:c192:i:supw:wtkh:wggk:uqns) has joined #pikipedia 2015-06-27 15:35:55 <-- Yoshi2_ (Yoshi2@7760-6pi8-y546-9-g68p-1v4x-xbg3-38z4.ipv1dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-27 16:01:45 Testyo woah from other articles, sure 2015-06-27 16:02:58 Yoshi2 Testyo: :D 2015-06-27 16:02:59 Testyo or we could be evil and keep it all to it, I think you're overcomplicating 2015-06-27 17:22:26 --> Yoshi2_ (Yoshi2@ymwf-25-20-849-761.netcologne.de) has joined #pikipedia 2015-06-27 17:23:43 <-- Yoshi2 (Yoshi2@2001:4dd3:c192:i:supw:wtkh:wggk:uqns) has quit (Ping timeout: 252 seconds) 2015-06-27 17:26:02 --> Yoshi2__ (Yoshi2@2001:4dd3:c1f5:g:omop:xvop:xxzx:lsrv) has joined #pikipedia 2015-06-27 17:29:13 <-- Yoshi2_ (Yoshi2@ymwf-25-20-849-761.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-06-27 17:45:31 --> Yoshi2_ (Yoshi2@2001:4dd3:c204:g:omtz:igyk:inun:lnhg) has joined #pikipedia 2015-06-27 17:47:55 <-- Yoshi2__ (Yoshi2@2001:4dd3:c1f5:g:omop:xvop:xxzx:lsrv) has quit (Ping timeout: 252 seconds) 2015-06-27 18:01:40 --> Yoshi2 (Yoshi2@0334-7zh1-w595-8-x87c-8q7i-ool0-64e8.ipv4dyn.netcologne.de) has joined #pikipedia 2015-06-27 18:03:52 <-- Yoshi2_ (Yoshi2@2001:4dd3:c204:g:omtz:igyk:inun:lnhg) has quit (Ping timeout: 252 seconds) 2015-06-27 20:02:48 Testyo [Fanon RC] User talk:Bulbminlead101 by LoganPikmin (+133 /* Some Stuff */) http://www.pikminfanon.com/index.php?title=User_talk:Bulbminlead101&curid=9328&diff=48525&oldid=48519 2015-06-27 20:18:06 Testyo [Fanon RC] Spikecrawler by LoganPikmin (+87) http://www.pikminfanon.com/index.php?title=Spikecrawler&curid=8991&diff=48526&oldid=45181 2015-06-27 22:12:28 <-- T3 (T3@298-257-224-48.cable.teksavvy.com) has quit (Ping timeout: 252 seconds) 2015-06-27 22:18:36 <-- Yoshi2 (Yoshi2@0334-7zh1-w595-8-x87c-8q7i-ool0-64e8.ipv4dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-27 22:35:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-27 22:49:26 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-27 22:49:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-27 22:54:36 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-27 23:03:33 @Espyo oh GOD NO 2015-06-27 23:03:36 @Espyo I just did some code cleanup 2015-06-27 23:03:38 @Espyo SOMEHOW 2015-06-27 23:03:42 @Espyo I made the Pikmin attack the leaders 2015-06-27 23:03:46 Testyo I think it *they're 2015-06-27 23:05:40 UltraMario ono 2015-06-27 23:13:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-28 00:21:33 Testyo [Fanon RC] One Pikmin by Piki1 (-4 m /* Gameplay and Mechanics */ ) http://www.pikminfanon.com/index.php?title=One_Pikmin&curid=7705&diff=48527&oldid=43012 2015-06-28 00:21:33 Testyo [Fanon RC] One Pikmin/Story by Piki1 (-5 m /* Prologue */ ) http://www.pikminfanon.com/index.php?title=One_Pikmin/Story&curid=7732&diff=48528&oldid=41231 2015-06-28 00:26:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 01:07:47 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-28 01:16:49 Testyo [Fanon RC] User account Knyx428 created http://www.pikminfanon.com/index.php?title=User:Knyx428 2015-06-28 01:45:28 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-28 01:45:32 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-28 07:16:08 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Read error: Connection reset by peer) 2015-06-28 08:03:53 --> Yoshi2 (Yoshi2@2001:4dd3:c42b:y:vjwi:qiyz:xjsr:mkut) has joined #pikipedia 2015-06-28 08:28:50 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2015-06-28 08:29:15 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-28 09:23:42 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-28 12:38:35 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-28 12:38:35 Testyo AFTERNOON EVERYONE! 2015-06-28 12:39:30 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-28 12:39:30 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-28 12:46:46 @J oh dear 2015-06-28 12:47:26 Yoshi2 hiho Espyo & Testyo 2015-06-28 12:47:27 Testyo J EDITING AT 0:39 IN THE LAST ONE REALLY WELL 2015-06-28 13:00:26 @Espyo hi 2015-06-28 13:26:25 @J what 2015-06-28 13:28:09 Yoshi2 don't edit at 0:39 2015-06-28 13:43:05 @J I'll try not to 2015-06-28 13:49:26 Yoshi2 I'm happy about almost being finished with my C homework this week 2015-06-28 13:59:01 Yoshi2 done! 2015-06-28 13:59:46 Yoshi2 time spent on the code that takes input, verifies it and shows output, plus executes the correct code based on the input: 5 hours 2015-06-28 14:00:03 Yoshi2 time spent writing the algorithm that was asked for in the homework: 2 hours at most 2015-06-28 14:14:34 @Espyo hehe 2015-06-28 14:55:24 @Espyo you guys never replied 2015-06-28 14:55:38 @Espyo I changed the Pikmin type navbox from just listing types to listing everything Pikmin-related 2015-06-28 14:55:38 @Espyo http://www.pikminwiki.com/Pikipedia:Sandbox 2015-06-28 14:55:40 @Espyo thoughts? 2015-06-28 15:04:43 Testyo [PIKIPEDIA RC] FILE:DESERTAEONIUM.JPG UPLOADED BY SCRUFFY (AN EXAMPLE OF ''AEONIUM'' (THE SPIKY SUCCULENTS) IN A DESERT ENVIRONMENT, AS SEE...) HTTP://WWW.PIKMINWIKI.COM/INDEX.PHP?TITLE=FILE:DESERTAEONIUM.JPG 2015-06-28 15:04:43 Testyo [PIKIPEDIA RC] FILE:BARRELCACTUS.JPG UPLOADED BY SCRUFFY (AN EXAMPLE OF A BARREL CACTUS, LIKE THE ONES FOUND IN THE [[FORMIDABLE OAK]].) HTTP://WWW.PIKMINWIKI.COM/INDEX.PHP?TITLE=FILE:BARRELCACTUS.JPG 2015-06-28 15:04:44 Testyo [PIKIPEDIA RC] (PLUS SOME OTHER CHANGES, THAT HAVE BEEN OMITTED TO AVOID FLOODING.) HTTP://WWW.PIKMINWIKI.COM/INDEX.PHP?TITLE=SPECIAL:RECENTCHANGES 2015-06-28 15:04:54 @Espyo heh 2015-06-28 15:05:19 Yoshi2 testyo, you messed up 2015-06-28 15:05:20 Testyo I JUST MADE A SOUND RIGHT 2015-06-28 15:05:25 Yoshi2 Testyo: stop 2015-06-28 15:05:25 Testyo THERE IS NO GAME IN PROGRESS RIGHT NOW! 2015-06-28 15:05:32 Yoshi2 ok 2015-06-28 15:05:35 Yoshi2 that is weird 2015-06-28 15:06:02 @Espyo what is? 2015-06-28 15:06:08 Yoshi2 Espyo: why is testyo in capslock mode again? 2015-06-28 15:06:09 Testyo IS IT MEANT NOT THERE 2015-06-28 15:06:18 Yoshi2 is it that day again? 2015-06-28 15:06:47 @Espyo mhm 2015-06-28 15:07:03 @Espyo though it kinda looks like this day was dropped completely 2015-06-28 15:07:07 @Espyo there are two days 2015-06-28 15:07:13 @Espyo October 22nd, the official 2015-06-28 15:07:20 @Espyo and June 28th, because of Billy May's death 2015-06-28 15:07:23 @Espyo but it looks like they dropped this one 2015-06-28 15:08:14 Yoshi2 I see 2015-06-28 15:08:24 Yoshi2 it's weird to have two capslock days 2015-06-28 15:09:43 @Espyo hm, yeah 2015-06-28 15:09:45 Testyo [PIKIPEDIA RC] PLANTS AND FUNGI BY SCRUFFY (+541 /* CACTI/SUCCULENTS */) HTTP://WWW.PIKMINWIKI.COM/INDEX.PHP?TITLE=PLANTS_AND_FUNGI&CURID=16479&DIFF=150958&OLDID=150946 2015-06-28 15:24:50 Testyo [PIKIPEDIA RC] FILE:VALLEYOFREPOSETREES.PNG UPLOADED BY SCRUFFY (THE SEAMLESS TEXTURE FOR THE BACKGROUND OF THE [[VALLEY OF REPOSE]].) HTTP://WWW.PIKMINWIKI.COM/INDEX.PHP?TITLE=FILE:VALLEYOFREPOSETREES.PNG 2015-06-28 15:39:55 Testyo [PIKIPEDIA RC] PLANTS AND FUNGI BY SCRUFFY (+1105 /* UNIDENTIFIED PLANTS & FUNGI */ ADDED TREES.) HTTP://WWW.PIKMINWIKI.COM/INDEX.PHP?TITLE=PLANTS_AND_FUNGI&CURID=16479&DIFF=150960&OLDID=150958 2015-06-28 15:45:23 Testyo HI K 2015-06-28 15:46:13 Yoshi2 k 2015-06-28 15:48:10 --> Yoshi2_ (Yoshi2@2001:4dd3:c720:y:ugi:jzxw:pvug:gpuk) has joined #pikipedia 2015-06-28 15:50:40 <-- Yoshi2 (Yoshi2@2001:4dd3:c42b:y:vjwi:qiyz:xjsr:mkut) has quit (Ping timeout: 252 seconds) 2015-06-28 17:01:08 --> Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-06-28 17:05:26 @Espyo http://www.niwanetwork.org/forums/index.php?action=profile;area=showposts;u=78 what got into them? 2015-06-28 17:07:32 Yoshi2_ "Thanks for the input. I've decided not to start it. " in a thread about whether to start Pikmin 2015-06-28 17:08:12 @Espyo I don't even 2015-06-28 17:18:23 Yoshi2_ I just read through the thread 2015-06-28 17:18:34 Yoshi2_ most of the posts say "yes, you should start it" 2015-06-28 17:19:16 @Espyo I was actually on about the fact that they just decided to post around 30 posts yesterday 2015-06-28 17:19:19 @Espyo all at once 2015-06-28 17:19:25 @Espyo on threads that haven't been active for years 2015-06-28 17:19:45 Yoshi2_ oh 2015-06-28 17:19:49 Yoshi2_ I 2015-06-28 17:19:52 Yoshi2_ wow 2015-06-28 17:19:58 Yoshi2_ I have no words for this 2015-06-28 17:20:23 Yoshi2_ 5 years after asking whether to start pikmin or not, they say "I've decided not to start it." 2015-06-28 17:20:39 Testyo [PIKIPEDIA RC] USER ACCOUNT PIKMINJAMIE CREATED HTTP://WWW.PIKMINWIKI.COM/INDEX.PHP?TITLE=USER:PIKMINJAMIE 2015-06-28 17:20:39 Testyo [PIKIPEDIA RC] USER:PIKMINJAMIE BY PIKMINJAMIE (+312 N YOUTUBE CHANNEL: HTTP://YOUTUBE.COM/555IHAVENOFRIENDS) HTTP://WWW.PIKMINWIKI.COM/INDEX.PHP?TITLE=USER:PIKMINJAMIE&CURID=19102&DIFF=150962&OLDID=0 2015-06-28 17:22:30 Yoshi2_ in an e3 announcement thread for pikmin 3: "Looks really fun" 2015-06-28 17:22:41 Yoshi2_ it must be great to live in the past 2015-06-28 17:25:50 @Espyo hehehe 2015-06-28 17:25:59 @Espyo eh, we'll be living the same when Pikmin 4 is announced 2015-06-28 17:28:16 --> Pikminjamie (Mibbit@12-4-059-60.dyn.iinet.net.au) has joined #pikipedia 2015-06-28 17:28:34 @Espyo hi 2015-06-28 17:28:43 Pikminjamie heyo 2015-06-28 17:28:49 @Espyo I see you've created an account 2015-06-28 17:28:50 @Espyo welcome! 2015-06-28 17:29:02 Pikminjamie thanks 2015-06-28 17:31:59 @Espyo can't believe I was actually having fun cleaning up the engine's code with cppcheck 2015-06-28 17:32:07 @Espyo this was supposed to be more boring than it was... 2015-06-28 17:32:27 Pikminjamie haha 2015-06-28 17:39:21 @J [17:05:26] @Espyo http://www.niwanetwork.org/forums/index.php?action=profile;area=showposts;u=78 what got into them? 2015-06-28 17:39:25 @J yeah, I got like 10 emails 2015-06-28 17:39:30 @Espyo just 10? 2015-06-28 17:39:53 @Espyo hm, I should probably set up e-mail notifications too instead of checking the new posts page every day 2015-06-28 17:40:21 @J it only emails for watched threads 2015-06-28 17:40:25 @J not sure why they were watched 2015-06-28 17:40:26 @Espyo oh 2015-06-28 17:40:29 @J maybe I posted at some point 2015-06-28 17:40:32 @Espyo you might've posted on them 2015-06-28 17:40:36 Pi hi J 2015-06-28 17:40:51 Pi upgrade your computer 2015-06-28 17:41:07 @J oh, hi 2015-06-28 17:41:23 @J I noticed you were here the other day but I wasn't around 2015-06-28 17:41:29 @J it's been quite a while 2015-06-28 17:41:32 Pi it has 2015-06-28 17:41:38 Pi I'll be around for the summer 2015-06-28 17:43:36 @J oh, I forgot it was summer 2015-06-28 17:43:41 @J *never realised 2015-06-28 17:44:15 Pi I take it the weather isn't screaming summer in ... wherever you are 2015-06-28 17:44:31 Pi I do know it's in the United Kingdom 2015-06-28 17:44:42 @Espyo the weather doesn't look like it's going anywhere, anywhere 2015-06-28 17:46:30 <-- Pikminjamie (Mibbit@12-4-059-60.dyn.iinet.net.au) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-28 19:21:01 Testyo YEAH, KEEP THE GET THE WIKI TO THE STANDARD THAT'S BEEN SOUGHT AFTER FOR A LONG TIME NOW 2015-06-28 19:21:48 Pi qft 2015-06-28 21:23:33 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 21:51:53 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-28 21:54:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-28 22:06:43 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 22:07:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-28 22:07:59 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 22:11:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-28 22:14:05 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 22:16:05 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-28 22:23:57 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 22:38:57 <-- Yoshi2_ (Yoshi2@2001:4dd3:c720:y:ugi:jzxw:pvug:gpuk) has quit (Quit: Leaving) 2015-06-28 22:47:35 Testyo [FANON RC] TOPIC:HOW TO DELETE UNWAN... BY RAGNOROK X (+182 N CREATED PAGE WITH "{{FORUMHEADER|ASK LOUIE}} UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 23:24:38 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-28 23:27:39 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-28 23:28:18 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 23:35:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-28 23:38:14 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 23:41:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-28 23:42:58 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 23:48:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-28 23:49:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 23:54:40 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-28 23:58:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-28 23:59:25 -- Pi is now known as Pi_plus_1 2015-06-29 00:03:39 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-29 00:04:17 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-29 00:26:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-29 00:48:00 -- Pi_plus_1 is now known as Pi 2015-06-29 00:53:44 <-- Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: sleep) 2015-06-29 02:49:10 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 03:23:19 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-29 03:30:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 03:30:55 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-29 03:40:57 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 03:41:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-29 03:42:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 03:52:09 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-29 04:00:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 04:00:40 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Remote host closed the connection) 2015-06-29 04:12:58 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 04:13:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-29 04:27:25 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 04:34:47 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-29 04:35:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 05:14:25 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-06-29 05:19:52 En_Passant Anyone here? 2015-06-29 05:20:31 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-29 05:21:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 05:25:24 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-29 05:33:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-29 05:36:36 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 05:38:46 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-29 05:39:18 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 05:45:12 --> Ringtailed-Fox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has joined #pikipedia 2015-06-29 05:48:45 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 272 seconds) 2015-06-29 05:51:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-29 05:52:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 05:52:17 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-29 05:56:47 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 06:04:01 <-- Ringtailed-Fox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has quit (Read error: No route to host) 2015-06-29 06:04:16 --> Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-06-29 06:22:34 --> UMisstillalive (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-29 06:22:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UMisstillalive))) 2015-06-29 06:23:00 -- UMisstillalive is now known as UltraMario 2015-06-29 06:42:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-29 10:11:07 --> Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-06-29 11:37:10 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-29 17:03:17 --> Yoshi2 (Yoshi2@7265-1ux3-xem9-9-45eq-2503-p1f6-uql.ipv5dyn.netcologne.de) has joined #pikipedia 2015-06-29 17:07:58 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit 2015-06-29 18:44:51 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-29 18:44:51 Testyo Greetings everyone! 2015-06-29 18:45:45 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-29 18:45:46 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-29 18:48:57 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-06-29 19:33:30 Pi Miles, when are you running Echoes during SGDQ now again? 2015-06-29 20:02:09 -- Pi is now known as Pidgey 2015-06-29 20:26:37 --> WikiGuest (Mibbit@gpw09-55.skytechbb.com) has joined #pikipedia 2015-06-29 20:27:30 WikiGuest Excuse me, but I need to ask a question, if anyone is up for it. 2015-06-29 20:28:21 Yoshi2 WikiGuest: ask away 2015-06-29 20:28:22 @Espyo I'm here 2015-06-29 20:28:24 @Espyo go right for it 2015-06-29 20:31:34 WikiGuest I used to have an account with this website. I don't remember any of my login info, and i had a slightly bad reputation (at lest i think - no one really liked me) i was wondering if i would be alowed to make a new account. I have grown, so anything i did before was from the mind of a 10 ~11 year old. 2015-06-29 20:31:58 @Espyo let me guess 2015-06-29 20:32:00 @Espyo Crystal Lucario? 2015-06-29 20:32:23 WikiGuest no, i've never heard of him/her. 2015-06-29 20:32:35 @Espyo hm 2015-06-29 20:32:37 @Espyo well, of course 2015-06-29 20:32:47 @Espyo we all acted pretty dumb when we were younger 2015-06-29 20:32:58 @Espyo but if you want a fresh start, you're welcome to re-join us 2015-06-29 20:33:25 @Espyo if you made the account on pikminwiki.com, then it should still be around 2015-06-29 20:33:30 @Espyo but you're welcome to create a new account 2015-06-29 20:33:39 WikiGuest Thank you Espyo. 2015-06-29 20:33:44 @Espyo you're welcome 2015-06-29 20:33:51 @Espyo and welcome to the community, again 2015-06-29 20:34:32 WikiGuest :) i'll be back (maybe) i have to create my account. 2015-06-29 20:34:41 @Espyo all right 2015-06-29 20:34:46 <-- WikiGuest (Mibbit@gpw09-55.skytechbb.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-29 20:40:23 Testyo [Fanon RC] User talk:PikFan23 by Piki1 (+395 /* It's Been A While */ ) http://www.pikminfanon.com/index.php?title=User_talk:PikFan23&curid=4203&diff=48538&oldid=48475 2015-06-29 20:40:23 Testyo [Fanon RC] User account StarWolf created http://www.pikminfanon.com/index.php?title=User:StarWolf 2015-06-29 20:50:26 Testyo [Fanon RC] S.S Dolphin Jr. by Piki1 (+768 N Created page with "{{Pikmin:SA}} The '''S.S Dolphin Jr.''' is [[Sagittarius]]' ...) http://www.pikminfanon.com/index.php?title=S.S_Dolphin_Jr.&curid=9669&diff=48539&oldid=0 2015-06-29 20:55:28 Testyo [Fanon RC] Default pikmin sprite(blu... by Ragnorok X (-248) http://www.pikminfanon.com/index.php?title=Default_pikmin_sprite(blue)&curid=9655&diff=48540&oldid=48456 2015-06-29 21:05:31 Testyo [Fanon RC] User:StarWolf by StarWolf (+406 N Created page with "Hi~ I'm StarWolf! I did use to have an account here, but I lo...) http://www.pikminfanon.com/index.php?title=User:StarWolf&curid=9670&diff=48541&oldid=0 2015-06-29 21:15:34 Testyo [Fanon RC] User talk:StarWolf by LoganPikmin (+1573 N Created page with "{{SUBST:welcome}} Hi StarWolf nice to see old accounts being...) http://www.pikminfanon.com/index.php?title=User_talk:StarWolf&curid=9671&diff=48542&oldid=0 2015-06-29 21:23:04 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-29 21:25:35 Testyo [Pikipedia RC] User account Ajihad created http://www.pikminwiki.com/index.php?title=User:Ajihad 2015-06-29 21:25:37 Testyo [Fanon RC] Balim by Piki1 (+2774 N Created page with "{{Pikmin:SA}} '''Balim''' is the main antagonist of ''[[Pikm...) http://www.pikminfanon.com/index.php?title=Balim&curid=9672&diff=48543&oldid=0 2015-06-29 21:30:39 Testyo [Fanon RC] Garden of Sadness by Piki1 (+4 m /* Enemies */ ) http://www.pikminfanon.com/index.php?title=Garden_of_Sadness&curid=7869&diff=48544&oldid=39978 2015-06-29 21:32:47 <-- Yoshi2 (Yoshi2@7265-1ux3-xem9-9-45eq-2503-p1f6-uql.ipv5dyn.netcologne.de) has quit (Quit: Leaving) 2015-06-29 21:40:42 Testyo [Fanon RC] Snowy Land of Fear by Piki1 (-31 m /* Enemies Encountered */ ) http://www.pikminfanon.com/index.php?title=Snowy_Land_of_Fear&curid=7917&diff=48545&oldid=40096 2015-06-29 21:45:43 Testyo [Fanon RC] Pikmin RP by Ragnorok X (+3800 N Created page with "This is a simple idea with a low chance to happen. So recentl...) http://www.pikminfanon.com/index.php?title=Pikmin_RP&curid=9673&diff=48546&oldid=0 2015-06-29 21:55:47 Testyo [Fanon RC] Frozen Well by Piki1 (+1150 N Created page with "{{Pikmin:SA}} The '''Frozen Well''' is a hole encountered in...) http://www.pikminfanon.com/index.php?title=Frozen_Well&curid=9674&diff=48547&oldid=0 2015-06-29 21:55:48 Testyo [Fanon RC] User talk:PikFan23 by Ragnorok X (+207 /* Pikmin RP */ new section) http://www.pikminfanon.com/index.php?title=User_talk:PikFan23&curid=4203&diff=48548&oldid=48538 2015-06-29 21:55:48 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-29 22:00:02 --> Luke_Dragonwraith (Mibbit@lpu-91b4j173.dyn.optonline.net) has joined #pikipedia 2015-06-29 22:00:38 <-- Luke_Dragonwraith (Mibbit@lpu-91b4j173.dyn.optonline.net) has quit (Client Quit) 2015-06-29 22:30:01 Testyo it opens Uzbl using oops 2015-06-29 22:32:23 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Read error: Connection reset by peer) 2015-06-29 22:34:40 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-06-29 22:38:25 --> Spark (sparkles@2602:306:3717:sjyh:wtwh:jgrz:qwuv:wjx) has joined #pikipedia 2015-06-29 23:13:13 @J oops 2015-06-29 23:15:36 Pidgey ? 2015-06-29 23:21:11 Testyo [Fanon RC] User:StarWolf by StarWolf (+459) http://www.pikminfanon.com/index.php?title=User:StarWolf&curid=9670&diff=48552&oldid=48541 2015-06-29 23:28:59 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-29 23:28:59 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-29 23:29:05 @PikFan okay so 2015-06-29 23:29:12 @PikFan I guess people really like my story 2015-06-29 23:29:17 @PikFan because this happened http://www.pikminfanon.com/Pikmin_RP 2015-06-29 23:29:49 @PikFan I feel like I should feel happy, but at the same time I'm a bit... concerned? 2015-06-29 23:30:02 @PikFan I don't know how to describe it exactly 2015-06-29 23:30:34 @Espyo hi 2015-06-29 23:30:54 @Espyo hm, I guess you're weirded out 2015-06-29 23:31:03 @Espyo it was kind of a rushed reaction out of that person 2015-06-29 23:31:14 Testyo [Fanon RC] User talk:LoganPikmin by Peach Bulborb (+230) http://www.pikminfanon.com/index.php?title=User_talk:LoganPikmin&curid=9559&diff=48553&oldid=48523 2015-06-29 23:32:22 @PikFan yeah, that 2015-06-29 23:32:50 @PikFan oh, I published my other story, too 2015-06-29 23:33:00 @PikFan so now I've got 2 stories 2015-06-29 23:33:57 @PikFan and why did he comment on this http://www.pikminfanon.com/index.php?title=Topic:What_Is_Your_Opinion_On_The_Story_Serial%3F&diff=prev&oldid=48534 2015-06-29 23:33:58 @PikFan why 2015-06-29 23:34:05 @PikFan that story was finished ages ago 2015-06-29 23:34:10 @PikFan ah, new users... 2015-06-29 23:35:14 @PikFan http://www.pikminfanon.com/index.php?title=User_talk:LoganPikmin&diff=prev&oldid=48520 2015-06-29 23:35:15 @Espyo heh 2015-06-29 23:35:19 @PikFan no he should not be a writer 2015-06-29 23:35:34 @Espyo heh 2015-06-29 23:35:36 @Espyo oh, PikFan 2015-06-29 23:35:39 @PikFan ? 2015-06-29 23:35:42 @Espyo you probably saw the RC 2015-06-29 23:35:45 @Espyo but somebody rejoined 2015-06-29 23:35:48 @Espyo they were a member here years ago 2015-06-29 23:35:50 @Espyo apparently disliked 2015-06-29 23:35:53 @Espyo but wanted a fresh start 2015-06-29 23:35:59 @Espyo they showed up on the chatroom asking if that was okay 2015-06-29 23:36:07 @Espyo they didn't specify if they were from Pikipedia or Fanon 2015-06-29 23:36:13 @PikFan hmm, who? 2015-06-29 23:36:16 @Espyo but the recent changes then said an account was created on fanon, so... 2015-06-29 23:36:26 @Espyo "WikiGuest" when they joined here 2015-06-29 23:36:29 @Espyo so dunno 2015-06-29 23:36:35 @PikFan oh 2015-06-29 23:36:35 @Espyo but let me see the RC 2015-06-29 23:36:45 @Espyo http://www.pikminfanon.com/User:StarWolf this 2015-06-29 23:37:49 @PikFan the username seems familiar 2015-06-29 23:38:01 @PikFan idk, I'll check the logs later 2015-06-29 23:38:42 @PikFan oh, yeah 2015-06-29 23:38:54 @PikFan so I think I settled on the name for my new forest area: 2015-06-29 23:38:58 @PikFan Mystic Forest 2015-06-29 23:40:45 @PikFan now I just need to come up with all the subareas and stuff... yay 2015-06-29 23:42:48 @PikFan http://www.pikminfanon.com/index.php?title=Toasty_Breadbug&diff=prev&oldid=46280 2015-06-29 23:42:56 @PikFan yeah, doesn't exist anymore, sure 2015-06-29 23:43:05 @PikFan then bam http://www.pikminfanon.com/index.php?title=User_talk:Cheepy-Cheepy&curid=4622&diff=48550&oldid=48448 2015-06-29 23:43:08 @Espyo hm, a bit clichéd of a name 2015-06-29 23:43:24 @PikFan uh, which one? 2015-06-29 23:43:41 @Espyo "Mystic Forest" 2015-06-29 23:43:58 @PikFan hmm, why? 2015-06-29 23:44:37 @PikFan (I thought you were referring to one of the users so that's why I got confused) 2015-06-29 23:47:23 @Espyo well, because it is 2015-06-29 23:47:29 @Espyo two generic names 2015-06-29 23:47:36 @Espyo plus you can search on google and get thousands of results 2015-06-29 23:47:41 @Espyo not saying it's bad, but just pointing it out 2015-06-29 23:47:55 @PikFan any suggestions? 2015-06-29 23:51:11 <-- Spark (sparkles@2602:306:3717:sjyh:wtwh:jgrz:qwuv:wjx) has quit (Quit: Tidings.) 2015-06-29 23:52:44 --> StarWolf (Mibbit@gpw09-55.skytechbb.com) has joined #pikipedia 2015-06-29 23:52:59 @Espyo oh, hi 2015-06-29 23:53:20 @Espyo well, just use any name that doesn't use as generic of words 2015-06-29 23:53:23 @Espyo specially "Forest" 2015-06-29 23:53:31 @Espyo but again, you can KEEP it 2015-06-29 23:53:33 @PikFan Woods? 2015-06-29 23:53:38 @Espyo it's better 2015-06-29 23:53:49 @PikFan alright 2015-06-29 23:53:57 @PikFan also hi 2015-06-29 23:54:27 StarWolf hellow, PikFan and Espyo! 2015-06-29 23:56:04 StarWolf hey, am i allowed to upload pictures even if i don't use them (so that others can?) 2015-06-29 23:57:03 Pidgey I don't see why that should be an issue — this is a wiki, after all. 2015-06-29 23:57:17 @PikFan hi Pidgey 2015-06-29 23:57:30 @PikFan yeah, per Pidgey 2015-06-29 23:58:29 Pidgey hi PikFan 2015-06-29 23:58:57 BetaMaster jhi betamaster 2015-06-29 23:59:02 @PikFan :D 2015-06-29 23:59:09 Pidgey how are you 2015-06-29 23:59:16 StarWolf ok. I'm an artist (sortta i have a long way to go) but im not planing on making a game any time soon 2015-06-29 23:59:16 @PikFan tired 2015-06-29 23:59:27 @PikFan ...wait, who were you asking 2015-06-29 23:59:28 Pidgey alright 2015-06-29 23:59:32 @Espyo well, on Pikipedia, the uploaded images better be used 2015-06-29 23:59:35 Pidgey both I suppose 2015-06-29 23:59:36 @Espyo but on fanon, it's fine 2015-06-29 23:59:56 @PikFan though they should be used there, too 2015-06-30 00:00:28 StarWolf ok. oh, and thanks again, Espyo. (i was the wiki gust from before) 2015-06-30 00:00:36 @Espyo mhm, I gathered 2015-06-30 00:00:38 @Espyo you're welcome 2015-06-30 00:00:45 @Espyo yeah, they should be used if you upload them 2015-06-30 00:00:46 @Espyo but it's like 2015-06-30 00:00:51 @Espyo on Pikipedia, you better use them on a content page 2015-06-30 00:00:58 @Espyo you can only really upload five or so images for personal use 2015-06-30 00:01:14 @Espyo but on fanon, you should put them on content pages, but they can stay on your user page 2015-06-30 00:01:22 @Espyo as long as they're actually on-topic 2015-06-30 00:01:26 @PikFan the policy surrounding that is really lax 2015-06-30 00:01:31 @Espyo like, canon stuff for Pikipedia and fanon stuff for Fanon 2015-06-30 00:01:35 @Espyo then it's fine 2015-06-30 00:01:44 @Espyo but if people come around uploading 30 irrelevant images just because we allow uploads 2015-06-30 00:01:49 @Espyo that's stupid, we're not an image hoster 2015-06-30 00:03:13 StarWolf i just wanted to draw an ice/snow pikmin for people to use who may not be as good or something. 2015-06-30 00:04:16 @Espyo yeah, that's fine 2015-06-30 00:04:20 @Espyo you can probably put it on your user page 2015-06-30 00:04:40 StarWolf cool, thanks. 2015-06-30 00:04:48 @PikFan hey, question 2015-06-30 00:05:04 @PikFan this is out of nowhere, but who what was your old username? 2015-06-30 00:05:17 @PikFan *-who 2015-06-30 00:05:36 StarWolf i think it was... zoltcat...? 2015-06-30 00:05:43 @PikFan oh 2015-06-30 00:05:50 @PikFan well, hello again 2015-06-30 00:06:11 StarWolf hi 2015-06-30 00:07:15 @Espyo gotta go sleep 2015-06-30 00:07:16 @Espyo night, all 2015-06-30 00:07:40 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-30 00:07:42 @PikFan night 2015-06-30 00:07:49 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-06-30 00:07:53 StarWolf night! 2015-06-30 00:14:36 StarWolf im gonna hop off so i can focus on my picture 2015-06-30 00:14:54 @PikFan good luck with it 2015-06-30 00:16:21 StarWolf thanks, I'll make sure to pop back in to let you know it's done (if you want me to) 2015-06-30 00:16:45 @PikFan sure 2015-06-30 00:21:44 <-- StarWolf (Mibbit@gpw09-55.skytechbb.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 00:35:21 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-30 00:39:31 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-30 01:00:48 Pidgey g'night 2015-06-30 01:00:56 @PikFan night 2015-06-30 01:01:06 <-- Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: sleep) 2015-06-30 01:08:36 --> StarWolf (Mibbit@gpw09-55.skytechbb.com) has joined #pikipedia 2015-06-30 01:09:00 @PikFan welcome back 2015-06-30 01:09:47 StarWolf hey, i was able to upload the file but its to big. how do i make it smaller like in gallaries? 2015-06-30 01:10:23 @PikFan oh 2015-06-30 01:10:44 @PikFan just add |250px to the image link 2015-06-30 01:11:24 @PikFan but you want it in a gallery, right? 2015-06-30 01:12:20 StarWolf i hope it wont ruin it... the file is 7,000 x 7,500..... and sure, i guess 2015-06-30 01:13:16 @PikFan http://mibpaste.com/Npo31n 2015-06-30 01:13:29 @PikFan just copy and paste what's written there 2015-06-30 01:14:12 StarWolf cant. im useing my phone to chat seince my computer wont load mibit. 2015-06-30 01:14:36 @PikFan oh 2015-06-30 01:14:45 @PikFan do you want me to add it myself, then? 2015-06-30 01:15:19 StarWolf yes please. the file is Snow Pikmin.png 2015-06-30 01:17:33 @PikFan ugh 2015-06-30 01:17:43 StarWolf what? 2015-06-30 01:17:51 @PikFan I'm sorry, but for whatever reason, it won't let me shrink it 2015-06-30 01:18:06 @PikFan it keeps saying "invalid thumbnail" 2015-06-30 01:18:23 @PikFan I don't know why it's doing that, but that shouldn't happen 2015-06-30 01:18:31 StarWolf dangit. it said that to me to. 2015-06-30 01:19:48 @PikFan try reuploading it 2015-06-30 01:22:57 <-- StarWolf (Mibbit@gpw09-55.skytechbb.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 01:23:05 --> StarWolf (Mibbit@gpw09-55.skytechbb.com) has joined #pikipedia 2015-06-30 01:23:45 StarWolf i'm sorry but it closed out on me. what did you say? 2015-06-30 01:23:56 @PikFan try reuploading it 2015-06-30 01:24:12 StarWolf ok 2015-06-30 01:24:20 @PikFan you know how to, right? 2015-06-30 01:24:32 StarWolf ya 2015-06-30 01:24:34 @PikFan ok 2015-06-30 01:25:24 StarWolf also i said some good things about your story, but i messed the sig up. 2015-06-30 01:26:10 @PikFan hey, thanks for the input! 2015-06-30 01:26:30 @PikFan I chose "Ignis" as a play on the word "igneous" 2015-06-30 01:27:07 StarWolf idk what that means XD 2015-06-30 01:27:38 StarWolf AND THE FILE STILL DON'T WORK, yay 2015-06-30 01:27:48 @PikFan oh boy... 2015-06-30 01:28:00 @PikFan igneous - relating to or involving volcanic processes 2015-06-30 01:29:08 StarWolf OH igneous rock im not used to seeing spelled out. lol im such a derp XD 2015-06-30 01:29:23 @PikFan hehe 2015-06-30 01:30:10 StarWolf im still laughing is that bad 2015-06-30 01:30:22 @PikFan no 2015-06-30 01:30:30 @PikFan I laugh over tiny stuff all the time 2015-06-30 01:31:39 StarWolf well then thats one thing we have in common... other than the obvious 2015-06-30 01:32:05 @PikFan :P 2015-06-30 01:33:01 StarWolf theres something that happend to another fandom im in that i hope dosnt happen to pikmin. 2015-06-30 01:33:20 @PikFan what happened to it? 2015-06-30 01:34:50 StarWolf eh its not to big of a deal. some kid came in and started to spam people saying "MINECRAFT IS BETTER THAN FNAF! IT HAS ALWAYS BEEN BETER AND WILL ALWAYS BE BETTER." 2015-06-30 01:35:49 @PikFan lovely 2015-06-30 01:36:22 @PikFan I doubt that'll happen here, since Pikmin is nowhere near as popular as Minecraft and FNAF 2015-06-30 01:36:33 @PikFan though I wish it were 2015-06-30 01:36:50 StarWolf and people were like "we get it. you like minecrat better. please go away" 2015-06-30 01:37:04 @PikFan mhm 2015-06-30 01:37:18 @PikFan he's just looking to pick a fight 2015-06-30 01:37:50 StarWolf well, one of the things that gives pikmin its charm is that its under rated. 2015-06-30 01:41:19 StarWolf and yes he was probably piking a fight. 2015-06-30 01:42:19 @PikFan yeah 2015-06-30 01:44:11 StarWolf i saw the pikmin engine thing by espyo. how well does it work? 2015-06-30 01:44:27 @PikFan haven't tried it out in ages 2015-06-30 01:44:32 @PikFan but it works decently 2015-06-30 01:46:14 StarWolf it looks really cool, givin im a nerd for that stuff so people will be able to play other's games? or is that something i should ask Espyo 2015-06-30 01:52:19 StarWolf i have to get of soon, but before i do, whats the code for the "chocolate" template? 2015-06-30 01:53:03 <-- StarWolf (Mibbit@gpw09-55.skytechbb.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 04:38:25 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-06-30 05:26:39 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-06-30 05:26:45 Waterpikmin hello? 2015-06-30 05:26:59 Waterpikmin anyone there? 2015-06-30 05:27:56 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Client Quit) 2015-06-30 06:03:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-30 06:12:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 06:17:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-30 06:21:44 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-06-30 06:28:07 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 06:31:35 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-06-30 06:35:48 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-30 06:35:49 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Remote host closed the connection) 2015-06-30 06:36:30 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-30 06:37:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-30 07:14:00 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 08:43:44 --> Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-06-30 10:18:50 <-- Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2015-06-30 13:38:35 --> StarWolf (Mibbit@gpw09-55.skytechbb.com) has joined #pikipedia 2015-06-30 13:40:36 StarWolf hi! 2015-06-30 13:44:06 --> Yoshi2 (Yoshi2@134.61.xq.ppy) has joined #pikipedia 2015-06-30 13:55:30 <-- StarWolf (Mibbit@gpw09-55.skytechbb.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 15:38:55 <-- Yoshi2 (Yoshi2@134.61.xq.ppy) has quit (Quit: Leaving) 2015-06-30 17:27:41 --> StarWolf (Mibbit@gpw09-55.skytechbb.com) has joined #pikipedia 2015-06-30 17:30:13 <-- StarWolf (Mibbit@gpw09-55.skytechbb.com) has quit (Client Quit) 2015-06-30 18:17:50 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-30 18:31:31 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 18:33:30 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-30 18:35:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-30 18:36:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-06-30 18:36:13 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-06-30 18:36:23 --> Yoshi2 (Yoshi2@2001:4dd3:d241:v:qskq:hhkm:lkjt:mjyv) has joined #pikipedia 2015-06-30 18:46:58 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-06-30 18:46:58 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-06-30 18:48:56 @PikFan hi 2015-06-30 18:48:58 @PikFan /late 2015-06-30 18:49:51 Yoshi2 hey PikFan 2015-06-30 18:50:24 @PikFan so in cookie clicker I just got 200 prisms and now I'm making 100 quad cookies per second 2015-06-30 18:51:42 --> StarWolf (Mibbit@gpw09-55.skytechbb.com) has joined #pikipedia 2015-06-30 18:51:49 @PikFan hi 2015-06-30 18:51:54 StarWolf hi! 2015-06-30 18:52:23 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-06-30 18:52:24 Testyo Hey everyone! 2015-06-30 18:52:49 StarWolf i was actually able to get a working file uploaded for people to use! 2015-06-30 18:52:50 @PikFan and suddenly lots of people appear 2015-06-30 18:52:55 @PikFan oh, good 2015-06-30 18:53:10 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-06-30 18:53:10 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-06-30 18:53:39 @PikFan I'M MAKING QUINTILLIONS OF COOKIES PER SECOND holy crap what is this 2015-06-30 18:53:43 @PikFan hi Espyo 2015-06-30 18:53:55 StarWolf it's not the pikmin i originally wanted, but it's still good. 2015-06-30 18:54:04 StarWolf oh hi Espyo 2015-06-30 18:55:49 StarWolf the file should be Wolf Pikmin.png 2015-06-30 18:56:01 @PikFan yeah, looking at it now 2015-06-30 18:56:16 Yoshi2 PikFan: it's an incremental game about making numbers go up faster? 2015-06-30 18:56:24 @PikFan yeah 2015-06-30 18:56:44 StarWolf cool! what do you think of it? 2015-06-30 18:56:51 @PikFan after nearly 2 months of semi-active playing I got 200 prisms 2015-06-30 18:56:59 @PikFan it looks good 2015-06-30 18:57:01 @PikFan oh, also 2015-06-30 18:57:12 StarWolf yes? 2015-06-30 18:57:19 @PikFan I had an idea about how to fix the other one 2015-06-30 18:57:27 Yoshi2 I used to play cookie clicker a lot, but gave up on it after a while 2015-06-30 18:57:46 StarWolf ok. im all ears 2015-06-30 18:57:51 @PikFan alright, so 2015-06-30 18:57:52 Yoshi2 does it have offline progress? 2015-06-30 18:58:13 @PikFan Yoshi2: no, sadly, though there's a debug upgrade that allows it 2015-06-30 18:58:28 @PikFan StarWolf: I'm going to delete the file then have you reupload it 2015-06-30 18:58:30 Yoshi2 :s 2015-06-30 18:58:44 @PikFan but I also need you to shrink the file because it's so huge 2015-06-30 18:58:58 StarWolf ok. I'll crop it. 2015-06-30 18:58:59 @PikFan try shrinking it to about the size of the Wolf Pikmin 2015-06-30 18:59:04 @PikFan thanks 2015-06-30 18:59:41 @Espyo hi 2015-06-30 19:00:30 StarWolf hi! 2015-06-30 19:00:41 @PikFan http://www.pikminfanon.com/index.php?title=Icey_Cavern&rcid=38403 2015-06-30 19:00:45 @PikFan >Icey 2015-06-30 19:00:46 @PikFan >e 2015-06-30 19:00:49 @PikFan sad 2015-06-30 19:01:19 @PikFan and hi 2015-06-30 19:02:30 Testyo [Fanon RC] Balim by Piki1 (0 m /* Plot */ ) http://www.pikminfanon.com/index.php?title=Balim&curid=9672&diff=48587&oldid=48543 2015-06-30 19:02:31 Testyo [Fanon RC] File:Snow Pikmin.png uploaded by PikFan23 (Deleting to make way for reupload.) http://www.pikminfanon.com/index.php?title=File:Snow_Pikmin.png 2015-06-30 19:06:11 StarWolf i'll be re-uploading it in just a moment! 2015-06-30 19:06:20 @PikFan okay 2015-06-30 19:06:26 @PikFan no rush 2015-06-30 19:07:33 Testyo [Fanon RC] Garden of Sadness by Piki1 (+8 m /* Enemies */ ) http://www.pikminfanon.com/index.php?title=Garden_of_Sadness&curid=7869&diff=48588&oldid=48544 2015-06-30 19:07:33 Testyo [Fanon RC] Desert of Depression by Piki1 (-4 m /* Enemies Encountered */ ) http://www.pikminfanon.com/index.php?title=Desert_of_Depression&curid=7920&diff=48589&oldid=48574 2015-06-30 19:07:33 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-30 19:08:49 StarWolf those names are..... sad. 2015-06-30 19:11:07 @Espyo wow they really are 2015-06-30 19:11:20 @PikFan especially for the first areas 2015-06-30 19:11:38 @PikFan Lake of Despair, Frozen Land of Fear... 2015-06-30 19:11:49 @PikFan the only one that sounds happy is Forest of Love 2015-06-30 19:12:33 StarWolf Whaaa..... i cant i just cant. whats the gane called? 2015-06-30 19:12:35 Testyo [Fanon RC] File:Snow Pikmin.png uploaded by StarWolf http://www.pikminfanon.com/index.php?title=File:Snow_Pikmin.png 2015-06-30 19:13:22 StarWolf yay! the file's ready! 2015-06-30 19:13:47 @PikFan yay, we can see it 2015-06-30 19:14:51 StarWolf it stretched but thats the only real issue. 2015-06-30 19:15:04 @PikFan mhm 2015-06-30 19:17:10 @PikFan oh yeah, I remembered 2015-06-30 19:17:16 @PikFan I need to rename that impersonator 2015-06-30 19:17:17 StarWolf yes? 2015-06-30 19:17:28 StarWolf who? 2015-06-30 19:17:36 Testyo [Fanon RC] User:StarWolf by StarWolf (+33) http://www.pikminfanon.com/index.php?title=User:StarWolf&curid=9670&diff=48592&oldid=48586 2015-06-30 19:17:36 Testyo [Fanon RC] Hocotate Files by Piki1 (+70 m /* File Locations (In Holes/Caves/Structures) */ ) http://www.pikminfanon.com/index.php?title=Hocotate_Files&curid=7889&diff=48593&oldid=40047 2015-06-30 19:17:37 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-30 19:17:50 @PikFan oh, some guy tried to impersonate me by making his username PikFan22 2015-06-30 19:19:31 StarWolf woah. why would any one do that? Two other people did that on another website im on and it got me SO MAD. 2015-06-30 19:19:43 @PikFan okay, done 2015-06-30 19:19:59 StarWolf cool. 2015-06-30 19:21:09 @PikFan yeah I don't think he will ever edit, he just did that to prank me 2015-06-30 19:22:38 Testyo [Fanon RC] User account PikFan23 created http://www.pikminfanon.com/index.php?title=User:PikFan22 2015-06-30 19:22:39 Testyo [Fanon RC] (log) User talk:PikFan22 by PikFan23 (0 Automatically moved page while renaming the user "[[User:PikFan22|PikFan22]]" to...) http://www.pikminfanon.com/index.php?title=User_talk:PikFan22&curid=9681&diff=0&oldid=0 2015-06-30 19:22:39 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-30 19:22:59 StarWolf i'm still a bit skeptical but i have a hard time trusting people. 2015-06-30 19:23:10 @PikFan yeah... 2015-06-30 19:25:24 StarWolf anyways, so i'll be able to have pitures puyt up for anyone to use for now on? 2015-06-30 19:28:29 @PikFan yep 2015-06-30 19:28:55 @PikFan if you've got other giant-sized pictures make sure to shrink them too 2015-06-30 19:29:32 StarWolf cool! and i will! theres something i wanted to ask you but had to get off before i could. 2015-06-30 19:34:22 StarWolf what do you type to get the template with the fish screaming CHOCOLATE from SpongeBob? 2015-06-30 19:37:10 @PikFan oh uh 2015-06-30 19:37:15 @PikFan sorry, was reading something 2015-06-30 19:37:45 Testyo [Fanon RC] Pikmin: Sagittarius's Adv... by Piki1 (+20 m) http://www.pikminfanon.com/index.php?title=Pikmin:_Sagittarius's_Adventure&curid=7858&diff=48598&oldid=41462 2015-06-30 19:37:46 Testyo [Fanon RC] Pikmin: Sagittarius's Adv... by Piki1 (+10 m /* Areas, Holes, Caves, and Structures */ Whoops, wrong category) http://www.pikminfanon.com/index.php?title=Pikmin:_Sagittarius's_Adventure&curid=7858&diff=48599&oldid=48598 2015-06-30 19:37:46 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-30 19:38:02 StarWolf its cool. 2015-06-30 19:39:04 @PikFan {{Chocolate}} 2015-06-30 19:39:05 Testyo "Chocolate" template = http://www.pikminwiki.com/index.php?title=Template:Chocolate 2015-06-30 19:39:38 StarWolf thanks! 2015-06-30 19:39:52 @PikFan no problem 2015-06-30 19:40:05 Yoshi2 that page contains no spongebob though D: 2015-06-30 19:42:47 StarWolf how do i get 3 sections on my talk page? 2015-06-30 19:42:47 Testyo [Fanon RC] User:StarWolf by StarWolf (-110) http://www.pikminfanon.com/index.php?title=User:StarWolf&curid=9670&diff=48601&oldid=48594 2015-06-30 19:47:15 @PikFan if people keep talking to you, you'll get 3 sections 2015-06-30 19:47:56 StarWolf ok. the 100 edits made sense. i just needed some explain 2015-06-30 19:48:00 @PikFan gaaaaaaaaaaaaaaaaaaaah 2015-06-30 19:48:02 @PikFan Espyo 2015-06-30 19:48:36 @PikFan the wiki's not working 2015-06-30 19:48:41 StarWolf *explanation 2015-06-30 19:48:46 StarWolf no! 2015-06-30 19:48:51 @PikFan fatal error 2015-06-30 19:48:59 @PikFan even though Porple said he fixed it :| 2015-06-30 19:49:36 @PikFan alright, it let me on now 2015-06-30 19:49:42 @PikFan but pages take forever to load 2015-06-30 19:49:59 @PikFan why do you do this to me fanon... 2015-06-30 19:50:13 StarWolf it hurts because it loves 2015-06-30 19:50:16 @PikFan hey, do any of you get fatal errors too? 2015-06-30 19:50:25 StarWolf nope 2015-06-30 19:50:56 @PikFan you never get a blank screen on Fanon that says Fatal error on line 220 or something like that? 2015-06-30 19:51:43 StarWolf sometimes my computer dosnt load it properly but thats it. 2015-06-30 19:51:49 @PikFan hm 2015-06-30 19:51:59 @PikFan maybe there's an issue with my network 2015-06-30 19:52:40 StarWolf were i live theres about to be a thunder storm. could wether be a factor? 2015-06-30 19:52:46 @PikFan doubtful 2015-06-30 19:52:55 @PikFan well maybe 2015-06-30 19:52:55 @PikFan idk 2015-06-30 19:54:35 StarWolf im reading the connection of the worlds article. its really good 2015-06-30 19:57:18 @PikFan oh, thanks 2015-06-30 19:57:30 @PikFan I need to detail the extra gameplay modes sometime 2015-06-30 19:58:35 StarWolf YOU MADE IT? *scrolls to the top* you did! good job! and you have a lige time to do that. 2015-06-30 19:58:43 StarWolf *life 2015-06-30 20:04:35 StarWolf why are all sprays 'Ultra'? why cant there be a 'mild' spray that has a weaker affect but costs less to make? 2015-06-30 20:06:41 @PikFan hmmm 2015-06-30 20:06:49 @PikFan that sounds like an interesting idea 2015-06-30 20:06:54 @PikFan HAHAHAHA 2015-06-30 20:06:59 @PikFan Reggie you make me laugh 2015-06-30 20:07:17 @PikFan "Look, we know that the fans want a straight Samus Aran game," he said. "We also know that the best way to launch a game like that is to surprise and delight them, to give them a launch date, in an environment like this let them play it versus what other companies do, which is to announce a project that you may not see for five, six years. 2015-06-30 20:07:19 @PikFan It’s just not the way we do things." 2015-06-30 20:07:26 @PikFan yeah, you say that 2015-06-30 20:07:31 @PikFan but then there's Zelda 2015-06-30 20:07:36 @PikFan which is coming out in 2017 2015-06-30 20:07:53 @PikFan such a hypocrite 2015-06-30 20:08:23 @PikFan also, Miyamoto is saying the Wii U failed because people didn't understand it and poor launch time 2015-06-30 20:08:32 @PikFan I agree with the former and disagree with the latter 2015-06-30 20:08:33 StarWolf heh. im slightly mad at Nintendo of America right now. i should be over it by now, but im not. 2015-06-30 20:08:55 @PikFan but Miyamoto completely overlooked something: 3rd party support 2015-06-30 20:08:55 Pi they should've just called it something else 2015-06-30 20:09:08 @PikFan yeah, exactly 2015-06-30 20:09:18 @PikFan why couldn't you call it the Wii 2 or Super Wii 2015-06-30 20:09:30 @PikFan not some weird name like Wii U 2015-06-30 20:09:41 @PikFan the name isn't the biggest issue though 2015-06-30 20:09:43 Pi I love how that was one of the big things Ninty was talking about at the E3 reveal, then everyone just ditched the console altogether 2015-06-30 20:09:54 StarWolf its sbort for "Wii Universe" 2015-06-30 20:09:59 Pi no 2015-06-30 20:10:00 @PikFan source? 2015-06-30 20:10:03 Pi it was Wii 2015-06-30 20:10:07 Pi then U, as in You 2015-06-30 20:10:20 BetaMaster I think "Wii" itself is a strange name 2015-06-30 20:10:28 StarWolf cant renember XD 2015-06-30 20:10:30 Pi PikFan: the reveal of the console at E3 2013. 2015-06-30 20:10:46 @PikFan no, I asked source at StarWolf 2015-06-30 20:10:50 @PikFan not you :P 2015-06-30 20:10:55 @PikFan but thanks anyway 2015-06-30 20:10:58 Pi Ah, fair enough. :P 2015-06-30 20:11:14 @PikFan personally I hope the NX won't be centered around a gimmick like the Wiis 2015-06-30 20:11:25 @PikFan it should be a traditional console 2015-06-30 20:11:54 @PikFan but knowing Nintendo, who likes doing things differently, will probably shove some sort of gimmick down everyone's throats 2015-06-30 20:12:27 StarWolf just nothing like the Kinect 2015-06-30 20:12:36 Pi I like the GamePad though, but apparently nobody wants to challenge conventional controlling methods 2015-06-30 20:12:40 @PikFan please no 2015-06-30 20:12:50 @PikFan I see a lot of potential in the GamePad 2015-06-30 20:12:56 @PikFan like voice control, for example 2015-06-30 20:13:10 @PikFan because there's a microphone really close to you 2015-06-30 20:13:21 StarWolf i always thought they added the toche 2015-06-30 20:13:40 Pi there were mini-games in Mario Party 6 and Mario Party 7 that used a Mic 2015-06-30 20:13:47 @PikFan hmm 2015-06-30 20:14:00 @PikFan but I meant for like system prompts 2015-06-30 20:14:03 Pi I own two of them because I own both MP6 and MP7 2015-06-30 20:14:04 StarWolf *touch screen to fit in with the tablets and stuff 2015-06-30 20:14:08 @PikFan like how you do on Xbox 2015-06-30 20:14:24 @PikFan but of course, you wouldn't have to do it 2015-06-30 20:14:27 @PikFan also, another thing 2015-06-30 20:14:47 @PikFan if Nintendo had made their hardware powerful enough, you should theoretically be able to run two apps at once 2015-06-30 20:14:56 @PikFan one on the TV, another on the GamePad 2015-06-30 20:15:19 StarWolf that'd make my life so much easier 2015-06-30 20:15:44 Pi I'd also have liked it if TVii was a thing they actually cared about 2015-06-30 20:15:47 Pi 'cause it's gone for me 2015-06-30 20:15:52 @PikFan I disliked how you'd be forced to close the game you're in so that you could go to system settings 2015-06-30 20:16:01 @PikFan yeah, nobody uses TVii 2015-06-30 20:16:03 Pi because oh no it's Europe you can't justify the needs of everyone 2015-06-30 20:16:09 @PikFan they barely advertised that 2015-06-30 20:16:09 Pi even in America? 2015-06-30 20:16:14 @PikFan nope 2015-06-30 20:16:18 @PikFan nobody talks about it 2015-06-30 20:16:19 Pi lmao 2015-06-30 20:16:36 @PikFan it's just... nonexistent 2015-06-30 20:17:11 @PikFan I haven't used Miiverse much, but it looks like people enjoy it 2015-06-30 20:17:25 Pi Memeverse is great 2015-06-30 20:17:37 @PikFan yay puns :D 2015-06-30 20:18:05 @PikFan Nintendo needs to update their online services though 2015-06-30 20:18:10 Yoshi2 I love the art in the Japanese miiverse 2015-06-30 20:18:11 @PikFan it needs to be much more seamless 2015-06-30 20:18:15 Pi one of my favourite people always go to a game and inspect the water and post a screenshot of it 2015-06-30 20:18:17 Pi saying 2015-06-30 20:18:21 Pi "that's some nice water" 2015-06-30 20:18:31 @PikFan TOO MUCH WATER 2015-06-30 20:18:35 @PikFan ugh, IGN 2015-06-30 20:18:39 Pi and he just goes on and on about how water looks nice 2015-06-30 20:18:56 @PikFan that's great 2015-06-30 20:18:59 Pi I wonder what he'd feel playing Super Mario Sunshine 2015-06-30 20:19:13 BetaMaster Super Mario Sunshine had some nice water 2015-06-30 20:19:24 Pi then there's this amazing person named Insurance_Lizard who posts things I can't even believe Nintendo allows through 2015-06-30 20:19:46 Pi it's subtle things that he gets under the radar 2015-06-30 20:20:11 @PikFan like what? 2015-06-30 20:20:23 Pi sexual innuendos 2015-06-30 20:20:26 Pi loads of them 2015-06-30 20:20:41 Pi yes my humour is sometimes crude 2015-06-30 20:22:11 @PikFan oh heh 2015-06-30 20:22:25 @PikFan I don't mind, I hang out with people who make lots of sexual jokes 2015-06-30 20:23:16 Yoshi2 the stuff people do when they are bored 2015-06-30 20:23:20 @PikFan anyway, I think it's funny that they say the NX isn't a replacement for Wii U and 3DS 2015-06-30 20:23:32 @PikFan wow Yoshi2 XDDD 2015-06-30 20:24:33 @PikFan but as soon as NX hits, and if it's good enough, most people will forget about the Wii U 2015-06-30 20:24:51 @PikFan I heard rumors it'll be called Nintendo Fusion 2015-06-30 20:25:04 @PikFan there was even an article somewhere listing the specs of it 2015-06-30 20:26:58 Pi I don't like the rumours though 2015-06-30 20:27:02 Yoshi2 listing the RUMOURED specs of it 2015-06-30 20:27:36 Pi for instance, the Wii U was codenamed Project Café during its development, and that was what was known to the public about it prior to the E3 reveal 2015-06-30 20:27:59 Pi hmm, speaking of, I wonder what the product code for Wii U articles are 2015-06-30 20:28:00 Testyo [Fanon RC] User:LoganPikmin/gsig by Peach Bulborb (+119 N Created page with "[[File:Dredbulborb.jpg|40px]] '''Apprentice Red Bulborb''' [[...) http://www.pikminfanon.com/index.php?title=User:LoganPikmin/gsig&curid=9682&diff=48602&oldid=0 2015-06-30 20:28:25 Yoshi2 I remember reading that the Wii U's CPU is nicknamed Expresso 2015-06-30 20:28:26 Pi it's apparently WUP 2015-06-30 20:33:02 Testyo [Fanon RC] User talk:LoganPikmin by Peach Bulborb (+162 /* Guild of Bulborbs */ ) http://www.pikminfanon.com/index.php?title=User_talk:LoganPikmin&curid=9559&diff=48603&oldid=48584 2015-06-30 20:33:02 Testyo [Fanon RC] PikminFanon talk:Guild of... by Peach Bulborb (-824 Pretty sure I answered all these, so they can be removed) http://www.pikminfanon.com/index.php?title=PikminFanon_talk:Guild_of_Bulborbs/Working_Wild&curid=8134&diff=48604&oldid=48502 2015-06-30 20:35:12 StarWolf i think i came up with a decent pikmin fan game idea but I'm not to sure.... 2015-06-30 20:38:04 Testyo [Fanon RC] PikminFanon:Guild of Bulb... by Peach Bulborb (-29) http://www.pikminfanon.com/index.php?title=PikminFanon:Guild_of_Bulborbs/Valley_of_Welcome&curid=7780&diff=48605&oldid=43553 2015-06-30 20:38:04 Testyo [Fanon RC] PikminFanon:Guild of Bulb... by Peach Bulborb (-30 /* What are the Red Bulborbs? */ ) http://www.pikminfanon.com/index.php?title=PikminFanon:Guild_of_Bulborbs/Improving_Wood&curid=7765&diff=48606&oldid=44725 2015-06-30 20:38:04 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2015-06-30 20:42:08 @PikFan uh who's Boo4761 2015-06-30 20:42:21 @PikFan BetaMaster? 2015-06-30 20:42:51 Yoshi2 BetaMaster is BetaMaster 2015-06-30 20:43:09 @PikFan no I pinged him to get his attention 2015-06-30 20:43:32 @PikFan because in #testyo and another channel I'm in this guy just appeared 2015-06-30 20:43:33 Testyo WHAT SO 2015-06-30 20:43:42 @PikFan ...thanks, testyo 2015-06-30 20:43:43 Testyo if i fail ill just looks like it 2015-06-30 20:44:15 <-- StarWolf (Mibbit@gpw09-55.skytechbb.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 20:46:59 @PikFan oh, so that's who he is, nevermind 2015-06-30 20:48:07 Testyo [Fanon RC] Black Bulborb (Night) by Peach Bulborb (+397) http://www.pikminfanon.com/index.php?title=Black_Bulborb_(Night)&curid=7600&diff=48608&oldid=41281 2015-06-30 20:55:58 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-06-30 20:56:04 Waterpikmin hello? espyo 2015-06-30 20:56:20 @PikFan he's not around 2015-06-30 20:56:23 Waterpikmin ok 2015-06-30 20:56:28 @PikFan playing Splatoon, I think 2015-06-30 20:56:45 Waterpikmin hey, do you happen to have animal crossing? 2015-06-30 20:56:52 @PikFan which one? 2015-06-30 20:56:57 Waterpikmin new leaf 2015-06-30 20:57:00 @PikFan yes 2015-06-30 20:57:10 @PikFan but my 3DS is broken so I can't play it 2015-06-30 20:57:17 Waterpikmin ok 2015-06-30 20:57:25 Waterpikmin ive been trying to find ppl to play 2015-06-30 20:57:35 @PikFan hm 2015-06-30 20:57:43 Waterpikmin and getting friends online in the game is just about impossible 2015-06-30 20:58:01 Waterpikmin so i was looking at something 2015-06-30 20:58:01 @PikFan I think BetaMaster has it 2015-06-30 20:58:10 Waterpikmin let me get the link and cool 2015-06-30 20:58:13 @PikFan though I'm not sure if he wants to play it 2015-06-30 20:58:23 Waterpikmin this was what i wanted to show espyo 2015-06-30 20:58:27 Waterpikmin https://twitter.com/artsyomni 2015-06-30 20:58:41 Waterpikmin if you go to june 10 2015-06-30 20:59:46 Waterpikmin https://twitter.com/artsyomni/status/608754065481314304 2015-06-30 20:59:48 Waterpikmin there 2015-06-30 21:00:20 Waterpikmin PikFan this is what i wanted to show espyo lol 2015-06-30 21:02:18 @PikFan uh 2015-06-30 21:02:26 @PikFan reading's never been an issue for me 2015-06-30 21:02:36 Waterpikmin ? 2015-06-30 21:02:44 Waterpikmin oh ok 2015-06-30 21:02:45 Waterpikmin lol 2015-06-30 21:03:08 Waterpikmin yeah when i saw that i wanted to show espyo just so he knows lol 2015-06-30 21:03:21 @PikFan maybe he's got really sensitive eyes 2015-06-30 21:03:26 @PikFan but the background isn't an issue 2015-06-30 21:03:32 @PikFan I can read it just fine 2015-06-30 21:03:47 Waterpikmin i can read it fine too 2015-06-30 21:04:10 Yoshi2 well, I can sort of see their point 2015-06-30 21:04:14 Waterpikmin yeah 2015-06-30 21:04:34 Yoshi2 the background is very busy and quite distracting to the eyes 2015-06-30 21:04:46 Waterpikmin i think this is something we need to show espyo eventually lol 2015-06-30 21:04:49 Waterpikmin and yoshi 2015-06-30 21:05:07 Waterpikmin do you have Animal crossing new leaf? 2015-06-30 21:05:52 Yoshi2 yup, but my 3ds broke too 2015-06-30 21:06:29 Yoshi2 and out of warranty ._. 2015-06-30 21:06:49 Waterpikmin so many broken 3dses lol 2015-06-30 21:06:58 Waterpikmin how did they break btw? 2015-06-30 21:08:17 Yoshi2 I am unable to turn the 3DS on if the screen is open 2015-06-30 21:09:07 Waterpikmin wow thats strange 2015-06-30 21:09:47 Yoshi2 indeed 2015-06-30 21:09:48 @PikFan does it make a popping noise and do the screens flash when you try to power it on? 2015-06-30 21:10:02 Yoshi2 sort of 2015-06-30 21:11:05 Waterpikmin when you either get new ones or replace them we should have a sort of club for animal crossing 2015-06-30 21:11:12 Waterpikmin would make the game so much more fun 2015-06-30 21:11:48 @PikFan so you press the power button, the power LED turns on, and then it makes a popping noise? is that what happens? 2015-06-30 21:12:34 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-06-30 21:12:44 Yoshi2 well, the screen flashes for a bit and goes off again, don't remember if it makes a popping noise though 2015-06-30 21:13:03 Yoshi2 it's been a while since I tried to turn it on, and I've put it away since then 2015-06-30 21:13:11 @PikFan hmm... 2015-06-30 21:13:13 Waterpikmin wait a minute 2015-06-30 21:13:17 Waterpikmin what if 2015-06-30 21:13:24 Waterpikmin omni visited the pikmin wiki 2015-06-30 21:13:28 @PikFan because that's what happened to mine 2015-06-30 21:13:34 Waterpikmin to SMASHIFY a pikmin character!?!? 2015-06-30 21:14:26 Yoshi2 my old DS broke in half 2015-06-30 21:14:34 @PikFan o.o 2015-06-30 21:14:47 Yoshi2 sadly, I cannot use the bottom as a gameboy advance 2015-06-30 21:15:08 Waterpikmin lol that stinks 2015-06-30 21:15:35 Waterpikmin if they release a pikmin new 3ds xl, would you get it? 2015-06-30 21:15:54 @PikFan maybe 2015-06-30 21:16:02 @PikFan depends if I have money 2015-06-30 21:16:02 Waterpikmin i would in an INSTANT 2015-06-30 21:16:11 Waterpikmin i would do anything to get one 2015-06-30 21:17:55 @Espyo so many mentions of my name 2015-06-30 21:17:56 @Espyo sorry, was away 2015-06-30 21:18:01 @Espyo and I have to be away again 2015-06-30 21:18:05 Yoshi2 solution: don't be away 2015-06-30 21:18:26 @PikFan Espyo: https://twitter.com/artsyomni/status/608754065481314304 2015-06-30 21:18:39 @PikFan and why do you have to be away? for how long? 2015-06-30 21:18:59 Waterpikmin i found that link and thought it would be important 2015-06-30 21:21:08 @PikFan I don't understand why he thinks it's hard to read 2015-06-30 21:21:10 @PikFan it isn 2015-06-30 21:21:13 @PikFan isn't 2015-06-30 21:23:15 @PikFan this kid is hilarious 2015-06-30 21:23:24 @PikFan he's desperately trying to get me to come out 2015-06-30 21:23:30 Yoshi2 PikFan: the issue, as far as I can see it, is not that you can't read it, but it is a bit hard on the eyes due to the background being so distracting 2015-06-30 21:23:36 Yoshi2 at least in my case 2015-06-30 21:23:51 Waterpikmin yeah that may be it 2015-06-30 21:23:52 @PikFan he's just standing on my porch and knocking on my door while making himself look like a total idiot 2015-06-30 21:24:01 @PikFan that isn't an issue for me 2015-06-30 21:24:02 Waterpikmin and we may be used to it since we have been here for a while 2015-06-30 21:24:09 @PikFan yeah that 2015-06-30 21:26:43 @PikFan HE CAME BACK LKAMSKLCNAKNF 2015-06-30 21:27:01 Waterpikmin ? lol 2015-06-30 21:28:16 @PikFan ugh 2015-06-30 21:28:24 @PikFan kids can be annoying 2015-06-30 21:28:36 @PikFan ...I'm becoming old and senile 2015-06-30 21:28:39 @PikFan help me 2015-06-30 21:30:14 Pi you're not old 2015-06-30 21:30:22 Waterpikmin pi 2015-06-30 21:30:30 Pi Waterpikmin 2015-06-30 21:30:35 Waterpikmin do you have animal crossing new leaf? 2015-06-30 21:30:39 Pi no i dont 2015-06-30 21:30:43 Waterpikmin ok lol 2015-06-30 21:30:54 @PikFan I'm 15 2015-06-30 21:30:58 @PikFan I'm pretty old 2015-06-30 21:31:03 Waterpikmin ok then lol 2015-06-30 21:31:15 Waterpikmin espyo 2015-06-30 21:31:17 @PikFan but that would make all of you ancient lol 2015-06-30 21:31:27 Waterpikmin do you have animal crossing? lol 2015-06-30 21:31:34 @PikFan oh, apparently today is asteroid day 2015-06-30 21:31:46 Pi PikFan 2015-06-30 21:31:49 Pi I'm 21 2015-06-30 21:31:55 Waterpikmin im looking for someone to play it with because finding someone in game is super difficult 2015-06-30 21:31:57 Pi you're still young 2015-06-30 21:32:07 @PikFan 13:31 PikFan but that would make all of you ancient lol 2015-06-30 21:32:17 @PikFan alright fine 2015-06-30 21:32:27 @PikFan I concede 2015-06-30 21:32:43 @PikFan (if that's even the right word to use) 2015-06-30 21:33:01 @PikFan (oh, it is) 2015-06-30 21:33:40 Yoshi2 you concede defeat? 2015-06-30 21:34:18 @PikFan yep 2015-06-30 21:34:29 Yoshi2 woohoo! 2015-06-30 21:34:31 @PikFan I admit my argument is invalid 2015-06-30 21:34:33 @PikFan therefore fish 2015-06-30 21:34:55 Yoshi2 smells fishy 2015-06-30 21:37:52 Waterpikmin ive been trying to find things to do in animal crossing lol 2015-06-30 21:38:21 Yoshi2 I thought about putting down some streets in my town 2015-06-30 21:38:26 Yoshi2 but never got to do that 2015-06-30 21:38:34 @PikFan I started doing that 2015-06-30 21:38:48 @PikFan and then somebody moved in right where I was going to put them : 2015-06-30 21:38:49 @PikFan :| 2015-06-30 21:38:51 @PikFan ... 2015-06-30 21:38:54 * @PikFan sighs 2015-06-30 21:38:55 Yoshi2 PikFan: that is the worst 2015-06-30 21:39:07 @PikFan so I tried and tried to harass them and kick them out 2015-06-30 21:39:14 @PikFan did they? nope 2015-06-30 21:39:32 @PikFan I hate how when you want someone there, they move 2015-06-30 21:39:38 @PikFan and when you don't, they don't move 2015-06-30 21:39:52 Waterpikmin i deal with whoever is in my town 2015-06-30 21:39:57 Waterpikmin i try to grow to like them 2015-06-30 21:40:30 Yoshi2 PikFan: I think you can talk the people into not moving out if you want 2015-06-30 21:40:54 Yoshi2 if you speak to them at the right time 2015-06-30 21:40:56 @PikFan I know that 2015-06-30 21:41:18 @PikFan but I never know that they're moving till it's too late 2015-06-30 21:41:30 @PikFan i.e. when I get the letter 2015-06-30 21:41:40 @PikFan ...maybe I need to check their houses more 2015-06-30 21:43:28 @Espyo ! 2015-06-30 21:43:33 @Espyo Omni mentioned US?! 2015-06-30 21:44:03 Waterpikmin YEAH 2015-06-30 21:44:06 Waterpikmin HE DID 2015-06-30 21:44:12 @Espyo THIS IS INSANE 2015-06-30 21:44:14 @Espyo ON SEVERAL LEVELS 2015-06-30 21:44:21 @Espyo I need... 2015-06-30 21:44:22 @Espyo ugh 2015-06-30 21:44:22 @PikFan uh 2015-06-30 21:44:28 @Espyo I think I'm better off making a Twitter account 2015-06-30 21:44:29 Waterpikmin I KNOW 2015-06-30 21:44:30 @PikFan should I be concerned...? 2015-06-30 21:44:42 @PikFan is he important...? 2015-06-30 21:44:45 @Espyo PikFan: remember some time ago about a supposed Rayman leak? 2015-06-30 21:44:50 @Espyo in Smash 4? 2015-06-30 21:44:52 Pi oh lord 2015-06-30 21:44:53 @PikFan nope 2015-06-30 21:44:55 Pi it's him? 2015-06-30 21:44:55 Waterpikmin yeah 2015-06-30 21:44:57 @Espyo well, it happened 2015-06-30 21:45:01 Waterpikmin ITS THAT GUY 2015-06-30 21:45:05 @Espyo somebody made concept art of Rayman in Smash 4 2015-06-30 21:45:07 @Espyo it looked official 2015-06-30 21:45:09 @PikFan I DON'T SOCIAL MEDIA 2015-06-30 21:45:11 @Espyo it was all a thing 2015-06-30 21:45:13 @Espyo made by him 2015-06-30 21:45:19 @Espyo let me handle this bous 2015-06-30 21:45:21 @Espyo *boys 2015-06-30 21:45:31 Waterpikmin http://smashifiedart.com/ 2015-06-30 21:45:32 Yoshi2 oh joy 2015-06-30 21:45:49 @PikFan it's funny because I was just reading about smash DLC 2015-06-30 21:46:26 Pi dear lord why is it so expensive 2015-06-30 21:46:33 Waterpikmin i am a CRAZY fan of omni 2015-06-30 21:46:36 Pi it's the cost of 1/3 of the game 2015-06-30 21:46:43 Pi but with abysmal content 2015-06-30 21:46:49 Pi the DLC model in MK8 was fine 2015-06-30 21:46:53 @Espyo if HE's saying the text has bad contrast 2015-06-30 21:46:57 @Espyo then by all means, we ARE fixing it 2015-06-30 21:46:58 @Espyo period 2015-06-30 21:47:07 Waterpikmin i thought so lo 2015-06-30 21:47:09 Waterpikmin lol 2015-06-30 21:47:13 Waterpikmin when i found it 2015-06-30 21:47:23 Waterpikmin i was like "oh no"... 2015-06-30 21:47:43 Waterpikmin " i need to get this to espyo" lol 2015-06-30 21:47:48 @Espyo thanks, WP 2015-06-30 21:47:57 @Espyo this would've flied over my head if not 2015-06-30 21:47:58 Waterpikmin no prob 2015-06-30 21:48:42 Testyo [Fanon RC] PikminFanon:Timeline by Piki1 (+167 /* Pikmin: The New Trilogy Timeline */ ) http://www.pikminfanon.com/index.php?title=PikminFanon:Timeline&curid=1148&diff=48609&oldid=47823 2015-06-30 21:48:43 Waterpikmin i looked at the twitter and the funny thing is was that there was a post from 2012 about the new pikmin 3 2015-06-30 21:48:44 @PikFan alright is he really that influential of a user? 2015-06-30 21:49:02 Waterpikmin YES 2015-06-30 21:49:04 Waterpikmin HE IS 2015-06-30 21:49:24 Waterpikmin i thought it was pikmin 4 lol 2015-06-30 21:49:27 @Espyo we have two ways to go about this 2015-06-30 21:49:28 Waterpikmin until i saw 2015-06-30 21:49:29 @Espyo either we BLOW IT 2015-06-30 21:49:30 @Espyo horribly 2015-06-30 21:49:38 Waterpikmin ok 2015-06-30 21:49:39 @PikFan let's blow it 2015-06-30 21:49:41 Waterpikmin or? 2015-06-30 21:49:42 @PikFan nah 2015-06-30 21:49:47 @Espyo or we can use this to be even better 2015-06-30 21:49:58 Pi J: please exist 2015-06-30 21:50:22 Yoshi2 instructions unclear, I just send a "ur so stupiiid" message 2015-06-30 21:50:45 @Espyo oh no 2015-06-30 21:51:02 Waterpikmin should we contact him and tell him we will work on it? 2015-06-30 21:51:38 @J hi 2015-06-30 21:51:42 Waterpikmin hi j 2015-06-30 21:51:44 Waterpikmin hey J 2015-06-30 21:51:55 Waterpikmin do you have animal crossing new leaf? 2015-06-30 21:52:16 @Espyo I'll contact him 2015-06-30 21:52:25 @J so confused 2015-06-30 21:52:28 Waterpikmin sounds good 2015-06-30 21:52:30 Waterpikmin J 2015-06-30 21:52:35 @Espyo J: there once was a Rayman leak in Smash 4 2015-06-30 21:52:40 Waterpikmin ill show the link 2015-06-30 21:52:40 @Espyo but it turned out to be a VERY well done fake 2015-06-30 21:52:44 @Espyo this artists did it 2015-06-30 21:52:50 @Espyo he's quite influencial 2015-06-30 21:52:53 Waterpikmin https://twitter.com/artsyomni/status/608754065481314304 2015-06-30 21:53:01 @Espyo and he just tweeted about Pikipedia's look 2015-06-30 21:53:24 Waterpikmin it was on the 10th 2015-06-30 21:53:40 @Espyo I'll say thanks for the suggestion, and how we'll do it, and I'll also warn about how we moved, in a nice way 2015-06-30 21:54:16 Waterpikmin maybe say btw we moved to this 2015-06-30 21:54:48 Waterpikmin if he mentions us on one of his videos 2015-06-30 21:54:57 @J okay 2015-06-30 21:55:01 Waterpikmin it could be very important 2015-06-30 21:55:10 @Espyo >@artsyomni Thanks for the suggestion! I guess we kind of become used to it after so long. I'll get right on it! 2015-06-30 21:55:13 @Espyo I'll send this first 2015-06-30 21:55:18 Waterpikmin ok 2015-06-30 21:55:29 Waterpikmin sounds good 2015-06-30 21:55:38 Pi hey 2015-06-30 21:55:44 Pi are you logged in on the actual official account 2015-06-30 21:55:47 @Espyo >@artsyomni And by the by, we moved from Wikia ages ago. It's a wasteland now. You'll find everything on Pikipedia. 2015-06-30 21:55:52 @Espyo I'm not 2015-06-30 21:55:52 @J seems kind of like you're sucking up, if this guy really is popular or something 2015-06-30 21:55:56 @Espyo I figure I should be 2015-06-30 21:56:07 @Espyo it does kind of feel like sucking up 2015-06-30 21:56:09 @Espyo but on the other hand 2015-06-30 21:56:12 @J I mean, you are sucking up 2015-06-30 21:56:16 @Espyo it's not much different from what we'd reply to anybody else 2015-06-30 21:56:43 @J The last sentence I can't see you saying to others 2015-06-30 21:56:43 @PikFan misread as fucking up lol 2015-06-30 21:56:44 Waterpikmin i need to find someone to play new leaf with lol 2015-06-30 21:57:01 Waterpikmin haha pikfan 2015-06-30 21:57:02 @Espyo but we kind of NEED to say it 2015-06-30 21:57:08 Waterpikmin we do 2015-06-30 21:57:22 Waterpikmin otherwise we could be considered as ignoring him 2015-06-30 21:57:25 @Espyo I can probably reword it so it sounds more like "hey, we moved everything from wikia to us, so if you go on wikia, you'll only find less and more outdated things" 2015-06-30 21:57:33 Waterpikmin and if he does talk about us in his videos 2015-06-30 21:57:45 @Espyo I'll PM him in that case 2015-06-30 21:57:50 @Espyo *-in that case 2015-06-30 21:57:59 @Espyo I'll PM him asking him to plug us, pretty please 2015-06-30 21:58:11 @J oh, never mind, I got a higher impression of this guy's level of fame than he actually seems to have 2015-06-30 21:58:25 @J FWIW, I somewhat agree 2015-06-30 21:58:26 Waterpikmin well 2015-06-30 21:58:37 @Espyo "fwiw", haven't heard that one before 2015-06-30 21:58:39 @J it's certainly clearly readable, but could be improved 2015-06-30 21:58:40 Waterpikmin i think we could ask him if he could 2015-06-30 21:58:41 @Espyo he's SOMEWHAT famous 2015-06-30 21:58:43 @J for what it's worth 2015-06-30 22:00:01 Waterpikmin but lets ask nicely since he came to the pikipedia to most likely get research on a new smashified canidate 2015-06-30 22:00:09 @Espyo mhm 2015-06-30 22:00:13 @Espyo I'm guessing Charlie 2015-06-30 22:00:14 Pi Doesn't it mean 'for what it's worth'? 2015-06-30 22:00:38 Waterpikmin charlie, brittany, shacho or louie 2015-06-30 22:01:12 Waterpikmin that would be interesting considering they are a basic reskin of olimar 2015-06-30 22:01:15 @J yep, I said it already 2015-06-30 22:01:18 @J @Pi 2015-06-30 22:01:31 Pi oh 2015-06-30 22:01:33 Pi derp 2015-06-30 22:01:33 Waterpikmin for example alph in smahs 2015-06-30 22:01:37 Waterpikmin smash 2015-06-30 22:01:52 Waterpikmin lol 2015-06-30 22:01:55 Pi isn't Alph already in as an Olimar skin 2015-06-30 22:01:58 Waterpikmin yeah 2015-06-30 22:02:11 Waterpikmin alph is a basic reskin of olimar 2015-06-30 22:02:12 @Espyo hm, right 2015-06-30 22:02:17 Waterpikmin this is huge guys 2015-06-30 22:02:42 Waterpikmin also 2015-06-30 22:02:45 Waterpikmin another thing 2015-06-30 22:02:55 @PikFan are you going to tell him using the wiki account? 2015-06-30 22:03:02 Waterpikmin smashboards also reports on his smashified updates 2015-06-30 22:03:07 @Espyo I'm talking to the Skype folk about it 2015-06-30 22:03:08 Waterpikmin which is another huge news site 2015-06-30 22:03:15 @PikFan what are they saying? 2015-06-30 22:03:20 @Espyo apparently only one of us controls the Pikipedia twitter 2015-06-30 22:03:24 @Espyo they're hyped 2015-06-30 22:03:31 Waterpikmin lol so am i 2015-06-30 22:03:33 @Espyo only Nathan is in charge, but he's offline, I think 2015-06-30 22:03:38 Waterpikmin hmm 2015-06-30 22:03:45 @PikFan Nathan? 2015-06-30 22:03:49 @PikFan is that... uh 2015-06-30 22:03:57 @Espyo Creative Sushi 2015-06-30 22:04:03 @PikFan oh, right 2015-06-30 22:04:05 Waterpikmin im really excited for what is going on right now 2015-06-30 22:04:11 Waterpikmin what if i met omni 2015-06-30 22:04:13 Waterpikmin WHAT IF 2015-06-30 22:04:24 @Espyo we'll have to keep this simple 2015-06-30 22:04:25 @PikFan I still lament over the fact that they prefer to use skype 2015-06-30 22:04:29 @Espyo looking at it from his POV 2015-06-30 22:04:31 Waterpikmin imagine if he came into this chatroom 2015-06-30 22:04:38 Waterpikmin ESPYO 2015-06-30 22:04:43 @Espyo it's like, he just wants quick info and reference images 2015-06-30 22:04:51 @Espyo he just asked for a theme suggestion 2015-06-30 22:05:00 @Espyo he doesn't want annoying people crawling on his knees saying this and that 2015-06-30 22:05:00 Waterpikmin You could be a COMMENTATOR for his video 2015-06-30 22:05:11 @Espyo shit, WP 2015-06-30 22:05:17 @Espyo my dreams ;_; 2015-06-30 22:05:18 Waterpikmin ? 2015-06-30 22:05:25 @Espyo you just raised them so high 2015-06-30 22:05:26 @PikFan WP? 2015-06-30 22:05:27 Waterpikmin oh yeah lol 2015-06-30 22:05:31 @Espyo Waterpikmin 2015-06-30 22:05:32 @PikFan oh, waterpikmin 2015-06-30 22:05:35 @PikFan yeah 2015-06-30 22:05:50 @Espyo so I'm really thinking just one tweet saying yes 2015-06-30 22:05:56 Waterpikmin you could talk to him on twitter 2015-06-30 22:06:05 @Espyo one tweet telling people about the move 2015-06-30 22:06:20 @Espyo and one PM asking him for a humble plug, and that if he needs further help, we've got it covered 2015-06-30 22:06:24 Pi the second move, you mean 2015-06-30 22:06:33 @Espyo I'll just refer to it as a general move 2015-06-30 22:06:34 @Espyo like 2015-06-30 22:06:37 @Espyo "we moved ages ago" 2015-06-30 22:06:40 Waterpikmin yeah i think thats great espyo 2015-06-30 22:06:41 @Espyo could refer to the first or second 2015-06-30 22:06:48 Waterpikmin another thing 2015-06-30 22:06:50 @PikFan hahahahah 2015-06-30 22:06:51 Waterpikmin guys 2015-06-30 22:06:54 Waterpikmin i livestream 2015-06-30 22:07:09 @PikFan someone on the wikia made their account Great Uniter, referencing Legend of Korra 2015-06-30 22:07:20 Waterpikmin lol 2015-06-30 22:07:30 Waterpikmin one thing i wanted to mention 2015-06-30 22:07:32 @Espyo hm 2015-06-30 22:07:34 @Espyo (brb) 2015-06-30 22:07:53 Waterpikmin i have been doing a live marathon of all of the pikmin games and im on 3 now 2015-06-30 22:07:58 Waterpikmin btw they are all 100% 2015-06-30 22:09:29 @PikFan please tell me no death 2015-06-30 22:09:57 Pi ^ 2015-06-30 22:10:15 @PikFan are they? 2015-06-30 22:11:45 Pi It's a livestream, they're bound to not be. 2015-06-30 22:12:03 @PikFan unless you're insane like Miles 2015-06-30 22:12:06 Pi I'm assuming Waterpikmin isn't some amazing speedrunner of all three games. 2015-06-30 22:12:15 Pi Miles doesn't even play the first game, though. 2015-06-30 22:12:21 @PikFan what 2015-06-30 22:12:31 @PikFan but /why/ 2015-06-30 22:12:38 Pi because obvious 2015-06-30 22:12:54 @PikFan it isn't obvious for me 2015-06-30 22:12:55 Miles I spent 6 hours today duplicating an item over and over 2015-06-30 22:12:57 Miles Yay insanity 2015-06-30 22:13:03 Pi :DD 2015-06-30 22:13:09 @Espyo hmm 2015-06-30 22:13:09 @PikFan :clap: 2015-06-30 22:13:10 @Espyo which game? 2015-06-30 22:13:16 @PikFan the first 2015-06-30 22:13:25 Miles Echoes 2015-06-30 22:13:29 Pi Oh? 2015-06-30 22:13:41 Pi Let me guess, the first Missile Expansion? 2015-06-30 22:13:42 @PikFan ...I thought we were talking Pikmin? 2015-06-30 22:13:45 @PikFan never mind 2015-06-30 22:13:55 Miles No 2015-06-30 22:14:05 Pi You can clone more stuff in Echoes now? 2015-06-30 22:14:35 * @PikFan is extremely simpleminded 2015-06-30 22:16:40 Waterpikmin im not a speedrunner lol 2015-06-30 22:16:57 Pi I guess my questions will be answered during SGDQ. 2015-06-30 22:17:14 @Espyo for some reason, I'm imagining Smart Bombs 2015-06-30 22:17:21 @Espyo ...*Super Bombs? 2015-06-30 22:17:24 Waterpikmin ? 2015-06-30 22:17:25 @Espyo wait, Power Bombs 2015-06-30 22:17:39 Pi That would be quite the treat. 2015-06-30 22:18:10 Pi Echoes is broken as is, would be neat to see how much more broken it has become. 2015-06-30 22:18:32 Waterpikmin what are we talking about lol 2015-06-30 22:18:44 <-- Yoshi2 (Yoshi2@2001:4dd3:d241:v:qskq:hhkm:lkjt:mjyv) has quit (Quit: Leaving) 2015-06-30 22:19:38 Pi Metroid Prime 2: Echoes. 2015-06-30 22:19:54 Waterpikmin oh ok lol 2015-06-30 22:20:04 Waterpikmin i havent played too many metroid games 2015-06-30 22:21:21 Pi Which ones have you played? 2015-06-30 22:21:42 Waterpikmin idk to be honest lol 2015-06-30 22:21:48 Waterpikmin it has been a while 2015-06-30 22:25:08 Waterpikmin im so hype for what is ahead of us 2015-06-30 22:28:31 --> StarWolf (Mibbit@gpw09-55.skytechbb.com) has joined #pikipedia 2015-06-30 22:28:49 StarWolf hi! 2015-06-30 22:28:53 Testyo [Pikipedia RC] Talk:Plant by Scruffy (+658) http://www.pikminwiki.com/index.php?title=Talk:Plant&curid=19112&diff=151029&oldid=151020 2015-06-30 22:31:10 @Espyo oh, speaking of Talk:Plant 2015-06-30 22:31:14 Waterpikmin ? 2015-06-30 22:31:16 @Espyo guys, please post your opinions there as well 2015-06-30 22:31:24 @Espyo the talk page for the Plant article, WP 2015-06-30 22:31:30 Waterpikmin wait opinions on what? 2015-06-30 22:31:32 Waterpikmin lol 2015-06-30 22:31:33 @Espyo specially you two, J, PikFan 2015-06-30 22:31:40 @Espyo I discussed something on the talk page 2015-06-30 22:31:43 @PikFan hmm? 2015-06-30 22:31:53 @Espyo the Plant article's talk page 2015-06-30 22:31:55 @PikFan oh, Plant vs Plants and fungi? 2015-06-30 22:31:58 @Espyo go check it out and give our opinion 2015-06-30 22:32:00 @Espyo *your 2015-06-30 22:32:01 @Espyo yeah 2015-06-30 22:32:08 Pi Fungi aren't even plants, though. 2015-06-30 22:32:09 @PikFan yeah, I think there should only be one page 2015-06-30 22:32:17 @PikFan right 2015-06-30 22:32:21 @Espyo yeah, but the name and content is important to discuss 2015-06-30 22:32:28 @Espyo not as important as other things we've had on the wiki, no 2015-06-30 22:32:33 @Espyo but still, something tricky to reach a conclusion in 2015-06-30 22:32:40 Waterpikmin maybe just have it all in one to make things easier 2015-06-30 22:32:55 Waterpikmin making future editing easier 2015-06-30 22:33:05 @PikFan wait, Scruffy suggested having two pages 2015-06-30 22:33:06 Pi The world of Pikmin is assumed to be a post-apocalyptic version of Earth, so I just find it suitable to use terminology and distinctions applicable to Earth. 2015-06-30 22:33:14 @PikFan one for plants and one for fungi 2015-06-30 22:33:19 @Espyo I'll check Scruffy's latest edit in a sec 2015-06-30 22:33:22 Waterpikmin good point but in the end 2015-06-30 22:33:25 Waterpikmin its a game 2015-06-30 22:33:57 Waterpikmin and accessing the information on the page needs to be easy to do 2015-06-30 22:34:01 Waterpikmin but idk 2015-06-30 22:34:02 Waterpikmin lol 2015-06-30 22:34:53 @PikFan yeah, I think they should have their own pages 2015-06-30 22:35:01 Waterpikmin and starwolf 2015-06-30 22:35:13 Waterpikmin do you have animal crossing new leaf? 2015-06-30 22:35:24 <-- StarWolf (Mibbit@gpw09-55.skytechbb.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 22:35:29 @PikFan as it is, Plants and fungi sounds awkward 2015-06-30 22:35:30 @PikFan wow 2015-06-30 22:35:32 Pi rip StarWolf 2015-06-30 22:35:40 Waterpikmin well rip 2015-06-30 22:35:43 Waterpikmin lol 2015-06-30 22:35:44 Pi rude tbh 2015-06-30 22:35:45 @PikFan you killed him Waterpikmin 2015-06-30 22:35:52 Waterpikmin ? 2015-06-30 22:35:57 @PikFan kidding 2015-06-30 22:36:09 Waterpikmin lol i just asked if he had a game! 0-0 2015-06-30 22:36:32 @PikFan anyway, I think it'd be better if they each had their own articles, following the structure Espyo proposed 2015-06-30 22:36:44 Waterpikmin any way is fine with me lol 2015-06-30 22:38:12 @Espyo but that way it'd be hard to refer to one article when we want to link to the "decorative greenery" mechanic 2015-06-30 22:38:25 @Espyo plus half of the info would be repeated, kinda 2015-06-30 22:38:34 @Espyo mostly about how it doesn't count for gameplay except as detail, except it does 2015-06-30 22:38:38 @Espyo and that it's on the Piklopedia 2015-06-30 22:38:39 @Espyo etc. 2015-06-30 22:38:40 Waterpikmin especially when you consider the new people that want to look at that article 2015-06-30 22:39:00 @Espyo yeah 2015-06-30 22:39:10 @PikFan so... should it be one page? 2015-06-30 22:39:44 Waterpikmin i would say one page for convinience 2015-06-30 22:40:17 @PikFan "Plants and fungi" still sounds awkward 2015-06-30 22:40:28 @PikFan [[Spotcap and Kingcap]] this too 2015-06-30 22:40:28 Testyo "Spotcap_and_Kingcap" article = http://www.pikminwiki.com/index.php?title=Spotcap_and_Kingcap 2015-06-30 22:40:50 @Espyo yeah... 2015-06-30 22:40:55 @Espyo IMO, it should be one page 2015-06-30 22:41:01 @Espyo but it can be split into several JUST for the purpose of listing 2015-06-30 22:41:07 @Espyo because I can imagine the list will get a bit big 2015-06-30 22:41:17 @Espyo mostly because the unknown ones will have their own section 2015-06-30 22:41:22 @PikFan also, what will we do about all the unnamed plants? 2015-06-30 22:41:23 @Espyo or at least an article just for the unknowns 2015-06-30 22:41:33 @PikFan Pikmin 3 has so, so many plants in it 2015-06-30 22:41:42 Waterpikmin make a gallery? 2015-06-30 22:41:42 @Espyo yeah, it's what I meant by "unknowns" 2015-06-30 22:41:46 @Espyo too simple 2015-06-30 22:42:12 Waterpikmin make a gallery that shows pictures of those unknown plants 2015-06-30 22:42:15 Waterpikmin maybe 2015-06-30 22:42:17 --> CreativeSushi (Mibbit@n-56-425-058-547.hsd9.va.comcast.net) has joined #pikipedia 2015-06-30 22:42:21 @PikFan ...oh, I was focusing on what I was writing while you were writing, and I didn't notice it 2015-06-30 22:42:22 @PikFan oops 2015-06-30 22:42:35 @PikFan hi 2015-06-30 22:42:40 CreativeSushi Ello 2015-06-30 22:43:05 Waterpikmin SUSHI 2015-06-30 22:43:13 Waterpikmin twitter! 2015-06-30 22:43:14 @Espyo oh, hey 2015-06-30 22:43:17 Waterpikmin OMNI! 2015-06-30 22:43:21 @Espyo yeah, he knows 2015-06-30 22:43:27 Waterpikmin ok cool lol 2015-06-30 22:43:43 @Espyo shall we discuss the PM? 2015-06-30 22:43:45 CreativeSushi Yup, I tweeted him back 2015-06-30 22:43:48 CreativeSushi Yeah 2015-06-30 22:43:54 @Espyo ok 2015-06-30 22:44:08 CreativeSushi First off I need to figure out how to PM on twitter 2015-06-30 22:44:09 @Espyo the way I see it, we should use this to ask him for a quick plug, and to tell him that we can help him further if he needs it 2015-06-30 22:44:18 @Espyo but we still can't sound needy 2015-06-30 22:44:26 @Espyo I say we give him our motivation 2015-06-30 22:44:31 @Espyo and at the same time, explain the wikia move 2015-06-30 22:44:51 @Espyo we explain how we moved away from wikia so we could have more freedom and power to bring better content to the world 2015-06-30 22:45:00 @Espyo it's kind of hard to do so when wikia hogs visitors simply by existing 2015-06-30 22:45:04 @PikFan I'd laugh if the wikia staff saw this then tried to tell us to not talk about this on twitter 2015-06-30 22:45:05 @Espyo so we rely on word of mouth 2015-06-30 22:45:20 @Espyo if he's okay with it, he could simply plugs us, to help our popularity, to help us make better content 2015-06-30 22:45:22 CreativeSushi I don't know, we need to assume he doesn't care about us THAT much 2015-06-30 22:45:24 @Espyo seems fair, unbiased 2015-06-30 22:45:33 CreativeSushi I wouldn't go into why we moved 2015-06-30 22:45:34 @Espyo I'd promptly shit on said wikian's face 2015-06-30 22:45:40 @Espyo hm, agreed 2015-06-30 22:46:11 @PikFan it needs to be short and sweet 2015-06-30 22:46:13 @Espyo I think we should still point out how we want to grow on the independent site 2015-06-30 22:46:25 @Espyo this is a PM, so it's not bound by the 140 chars 2015-06-30 22:46:43 @PikFan but still, try avoid going in-depth 2015-06-30 22:47:10 Waterpikmin he may have used the wiki to get info about a character though 2015-06-30 22:47:23 @Espyo likely 2015-06-30 22:47:36 @Espyo let me try a sketch 2015-06-30 22:48:02 Waterpikmin maybe for a smashified character coming soon 2015-06-30 22:48:34 @PikFan I feel like we're overreacting to this 2015-06-30 22:48:35 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-06-30 22:48:37 @PikFan but what do I know 2015-06-30 22:48:40 CreativeSushi I would just say, "Hi Omni, thanks for your input on the Wiki. Just wanted to let you know that @PikminWiki was our old twitter, which is why we had such a late response. We were all thrilled when we saw you had interest in the Wiki, as we are big fans of your work, and would love to see some Pikmin related content from you in the future." 2015-06-30 22:48:41 @Espyo maybe we are 2015-06-30 22:48:44 CreativeSushi As an opener 2015-06-30 22:48:46 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-06-30 22:48:48 @Espyo but choosing between overreacting and underreacting 2015-06-30 22:48:51 Waterpikmin ok lol 2015-06-30 22:48:54 @Espyo I'd say overreacting gives better results 2015-06-30 22:49:20 @Espyo hm, we might be going into too much detail on the whole "we hope to see Pikmin content" bit 2015-06-30 22:49:37 Waterpikmin i think that we can talk to him as if we know who he is but not look like we all want his autograph on our physical copies of smash 4 lol 2015-06-30 22:49:39 CreativeSushi I don't know we want to flatter him some 2015-06-30 22:50:02 @Espyo yeah, but the "big fans" part might be enough 2015-06-30 22:50:07 CreativeSushi Yeah 2015-06-30 22:50:08 @Espyo the other seems like we're trying to swerve him to do something 2015-06-30 22:50:11 @Espyo and we KINDA are 2015-06-30 22:50:14 @Espyo but that's not quite it 2015-06-30 22:50:15 @PikFan 13:55 J seems kind of like you're sucking up, if this guy really is popular or something 2015-06-30 22:50:15 Waterpikmin say something like "we really enjoy your art" 2015-06-30 22:51:06 @PikFan no, we just want to focus on the wiki 2015-06-30 22:51:16 @Espyo "Hey Omni, thanks for your input on the wiki. Just wanted to let you know that @PikminWiki was our old twitter, which explains our late responses. We're big fans of your work, and we'd like to ask you something if you plan on making Pikmin-related content in the future. 2015-06-30 22:51:22 @Espyo how's that for a start? 2015-06-30 22:51:52 @PikFan >big fans of your work 2015-06-30 22:51:55 @PikFan are we really? 2015-06-30 22:52:02 @Espyo most of us are 2015-06-30 22:52:04 @PikFan because we've never talked about him till now 2015-06-30 22:52:04 CreativeSushi Well I am :P 2015-06-30 22:52:09 @Espyo I am too 2015-06-30 22:52:17 @Espyo not like an active fan that's always looking for updates 2015-06-30 22:52:17 @PikFan hm, alright 2015-06-30 22:52:18 @Espyo but I like his images 2015-06-30 22:52:23 @Espyo some folks on skype are too 2015-06-30 22:52:26 Waterpikmin im an active fan lol 2015-06-30 22:52:39 @PikFan I dunno, "big fans" just sounds cheesy 2015-06-30 22:52:42 @Espyo hm, yeah, I guess the contrast is pretty poor 2015-06-30 22:52:46 @Espyo any alternatives? 2015-06-30 22:52:51 @PikFan fans 2015-06-30 22:52:58 @Espyo sounds good 2015-06-30 22:53:20 Waterpikmin maybe a light green background to contrast with a dark text 2015-06-30 22:53:22 CreativeSushi Well, we could say "If you need any help finding resources or information regarding a Pikmin character, we are definitely willing to help" 2015-06-30 22:53:44 @PikFan I'm just concerned if he prefers the wikia over the wiki 2015-06-30 22:54:00 Waterpikmin along with maybe changing the list of thing on the left such as the search tool etc to a darker background 2015-06-30 22:54:00 CreativeSushi I have a couple links that would change his mind instantly 2015-06-30 22:54:01 @PikFan but he said the contrast is bad on both, so... 2015-06-30 22:54:38 @Espyo he might, like the majority, not realize we moved, is all 2015-06-30 22:54:58 CreativeSushi He thinks we're seperated 2015-06-30 22:55:09 @Espyo hence why the 2nd reply was so important 2015-06-30 22:55:15 CreativeSushi right 2015-06-30 22:55:25 @Espyo okay, for the rest of the message... 2015-06-30 22:55:30 @Espyo I was thinking of something like... 2015-06-30 22:56:14 CreativeSushi We need to not message him untill we actually do what he asked as well 2015-06-30 22:56:43 @PikFan good point 2015-06-30 22:56:44 CreativeSushi Oh I see you did 2015-06-30 22:57:01 CreativeSushi Yeah that looks much nicer 2015-06-30 22:57:12 @Espyo everybody ctrl+f5, btw, yeah 2015-06-30 22:57:28 @PikFan whoa, yeah 2015-06-30 22:57:33 @PikFan looks a lot better 2015-06-30 22:57:48 @Espyo "We're dedicated, but we have a bit of a hard time getting views because of our old Wikia wiki. We can't delete it, and we mostly spread through word of mouth, so if you don't mind, could you please give a small shoutout to us? 2015-06-30 22:58:07 @Espyo It would mean a lot, and would help us continue to grow and provide good Pikmin content. 2015-06-30 22:58:20 @Espyo Thanks again, and now that over here, we'll be waiting for your next creation! 2015-06-30 22:58:24 @Espyo something like that? ^ 2015-06-30 22:58:26 @Espyo for the second part 2015-06-30 22:58:28 CreativeSushi Hmm 2015-06-30 22:58:33 @Espyo goes immediately after the first part 2015-06-30 22:58:38 @Espyo it's a bit rough, we need to soften the edges 2015-06-30 22:58:52 @PikFan get rid of the "we'll be waiting for your next creation" bit 2015-06-30 22:58:58 @PikFan sounds like we're stalking him 2015-06-30 22:59:27 @PikFan I don't want him to think we're obsessing over him 2015-06-30 22:59:56 @Espyo yeah, but I kind of want it to end on a supportive note 2015-06-30 23:00:01 Waterpikmin and try to make it so we are not desperate, but are asking to spread the word 2015-06-30 23:00:10 @Espyo one that leaves a message of "hey, it's cool if you don't, we still love you" in the air 2015-06-30 23:00:22 @Espyo not sounding desperate is the hard part... 2015-06-30 23:00:55 @PikFan well, I say let's be bold 2015-06-30 23:01:05 @PikFan let's just get it done 2015-06-30 23:01:05 Waterpikmin yeah 2015-06-30 23:01:13 @Espyo we have nothing to lose, I suppose 2015-06-30 23:01:15 Waterpikmin im having so much fun talking about this 2015-06-30 23:01:18 @Espyo although if we're TOO bold, he might toss us aside 2015-06-30 23:01:24 @Espyo so we WILL have something to lose 2015-06-30 23:01:24 CreativeSushi Naw wait 2015-06-30 23:01:33 @Espyo yeah, no sudden reactions 2015-06-30 23:01:36 CreativeSushi I think we are too bold, but at the same time I want to take this futher 2015-06-30 23:01:44 CreativeSushi If we could get this guy in a pikcast 2015-06-30 23:01:49 CreativeSushi That would be hot 2015-06-30 23:01:53 @Espyo that might be TOO far 2015-06-30 23:01:56 @Espyo but it wouldn't hurt to ASK 2015-06-30 23:01:56 @PikFan that would be HUGE 2015-06-30 23:02:01 CreativeSushi Yeah 2015-06-30 23:02:02 @Espyo ask him if he'd be interested in 2015-06-30 23:02:04 CreativeSushi But I have an idea 2015-06-30 23:02:19 CreativeSushi Let me type something up, I'll get back to ya 2015-06-30 23:02:26 @PikFan but first, we need to find out how much of an interest he's got in Pikmin 2015-06-30 23:02:33 @Espyo mhm 2015-06-30 23:02:41 @Espyo on his video about Travis 2015-06-30 23:02:44 @Espyo the Mother 4 character 2015-06-30 23:02:58 @Espyo he was mostly talking to the model creators about stuff in general 2015-06-30 23:03:05 @Espyo while sped up footage of the image was rolling in the background 2015-06-30 23:03:21 @Espyo admittedly, I couldn't really understand who did what, and what belonged to who :| 2015-06-30 23:03:25 @Espyo but I wasn't paying THAT much attention 2015-06-30 23:03:41 @PikFan speaking of models, did we ever contact the guys who ripped the P3 models? 2015-06-30 23:03:50 Waterpikmin oh yeah 2015-06-30 23:03:51 @Espyo we did, no response 2015-06-30 23:04:03 Waterpikmin random talking bush was one of them 2015-06-30 23:04:04 @PikFan drat 2015-06-30 23:04:07 @Espyo but the Inkipedia chat has the guy who leaked the most recent maps 2015-06-30 23:04:12 @Espyo so I'll try to contact him soon for help 2015-06-30 23:04:19 Waterpikmin ok 2015-06-30 23:09:10 Waterpikmin so anything we need to do? 2015-06-30 23:11:17 @Espyo CreativeSushi: you got it yet? 2015-06-30 23:12:13 Waterpikmin got what? 2015-06-30 23:12:42 Waterpikmin do you think we should watch his videos in order to get any information about him and pikmin? 2015-06-30 23:13:39 @PikFan bbl 2015-06-30 23:13:57 Waterpikmin ? 2015-06-30 23:14:07 @Espyo not really 2015-06-30 23:14:12 @Espyo also, "be back later" 2015-06-30 23:14:52 Waterpikmin ok lol 2015-06-30 23:17:39 CreativeSushi OK I'm here 2015-06-30 23:17:56 CreativeSushi Its long, I think I'll post is on skype 2015-06-30 23:18:00 CreativeSushi sorta long 2015-06-30 23:18:31 @Espyo you can post it on pastebin so the guys here can see 2015-06-30 23:19:39 CreativeSushi Alright 2015-06-30 23:20:14 Waterpikmin ok 2015-06-30 23:20:27 Waterpikmin what is the thing? 2015-06-30 23:22:28 CreativeSushi http://pastebin.com/FjGDjk1Y 2015-06-30 23:23:05 @Espyo right, so what I said on skype 2015-06-30 23:23:07 @Espyo I'll just copy+paste 2015-06-30 23:23:15 @Espyo the "non-profit" part might be better omitted 2015-06-30 23:23:16 @Espyo [23:20:34] André Silva - Espyo: because wikia editors are non-profit too 2015-06-30 23:23:21 @Espyo >also you say "future" twice in the next sentence 2015-06-30 23:23:26 @Espyo we should probably split the part where we start talking about PikCast a bit 2015-06-30 23:23:26 @Espyo [23:21:31] André Silva - Espyo: so as to not clash so much with what's being said right before 2015-06-30 23:23:32 @Espyo then it needs minor grammar tweaks on the final paragraph 2015-06-30 23:23:32 @Espyo [23:21:59] André Silva - Espyo: but I suppose it's good 2015-06-30 23:24:58 @Espyo thoughts? 2015-06-30 23:25:31 CreativeSushi I think they die 2015-06-30 23:25:39 @Espyo ye 2015-06-30 23:26:05 CreativeSushi Your welcome to edit that to your hearts content 2015-06-30 23:26:22 CreativeSushi I just thought we needed to be a bit more casual 2015-06-30 23:26:25 CreativeSushi in wording 2015-06-30 23:26:31 CreativeSushi as well as mention pikcast and spotlight 2015-06-30 23:26:32 Waterpikmin i think you forgot a plural in artist and game 2015-06-30 23:27:52 @Espyo yeah 2015-06-30 23:28:00 @Espyo yeah, more casual feels better 2015-06-30 23:28:45 Waterpikmin casual seems good 2015-06-30 23:29:30 Waterpikmin and one more thing 2015-06-30 23:30:16 Waterpikmin all enthusiastic about collaborating 2015-06-30 23:30:27 Waterpikmin it seems as though we are making him collab with us 2015-06-30 23:31:31 CreativeSushi Well, yeah sorta. That would be the perfect outcome 2015-06-30 23:31:46 CreativeSushi If we are helping him with information 2015-06-30 23:31:49 CreativeSushi and him being in the pikcast 2015-06-30 23:31:55 CreativeSushi for him to have a shout-out 2015-06-30 23:31:59 Waterpikmin maybe add we are enhusiastic about collaborating with him if he wants 2015-06-30 23:31:59 CreativeSushi thats kinda a collaboration 2015-06-30 23:32:22 @Espyo ok, gonna try to revamp the message 2015-06-30 23:32:24 Waterpikmin i guess so 2015-06-30 23:32:54 CreativeSushi I don't think there's anything wrong with saying that we would really like to 2015-06-30 23:33:48 Waterpikmin yeah that sounds good 2015-06-30 23:34:13 @Espyo http://pastebin.com/VwEqZ1Pq final? 2015-06-30 23:36:05 CreativeSushi I think it looks great 2015-06-30 23:36:16 Waterpikmin are we able to remove this when we are done to avoid anyone seeing the message? 2015-06-30 23:36:38 Miles http://i.imgur.com/hCJvnFU.png 2015-06-30 23:37:00 CreativeSushi lol 2015-06-30 23:37:06 Waterpikmin lol 2015-06-30 23:37:09 Pi Miles what are you duplicating. 2015-06-30 23:37:14 CreativeSushi people can only see it if you have the link 2015-06-30 23:37:23 Pi Miles 2015-06-30 23:37:25 Pi pls 2015-06-30 23:37:29 @Espyo the message will be private 2015-06-30 23:37:32 @Espyo just between us and him 2015-06-30 23:37:39 CreativeSushi I think he means the pastebins 2015-06-30 23:37:44 @Espyo oh, duh 2015-06-30 23:37:48 @Espyo the first missile expansion 2015-06-30 23:37:49 @Espyo I remember now 2015-06-30 23:37:55 @Espyo wait, didn't you say "no" to that already? 2015-06-30 23:38:06 @Espyo oh, the pastebins? I set mine to unlisted, and expiring in a week 2015-06-30 23:38:12 Pi So you can clone that indefinitely nowadays? 2015-06-30 23:38:55 Pi I'll just head off to m2k2 and lurk, I suppose. 2015-06-30 23:39:09 CreativeSushi Alright, so i guess I'll go ahead and send the message? 2015-06-30 23:39:16 Waterpikmin ok 2015-06-30 23:39:39 @Espyo yeah, I guess so 2015-06-30 23:39:44 @Espyo PikFan and J are dead 2015-06-30 23:39:49 @Espyo what about the skype folk? 2015-06-30 23:39:59 @PikFan no I'm not 2015-06-30 23:40:04 @PikFan I'm alive 2015-06-30 23:40:12 @PikFan what do you need me to do? 2015-06-30 23:40:14 Pi https://m2k2.taigaforum.com/post/infinite_in_echoes_found_by_miles.html ah 2015-06-30 23:40:39 @PikFan oh, and I already read the message 2015-06-30 23:40:47 @PikFan one thing: PikCast 2015-06-30 23:41:53 CreativeSushi Ok, so twitter does have a 140 limit with twitter 2015-06-30 23:41:58 CreativeSushi DM 2015-06-30 23:42:03 @Espyo oh yeah, capital C 2015-06-30 23:42:09 @Espyo twitter PM? 2015-06-30 23:42:15 @Espyo a friend of mine said it didn't 2015-06-30 23:42:17 @Espyo one sec, then 2015-06-30 23:42:19 Pi TwitLonger, m8 2015-06-30 23:42:54 @Espyo oh, so THAT's what Miles is doing 2015-06-30 23:42:56 @Espyo insane stuff 2015-06-30 23:42:57 @Espyo I love it 2015-06-30 23:43:10 Waterpikmin what is he doing? 2015-06-30 23:43:26 @Espyo check the thread Pi posted 2015-06-30 23:44:07 @Espyo eh, he says the PMs ALSO have a limit, he thinks 2015-06-30 23:44:10 @PikFan infinite% for what? 2015-06-30 23:44:12 @Espyo guess TwitLonger is the way to go 2015-06-30 23:44:17 @Espyo for Metroid Prime 2 2015-06-30 23:44:25 @PikFan no, I know 2015-06-30 23:44:33 CreativeSushi So what about this 140 character limit, should I just split it up? 2015-06-30 23:44:39 @PikFan er, maybe I should've said /of/ what 2015-06-30 23:44:42 @Espyo no, use TwitLonger 2015-06-30 23:44:51 @Espyo PikFan: answer's the same 2015-06-30 23:45:02 @PikFan as in story completion? 2015-06-30 23:45:35 @Espyo yeah 2015-06-30 23:45:42 @PikFan but 2015-06-30 23:45:45 @PikFan that's 2015-06-30 23:45:48 @PikFan .../why/ 2015-06-30 23:45:53 CreativeSushi Oh, how does this work? 2015-06-30 23:45:58 @Espyo what do you mean why 2015-06-30 23:46:02 @Espyo why do you have day 1000+? 2015-06-30 23:46:14 @PikFan ...true 2015-06-30 23:46:18 @Espyo there you go 2015-06-30 23:46:29 @PikFan (actually still on day 572) 2015-06-30 23:46:37 @Espyo hm 2015-06-30 23:46:39 @PikFan (or something like that, I can't remember) 2015-06-30 23:46:51 Miles No you're not, the save file deletes itself after Day 300!!! 2015-06-30 23:47:07 @PikFan challenge accepted 2015-06-30 23:47:15 CreativeSushi I don't think this works with DM 2015-06-30 23:47:49 Waterpikmin what days are you talking about? pikmin 2? 2015-06-30 23:47:49 @PikFan there has to be an upper limit for days 2015-06-30 23:47:53 @PikFan yeah 2015-06-30 23:48:02 Waterpikmin oh ok lol 2015-06-30 23:48:08 @PikFan and an upper limit for Pikmin 2015-06-30 23:48:10 @PikFan and sprays 2015-06-30 23:48:16 @Espyo zomg miles :O 2015-06-30 23:48:24 Pi Miles is that 300 triple factorial 2015-06-30 23:48:40 @PikFan oh NO 2015-06-30 23:48:43 @PikFan why Pi 2015-06-30 23:48:51 @Espyo upper limit is likely 2^16 2015-06-30 23:48:53 @PikFan you made me brain explode 2015-06-30 23:49:08 @PikFan for days? 2015-06-30 23:49:50 @Espyo for days, yeah 2015-06-30 23:50:04 Pi 2^16 what is that now again 2015-06-30 23:50:06 @Espyo if not that, (2^16)/2 2015-06-30 23:50:07 @Espyo more or less 2015-06-30 23:50:09 Pi I should have this memorised 2015-06-30 23:50:11 @Espyo 65536 2015-06-30 23:50:20 @Espyo also, HexChat is magic 2015-06-30 23:50:21 Pi dear lord I'm a disappointment 2015-06-30 23:50:22 @Espyo so I can do this 2015-06-30 23:50:24 @Espyo 2¹⁶ 2015-06-30 23:50:26 @Espyo wheeeee 2015-06-30 23:50:27 Pi :OOOO 2015-06-30 23:50:43 @PikFan test 2015-06-30 23:50:47 @PikFan okay, not lagging 2015-06-30 23:54:42 @Espyo Pi: how do you use TwitLong? 2015-06-30 23:54:45 @Espyo not really working for CreativeSushi 2015-06-30 23:54:56 @PikFan https://www.youtube.com/watch?v=xOhq_cjOGNo 2015-06-30 23:55:02 @PikFan wow, Siri's mean 2015-06-30 23:55:50 Pi I believe just like a usual twitter message 2015-06-30 23:56:03 Pi but it creates a link to the tweet 2015-06-30 23:56:04 @Espyo hear that, CreativeSushi? 2015-06-30 23:56:20 Pi so you need to link the generated message 2015-06-30 23:56:26 @Espyo hm 2015-06-30 23:56:55 Pi I'm kind of useless right now, because I'm so tired. I apologise. 2015-06-30 23:57:50 CreativeSushi Yeah but 2015-06-30 23:57:55 CreativeSushi You can't do it for DM 2015-06-30 23:58:03 CreativeSushi You can just log into the plugin, and then make a tweet 2015-06-30 23:58:11 CreativeSushi Thats all it seems to give you the option for 2015-07-01 00:01:40 @Espyo I have to go to bed 2015-07-01 00:01:47 @PikFan night 2015-07-01 00:01:51 @Espyo try googling how to use TwitLong 2015-07-01 00:01:58 @Espyo I've heard about loads of people using it, so... 2015-07-01 00:01:59 @Espyo it has to work 2015-07-01 00:02:01 @PikFan oh, just saw a Pokemon game for mobile 2015-07-01 00:02:09 @PikFan guess Nintendo really is going mobile 2015-07-01 00:02:21 @Espyo hmm 2015-07-01 00:02:21 Waterpikmin yeah lol 2015-07-01 00:02:26 Waterpikmin bye espyo! 2015-07-01 00:02:31 @Espyo bye 2015-07-01 00:02:45 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-01 00:03:09 Waterpikmin i think ill head out as well 2015-07-01 00:03:16 Waterpikmin bye guys! 2015-07-01 00:03:31 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 00:03:46 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-01 00:04:12 Pi bye 2015-07-01 00:04:14 Pi sleep 2015-07-01 00:04:24 <-- Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: sleep tbh) 2015-07-01 00:04:36 @PikFan alright, I'm going to 2015-07-01 00:04:38 @PikFan *too 2015-07-01 00:04:39 @PikFan bye 2015-07-01 00:04:42 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-01 00:39:04 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-01 00:42:05 <-- CreativeSushi (Mibbit@n-56-425-058-547.hsd9.va.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 00:56:01 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 01:11:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 01:55:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 02:00:30 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 02:00:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-01 02:13:26 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-07-01 02:14:27 Waterpikmin hello? 2015-07-01 02:14:47 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Client Quit) 2015-07-01 03:00:23 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 03:04:03 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-01 03:04:14 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 03:11:57 --> Miles_ (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-07-01 03:12:30 --> Gamefreak75_ (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-01 03:13:14 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 240 seconds) 2015-07-01 03:13:39 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 248 seconds) 2015-07-01 03:13:46 -- Gamefreak75_ is now known as Gamefreak75 2015-07-01 03:13:53 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 03:17:41 --> RingtailedFox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has joined #pikipedia 2015-07-01 03:56:55 <-- Miles_ (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 245 seconds) 2015-07-01 04:23:46 --> Ragnorok_X (Mibbit@g-19-877-325-05.hsd5.ca.comcast.net) has joined #pikipedia 2015-07-01 04:23:58 Ragnorok_X Is there anyone here? 2015-07-01 04:24:30 Ragnorok_X eh. 2015-07-01 04:24:33 Ragnorok_X bye then. 2015-07-01 04:24:37 <-- Ragnorok_X (Mibbit@g-19-877-325-05.hsd5.ca.comcast.net) has quit (Client Quit) 2015-07-01 04:46:23 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 04:53:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 04:59:12 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 05:03:43 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-01 05:04:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 05:12:58 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 05:13:02 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Ping timeout: 272 seconds) 2015-07-01 05:18:54 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 05:19:25 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-01 05:34:14 --> Yoshi2 (Yoshi2@8908-8so4-l6e0-2-757q-x57s-p8q7-w9wv.ipv7dyn.netcologne.de) has joined #pikipedia 2015-07-01 05:35:27 --> BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has joined #pikipedia 2015-07-01 05:40:20 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-07-01 05:40:25 Waterpikmin hello? 2015-07-01 05:40:28 BetaMaster hi 2015-07-01 05:40:37 Waterpikmin hey i have a question lol 2015-07-01 05:40:47 Waterpikmin do you happen to have animal crossing new leaf? 2015-07-01 05:40:56 BetaMaster I used to 2015-07-01 05:40:58 Waterpikmin im looking for ppl to play it with lol 2015-07-01 05:41:07 Waterpikmin ive started to replay it 2015-07-01 05:41:35 Waterpikmin i had an idea of sorta having a club for animal crossing to make the game more interesting 2015-07-01 05:42:27 Waterpikmin wouldnt it be cool? lol 2015-07-01 05:43:06 BetaMaster It's an interesting idea 2015-07-01 05:43:33 Waterpikmin animal crossing seems lonely wihtout other ppl 2015-07-01 05:43:44 Waterpikmin real ppl lol 2015-07-01 05:44:05 Waterpikmin we can have monthly or weekly competitions 2015-07-01 05:44:07 BetaMaster Without real people to steal fruit from 2015-07-01 05:44:12 Waterpikmin lol 2015-07-01 05:45:32 Waterpikmin i want to do it since there is so much content in the game 2015-07-01 05:45:51 Waterpikmin know what i mean? 2015-07-01 05:46:34 BetaMaster Yeah. It's packed with all kinds of extras and whatnot 2015-07-01 05:46:41 BetaMaster and other fun stuff 2015-07-01 05:46:48 Waterpikmin especially events throughout the year 2015-07-01 05:46:58 Waterpikmin dont you think that would be fun to do? 2015-07-01 05:47:02 Waterpikmin if you want 2015-07-01 05:47:12 Waterpikmin you could start a new town if you still have the game 2015-07-01 05:47:20 BetaMaster I haven't touched the game in over a year... 2015-07-01 05:47:27 Waterpikmin lol 2015-07-01 05:47:49 Waterpikmin its a game that has very slow pacing 2015-07-01 05:47:50 BetaMaster I also don't have a 3DS anymore, so that basically prevents me from playing any games 2015-07-01 05:47:58 Waterpikmin lol 2015-07-01 05:47:59 BetaMaster *3DS games 2015-07-01 05:48:23 Waterpikmin if only they had a wii u animal crossing, and not a MARIO PARTY CLONE 2015-07-01 05:49:01 BetaMaster A Wii U Animal Crossing would be a good idea 2015-07-01 05:49:08 BetaMaster with the large community that the Wii U has 2015-07-01 05:49:09 Waterpikmin they have one 2015-07-01 05:49:17 Waterpikmin but its based on a board game 2015-07-01 05:49:19 Waterpikmin with 2015-07-01 05:49:22 Waterpikmin amiibos... 2015-07-01 05:49:27 Waterpikmin i collect amiibos so 2015-07-01 05:49:48 Waterpikmin but it is not fitting to have an animal crossing game like that 2015-07-01 05:49:55 Waterpikmin it looks fun 2015-07-01 05:50:06 BetaMaster ah, heh 2015-07-01 05:50:16 Waterpikmin and i guess the largest reason ppl didnt like the digital event 2015-07-01 05:50:19 BetaMaster Also, if I randomly quit or stop responding, it's because my power went out 2015-07-01 05:50:28 Waterpikmin was because it was not what they expected 2015-07-01 05:50:39 Waterpikmin for example 2015-07-01 05:50:52 Waterpikmin metroid prime federation force 2015-07-01 05:51:11 Waterpikmin there is a petition to cancel the game because it isnt what ppl wanted 2015-07-01 05:51:18 Waterpikmin but it doesent work that way! 2015-07-01 05:51:34 Waterpikmin fan opinions are important 2015-07-01 05:51:48 BetaMaster Even if it's not exactly what people wanted, I'm sure there are still plenty of people who would buy the game 2015-07-01 05:52:14 Waterpikmin but it seems strange that people would not like the game and DISLIKE THE TRAILER FROM ANNOUNCEMENt 2015-07-01 05:52:29 Waterpikmin i am going to most likely buy it 2015-07-01 05:52:36 Waterpikmin a four player metroid game? 2015-07-01 05:52:37 Yoshi2 really, the only issue with federation force is that it is named metroid, it seems 2015-07-01 05:52:39 Waterpikmin sure! 2015-07-01 05:52:46 Waterpikmin yeah 2015-07-01 05:52:51 Yoshi2 most people wouldn't have cared if it wasn't named metroid 2015-07-01 05:53:03 Waterpikmin it seems that people dont like the fact that it is different 2015-07-01 05:53:08 Waterpikmin people dont like change 2015-07-01 05:53:12 Waterpikmin and im gonna be honest 2015-07-01 05:53:29 Waterpikmin its hard for me to like games like metroid changing 2015-07-01 05:53:35 BetaMaster I'm all for change if it's in a good direction 2015-07-01 05:53:43 Waterpikmin true 2015-07-01 05:53:50 BetaMaster A bad example of good change: Paper Mario 2015-07-01 05:53:52 Waterpikmin its a CO OP metroid game! 2015-07-01 05:53:56 BetaMaster -good 2015-07-01 05:53:57 Yoshi2 well, people wanted a real single player metroid and were annoyed that the game is a multiplayer spinoff 2015-07-01 05:54:17 BetaMaster *An example of bad change 2015-07-01 05:54:37 Waterpikmin paper mario had one very bad change 2015-07-01 05:54:45 Waterpikmin sticker star... ugh 2015-07-01 05:54:55 Waterpikmin NO EXPERIENCE SYSTEM 2015-07-01 05:55:04 BetaMaster Yeah, battles were pointless 2015-07-01 05:55:09 Waterpikmin thats not an RPG if there is no experience system 2015-07-01 05:55:23 BetaMaster The whole sticker system kind of bothered me too 2015-07-01 05:55:24 Waterpikmin super paper mario was one example of good change 2015-07-01 05:55:31 Waterpikmin it was different 2015-07-01 05:55:33 BetaMaster Super Paper Mario was absolutely amazing 2015-07-01 05:55:36 Waterpikmin but not bad different 2015-07-01 05:55:42 Waterpikmin i LOVED it 2015-07-01 05:55:47 Waterpikmin but not over ttyd 2015-07-01 05:55:52 Waterpikmin ttyd is my fav 2015-07-01 05:56:01 Waterpikmin now one thing that is positive 2015-07-01 05:56:04 BetaMaster I'm still unsure which one I enjoyed more 2015-07-01 05:56:24 BetaMaster Both of them had great music, stories, and dialogue 2015-07-01 05:56:28 Waterpikmin mario and luigi paper jam is gonna work so much better than sticker star 2015-07-01 05:56:49 Waterpikmin paper jam has an experience system 2015-07-01 05:56:50 BetaMaster Just another Mario and Luigi game 2015-07-01 05:56:53 BetaMaster Not that that's a bad thing 2015-07-01 05:57:26 Waterpikmin mario and luigi is awesome because it shows off the cooperation of both the brothers 2015-07-01 05:57:51 Waterpikmin and technically, paper mario is in it 2015-07-01 05:58:05 Waterpikmin so its not like we didnt get any paper mario content 2015-07-01 05:58:13 Waterpikmin wait i forgot 2015-07-01 05:58:17 Waterpikmin no pikmin 4 2015-07-01 05:58:23 Waterpikmin nintendo loses e3 2015-07-01 05:58:28 Waterpikmin jk 2015-07-01 05:58:41 Waterpikmin i think it may be announced later this year 2015-07-01 05:58:58 BetaMaster I think I might be the only person in this channel who has never played a Pikmin game 2015-07-01 05:59:10 Waterpikmin you never played a pikmin game? 2015-07-01 05:59:23 BetaMaster I have Pikmin 3, but I haven't played it 2015-07-01 05:59:30 Waterpikmin i suggest you play it soon 2015-07-01 05:59:35 Yoshi2 definitely 2015-07-01 05:59:38 Waterpikmin its outstanding 2015-07-01 05:59:52 BetaMaster I don't know that I will; my interest in video games has declined a lot 2015-07-01 06:00:04 Waterpikmin it is one of the most unrecognized games 2015-07-01 06:00:14 Waterpikmin because there have only been 3 games 2015-07-01 06:00:27 Waterpikmin over the life span of 13 years! 2015-07-01 06:01:23 Waterpikmin one thing i like about pikmin 3 was that it made the environment look outstanding 2015-07-01 06:01:28 Waterpikmin hold on 2015-07-01 06:01:37 Waterpikmin i better check omnis twitter lol 2015-07-01 06:01:50 Waterpikmin nothing lol 2015-07-01 06:01:59 Waterpikmin we may get a response tomorrow 2015-07-01 06:02:26 BetaMaster If I get the time and am in the mood, I'll definitely try it out 2015-07-01 06:02:39 Waterpikmin sounds good lol 2015-07-01 06:05:32 Waterpikmin i dont believe you have animal crossing do you yoshi? 2015-07-01 06:06:32 BetaMaster Gonna go to bed now. G'night, everyone 2015-07-01 06:07:01 Waterpikmin bye beta! 2015-07-01 06:07:07 Yoshi2 good night 2015-07-01 06:07:16 Yoshi2 I have the game but no working 3ds 2015-07-01 06:07:24 Waterpikmin ok i thought so lol 2015-07-01 06:11:03 Waterpikmin i think im gonna head out 2015-07-01 06:11:10 Waterpikmin talk to you later! 2015-07-01 06:12:05 Yoshi2 see ya 2015-07-01 06:18:07 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 06:22:14 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-07-01 06:55:51 <-- Yoshi2 (Yoshi2@8908-8so4-l6e0-2-757q-x57s-p8q7-w9wv.ipv7dyn.netcologne.de) has quit (Quit: Leaving) 2015-07-01 07:48:20 <-- RingtailedFox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has quit (Read error: No route to host) 2015-07-01 07:48:57 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-07-01 09:57:16 --> Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-01 10:02:58 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: z) 2015-07-01 11:00:11 <-- Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 12:04:24 --> Yoshi2 (Yoshi2@134.61.pi.qw) has joined #pikipedia 2015-07-01 13:11:34 --> Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-01 13:22:24 <-- Yoshi2 (Yoshi2@134.61.pi.qw) has quit (Quit: Leaving) 2015-07-01 13:32:29 Pi rip 2015-07-01 15:15:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 15:30:07 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 15:33:03 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 15:38:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 15:43:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 15:51:29 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-07-01 15:51:36 Waterpikmin hello? 2015-07-01 15:52:43 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Client Quit) 2015-07-01 15:57:32 UltraMario goodbye? 2015-07-01 15:58:17 --> Ultimate (Mibbit@qyg1-mtqf3-7-1-inlr140.4-3.cable.virginm.net) has joined #pikipedia 2015-07-01 15:58:47 Ultimate Stupid question of the day; How do you change your username? :P 2015-07-01 15:58:50 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 15:59:14 Pi Ultimate: type /nick 2015-07-01 15:59:37 Pi And then exchange '' with the nick you want to change to. 2015-07-01 15:59:49 Ultimate Ok, thanks! :D 2015-07-01 15:59:59 -- Ultimate is now known as Wolf 2015-07-01 16:00:04 Pi There you go! 2015-07-01 16:00:28 Pi Oh, and it can't have spaces, too. So if you want a space, use the underscore character, _. 2015-07-01 16:00:51 Wolf Ok! 2015-07-01 16:01:17 Wolf Welp, gotta go! Thanks for the help! :D 2015-07-01 16:01:28 <-- Wolf (Mibbit@qyg1-mtqf3-7-1-inlr140.4-3.cable.virginm.net) has quit (Client Quit) 2015-07-01 16:02:00 Pi lmao 2015-07-01 16:02:03 Pi oh well 2015-07-01 16:03:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 16:20:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 16:20:47 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 16:20:52 --> Yoshi2 (Yoshi2@2001:4dd3:d774:g:qxyr:hpvl:ujlx:qjsj) has joined #pikipedia 2015-07-01 16:32:06 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 16:59:34 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 17:09:37 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 17:32:21 BetaMaster jhi 2015-07-01 17:36:58 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-07-01 17:37:04 Waterpikmin hello? 2015-07-01 17:37:25 Waterpikmin omni checked his twitter because he responded to something else 2015-07-01 17:37:56 Waterpikmin do you think that omni responded to creative sushis message? 2015-07-01 17:40:50 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 17:52:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 17:56:05 -- Pi is now known as RandomYoshi 2015-07-01 17:56:20 -- RandomYoshi is now known as Pidgey 2015-07-01 18:04:06 Waterpikmin hi pidgey! 2015-07-01 18:04:08 Waterpikmin lol 2015-07-01 18:04:13 Pidgey hi 2015-07-01 18:04:25 Waterpikmin im hype 2015-07-01 18:04:47 Waterpikmin i saw that omni responded to a topic and im hoping he saw our message 2015-07-01 18:07:22 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 18:37:56 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 18:40:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 18:54:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 18:58:37 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-01 19:03:56 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-01 19:03:56 Testyo Greetings everyone! 2015-07-01 19:03:59 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 19:04:39 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-01 19:04:39 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-01 19:06:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-01 19:07:36 Yoshi2 hey Espyo & Testyo 2015-07-01 19:07:37 Testyo I've made one for the engine, using textures from the wikians lazying around: not any more 2015-07-01 19:11:42 @Espyo hi 2015-07-01 19:39:19 Testyo [Pikipedia RC] Talk:Plant by Scruffy (+265) http://www.pikminwiki.com/index.php?title=Talk:Plant&curid=19112&diff=151044&oldid=151036 2015-07-01 19:59:31 Testyo [Fanon RC] Desert of Depression by Piki1 (-22 m /* Enemies Encountered */ ) http://www.pikminfanon.com/index.php?title=Desert_of_Depression&curid=7920&diff=48632&oldid=48589 2015-07-01 20:09:34 Testyo [Fanon RC] Sandy Sinkhole by Piki1 (+1608 N Created page with "{{Pikmin:SA}} The '''Sandy Sinkhole''' is likely the first h...) http://www.pikminfanon.com/index.php?title=Sandy_Sinkhole&curid=9688&diff=48633&oldid=0 2015-07-01 20:09:43 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 20:14:35 Testyo [Fanon RC] Desert of Depression by Piki1 (+39 m /* Enemies Encountered */ ) http://www.pikminfanon.com/index.php?title=Desert_of_Depression&curid=7920&diff=48634&oldid=48632 2015-07-01 20:14:35 Testyo [Fanon RC] Swamped Cave by Piki1 (-4 m /* Enemies */ ) http://www.pikminfanon.com/index.php?title=Swamped_Cave&curid=7892&diff=48635&oldid=44483 2015-07-01 20:22:06 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-01 20:23:08 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 20:39:43 Testyo [Fanon RC] Quicksand Cave by Piki1 (+1281 N Save it once, lost all progress. Had to rewrite it. How frustrating!) http://www.pikminfanon.com/index.php?title=Quicksand_Cave&curid=9689&diff=48636&oldid=0 2015-07-01 20:40:12 Pidgey This is why you save everything in .txt documents. 2015-07-01 20:40:41 @Espyo I have an addon for Firefox that saves my textbox content as I type 2015-07-01 20:40:48 @Espyo so even if the whole laptop decides to collapse 2015-07-01 20:40:51 @Espyo I can always get it back 2015-07-01 20:41:57 Yoshi2 I have installed that addon, but I have never needed it 2015-07-01 20:42:01 Yoshi2 or used it 2015-07-01 20:42:40 @Espyo thing is, you don't need it, until you do 2015-07-01 20:57:27 @Espyo so, the real problem of the "plants/fungi" article is the name 2015-07-01 20:57:35 @Espyo I'm gonna go with "Plant and fungus" unless somebody opposes 2015-07-01 20:57:41 @Espyo it's awkward, but it's the best possible 2015-07-01 21:04:27 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-01 21:09:55 Testyo [Fanon RC] Pikmin: Sagittarius's Adv... by Piki1 (+120 m /* Weather */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_Sagittarius's_Adventure&curid=7858&diff=48637&oldid=48599 2015-07-01 21:13:06 @J I don't really care that fungi aren't plants, just call it plants 2015-07-01 21:13:23 @J also doesn't Firefox save text in textareas by default? 2015-07-01 21:13:38 @J even if you close the tab, then close the window, then kill the remaining windows? 2015-07-01 21:13:53 @Espyo it does save it 2015-07-01 21:14:01 @Espyo wait 2015-07-01 21:14:07 @Espyo it saves it if there's an unexpected shutdown 2015-07-01 21:14:16 @Espyo and sometimes if you close it manually 2015-07-01 21:14:20 @Espyo I'm not too sure, you know 2015-07-01 21:14:25 UltraMario wait wut 2015-07-01 21:14:28 @J I thought it always does 2015-07-01 21:14:36 @Espyo but I'm fairly sure that if you had text, close the tab, go away, and return hours later 2015-07-01 21:14:38 UltraMario what are we talking about 2015-07-01 21:14:39 @Espyo it'd have purged it 2015-07-01 21:14:46 @Espyo Firefox saving what you wrote in text boxes 2015-07-01 21:14:49 @J even if you delete the text from the box, it retains the history 2015-07-01 21:14:51 UltraMario ??? 2015-07-01 21:14:54 @J maybe if you refresh? 2015-07-01 21:14:59 @J maybe bypass cache? 2015-07-01 21:15:17 @J yeah, maybe it's time-based 2015-07-01 21:16:09 @J although I've seen it save text from a box that doesn't even exist in the HTML (created by JavaScript), when I closed the browser and turned off the computer overnight 2015-07-01 21:16:34 @J UltraMario: [20:39:43] Testyo [Fanon RC] Quicksand Cave by Piki1 (+1281 N Save it once, lost all progress. Had to rewrite it. How frustrating!) http://www.pikminfanon.com/index.php?title=Quicksand_Cave&curid=9689&diff=48636&oldid=0 2015-07-01 21:16:34 @J [20:40:12] Pidgey This is why you save everything in .txt documents. 2015-07-01 21:16:36 Testyo "te" is not included in Hocotatian, so that part shouldn't be really pissed if after all this time, Wiimms SZS Tools did exactly what we wanted and more 2015-07-01 21:18:44 UltraMario oh 2015-07-01 21:18:48 UltraMario well i mean 2015-07-01 21:18:59 UltraMario when you mentioned the fungi 2015-07-01 21:19:06 @J oh 2015-07-01 21:19:09 UltraMario what, was it part of a category or something? 2015-07-01 21:19:16 @J [20:57:27] @Espyo so, the real problem of the "plants/fungi" article is the name 2015-07-01 21:19:16 @J [20:57:35] @Espyo I'm gonna go with "Plant and fungus" unless somebody opposes 2015-07-01 21:19:19 UltraMario or like an infobox 2015-07-01 21:19:25 UltraMario oic 2015-07-01 21:19:31 UltraMario makes enough sense 2015-07-01 21:19:41 Pidgey how can something make 'enough' sense 2015-07-01 21:19:45 UltraMario fungi doesnt have to be plants to be in the same article 2015-07-01 21:19:48 Pidgey nevermind I answered my own question# 2015-07-01 21:19:53 UltraMario lol 2015-07-01 21:20:01 Testyo [Fanon RC] Deserted Town by Piki1 (+1138 N Created page with "{{Pikmin:SA}} The '''Deserted Town''' is a rather large dung...) http://www.pikminfanon.com/index.php?title=Deserted_Town&curid=9690&diff=48638&oldid=0 2015-07-01 21:30:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 21:32:42 <-- Yoshi2 (Yoshi2@2001:4dd3:d774:g:qxyr:hpvl:ujlx:qjsj) has quit (Quit: Leaving) 2015-07-01 21:35:05 Testyo [Pikipedia RC] Volatile Dweevil by 108.202.209.88 (+241 /* Trivia */) http://www.pikminwiki.com/index.php?title=Volatile_Dweevil&curid=1551&diff=151046&oldid=149627 2015-07-01 21:35:37 Pidgey oh lord 2015-07-01 21:37:59 @Espyo yeugh... 2015-07-01 21:44:56 Pidgey you don't add 241 bytes to a Trivia section 2015-07-01 21:45:08 Pidgey it's approximately 241 bytes too much 2015-07-01 21:46:09 @Espyo hehe 2015-07-01 21:47:20 @Espyo that KidIcarus guy is going NUTS on the NIWA forums 2015-07-01 21:53:54 Pidgey oh my 2015-07-01 21:54:03 Pidgey that kind of posting is just 2015-07-01 21:54:05 Pidgey no 2015-07-01 22:06:08 @J day 2 as well 2015-07-01 22:06:16 @J well, I did the thing 2015-07-01 22:06:17 @J http://niwanetwork.org/index.php 2015-07-01 22:09:30 @J when is SGDQ BTW? 2015-07-01 22:15:05 Pidgey hang on, I'm asking Google 2015-07-01 22:15:38 Pidgey 26th of July to the 1st of August 2015-07-01 22:15:39 Testyo 1 st = 6.3503 kg / 14 lb / 224 oz 2015-07-01 22:15:47 Pidgey st? 2015-07-01 22:15:50 Pidgey oh, stone 2015-07-01 22:15:58 @Espyo "the thing" 2015-07-01 22:16:06 @Espyo oh, right 2015-07-01 22:16:09 @Espyo uploading the secret 2015-07-01 22:17:36 Pidgey I wonder what it is 2015-07-01 22:17:40 Pidgey Banjo-Kazooie? 2015-07-01 22:18:01 @Espyo only 3 days left 2015-07-01 22:18:23 Pidgey speaking of Banjo-Kazooie, did anyone here give mon£y to Yooka-Laylee 2015-07-01 22:21:43 @Espyo I didn't, but I'd be pretty inclined to 2015-07-01 22:21:51 @Espyo never grew up with BK, but it seems like one hell of a project 2015-07-01 22:22:14 Pidgey I gave £80 to the project, £70 for the tier and £10 for the shipping 2015-07-01 22:22:15 Testyo £ 80 = 113.216 € / $ 123.088 2015-07-01 22:22:20 Pidgey oh hey 2015-07-01 22:22:33 Pidgey are those continuously updated by the way? 2015-07-01 22:22:44 @Espyo the wikis? 2015-07-01 22:22:47 Pidgey the exchange rates 2015-07-01 22:22:55 @Espyo oh 2015-07-01 22:23:00 @Espyo no, I update them manually 2015-07-01 22:23:02 Pidgey ah 2015-07-01 22:23:04 @Espyo the last update was like a month ago 2015-07-01 22:23:07 @Espyo so it's more or less reliable 2015-07-01 22:23:10 Pidgey should change it now 2015-07-01 22:23:14 Pidgey because of, y'know 2015-07-01 22:23:15 Pidgey Greece 2015-07-01 22:23:31 @Espyo hm, yeah 2015-07-01 22:23:34 @Espyo when I remember, I will 2015-07-01 22:23:39 Pidgey do so 2015-07-01 22:26:25 @Espyo the point of that isn't so much so we can get accurate conversions 2015-07-01 22:26:32 @Espyo it's more so we can communicate better in different regions 2015-07-01 22:26:38 Pidgey ah 2015-07-01 22:26:40 @Espyo like, if I need to tell you lot how much a game costs over here 2015-07-01 22:26:43 @Espyo and I say it's 30€ 2015-07-01 22:26:43 Testyo 30 € = £ 21.198 / $ 32.616 2015-07-01 22:26:50 @Espyo you'd be left wondering if that's a lot or really cheap 2015-07-01 22:27:01 @Espyo it's good to have it precise, but it's a bit secondary *shrug* 2015-07-01 22:27:10 Pidgey I suppose so 2015-07-01 22:27:26 Pidgey either way I'd still have to make a Google search because it doesn't support SEK :p 2015-07-01 22:28:16 @Espyo mhm 2015-07-01 22:29:20 Testyo I need a notebook to to make sure it actually sounds right 2015-07-01 22:29:39 * Pidgey gives Testyo a notebook 2015-07-01 22:29:40 Testyo that's not editing the entire thing is difficult 2015-07-01 22:34:39 @Espyo welp 2015-07-01 22:35:10 Pidgey ? 2015-07-01 22:36:20 @Espyo Testyo's shenanigans 2015-07-01 22:36:21 Testyo mhm, really that's neat 2015-07-01 22:36:24 @Espyo mhm 2015-07-01 22:36:50 Pidgey indeed so 2015-07-01 22:55:27 Testyo [Fanon RC] Topic:How do you add subc... by Ragnorok X (+68) http://www.pikminfanon.com/index.php?title=Topic:How_do_you_add_subcategories_on_a_page?&curid=9685&diff=48639&oldid=48621 2015-07-01 22:56:18 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-01 22:56:19 Pidgey why is /still/ no proper forum for Pikipedia and Pikmin Fanon 2015-07-01 22:57:53 @Espyo it'd be pretty empty 2015-07-01 22:59:23 Pidgey hmm 2015-07-01 23:06:10 @J aw, I'm on holiday probably without internet most of SGDQ then 2015-07-01 23:06:26 @Espyo ah, crap 2015-07-01 23:06:32 @J hopefully the games I'm interested in are 26th-28th 2015-07-01 23:06:53 @J also, Pidgey: you don't use Euros? 2015-07-01 23:06:59 Pidgey no 2015-07-01 23:07:07 Pidgey none of the Scandinavian countries use the Euro 2015-07-01 23:07:15 Pidgey we all use our variations of the Krona 2015-07-01 23:07:31 Pidgey SEK - Sweden, DKK - Denmark, NOK - Norway 2015-07-01 23:07:38 @J hmm, okay 2015-07-01 23:08:41 Pidgey the only Nordic country that uses the Euro is Finland 2015-07-01 23:09:32 Pidgey I don't actually know what Iceland uses, maybe Icelandic Krona? 2015-07-01 23:11:46 Pidgey and this is because, well, nobody here actually trusts the Euro to deliver 2015-07-01 23:13:26 @J sure, I don't really understand or care about economics 2015-07-01 23:13:42 Pidgey neither do I, just reporting the common opinion on it 2015-07-01 23:14:07 @J in other news, it's been really warm here lately, especially for England 2015-07-01 23:14:13 @J I think it was above 30C today 2015-07-01 23:14:14 Testyo 30 C = 86 °F / 303.15 K 2015-07-01 23:14:21 Pidgey haha Kelvin 2015-07-01 23:14:49 @J so I've been avoiding food shopping because too lazy to walk in the heat 2015-07-01 23:15:00 @Espyo pseudo-heat 2015-07-01 23:15:04 @Espyo just toggles between heat and thunder 2015-07-01 23:15:18 @Espyo just as I was typing that, a British friend on skype said he got a thunder 2015-07-01 23:15:19 @J we'll see which happens first, starvation or the end of summer 2015-07-01 23:15:47 @Espyo you won't be able to resist 2015-07-01 23:15:49 @J I think it is supposed to rain heavily tomorrow 2015-07-01 23:40:40 Testyo [Fanon RC] User talk:Ragnorok X by Ragnorok X (+86 /* Re: Pikmin RP */ ) http://www.pikminfanon.com/index.php?title=User_talk:Ragnorok_X&curid=9652&diff=48640&oldid=48622 2015-07-01 23:40:40 Testyo [Fanon RC] User talk:Ragnorok X by Ragnorok X (+86 /* Help */ ) http://www.pikminfanon.com/index.php?title=User_talk:Ragnorok_X&curid=9652&diff=48641&oldid=48640 2015-07-02 00:05:38 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 00:10:46 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-02 00:10:58 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-02 00:21:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 00:21:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 00:24:01 --> Ultramario3000 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 00:24:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by Ultramario3000))) 2015-07-02 00:24:38 -- Ultramario3000 is now known as UltraMario 2015-07-02 00:30:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 00:30:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 00:37:55 Pidgey night 2015-07-02 00:38:04 <-- Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 00:39:58 -- UltraMario is now known as Ultramario3000 2015-07-02 00:40:36 -- Ultramario3000 is now known as UltraAgent3 2015-07-02 00:44:21 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 00:46:15 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario))) 2015-07-02 00:46:45 -- UltraMario is now known as UltraAgent3 2015-07-02 00:47:01 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-02 00:48:00 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 00:49:07 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario))) 2015-07-02 00:49:39 -- UltraMario is now known as UltraAgent3 2015-07-02 00:58:10 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-07-02 00:58:19 Waterpikmin hello? 2015-07-02 01:02:51 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 01:03:17 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 01:06:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 01:10:52 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-02 01:11:48 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 01:13:01 -- UltraMario is now known as UltraAgent3 2015-07-02 01:17:25 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 01:17:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 01:19:32 --> UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 01:19:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraAgent3))) 2015-07-02 01:20:02 -- UltraAgent3 is now known as UltraMario 2015-07-02 01:34:48 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 01:35:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-02 01:35:18 -- UM is now known as UltraMario 2015-07-02 01:36:35 --> UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 01:36:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraAgent3))) 2015-07-02 01:45:05 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 01:45:19 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 01:45:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-02 01:46:15 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 01:46:47 -- UltraMario is now known as UltraAgent3 2015-07-02 01:51:44 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 240 seconds) 2015-07-02 01:55:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 01:56:48 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario))) 2015-07-02 01:57:39 -- UltraMario is now known as UltraAgent3 2015-07-02 02:11:48 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 02:14:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-02 02:15:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 02:15:40 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 02:17:03 --> UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 02:17:26 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraAgent3))) 2015-07-02 02:17:34 -- UltraAgent3 is now known as UltraMario 2015-07-02 02:17:53 -- UltraMario is now known as UltraAgent3 2015-07-02 02:31:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 02:34:21 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraMario))) 2015-07-02 02:37:55 -- UltraMario is now known as UltraAgent3 2015-07-02 02:53:32 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-02 02:53:43 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 03:09:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 03:14:05 --> UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 03:14:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraAgent3))) 2015-07-02 03:20:10 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 04:04:50 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 04:25:11 --> UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 04:26:41 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UltraAgent3))) 2015-07-02 04:37:19 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 04:41:39 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 04:42:09 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-02 04:42:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 04:45:10 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-02 04:46:12 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 04:55:31 -- UltraMario is now known as UltraAgent3 2015-07-02 04:55:58 -- UltraAgent3 is now known as UltraMario 2015-07-02 04:56:23 -- UltraMario is now known as UltraAgent3 2015-07-02 05:06:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 05:10:29 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 05:18:57 -- UltraMario is now known as UltraAgent3 2015-07-02 05:20:59 <-- UltraAgent3 (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 05:21:14 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-02 05:33:08 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2015-07-02 05:40:08 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 05:40:59 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-02 05:41:00 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-02 05:50:58 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 06:50:02 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-02 07:32:12 --> Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-02 07:38:52 <-- Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 07:40:51 --> Pi (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-02 07:43:56 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-02 09:21:10 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: zzz) 2015-07-02 11:06:51 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-02 11:06:51 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-02 11:07:13 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-07-02 12:01:46 --> Yoshi2 (Yoshi2@251-797.eduroam.rwth-aachen.de) has joined #pikipedia 2015-07-02 14:24:37 <-- Yoshi2 (Yoshi2@251-797.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-07-02 17:21:52 --> Spark (sparkles@2602:306:3717:jlik:ippt:moqx:tipv:xsjw) has joined #pikipedia 2015-07-02 18:14:56 --> StarWolf (Mibbit@bfc39-925.skytechbb.com) has joined #pikipedia 2015-07-02 18:15:19 <-- StarWolf (Mibbit@bfc39-925.skytechbb.com) has quit (Client Quit) 2015-07-02 18:28:55 --> Yoshi2 (Yoshi2@2001:4dd3:dc91:p:ijoz:qtum:uqly:kwmw) has joined #pikipedia 2015-07-02 18:41:57 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-02 18:41:57 Testyo Hi everyone! 2015-07-02 18:42:45 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-02 18:42:45 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-02 18:43:17 Yoshi2 hiho Testyo & Espyo 2015-07-02 18:43:18 Testyo don't think anything should go oh 2015-07-02 18:44:25 Yoshi2 is anybody else also melting in this weather? 2015-07-02 18:46:28 Pi Sure am. 2015-07-02 18:46:44 Pi It's 32C here, it's way too warm. 2015-07-02 18:46:44 Testyo 32 C = 89.6 °F / 305.15 K 2015-07-02 18:48:23 @Espyo hi 2015-07-02 18:48:38 @Espyo heh 2015-07-02 18:48:41 Pi hi Espyo 2015-07-02 18:48:42 @Espyo 32C over here is just "warm" 2015-07-02 18:48:43 Testyo 32 C = 89.6 °F / 305.15 K 2015-07-02 18:48:45 @Espyo 35 is "toasty" 2015-07-02 18:48:52 @Espyo above that is actually kinda uncomfortable 2015-07-02 18:48:54 @Espyo but 32? 2015-07-02 18:58:21 Yoshi2 anything above 30°C is uncomfortable for me if there is no wind 2015-07-02 18:58:21 Testyo 30 °C = 86 °F / 303.15 K 2015-07-02 18:58:25 Yoshi2 being cooked alive is not fun 2015-07-02 19:00:48 Yoshi2 and the busses were HOT today 2015-07-02 19:01:19 Yoshi2 in one bus I was in, no matter what I touched, it was very warm 2015-07-02 19:01:21 @J 25C today, and I didn't like it 2015-07-02 19:01:22 Testyo 25 C = 77 °F / 298.15 K 2015-07-02 19:01:38 @J I just walked 2 miles in it 2015-07-02 19:01:38 Testyo 2 miles = 3.2206 km 2015-07-02 19:02:14 @J why is 6pm the warmest part of the day? 2015-07-02 19:02:15 Pi I took the tram today, and the chauffeur told everyone that it was very important to regularly hydrate yourself. 2015-07-02 19:03:09 @J Yoshi2: okay, now I'm just envisioning you wandering around the bus poking everything 2015-07-02 19:04:11 Yoshi2 J: yup, I even poke the bus driver when he looks away :> 2015-07-02 19:06:13 Pi Yoshi2: extremely lewd 2015-07-02 19:06:47 Yoshi2 :-) 2015-07-02 19:07:08 Yoshi2 Pi: at one train station some employees were giving out water to people who walked up to them 2015-07-02 19:09:08 Pi oh, really? 2015-07-02 19:09:29 Yoshi2 yup, was quite neat 2015-07-02 19:11:10 Pi where is this train station? 2015-07-02 19:13:29 Yoshi2 https://en.wikipedia.org/wiki/D%C3%BCren_station 2015-07-02 19:13:52 Pi oh 2015-07-02 19:13:59 Pi I take it that you're from Germany? 2015-07-02 19:14:29 Yoshi2 yup 2015-07-02 19:14:36 Pi ah 2015-07-02 19:14:49 Pi I'd like to go to Germany 2015-07-02 19:15:06 Pi I mean, I've been through Germany, but not actually to Germany. 2015-07-02 19:17:29 Yoshi2 go for it :> 2015-07-02 19:17:40 Yoshi2 (when you have the opportunity) 2015-07-02 19:17:43 Pi of course 2015-07-02 19:42:34 Testyo [Fanon RC] Topic:Pikmin Engine by Es... by Piki1 (+73 m /* Is This Still Being Worked On? */ ) http://www.pikminfanon.com/index.php?title=Topic:Pikmin_Engine_by_Espyo&curid=7853&diff=48653&oldid=48650 2015-07-02 19:45:19 @Espyo gotta love that period before GDQ, where Metroid research activity shoots up 2015-07-02 19:45:36 Pi mhm 2015-07-02 19:45:44 @Espyo heck, or at least becomes more public 2015-07-02 19:49:28 Pi I do wonder what crazy route that'll be used during SGDQ 2015-07-02 19:50:01 Pi because I'd seriously doubt we're going to see the same route used in the old 100% route 2015-07-02 19:50:10 Pi *old 100% run 2015-07-02 19:51:46 @Espyo mhm 2015-07-02 19:52:14 Pi it'll be fun watching a run that doesn't end with a massive clean-up section 2015-07-02 19:52:36 Pi provided that's going to be the case, of course 2015-07-02 19:57:41 Testyo [Fanon RC] Trash-Filled Hole by Piki1 (+1068 N Created page with "{{Pikmin:SA}} The '''Trash-Filled Hole'' is the only dungeon...) http://www.pikminfanon.com/index.php?title=Trash-Filled_Hole&curid=9692&diff=48654&oldid=0 2015-07-02 19:57:41 Testyo [Fanon RC] Trash-Filled Hole by Piki1 (+1 m What's with all these stupid mistakes I make?) http://www.pikminfanon.com/index.php?title=Trash-Filled_Hole&curid=9692&diff=48655&oldid=48654 2015-07-02 20:02:10 --> SailorHaumea (DN-boards1@2602:306:8381:pzyq:xwwj:rluu:roth:tnky) has joined #pikipedia 2015-07-02 20:02:45 @Espyo hi 2015-07-02 20:04:43 Pi hi 2015-07-02 20:22:52 Testyo [Fanon RC] Hoco Air Filter by Piki1 (+652 N Created page with "{{Pikmin:SA}} The '''Hoco Air Filter''' is an object found i...) http://www.pikminfanon.com/index.php?title=Hoco_Air_Filter&curid=9693&diff=48656&oldid=0 2015-07-02 20:22:52 Testyo [Fanon RC] Arena of Flames by Piki1 (-4 m) http://www.pikminfanon.com/index.php?title=Arena_of_Flames&curid=7883&diff=48657&oldid=40402 2015-07-02 20:27:53 Testyo [Fanon RC] Captain Camp by Piki1 (-3 m /* Challenges */ ) http://www.pikminfanon.com/index.php?title=Captain_Camp&curid=8186&diff=48658&oldid=41461 2015-07-02 20:37:58 Testyo [Fanon RC] Twisted Cave by Piki1 (-1 m) http://www.pikminfanon.com/index.php?title=Twisted_Cave&curid=7908&diff=48659&oldid=40052 2015-07-02 20:51:15 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-02 20:51:41 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-02 20:51:41 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-02 21:02:58 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Bye everyone!) 2015-07-02 21:04:57 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-02 21:04:57 Testyo Greetings everyone! 2015-07-02 21:05:45 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Read error: Connection reset by peer) 2015-07-02 21:30:22 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-02 21:30:23 Testyo Hey everyone! 2015-07-02 21:58:32 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-02 21:58:33 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-02 21:58:41 @PikFan hi 2015-07-02 21:58:51 @Espyo hi 2015-07-02 21:59:07 @PikFan so last night I was going through the policy pages of Pikipedia 2015-07-02 21:59:15 @PikFan because Fanon's policy is seriously lacking 2015-07-02 21:59:16 @Espyo mhm? 2015-07-02 21:59:28 @PikFan we never finished [[f:PikminFanon:Article Policy]], did we? 2015-07-02 21:59:29 Testyo "PikminFanon:Article_Policy" article = http://www.pikminfanon.com/index.php?title=PikminFanon:Article_Policy 2015-07-02 21:59:49 @Espyo I suppose not, no 2015-07-02 22:00:06 @PikFan also, that policy needs to be split up for specific page types 2015-07-02 22:00:10 @PikFan like on Pikipedia 2015-07-02 22:00:23 @PikFan like game articles, cave articles, etc 2015-07-02 22:00:27 @Espyo yeah 2015-07-02 22:01:13 @PikFan the game box thing down at the bottom, you mean like this? {{f:PCW}} 2015-07-02 22:01:14 Testyo "PCW" template = http://www.pikminfanon.com/index.php?title=Template:PCW 2015-07-02 22:01:31 @Espyo one sec, had to close Firefox 2015-07-02 22:06:40 @PikFan hmm 2015-07-02 22:06:56 @PikFan Pikipedia really has all the specific article policies Fanon needs 2015-07-02 22:07:13 @PikFan except they just need to be adjusted 2015-07-02 22:07:21 @PikFan hmmm... 2015-07-02 22:07:33 @PikFan though there's the likes of treasures and other collectibles 2015-07-02 22:08:02 @PikFan oh, right 2015-07-02 22:08:17 @PikFan Fanon also needs an area article policy 2015-07-02 22:09:07 -- Pi is now known as Pidgey 2015-07-02 22:09:21 @PikFan I still feel this is too strict, but it might be helpful for outlining sections http://www.pikminfanon.com/PikminFanon:Formatting_Policy 2015-07-02 22:16:01 @PikFan http://www.pikminwiki.com/Pikipedia:Policy#Format 2015-07-02 22:16:02 @PikFan hmm 2015-07-02 22:16:35 @PikFan I feel like all of that could be organized away into help pages 2015-07-02 22:16:50 @PikFan ...but it has to be followed, so I see why it's a policy 2015-07-02 22:21:07 @Espyo sorry, had to be away 2015-07-02 22:21:25 @Espyo mhm 2015-07-02 22:22:15 @Espyo also yeah, the "game box at the end" template is like that 2015-07-02 22:29:27 @PikFan ah 2015-07-02 22:29:32 @PikFan was afk 2015-07-02 22:31:09 @PikFan oh, I had an idea for enemies 2015-07-02 22:31:26 @PikFan http://www.pikminwiki.com/Awakening_Wood so here it says detail the location of each enemy, right? 2015-07-02 22:31:36 @PikFan we should also say how many days it takes for them to respawn 2015-07-02 22:36:16 @PikFan uh, Fanon doesn't need {{guide}}, right? 2015-07-02 22:36:16 Testyo "guide" template = http://www.pikminwiki.com/index.php?title=Template:guide 2015-07-02 22:36:38 @Espyo we should, yes 2015-07-02 22:36:43 @Espyo I'd say it doesn't 2015-07-02 22:37:08 @PikFan yeah 2015-07-02 22:37:37 @PikFan well, we might need it later 2015-07-02 22:37:58 @PikFan when we make fangames with your engine 2015-07-02 22:38:08 @PikFan but that'll be far in the future 2015-07-02 22:38:48 @Espyo quite far 2015-07-02 22:38:51 @Espyo though speaking of 2015-07-02 22:39:02 @PikFan hmm? 2015-07-02 22:39:03 @Espyo today I did say about how the new AI system is important, although a bit invisible to the players 2015-07-02 22:39:18 @Espyo thanks to the new AI system, I was able to implement gates into the game 2015-07-02 22:39:24 @Espyo in just 4 hours 2015-07-02 22:39:28 @PikFan wow 2015-07-02 22:39:34 @Espyo I estimated 4 WEEKS 2015-07-02 22:39:47 @Espyo just like that, boom, the engine supports gates 2015-07-02 22:39:59 @PikFan uh 2015-07-02 22:40:10 @PikFan so if you think it'll go like this for other things 2015-07-02 22:40:23 @Espyo bridges will likely take 1 hour 2015-07-02 22:40:23 @PikFan new update before July ends? 2015-07-02 22:40:26 @Espyo well, sans graphics 2015-07-02 22:40:28 Yoshi2 it's awesome when new stuff accelerates development 2015-07-02 22:40:33 @Espyo it really is 2015-07-02 22:40:42 @Espyo I still have to do the leader AI, and that can take anywhere from 3 days to 2 weeks 2015-07-02 22:40:51 @Espyo and I still have to add more stuff to make it feel better 2015-07-02 22:40:52 Yoshi2 but developing that new stuff (e.g. the AI system you mentioned) can take a lot of time 2015-07-02 22:40:56 @Espyo it sure can 2015-07-02 22:41:01 @Espyo but in my case, it was really important 2015-07-02 22:41:07 @Espyo if the engine is meant to be flexible and allow any mob to do anything 2015-07-02 22:41:15 @Espyo I NEEDED a more advanced AI system than what I had 2015-07-02 22:41:35 @PikFan oh, how's the lite engine going? 2015-07-02 22:41:40 @Espyo 0% progress 2015-07-02 22:41:45 @Espyo 0% progress since the last update 2015-07-02 22:41:46 @PikFan heh 2015-07-02 22:41:50 @Espyo which was when it started 2015-07-02 22:41:53 @Espyo that was more of a "what if" 2015-07-02 22:42:09 @PikFan hmm, I see 2015-07-02 22:42:15 @Espyo I'd love to do it though 2015-07-02 22:42:35 @PikFan hey, the engine will be 2 years old in 11 days 2015-07-02 22:43:06 @Espyo oh wow 2015-07-02 22:43:31 @PikFan time flies... 2015-07-02 22:43:34 @Espyo mhm... 2015-07-02 22:44:01 @PikFan heh, I wonder what'll happen this summer 2015-07-02 22:44:18 @Espyo well, I work all the same 2015-07-02 22:44:21 @PikFan summer 2013: the fangame engine starts, Pikmin 3 is released 2015-07-02 22:44:27 @PikFan summer 2014: the merge 2015-07-02 22:44:31 @PikFan summer 2015: ??? 2015-07-02 22:44:32 @Espyo oh yeha 2015-07-02 22:44:34 @Espyo *yeah 2015-07-02 22:45:01 @PikFan it seems like the most exciting things happen in the summer 2015-07-02 22:45:17 @PikFan but hey, it's summer 2015-07-02 22:45:25 @PikFan exciting things are bound to happen 2015-07-02 22:45:37 @Espyo yep 2015-07-02 22:45:58 Pidgey like heat 2015-07-02 22:46:02 Pidgey heat is an interesting thing 2015-07-02 22:46:17 @PikFan especially record breaking heat 2015-07-02 22:46:26 Pidgey how warm is it for you right now 2015-07-02 22:46:27 @PikFan I don't mind it since I've got an air conditioner 2015-07-02 22:46:35 Pidgey I don't 2015-07-02 22:46:35 @PikFan 95 F 2015-07-02 22:46:36 Testyo 95 F = 35 °C / 308.15 K 2015-07-02 22:46:49 Pidgey it's not a European thing to have an air conditioner in your house 2015-07-02 22:46:56 @PikFan what 2015-07-02 22:46:57 Yoshi2 I don't trust air conditioners 2015-07-02 22:46:59 Pidgey well maybe southern Europe but not here 2015-07-02 22:47:08 @PikFan that's really silly 2015-07-02 22:47:12 Pidgey because I did see some when I was in southern Spain 2015-07-02 22:47:28 @PikFan why wouldn't you have an air conditioner 2015-07-02 22:47:32 @PikFan that makes no sense 2015-07-02 22:47:33 Pidgey because Europe 2015-07-02 22:47:40 Pidgey we don't like to make sense 2015-07-02 22:47:42 Yoshi2 I don't know many people with an air conditioner 2015-07-02 22:47:50 @PikFan Europe ≠ sense 2015-07-02 22:47:53 @PikFan on many levels 2015-07-02 22:48:02 @PikFan but hey, so does America 2015-07-02 22:48:13 Yoshi2 but imo, the air conditioner would only be useful for those very hot days 2015-07-02 22:48:13 * @PikFan is a traitor 2015-07-02 22:48:36 Yoshi2 so most of the time, there is no point having an AC 2015-07-02 22:48:47 @PikFan just leave it in the window 2015-07-02 22:49:00 @PikFan you've got other windows 2015-07-02 22:49:04 Pidgey no country makes sense though 2015-07-02 22:49:25 @PikFan from a global perspective, yes 2015-07-02 22:49:26 Yoshi2 I ain't giving up on any of the windows 2015-07-02 22:49:31 Pidgey and for the matter, no region makes sense 2015-07-02 22:50:16 @PikFan anyway, but /why/ would you not use an air conditioner 2015-07-02 22:50:32 @PikFan you'd rather die of sweltering heat than be nice and cool? 2015-07-02 22:50:35 @PikFan ...well, first 2015-07-02 22:50:38 @PikFan I'll back uo 2015-07-02 22:50:39 @PikFan *up 2015-07-02 22:50:46 @PikFan how hot does it get in summer? 2015-07-02 22:51:00 Yoshi2 today's been 30°C 2015-07-02 22:51:01 Testyo 30 °C = 86 °F / 303.15 K 2015-07-02 22:51:23 @PikFan does it ever get up to like 95 F 2015-07-02 22:51:24 Testyo 95 F = 35 °C / 308.15 K 2015-07-02 22:51:29 @PikFan like where I'm at 2015-07-02 22:53:26 Yoshi2 according to a website I check the local weather on, it's been up to 34°C in the evening 2015-07-02 22:53:27 Testyo 34 °C = 93.2 °F / 307.15 K 2015-07-02 22:53:37 @PikFan what 2015-07-02 22:53:44 @PikFan ...in the /evening/? 2015-07-02 22:53:54 @PikFan as in, twilight hours? 2015-07-02 22:55:04 Yoshi2 or late afternoon 2015-07-02 22:55:10 @PikFan yeah, that 2015-07-02 22:55:11 Yoshi2 around 7 pm 2015-07-02 22:55:49 @PikFan but if it was 93 in the evening then it must've been like 100 F or higher midday 2015-07-02 22:55:49 Testyo 100 F = 37.7778 °C / 310.928 K 2015-07-02 22:56:11 Yoshi2 theoretically 2015-07-02 22:56:22 Yoshi2 but it feels like it's much hotter in the evening 2015-07-02 22:56:46 @PikFan probably because it's more humid 2015-07-02 22:58:08 @PikFan Espyo is sitting in the background like "silly kids" 2015-07-02 22:58:19 @Espyo was away 2015-07-02 22:58:24 @Espyo beetle in the living room 2015-07-02 22:58:28 @Espyo dog trying to chase it 2015-07-02 22:58:29 @Espyo fun stuff 2015-07-02 22:58:43 @PikFan lovely 2015-07-02 22:58:51 Yoshi2 well, somehow I've survived the past couple of years without an AC, so I think I'll continue to be fine 2015-07-02 22:59:02 @PikFan but you replied when I mentioned your name, no? 2015-07-02 22:59:09 @PikFan coincidence? I think not 2015-07-02 23:00:00 Yoshi2 I do have a fan running all the time right now, though 2015-07-02 23:00:34 Pidgey 93F 2015-07-02 23:00:34 Testyo 93 F = 33.8889 °C / 307.039 K 2015-07-02 23:00:40 Pidgey ok thank based Testyo 2015-07-02 23:00:41 Testyo let's safekeep the images and upload them one of things different in each game 2015-07-02 23:01:18 @PikFan hey Espyo, do you play cookie clicker still? 2015-07-02 23:01:21 @Espyo nope 2015-07-02 23:01:23 @Espyo stopped months ago 2015-07-02 23:01:43 @PikFan oh, because last night I had a dream about cookie clicker 2015-07-02 23:02:44 @Espyo hah 2015-07-02 23:03:03 Yoshi2 I'll go take a nap now before pikfan tries to sell me an air conditioner 2015-07-02 23:03:15 * @PikFan sells Yoshi2 an air conditioner 2015-07-02 23:03:17 @PikFan :] 2015-07-02 23:03:25 @PikFan no refunds 2015-07-02 23:03:27 @Espyo oh! 2015-07-02 23:03:31 @Espyo speaking of air conditioning 2015-07-02 23:03:36 @Espyo I've been getting spam e-mails 2015-07-02 23:03:45 @Espyo advertising installing air conditioning into your bus 2015-07-02 23:03:48 @Espyo for the past few months now 2015-07-02 23:03:54 @Espyo I don't even know where to start 2015-07-02 23:03:56 @PikFan into your... bus? 2015-07-02 23:04:05 @Espyo only 0.0001% of the world's population owns a bus 2015-07-02 23:04:16 @Espyo why air conditioning? it's relevant now, but it wasn't 4 months ago 2015-07-02 23:04:26 @Espyo why do they insist? 2015-07-02 23:04:28 @Espyo I am just 2015-07-02 23:04:28 @Espyo SO 2015-07-02 23:04:29 @Espyo confused 2015-07-02 23:04:36 @PikFan I would be too 2015-07-02 23:04:43 @PikFan but still 2015-07-02 23:04:46 @PikFan a bus??? 2015-07-02 23:04:48 Pidgey BUS? 2015-07-02 23:04:50 Pidgey Why? 2015-07-02 23:04:53 @Espyo it's 2015-07-02 23:04:54 @Espyo I can't even 2015-07-02 23:04:58 Yoshi2 I freaking WISH they would install AC into some of the busses I have to take 2015-07-02 23:05:00 @Espyo there are infinite things you could sell to people 2015-07-02 23:05:12 @Espyo yeah, but rest assured, no bus owner will receive this e-mail 2015-07-02 23:05:12 Yoshi2 working AC 2015-07-02 23:05:15 Pidgey The only thing I can think of is you doing multiple Google searches on data buses. 2015-07-02 23:05:19 @Espyo plus it's the government that controls what goes into buses 2015-07-02 23:05:21 @Espyo not bus drivers 2015-07-02 23:05:27 Pidgey That is the /only/ logical explanation I have. 2015-07-02 23:05:28 @Espyo and I don't think people actually OWN buses 2015-07-02 23:05:47 @Espyo maybe? I dunno 2015-07-02 23:06:01 @PikFan I don't know anyone that owns a bus 2015-07-02 23:06:18 Pidgey Maybe they want to install ACs in data buses? 2015-07-02 23:07:01 Yoshi2 in Germany we have various companies running fleets of buses 2015-07-02 23:07:11 @Espyo privately owned? 2015-07-02 23:07:13 Pidgey I just thought of something 2015-07-02 23:07:21 Pidgey WHY DOES GERMANY HAVE THOSE AWESOME THINGS 2015-07-02 23:07:29 Pidgey THE TRANSPORTATION DEVICES THAT HANG FROM THE AIR 2015-07-02 23:07:50 @PikFan this is funny because they actually kinda look like buses https://upload.wikimedia.org/wikipedia/commons/f/fc/PCIExpress.jpg 2015-07-02 23:07:50 @Espyo ...airplanes? 2015-07-02 23:07:55 Pidgey I WANT THOSE YOSHI2 PLEASE TELL FRAU MERKEL TO EXPORT THEM TO SWEDEN 2015-07-02 23:08:04 Pidgey no 2015-07-02 23:08:12 Pidgey they function like trams/trains 2015-07-02 23:08:42 @PikFan wait, Pidgey 2015-07-02 23:08:43 Pidgey except /they hang from the air and go through cities and you are elevated from the ground/ oh gosh I love them why Germany /PLEASE/ export 2015-07-02 23:09:00 @PikFan were you freaking out because Yoshi2 said _fleets_ of buses? 2015-07-02 23:09:07 Pidgey no 2015-07-02 23:09:17 Yoshi2 ohh, that 2015-07-02 23:09:26 Pidgey because he said 'Germany' and I thought of public transportation in Germany and then I thought of those 2015-07-02 23:09:33 Pidgey then I was like I WANT THIS IN MY COUNTRY TOO 2015-07-02 23:09:44 @PikFan is transportation in Germany like all futuristic and crap 2015-07-02 23:10:29 * @PikFan secretly installs an air conditioner in Yoshi2's living room window while everybody is ranting about transportation in Germany 2015-07-02 23:10:33 Yoshi2 hm, I don't think those suspension railways are that common 2015-07-02 23:10:35 @PikFan mwahahaha 2015-07-02 23:10:37 Yoshi2 but they are cool though 2015-07-02 23:10:45 Yoshi2 the only one I used myself is this: https://en.wikipedia.org/wiki/File:H_bahn_duesseldorf1.jpg 2015-07-02 23:11:02 Pidgey I WANT IT 2015-07-02 23:11:13 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-02 23:11:31 Yoshi2 it only goes from the airport to the nearby train station, and stops at various parking houses on the way there 2015-07-02 23:11:34 Testyo [Fanon RC] Olimar's House by Piki1 (+770 N Created page with "{{Pikmin:SA}} '''Olimar's House''' is a dungeon in ''[[Pikmi...) http://www.pikminfanon.com/index.php?title=Olimar's_House&curid=9694&diff=48660&oldid=0 2015-07-02 23:13:17 @PikFan hmm 2015-07-02 23:13:27 @PikFan http://www.pikminfanon.com/Balim 2015-07-02 23:13:49 @PikFan the description for him kinda reminds me of this character http://vignette2.wikia.nocookie.net/aselia/images/6/60/Dhaos.jpg/revision/latest?cb=20081120032132 2015-07-02 23:14:10 <-- Yoshi2 (Yoshi2@2001:4dd3:dc91:p:ijoz:qtum:uqly:kwmw) has quit (Quit: Leaving) 2015-07-02 23:21:38 Testyo [Fanon RC] Balim by Piki1 (+526) http://www.pikminfanon.com/index.php?title=Balim&curid=9672&diff=48661&oldid=48587 2015-07-02 23:32:11 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Bye bye everyone!) 2015-07-02 23:32:36 @PikFan huh, sounds like Europe's in the middle of a heatwave right now 2015-07-02 23:32:37 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-02 23:32:37 Testyo Hello everyone! 2015-07-02 23:32:49 @PikFan is it? 2015-07-02 23:32:51 Pidgey mhm, PikFan 2015-07-02 23:33:04 Pidgey you're correct in assuming Europe is in the middle of a heatwave right now 2015-07-02 23:33:17 Pidgey because oh god it is 2015-07-02 23:33:27 @PikFan how hot was it today 2015-07-02 23:33:36 Pidgey at max, it was about 32C 2015-07-02 23:33:36 Testyo 32 C = 89.6 °F / 305.15 K 2015-07-02 23:33:42 @PikFan hmm 2015-07-02 23:33:43 @Espyo it is 2015-07-02 23:33:57 @PikFan I just checked the weather again, now it's 99F 2015-07-02 23:33:58 Testyo 99 F = 37.2222 °C / 310.372 K 2015-07-02 23:34:07 Pidgey and like no, this is Northern Europe, not someplace near the Mediterranean 2015-07-02 23:34:09 @Espyo woah 2015-07-02 23:34:14 Pidgey it shouldn't BE this warm here 2015-07-02 23:34:43 @PikFan Portugal's right next to the Mediterranean, right? 2015-07-02 23:34:50 @Espyo mhm 2015-07-02 23:34:57 @PikFan how hot was it today for you 2015-07-02 23:35:01 @Espyo southern as south gets 2015-07-02 23:35:06 @Espyo today was NOT hot 2015-07-02 23:35:13 @Espyo pretty chilly stuff 2015-07-02 23:35:14 @PikFan .../irony 2015-07-02 23:35:15 @Espyo 23C at most 2015-07-02 23:35:15 Pidgey Espyo, you'll have to remember that the northern parts of the contiguous states of America, aka USA - (Alaska + Hawaii), is as north as southern Spain 2015-07-02 23:35:15 Testyo 23 C = 73.4 °F / 296.15 K 2015-07-02 23:35:32 @Espyo hmmm... 2015-07-02 23:35:35 @Espyo never thought of that 2015-07-02 23:35:45 Pidgey and no Portugal has no access to the Mediterranean 2015-07-02 23:35:58 Pidgey unless maps have been deceiving me for 21 years 2015-07-02 23:36:05 @PikFan "However, eastern France, eastern Belgium, eastern parts of The Netherlands and western Germany continued to roast. Maastricht, in the far southeast of The Netherlands, rose to 37.6 degrees Celsius (99.7F). Kleine Brogel, Belgium rose to 38 degrees Celsius (100.4F) and Dusseldorf, Germany peaked at 37 degrees C (98.6F)." 2015-07-02 23:36:06 Testyo 37.6 degrees = 0.656244 rad 2015-07-02 23:36:09 Pidgey but yes, it is close 2015-07-02 23:36:27 Pidgey oh lord so warm 2015-07-02 23:36:41 Pidgey people are going to die because of the heatwave 2015-07-02 23:36:49 Pidgey this is ridiculous 2015-07-02 23:37:01 @PikFan this is why you need air conditioners 2015-07-02 23:37:34 Pidgey but we don't like them :( 2015-07-02 23:37:36 @Espyo this is why you need to help stop global warming 2015-07-02 23:37:42 Pidgey ^^^ 2015-07-02 23:37:57 @PikFan I don't own a car! 2015-07-02 23:38:19 @PikFan why are you putting responsibility on me 2015-07-02 23:38:29 @PikFan I'm just a peon 2015-07-02 23:39:04 @PikFan Pidgey: you don't like air conditioners so you'd rather face the heat and maybe have some people die? 2015-07-02 23:39:26 Pidgey I don't even know anymore 2015-07-02 23:39:39 @PikFan I probably misinterpreted that but eh 2015-07-02 23:40:55 @PikFan huh, it looks like Spain is burning up, but Portugal — for whatever reason — is just fine 2015-07-02 23:41:38 @PikFan whoa, supposed to hit 105F in Madrid on monday 2015-07-02 23:41:39 Testyo 105 F = 40.5556 °C / 313.706 K 2015-07-02 23:42:02 Pidgey probably because Spain has so much inland, whilst if you're in Portugal you're always relatively close to the sea 2015-07-02 23:42:28 Pidgey Because, y'know, Spain is the fourth largest country in Europe by area. 2015-07-02 23:42:37 @PikFan but I did not know that 2015-07-02 23:42:41 @PikFan but I do now 2015-07-02 23:42:44 Pidgey It is only beaten by France, Ukraine and European Russia. 2015-07-02 23:42:48 @PikFan so thank you for the information 2015-07-02 23:42:53 @PikFan :D 2015-07-02 23:42:54 Pidgey You're welcome. 2015-07-02 23:42:55 Pidgey :D 2015-07-02 23:43:39 Pidgey Oh yeah, and in that order too. I guess I should do top 5, so here goes: 1) European Russia, 2) Ukraine, 3) France, 4) Spain, 5) Sweden 2015-07-02 23:43:49 Pidgey Not even kidding with that last one. 2015-07-02 23:44:23 @PikFan because you live in Sweden? 2015-07-02 23:44:55 @PikFan or is Sweden like tiny compared to the rest 2015-07-02 23:44:59 Pidgey https://en.wikipedia.org/wiki/List_of_European_countries_by_area 2015-07-02 23:45:18 Pidgey There is a lot, and I mean _a lot_, of land in northern Sweden. 2015-07-02 23:45:26 @PikFan I see 2015-07-02 23:45:35 @PikFan and holy crap European Russia is giganti 2015-07-02 23:45:37 @PikFan *gigantic 2015-07-02 23:45:57 Pidgey Nobody can live there though, because it's freezing cold throughout the entire year. 2015-07-02 23:46:15 @PikFan except for now, it seems 2015-07-02 23:46:18 @PikFan wait 2015-07-02 23:46:25 Pidgey >Russia 2015-07-02 23:46:25 @PikFan did I check Russia? nope... 2015-07-02 23:46:30 Pidgey >(including Crimea) 2015-07-02 23:46:32 Pidgey best 2015-07-02 23:46:33 Pidgey meme 2015-07-02 23:46:34 Pidgey ever# 2015-07-02 23:46:48 @PikFan why 2015-07-02 23:46:53 @PikFan but that's 2015-07-02 23:47:00 Pidgey Y'know the Crimean crisis? 2015-07-02 23:47:04 @PikFan yes? 2015-07-02 23:47:15 @PikFan oh, reference 2015-07-02 23:47:15 Pidgey Apparently some maps are showing Crimea as part of Russia, not Ukraine. 2015-07-02 23:47:16 @PikFan duh 2015-07-02 23:47:27 * @PikFan is so very slow 2015-07-02 23:48:14 Pidgey I love how the smallest country in the world, The Vatican, and the largest country in the world, Russia, are all part of the same continent. 2015-07-02 23:48:40 @PikFan because Europe is a land of superlatives 2015-07-02 23:48:52 Pidgey mhm 2015-07-02 23:48:57 Pidgey wait isn't that America 2015-07-02 23:49:04 @PikFan ???? 2015-07-02 23:49:05 Pidgey :PP 2015-07-02 23:49:12 @PikFan I don't think so, no 2015-07-02 23:49:18 @PikFan could be wrong 2015-07-02 23:49:20 @PikFan very wrong 2015-07-02 23:49:25 @PikFan I am wrong 2015-07-02 23:49:31 @PikFan therefore fish 2015-07-02 23:49:35 Pidgey yay :D 2015-07-02 23:54:26 @PikFan hey 2015-07-02 23:54:28 @PikFan oops 2015-07-02 23:54:31 @PikFan hey Espyo 2015-07-02 23:54:35 @Espyo hmm? 2015-07-02 23:54:52 @PikFan so you know how Pikipedia has an object list policy? 2015-07-02 23:55:40 @Espyo mhm? 2015-07-02 23:56:21 @PikFan I want to write a draft for an area article policy, but I'm not sure if there should be a section that lists just enemies, or other things 2015-07-02 23:56:30 @PikFan like treasures, obstacles, etc 2015-07-02 23:56:39 @PikFan everybody lists enemies 2015-07-02 23:56:47 @PikFan some people make treasure names 2015-07-02 23:56:57 @PikFan though I'm not sure if they list them in their area article 2015-07-02 23:57:53 @PikFan [[f:Rugged Tundra]], for example 2015-07-02 23:57:54 Testyo "Rugged_Tundra" article = http://www.pikminfanon.com/index.php?title=Rugged_Tundra 2015-07-02 23:58:14 @PikFan I don't plan on naming treasures, so I've got enemies at the bottom, under the section Wildlife 2015-07-02 23:59:35 @PikFan "There must be a section that lists all enemies, titled Enemies. If other things are included in this list, such as treasures or obstacles, then the section should be called Objects." 2015-07-02 23:59:46 @PikFan how's that? 2015-07-02 23:59:53 @Espyo does this really need to be so specific? 2015-07-02 23:59:58 @Espyo I ask because any game can be made in any way 2015-07-03 00:00:00 @Espyo like a game without enemies 2015-07-03 00:00:06 @Espyo or a game with multiple categories of collectibles 2015-07-03 00:00:26 @Espyo plus, the point of the policy would be to organize stuff so it doesn't get confusing with clashing shenanigans 2015-07-03 00:00:35 @Espyo you can take it further, sure, but it's more limiting 2015-07-03 00:00:47 @PikFan then just objects, in general? 2015-07-03 00:01:00 @Espyo yeah 2015-07-03 00:01:43 @Espyo going now, night 2015-07-03 00:01:56 @PikFan wait, hold on 2015-07-03 00:02:17 @Espyo hm? 2015-07-03 00:02:26 @PikFan "Any objects that appear in an area should be listed under a section called Objects." 2015-07-03 00:02:30 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Later everyone!) 2015-07-03 00:02:33 @Espyo mhm 2015-07-03 00:02:37 @PikFan okay 2015-07-03 00:02:45 @PikFan I'll get back to you on this tomorrow 2015-07-03 00:02:45 @PikFan night 2015-07-03 00:02:50 @Espyo okay, night 2015-07-03 00:02:52 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-03 00:04:16 Pidgey I should also head to sleep 2015-07-03 00:04:24 @PikFan night 2015-07-03 00:18:36 -- Pidgey is now known as Pidgey|SLP 2015-07-03 01:24:15 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-03 03:31:51 --> RingtailedFox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has joined #pikipedia 2015-07-03 03:46:35 <-- RingtailedFox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has quit (Read error: No route to host) 2015-07-03 03:46:48 --> RingtailedFox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has joined #pikipedia 2015-07-03 03:48:37 <-- RingtailedFox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has quit (Read error: No route to host) 2015-07-03 03:48:51 --> RingtailedFox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has joined #pikipedia 2015-07-03 03:57:04 <-- RingtailedFox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has quit (Read error: No route to host) 2015-07-03 03:57:38 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-07-03 06:06:03 <-- Spark (sparkles@2602:306:3717:jlik:ippt:moqx:tipv:xsjw) has quit (Ping timeout: 252 seconds) 2015-07-03 08:12:05 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-07-03 08:15:34 --> Yoshi2 (Yoshi2@3458-3vu4-sv87-2-64t8-8v51-2zy0-88d8.ipv7dyn.netcologne.de) has joined #pikipedia 2015-07-03 09:01:26 <-- Yoshi2 (Yoshi2@3458-3vu4-sv87-2-64t8-8v51-2zy0-88d8.ipv7dyn.netcologne.de) has quit (Quit: Leaving) 2015-07-03 09:29:00 -- Pidgey|SLP is now known as Pidgey 2015-07-03 11:26:47 --> Yoshi2 (Yoshi2@134.61.jt.ql) has joined #pikipedia 2015-07-03 11:40:07 Pidgey Hi Yoshi2. 2015-07-03 11:40:18 Yoshi2 hiho Pidgey 2015-07-03 12:34:28 --> Spark (sparkles@2602:306:3717:knmx:yqjn:zgmy:vwyy:sysh) has joined #pikipedia 2015-07-03 12:43:12 <-- Yoshi2 (Yoshi2@134.61.jt.ql) has quit (Quit: Leaving) 2015-07-03 12:51:33 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-07-03 12:52:14 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Client Quit) 2015-07-03 13:54:35 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-07-03 13:54:41 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Client Quit) 2015-07-03 14:43:36 <-- Spark (sparkles@2602:306:3717:knmx:yqjn:zgmy:vwyy:sysh) has quit (Ping timeout: 252 seconds) 2015-07-03 15:53:56 --> Yoshi2 (Yoshi2@8408-3so4-gx37-7-yb02-597-kwiu-87ae.ipv8dyn.netcologne.de) has joined #pikipedia 2015-07-03 16:15:18 --> Yoshi2_ (Yoshi2@2260-6la8-f6q2-4-qq71-111-oetq-01so.ipv0dyn.netcologne.de) has joined #pikipedia 2015-07-03 16:18:12 <-- Yoshi2 (Yoshi2@8408-3so4-gx37-7-yb02-597-kwiu-87ae.ipv8dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-03 16:37:27 <-- SailorHaumea (DN-boards1@2602:306:8381:pzyq:xwwj:rluu:roth:tnky) has quit (Ping timeout: 252 seconds) 2015-07-03 16:50:16 --> SailorHaumea (DN-boards1@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has joined #pikipedia 2015-07-03 17:05:28 --> Spark (sparkles@2602:306:3717:knmx:yqjn:zgmy:vwyy:sysh) has joined #pikipedia 2015-07-03 19:09:30 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-03 19:09:30 Testyo Hey everyone! 2015-07-03 19:10:12 Pidgey hi! 2015-07-03 19:10:23 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-03 19:10:23 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-03 19:12:19 Yoshi2_ hiho Testyo & Espyo 2015-07-03 19:12:21 Testyo *** Looking do 2015-07-03 19:15:59 @Espyo hi 2015-07-03 19:17:52 @J . 2015-07-03 19:23:41 Pidgey .. 2015-07-03 19:26:31 @J okay, I'm going to have to seriously consider using multiple plates at meal times 2015-07-03 19:42:25 @Espyo hmmm 2015-07-03 20:41:00 Testyo [Pikipedia RC] Talk:Glitches in Pikmin 3 by Peach Bulborb (+119 /* Strange Seed Glitch */) http://www.pikminwiki.com/index.php?title=Talk:Glitches_in_Pikmin_3&curid=18264&diff=151090&oldid=151060 2015-07-03 20:41:00 Testyo [Fanon RC] Topic:Pikmin Engine by Es... by Wraith (+380 /* Discussion */ ) http://www.pikminfanon.com/index.php?title=Topic:Pikmin_Engine_by_Espyo&curid=7853&diff=48665&oldid=48653 2015-07-03 20:46:02 Testyo [Fanon RC] Topic:Pikmin Engine by Es... by Espyo (+374) http://www.pikminfanon.com/index.php?title=Topic:Pikmin_Engine_by_Espyo&curid=7853&diff=48666&oldid=48665 2015-07-03 21:08:10 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-03 21:08:10 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-03 21:08:17 @PikFan hi 2015-07-03 21:08:45 Yoshi2_ hey PikFan 2015-07-03 21:09:50 @Espyo hi 2015-07-03 21:12:25 -- Yoshi2_ is now known as Yoshi2 2015-07-03 21:13:01 Yoshi2 so people are already putting the models ripped from splatoon to use in stuff like the source film maker 2015-07-03 21:13:01 @PikFan Espyo: so I got a short draft of the area article policy going 2015-07-03 21:13:09 @PikFan wait what 2015-07-03 21:13:24 @PikFan interesting 2015-07-03 21:13:26 @Espyo mhm? 2015-07-03 21:13:31 @Espyo yeah, they are 2015-07-03 21:13:33 @Espyo crazy stuff 2015-07-03 21:13:48 Yoshi2 it's really weird: https://gfycat.com/QueasyAssuredElver 2015-07-03 21:13:49 @PikFan anyway, for now it's just written as bullet points, but I'll expand them later 2015-07-03 21:14:00 @PikFan I just wanted to get the main points down 2015-07-03 21:14:05 @PikFan http://mibpaste.com/jbU2Qv 2015-07-03 21:14:40 @PikFan ...oh, I need to fix trivia 2015-07-03 21:14:41 @PikFan hold on 2015-07-03 21:15:17 @PikFan http://mibpaste.com/yEPU8J 2015-07-03 21:15:30 @PikFan and wow now it's really spaced out 2015-07-03 21:16:57 @PikFan I think the mandatory sections are alright 2015-07-03 21:17:12 @PikFan except for the story section 2015-07-03 21:17:52 @PikFan maybe that could go, but I figured that areas have something to do with the story, regardless of the game 2015-07-03 21:19:21 @PikFan Yoshi2: OH SO THAT'S WHAT SFM STANDS FOR 2015-07-03 21:19:25 @PikFan thank you 2015-07-03 21:19:42 Yoshi2 heh, you're welcome 2015-07-03 21:20:02 @PikFan have you heard of Racing for Rupees? 2015-07-03 21:20:12 @PikFan it's hilarious 2015-07-03 21:20:25 @PikFan and it was made with SFM 2015-07-03 21:20:28 @Espyo what if the game doesn't have dungeons? 2015-07-03 21:20:32 @Espyo literally over half of the canon games don't 2015-07-03 21:20:47 @PikFan most fanon games do, though 2015-07-03 21:20:48 @Espyo but tit seems good 2015-07-03 21:21:18 @PikFan *it 2015-07-03 21:21:25 Yoshi2 oh yes, I recently watched racing for rupees 2015-07-03 21:21:32 Yoshi2 it was awesome 2015-07-03 21:21:39 @PikFan okay, then I'll just include an if in there 2015-07-03 21:23:21 @Espyo okay, then I'll just include an if in there 2015-07-03 21:23:25 @Espyo congratulations, you are now a programmer 2015-07-03 21:23:35 @PikFan no, but I forgot the # 2015-07-03 21:23:48 @PikFan NOW I am a programmer 2015-07-03 21:23:51 @Espyo hehe, nice 2015-07-03 21:24:12 @PikFan speaking of conditionals (is that what they're called?), 2015-07-03 21:24:15 @PikFan ... 2015-07-03 21:25:06 Pidgey wait what 2015-07-03 21:25:06 @PikFan I need to make it so there 2015-07-03 21:25:13 @PikFan I HATE YOU SO MUCH ENTER 2015-07-03 21:25:13 Pidgey why are you saying a Trivia section is good 2015-07-03 21:25:21 Pidgey they should not be a Trivia section 2015-07-03 21:25:23 Pidgey *there 2015-07-03 21:25:27 Pidgey they are bad 2015-07-03 21:25:34 @PikFan why are they bad? 2015-07-03 21:25:36 Pidgey unconditionally bad 2015-07-03 21:25:44 Pidgey because they can be baked into the main body of the article 2015-07-03 21:25:48 Pidgey always 2015-07-03 21:26:03 @PikFan but remember, most of these kids are like 12 year olds 2015-07-03 21:26:04 Pidgey even if it's fanon, there is always a way 2015-07-03 21:26:05 @PikFan maybe less 2015-07-03 21:26:28 @PikFan they're not going to spend time trying to figure out how to incorporate trivia tidbits into the article 2015-07-03 21:26:38 Pidgey I don't even need to have played the game that the article is about or even know anything about the article I'm editing 2015-07-03 21:27:00 Pidgey and I still am able to remove most points in a trivia section 2015-07-03 21:27:25 @PikFan I still don't see why trivia is so bad 2015-07-03 21:27:33 @PikFan on wikipedia, sure 2015-07-03 21:27:39 Pidgey because, when put in the main body of the article, the article flows better 2015-07-03 21:28:03 @PikFan but it doesn't have to be perfect 2015-07-03 21:28:20 Pidgey fine, I suppose 2015-07-03 21:29:08 @PikFan anyway, Espyo: 2015-07-03 21:29:53 @PikFan what I was trying to say earlier is that I need to put a conditional into {{f:PCW}} so that I can choose if I don't want it to categorize on specific pages 2015-07-03 21:29:53 Testyo "PCW" template = http://www.pikminfanon.com/index.php?title=Template:PCW 2015-07-03 21:30:05 @PikFan but I tried that, and everything broke 2015-07-03 21:30:11 @Espyo Trivia is, for the most part, bad 2015-07-03 21:30:21 @Espyo our policy on trivia on Pikipedia tries to rectify it 2015-07-03 21:30:24 @Espyo ideally, we wouldn't have any 2015-07-03 21:30:29 @Espyo but it is true that everybody loves it 2015-07-03 21:30:38 @Espyo [[Pikipedia:Policy#Trivia]] 2015-07-03 21:30:38 Testyo "Pikipedia:Policy#Trivia" article = http://www.pikminwiki.com/index.php?title=Pikipedia:Policy#Trivia 2015-07-03 21:34:40 @PikFan >everybody 2015-07-03 21:34:47 @PikFan but Pidgey doesn't like it 2015-07-03 21:35:05 Pidgey I'm not part of the everybodies 2015-07-03 21:35:23 @PikFan most of us aren't 2015-07-03 21:36:03 @PikFan I'd go to say that everybody in this channel isn't part of the everybodies 2015-07-03 21:36:08 @PikFan yay paradoxes 2015-07-03 21:36:34 @Espyo hm 2015-07-03 21:36:49 @PikFan ? 2015-07-03 21:37:41 @PikFan hey, have any of you got Ocarina of Time 2015-07-03 21:37:55 @PikFan because I just bought it for the virtual console 2015-07-03 21:38:03 @PikFan and everybody says the water temple sucks 2015-07-03 21:38:18 @PikFan should I be concerned about the water temple? 2015-07-03 21:39:23 Yoshi2 you'll be fine, mostly 2015-07-03 21:39:32 @Espyo I only learned it came out today 2015-07-03 21:39:37 @Espyo because my youtube feed had some bug videos 2015-07-03 21:40:04 @Espyo if you look at the water temple with a "aaagggh this isn't streamlined, screw you Nintendo" outlook 2015-07-03 21:40:05 Pidgey the thing about the Water Temple is *two second pause* that everything *two second pause* takes a while because *two second pause* you have to *two second pause* open and close the menu *two second pause* a lot 2015-07-03 21:40:06 @Espyo then you will get mad 2015-07-03 21:40:28 @Espyo if you face the Water Temple as a temple you need to pay attention and explore in, it's pretty standard 2015-07-03 21:41:40 Yoshi2 it can be annoying having to wait for the menu to open and close while you change into the metal boots 2015-07-03 21:42:12 Pidgey >This is the European version of the game with corrected aspect ratio. 2015-07-03 21:42:18 Pidgey >This is the European version of the game 2015-07-03 21:42:22 Pidgey >European version of the game 2015-07-03 21:42:27 Yoshi2 they fixed that issue in OoT 3D by making the metal boots an item that can be put on the item buttons 2015-07-03 21:42:36 @Espyo Pidgey: ? 2015-07-03 21:42:39 Pidgey Hello, beautiful 17FPS. 2015-07-03 21:43:24 @PikFan so it's just the constant switching back and forth of the metal boots? 2015-07-03 21:43:29 @Espyo heh 2015-07-03 21:43:30 Pidgey Yes, PikFan. 2015-07-03 21:43:51 @PikFan I see 2015-07-03 21:46:39 Testyo [Pikipedia RC] Koppai by Scruffy (-435 I've done the research; this belongs in the S.S. Drake article.) http://www.pikminwiki.com/index.php?title=Koppai&curid=8186&diff=151091&oldid=151054 2015-07-03 21:47:26 @PikFan http://www.pikminwiki.com/index.php?title=Koppai&diff=prev&oldid=151054 2015-07-03 21:47:35 @PikFan "This implies Koppai has an Earth-like interior, with convection, a magnetosphere, and a means of [[wikipedia:Outgassing|outgassing]] (such as volcanoes) to seal in and keep an atmosphere." 2015-07-03 21:47:36 Testyo "wikipedia:Outgassing|outgassing" article = http://www.pikminwiki.com/index.php?title=wikipedia:Outgassing|outgassing 2015-07-03 21:47:55 @PikFan I feel like Scruffy went into a little too much detail... 2015-07-03 21:48:08 @PikFan but it does make sense 2015-07-03 21:48:10 @Espyo hm 2015-07-03 21:48:13 @Espyo always fun stuff to have 2015-07-03 21:48:17 @Espyo this is why the Trivia exists 2015-07-03 21:48:23 @Espyo you could add this to the body of the article 2015-07-03 21:48:27 @Espyo ...but could you really? 2015-07-03 21:48:32 @Espyo not without it being plastered on for no good reason 2015-07-03 21:48:40 @PikFan 13:25 Pidgey always 2015-07-03 21:48:49 @Espyo nah 2015-07-03 21:49:27 Pidgey Then again I also disagree with the spoiler policy here, and I think it shouldn't even exist in the first place, so, yeah. :P 2015-07-03 21:49:48 @PikFan to each their own 2015-07-03 21:49:48 @Espyo it's a bit iffy 2015-07-03 21:50:05 @Espyo but you have to understand everybody reads the wiki 2015-07-03 21:50:13 @Espyo I hate when I'm reading on something about one game 2015-07-03 21:50:18 @Espyo and hello unwanted spoiler for a different game 2015-07-03 21:50:23 Pidgey I argue that the template existing is bad for the articles. 2015-07-03 21:50:34 @Espyo yeah, I don't like template bloat 2015-07-03 21:50:40 @Espyo and I plan on doing something about it in the future 2015-07-03 21:50:48 @Espyo but it only really is used in like 8 articles 2015-07-03 21:50:55 @Espyo final bosses/treasures 2015-07-03 21:50:57 @Espyo ...pretty much it 2015-07-03 21:51:02 @PikFan which template? {{spoiler}} ? 2015-07-03 21:51:03 Testyo "spoiler" template = http://www.pikminwiki.com/index.php?title=Template:spoiler 2015-07-03 21:51:07 @Espyo mhm 2015-07-03 21:51:30 @PikFan more like 51 2015-07-03 21:51:53 @Espyo that doesn't sound right 2015-07-03 21:51:53 @PikFan though a lot of them are the /merge articles 2015-07-03 21:51:58 @Espyo oh, right 2015-07-03 21:52:01 @PikFan http://www.pikminwiki.com/Special:WhatLinksHere/Template:Spoiler 2015-07-03 21:52:45 @Espyo there are a few instances that could be removed, I think 2015-07-03 21:52:49 @Espyo but hey, as long as it's not too bad 2015-07-03 21:52:52 @Espyo might as well keep it 2015-07-03 21:55:30 @PikFan Special:WhatLinksHere is super convenient for finding articles that a template appears on 2015-07-03 21:57:24 Pidgey I use it all the time when I want to get rid of disambiguation pages being linked. 2015-07-03 22:04:16 <-- Yoshi2 (Yoshi2@2260-6la8-f6q2-4-qq71-111-oetq-01so.ipv0dyn.netcologne.de) has quit (Quit: Leaving) 2015-07-03 22:17:29 @Espyo Special:WhatLinksHere is magic 2015-07-03 22:19:59 Pidgey It truly is. 2015-07-03 22:25:29 @PikFan it's like a category 2015-07-03 22:25:31 @PikFan but not 2015-07-03 22:27:06 -- Pidgey is now known as Pi 2015-07-03 22:37:04 --> DN-boards1 (DN-boards1@2602:306:8381:pzyq:xwwj:rluu:roth:tnky) has joined #pikipedia 2015-07-03 22:38:27 @Espyo hey DN-boards1 2015-07-03 22:39:44 <-- SailorHaumea (DN-boards1@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has quit (Ping timeout: 240 seconds) 2015-07-03 22:40:11 -- DN-boards1 is now known as SailorHaumea 2015-07-03 22:52:23 Testyo [Pikipedia RC] S.S. Drake by Scruffy (+1430 Added trivia and small naming bit.) http://www.pikminwiki.com/index.php?title=S.S._Drake&curid=8349&diff=151092&oldid=150723 2015-07-03 23:24:05 @PikFan wow, 99F again 2015-07-03 23:24:06 Testyo 99 F = 37.2222 °C / 310.372 K 2015-07-03 23:24:15 @PikFan yesterday it got up to 101F 2015-07-03 23:24:16 Testyo 101 F = 38.3333 °C / 311.483 K 2015-07-03 23:24:29 --> DN-boards1 (DN-boards1@2602:306:8381:pzyq:xwwj:rluu:roth:tnky) has joined #pikipedia 2015-07-03 23:26:10 --> urd (Mibbit@rpbs91-314-iuruhfi.6-69-r.retail.telecomitalia.it) has joined #pikipedia 2015-07-03 23:27:09 <-- urd (Mibbit@rpbs91-314-iuruhfi.6-69-r.retail.telecomitalia.it) has quit (Client Quit) 2015-07-03 23:27:45 <-- SailorHaumea (DN-boards1@2602:306:8381:pzyq:xwwj:rluu:roth:tnky) has quit (Ping timeout: 252 seconds) 2015-07-03 23:28:00 @Espyo ... 2015-07-03 23:28:13 @PikFan hehe 2015-07-03 23:29:24 <-- DN-boards1 (DN-boards1@2602:306:8381:pzyq:xwwj:rluu:roth:tnky) has quit (Ping timeout: 252 seconds) 2015-07-04 00:06:01 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-04 00:18:31 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-04 00:18:34 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-04 01:23:00 -- Pi is now known as Pidgey|SLP 2015-07-04 02:00:03 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-04 02:00:08 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-04 02:00:09 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-04 02:00:29 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-07-04 02:00:34 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-04 02:00:34 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-04 04:37:20 --> PikFan23 (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-04 04:37:40 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Killed (NickServ (GHOST command used by PikFan23))) 2015-07-04 04:37:50 -- PikFan23 is now known as PikFan 2015-07-04 04:37:59 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-04 04:40:11 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-07-04 06:17:30 <-- Spark (sparkles@2602:306:3717:knmx:yqjn:zgmy:vwyy:sysh) has quit (Ping timeout: 252 seconds) 2015-07-04 07:59:19 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-07-04 08:19:04 --> Yoshi2 (Yoshi2@4146-0qp0-j069-0-z49-9e2x-55wz-74ja.ipv6dyn.netcologne.de) has joined #pikipedia 2015-07-04 08:27:36 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2015-07-04 08:47:02 -- Pidgey|SLP is now known as Pidgey 2015-07-04 10:30:37 <-- Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-04 10:30:46 --> Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-04 12:36:44 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-04 12:36:45 Testyo Hi everyone! 2015-07-04 12:37:20 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-04 12:37:21 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-04 13:02:01 Yoshi2 hiho Testyo & Espyo 2015-07-04 13:02:02 Testyo that's what I play a game the character goes slowly down 2015-07-04 13:16:35 @Espyo hi 2015-07-04 13:42:33 Testyo [Pikipedia RC] Emergence Cave by Scruffy (+85 Cleanup.) http://www.pikminwiki.com/index.php?title=Emergence_Cave&curid=550&diff=151101&oldid=151088 2015-07-04 13:57:44 Testyo [Pikipedia RC] Frontier Cavern by Scruffy (-23 Cleanup.) http://www.pikminwiki.com/index.php?title=Frontier_Cavern&curid=602&diff=151102&oldid=151089 2015-07-04 14:13:00 Testyo [Pikipedia RC] Subterranean Complex by Scruffy (+503 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Subterranean_Complex&curid=1618&diff=151103&oldid=148912 2015-07-04 14:23:04 Testyo [Pikipedia RC] Hole of Beasts by Scruffy (+281 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Hole_of_Beasts&curid=907&diff=151104&oldid=149660 2015-07-04 14:36:01 @J Espyo: I did it 2015-07-04 14:36:16 @Espyo oh? 2015-07-04 14:36:27 @Espyo oh 2015-07-04 14:36:32 @Espyo ah, yes 2015-07-04 14:36:37 @Espyo I didn't even pay attention to the time 2015-07-04 14:36:39 @Espyo it's official then! 2015-07-04 14:36:48 @J Facebook link seems messed up though? 2015-07-04 14:36:58 @J I mean, the actual one you gave me renders a crazy thing 2015-07-04 14:37:04 @J maybe you have to log in or something, but 2015-07-04 14:37:16 @Espyo shouldn't there be a "Forums" section linking to the NIWA forums? 2015-07-04 14:37:35 @Espyo *shrug* seems fine to me 2015-07-04 14:38:01 @J http://i.imgur.com/tg8QNLe.png 2015-07-04 14:38:11 @Espyo the hell 2015-07-04 14:38:15 @Espyo it's just standard facebook 2015-07-04 14:38:20 @Espyo I have no idea why it'd be messing up like that 2015-07-04 14:39:12 @J 'it's just standard facebook' / 'now I know why it'd be messing up like that' 2015-07-04 14:40:44 @J it doesn't look like there is a Splatoon board on the NIWA forums 2015-07-04 14:40:52 @Espyo oh 2015-07-04 14:40:55 @Espyo rrrrrright 2015-07-04 14:41:31 @J it's not like we automatically make one for each wiki, only a few use NIWA forums 2015-07-04 14:41:37 @J Pikipedia points to Forum:Index on the wiki 2015-07-04 14:41:53 @Espyo right 2015-07-04 14:42:05 @Espyo guess we'll leave it be for now 2015-07-04 14:43:44 @J the 'Random Article' page is messed up, not my fault 2015-07-04 14:46:58 @Espyo huh? 2015-07-04 14:47:00 @Espyo Special:Random? 2015-07-04 14:47:06 @Espyo oh 2015-07-04 14:47:09 @Espyo that thing on NIWA 2015-07-04 14:47:36 @Espyo yep, it is messed up 2015-07-04 14:47:49 @Espyo [[Special:Interwiki]] mind adding inkipedia: and splatoon: there, J? 2015-07-04 14:47:50 Testyo "Special:Interwiki" article = http://www.pikminwiki.com/index.php?title=Special:Interwiki 2015-07-04 14:47:55 @Espyo if you have the power to 2015-07-04 14:54:04 @J can't you? 2015-07-04 14:55:24 @J done, as both 'inkipedia' and 'splatoon' 2015-07-04 14:55:57 @J ah, yeah, turns out only bureaucrats can edit that 2015-07-04 14:55:59 @J didn't know 2015-07-04 14:57:03 @Espyo mhm 2015-07-04 14:57:38 @J I made a forum member group for Inkipedia admins 2015-07-04 14:57:43 @Espyo done, Inkipedia is now on the sidebar and NIWA template on the main page 2015-07-04 14:57:52 @Espyo sweet 2015-07-04 14:57:56 @J if any sign up for the forums, they just need to ask a forum admin to be added to it 2015-07-04 14:58:08 @Espyo okay, I'll tell them 2015-07-04 14:58:16 Testyo [Pikipedia RC] (log) Special:Interwiki by Greenpickle (0) http://www.pikminwiki.com/index.php?title=Special:Interwiki&curid=0&diff=0&oldid=0 2015-07-04 14:58:17 @J in your case I think you choose which wiki you want to represent 2015-07-04 14:58:17 Testyo [Pikipedia RC] (log) Special:Interwiki by Greenpickle (0) http://www.pikminwiki.com/index.php?title=Special:Interwiki&curid=0&diff=0&oldid=0 2015-07-04 14:58:21 @J can't have both 2015-07-04 14:58:49 @Espyo right 2015-07-04 14:59:04 @Espyo pretty likely go with Pikipedia 2015-07-04 15:03:16 Yoshi2 would be odd to have a pikmin wiki admin go with a non-pikmin wiki 2015-07-04 15:03:36 @J why? 2015-07-04 15:05:56 @Espyo quite a few admins are multi-wiki admins 2015-07-04 15:06:04 @Espyo http://www.niwanetwork.org/forums J, can you fix that "News:" bit at the top-right? 2015-07-04 15:07:59 @J ooh, maybe 2015-07-04 15:08:06 @J apparently I don't even see it by default 2015-07-04 15:14:41 @J I'm struggling to work out how... 2015-07-04 15:15:25 @Espyo hmm 2015-07-04 15:17:33 @J oh, I found it 2015-07-04 15:19:09 @J done 2015-07-04 15:19:19 @Espyo sweet 2015-07-04 15:19:19 @Espyo thanks 2015-07-04 15:20:59 Yoshi2 Espyo: splatfest starts in 3 hours, woohoo 2015-07-04 15:21:04 @Espyo sure does 2015-07-04 15:21:05 @Espyo can't wait 2015-07-04 15:56:09 --> Yoshi2_ (Yoshi2@1522-9yf7-p304-1-i044-x739-902c-to24.ipv0dyn.netcologne.de) has joined #pikipedia 2015-07-04 15:58:51 <-- Yoshi2 (Yoshi2@4146-0qp0-j069-0-z49-9e2x-55wz-74ja.ipv6dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-04 16:05:11 @Espyo http://www.pikminwiki.com/Talk:Plant thoughts on "vegetation"? 2015-07-04 16:05:17 @Espyo (final 3 posts) 2015-07-04 16:08:45 Pidgey I like it. 2015-07-04 16:16:05 @J I guess 2015-07-04 16:17:01 @J yeah, seems fine 2015-07-04 16:17:10 @Espyo I would go with "plant" too 2015-07-04 16:17:18 @Espyo but DEEP DOWN, it's just not right 2015-07-04 16:17:25 @Espyo I'll go with vegetation 2015-07-04 16:17:32 @Espyo even if we find something better, it can always be changed again 2015-07-04 16:25:08 Testyo mhm me 2015-07-04 16:25:16 @J mhm Testyo 2015-07-04 16:25:17 Testyo remember, anonymous people who don't know a thing about how to do stuff tend to just search on Google for a crazy maze 2015-07-04 16:25:31 Pidgey words of wisdom, right there 2015-07-04 16:25:34 @J what 2015-07-04 16:25:53 @Espyo crazy mazes 2015-07-04 16:26:04 Yoshi2_ they solve all your problems 2015-07-04 16:30:56 Pidgey maze game 2015-07-04 16:32:00 @Espyo anything but that 2015-07-04 16:39:08 --> WikiGuest (Mibbit@216.252.hx.puo) has joined #pikipedia 2015-07-04 16:40:00 <-- WikiGuest (Mibbit@216.252.hx.puo) has quit (Client Quit) 2015-07-04 17:54:50 --> Spark (sparkles@2602:306:3717:knmx:yqjn:zgmy:vwyy:sysh) has joined #pikipedia 2015-07-04 18:04:49 Testyo [Fanon RC] User talk:Wraith by Starphoria (+196 m) http://www.pikminfanon.com/index.php?title=User_talk:Wraith&curid=10&diff=48670&oldid=46130 2015-07-04 18:04:49 Testyo [Fanon RC] User talk:Wraith by Starphoria (+100 /* New NIWA Wiki */ ) http://www.pikminfanon.com/index.php?title=User_talk:Wraith&curid=10&diff=48671&oldid=48670 2015-07-04 19:19:53 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-04 19:19:54 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-04 19:20:06 @PikFan hi 2015-07-04 19:22:03 @J hey 2015-07-04 19:22:11 @Espyo hi 2015-07-04 19:22:14 @PikFan so we had an earthquake today 2015-07-04 19:22:29 @PikFan I was sleeping, and then next thing I know, I felt my whole bed shake 2015-07-04 19:22:56 @PikFan I didn't know what happened so I rushed to my mom, but she was so out of it she didn't feel it 2015-07-04 19:23:03 @PikFan so I just went back to bed 2015-07-04 19:23:24 @PikFan then I got back up about 15 minutes ago and I found out a 4.2 earthquake had struck 2015-07-04 19:25:13 Testyo [Fanon RC] Pikmin 4:Bacterial Outbre... by PikPik1248 (+874) http://www.pikminfanon.com/index.php?title=Pikmin_4:Bacterial_Outbreak&curid=9572&diff=48672&oldid=48530 2015-07-04 19:26:23 @Espyo woah 2015-07-04 19:27:02 @PikFan mhm 2015-07-04 19:27:13 Pidgey holy 2015-07-04 19:27:36 @PikFan at least it isn't the 9.0 we've been expecting for the past few years 2015-07-04 19:28:06 @Espyo woah 2015-07-04 19:28:34 @PikFan but it's weird, because it was so far inland 2015-07-04 19:28:46 @PikFan the nearest fault line is about 100 miles away 2015-07-04 19:28:47 Testyo 100 miles = 161.03 km 2015-07-04 19:32:55 Yoshi2_ Espyo: splatfest would be a bit more fun if I wasn't being disconnected so often 2015-07-04 19:33:02 @Espyo same 2015-07-04 19:33:16 @PikFan I really need splatoon 2015-07-04 19:33:19 @PikFan REALLY need i 2015-07-04 19:33:21 @PikFan *it 2015-07-04 19:33:25 @PikFan just... no money 2015-07-04 19:33:50 @PikFan oh, right 2015-07-04 19:33:59 @PikFan Espyo: so I think I got a skeleton of the area article policy goin 2015-07-04 19:34:01 @PikFan *going 2015-07-04 19:34:24 @PikFan I... didn't really know how to expand on the details other than putting them in sentences, heh 2015-07-04 19:34:28 * @PikFan fails 2015-07-04 19:36:28 @PikFan uh, is it okay to use "you" in a policy? 2015-07-04 19:36:36 @Espyo it is 2015-07-04 19:36:54 @Espyo PikFan: you're better off waiting until August 2015-07-04 19:36:58 @Espyo when the biggest bulk of content comes 2015-07-04 19:37:06 @Espyo right now, it manages to have some lackluster parts that make you go UGH 2015-07-04 19:37:21 @PikFan heh 2015-07-04 19:37:36 @PikFan wasn't half of the game not there at launch? 2015-07-04 19:37:53 @PikFan and they've been slowly releasing updates 2015-07-04 19:39:02 Yoshi2_ Espyo: what parts make you go UGH? 2015-07-04 19:40:45 @Espyo you can't play with friends on a bunch of the game modes 2015-07-04 19:40:51 @Espyo you can't NOT play Splatfest, if you wanted to 2015-07-04 19:41:00 @Espyo you keep disconnecting or having somebody else disconnect 2015-07-04 19:41:07 @Espyo if somebody disconnects, the team is severely hindered 2015-07-04 19:41:19 @PikFan *cough*get better servers Nintendo*cough* 2015-07-04 19:41:45 Yoshi2_ well, if somebody does have connection issues, there is nothing nintendo can do about that 2015-07-04 19:42:06 @PikFan sure they can 2015-07-04 19:42:13 @PikFan give you a better Wii U! 2015-07-04 19:45:12 Yoshi2_ hm, actually 2015-07-04 19:45:30 Yoshi2_ they could try something like grab a guy who is waiting for matchmaking and putting him in such a team 2015-07-04 19:46:52 Yoshi2_ Espyo: but I am not sure how playing with friends would work in a ranked mode without the enemy team being at a disadvantage if your friend happens to be on your team 2015-07-04 19:47:22 @Espyo yeah, we figured that 2015-07-04 19:47:27 @Espyo but it REALLY takes off the power a lot of the time 2015-07-04 19:50:09 @PikFan Espyo: http://pastebin.com/wYWjsUSr 2015-07-04 19:50:14 @PikFan it's really short 2015-07-04 19:50:54 Yoshi2_ but nintendo does have to do something about these server issues happening right now 2015-07-04 19:51:13 @Espyo mhm 2015-07-04 19:52:04 @Espyo PikFan: sounds good 2015-07-04 19:52:34 @PikFan the only part I wasn't sure about was "If only one type of object is listed, like enemies, then the section should be called just that object." 2015-07-04 19:52:44 @PikFan that sounds a little confusing, no? 2015-07-04 19:52:57 @PikFan but I couldn't word it any better 2015-07-04 19:53:12 Pidgey Hmm 2015-07-04 19:54:02 Pidgey This may be seen as pedantic, but if the enemy listed is a boss enemy, maybe there should be something that states that? What I mean is (enemy name) ('''Boss enemy'''), etc. 2015-07-04 19:54:37 @PikFan oh, good point 2015-07-04 19:54:42 Pidgey Or (enemy name) – ('''Boss enemy''') 2015-07-04 19:54:48 @PikFan upgrade treasures, too 2015-07-04 19:54:53 Pidgey mhm 2015-07-04 19:54:59 @PikFan I'll add that 2015-07-04 19:55:21 Testyo [Pikipedia RC] Template:News by AeroBlaze777 (+26 m) http://www.pikminwiki.com/index.php?title=Template:News&curid=17218&diff=151119&oldid=151108 2015-07-04 19:55:43 @PikFan ah, mhm 2015-07-04 19:55:52 @PikFan I figured it would be Inkipedia 2015-07-04 19:56:48 @PikFan most of us knew it'd be Inkipedia, but we said "Details unknown." to keep it a secret, right? 2015-07-04 19:57:11 Pidgey I didn't know it was Inkipedia because I barely knew it existed. 2015-07-04 19:57:24 @PikFan keyword: most 2015-07-04 19:57:32 Pidgey ah 2015-07-04 19:57:37 Pidgey you'd be correct there 2015-07-04 19:58:13 @Espyo we did 2015-07-04 19:58:15 @PikFan I was about to say "all of us" but then I remembered some of us might not know, so I changed it to "most of us" :P 2015-07-04 19:58:16 @Espyo almost everybody knew 2015-07-04 20:00:03 @PikFan Layout: This section describes the general layout of the area. 2015-07-04 20:00:11 @PikFan it just feels so... lacking 2015-07-04 20:00:19 @PikFan like, your policies feel nice and complete 2015-07-04 20:00:23 Testyo [Pikipedia RC] Template:News by AeroBlaze777 (-26 Undo revision 151119 by [[Special:Contributions/AeroBlaze777|AeroBlaze777]] ([[U...) http://www.pikminwiki.com/index.php?title=Template:News&curid=17218&diff=151120&oldid=151119 2015-07-04 20:00:28 @PikFan but this just feels like something hastily made 2015-07-04 20:00:32 @PikFan oh wait, it was 2015-07-04 20:00:32 @PikFan :P 2015-07-04 20:00:41 Pidgey Yes, because that's b--- ninja'd. 2015-07-04 20:00:50 @PikFan :D 2015-07-04 20:01:07 Pidgey You could collaborate with Wraith on this, by the way. 2015-07-04 20:01:16 @PikFan but he's nonexistant 2015-07-04 20:01:20 @PikFan other than that one edit 2015-07-04 20:01:28 @PikFan or am I wrong? 2015-07-04 20:01:33 * @PikFan checks Fanon RC 2015-07-04 20:01:43 Pidgey Ah, so you're the only predominant bureaucrat on Fanon right now? 2015-07-04 20:02:04 @PikFan yep 2015-07-04 20:02:19 @PikFan I've been the only one for like the past year 2015-07-04 20:02:21 @PikFan or longer 2015-07-04 20:02:24 @PikFan I lost track 2015-07-04 20:02:29 Pidgey Do you have any decent Sysops to collaborate with, then? 2015-07-04 20:02:33 @PikFan Espyo 2015-07-04 20:02:39 Pidgey I guess so. 2015-07-04 20:02:49 @PikFan and this other guy called Peach Bulborb 2015-07-04 20:02:51 Pidgey Wait, he's a Sysop on Fanon, too? 2015-07-04 20:03:05 @PikFan yeah, I gave him sysop status because why not 2015-07-04 20:03:09 Pidgey ah 2015-07-04 20:03:42 @PikFan he knows much more CSS and JavaScript than I'd ever know, so I figured it'd be useful if he wanted to get into the MediaWiki pages 2015-07-04 20:05:21 Pidgey good decision then 2015-07-04 20:07:52 Pidgey Personally, I don't know how I'd make the Layout section feel less basic. 2015-07-04 20:09:03 Pidgey Hmm 2015-07-04 20:09:21 @PikFan so I should leave it as is? 2015-07-04 20:09:47 @PikFan I dunno, I feel like I'm overlooking something important 2015-07-04 20:09:56 Pidgey Maybe include something about that if you've made a map, include it there. 2015-07-04 20:10:09 @PikFan that's why there's Gallery 2015-07-04 20:10:18 @PikFan speaking of maps, I actually drew one 2015-07-04 20:10:26 Pidgey It makes much more sense to put an image of a map in the Layout section. 2015-07-04 20:10:35 @PikFan http://www.pikminfanon.com/images/5/57/Distant_Desert_map_01.jpg 2015-07-04 20:10:54 @PikFan [[f:Distant Desert#Landing site]] 2015-07-04 20:10:55 Testyo "Distant_Desert#Landing_site" article = http://www.pikminfanon.com/index.php?title=Distant_Desert#Landing_site 2015-07-04 20:10:55 Pidgey Because the map contains information directly pertaining to information a Layout section would contain. 2015-07-04 20:11:00 @PikFan true 2015-07-04 20:11:09 @PikFan only one though, right? 2015-07-04 20:11:21 Pidgey Well, there are more ways to make a map. 2015-07-04 20:11:29 @PikFan because I can't imagine shoving like several maps into one section 2015-07-04 20:11:39 @PikFan unless if the section is enormous 2015-07-04 20:11:41 Pidgey You can make a map like you've done there, but you can also make a topological map. 2015-07-04 20:12:34 @PikFan "If there is a map for the area, it is recommended to put it in this section. If there are multiple maps, put one in this section and the rest in the Gallery." 2015-07-04 20:12:39 @PikFan how's that? 2015-07-04 20:12:43 Pidgey Sounds good! 2015-07-04 20:14:43 @PikFan alrighty 2015-07-04 20:14:44 @PikFan http://pastebin.com/siWev4i4 2015-07-04 20:14:53 @PikFan Espyo, I need you to check it again 2015-07-04 20:15:37 Pidgey "A very brief description of the cave can be added, but it is not required." 2015-07-04 20:15:49 @PikFan what about it? 2015-07-04 20:15:51 @Espyo kinda ruins the purpose of a policy then 2015-07-04 20:16:10 Pidgey *A very brief description of each cave should be found here 2015-07-04 20:17:10 Yoshi2_ apparently there are two other maps in the current rotation, but I've been playing on the same map for the past 5 times now 2015-07-04 20:17:11 @PikFan meh, I'll do away with it 2015-07-04 20:17:20 @PikFan nobody's going to add a description 2015-07-04 20:17:22 -- Yoshi2_ is now known as Yoshi2 2015-07-04 20:17:52 Pidgey It can be added later on by other editors anyway. 2015-07-04 20:17:57 @PikFan right 2015-07-04 20:18:32 @PikFan it is their article, after all 2015-07-04 20:18:37 Pidgey mhm 2015-07-04 20:18:40 @PikFan wow I can't type today 2015-07-04 20:18:50 Pidgey but you can 2015-07-04 20:19:02 @PikFan first I wrote "is is", then I typed "afser" 2015-07-04 20:19:10 Pidgey asfer 2015-07-04 20:19:15 Pidgey what is asfer 2015-07-04 20:19:20 Pidgey make that a treasure 2015-07-04 20:19:24 Pidgey Asfer Jewel 2015-07-04 20:19:45 @PikFan afser 2015-07-04 20:19:47 @PikFan not asfer 2015-07-04 20:19:53 Pidgey Afser Jewel, then. 2015-07-04 20:19:59 @PikFan but I like asfer better 2015-07-04 20:20:08 @PikFan I'm confusing 2015-07-04 20:20:17 Pidgey humans are, in general 2015-07-04 20:21:53 Pidgey The '''Asfer Jewel''' is a jewel made out of sulphur that has an azure colour. 2015-07-04 20:22:09 Pidgey because this is fanon things don't need to make sense 2015-07-04 20:23:26 @PikFan what doesn't make sense is that I can't connect to WiKirby 2015-07-04 20:23:37 @PikFan ...wait, I just di 2015-07-04 20:23:39 @PikFan *diod 2015-07-04 20:23:41 @PikFan **did 2015-07-04 20:23:45 Pidgey good typos 2015-07-04 20:23:50 @PikFan yep 2015-07-04 20:25:30 Testyo [Fanon RC] Template:NIWA by PikFan23 (+93 m Adding Inkipedia and Hard Drop Tetris Wiki, and fixing WikiBound and WiKirby's l...) http://www.pikminfanon.com/index.php?title=Template:NIWA&curid=72&diff=48673&oldid=40469 2015-07-04 20:30:31 Testyo [Fanon RC] User talk:Wraith by PikFan23 (+57 /* New NIWA Wiki */ ) http://www.pikminfanon.com/index.php?title=User_talk:Wraith&curid=10&diff=48674&oldid=48671 2015-07-04 20:30:57 @PikFan http://www.pikminfanon.com/PikminFanon:Area_article_policy 2015-07-04 20:31:50 Pidgey Now just make it protected so that only Sysops or higher can edit it, and it's all good. 2015-07-04 20:33:29 -- Pidgey is now known as Pidgey|SLP 2015-07-04 20:34:09 @PikFan sleeping now? 2015-07-04 20:34:15 @PikFan night 2015-07-04 20:34:17 Pidgey|SLP yup 2015-07-04 20:34:46 Pidgey|SLP because I need to work at 2 AM 2015-07-04 20:34:58 @PikFan oh wow 2015-07-04 20:34:58 Pidgey|SLP or rather get up at 2 AM 2015-07-04 20:35:00 Pidgey|SLP so yeah 2015-07-04 20:35:32 Testyo [Fanon RC] PikminFanon:Area article ... by PikFan23 (+2296 N Created page with "{{policy}} [[Areas|Area]] articles should follow the followin...) http://www.pikminfanon.com/index.php?title=PikminFanon:Area_article_policy&curid=9696&diff=48675&oldid=0 2015-07-04 20:40:34 Testyo [Fanon RC] Template:News by PikFan23 (+87 Updating.) http://www.pikminfanon.com/index.php?title=Template:News&curid=1448&diff=48676&oldid=45787 2015-07-04 20:41:33 @PikFan ugh the news template is so ugly 2015-07-04 20:41:51 @PikFan Pikipedia's news is much, much nicer 2015-07-04 20:42:01 @PikFan ...as are a lot of things about Pikipedia :P 2015-07-04 20:43:12 <-- Spark (sparkles@2602:306:3717:knmx:yqjn:zgmy:vwyy:sysh) has quit (Ping timeout: 252 seconds) 2015-07-04 20:43:34 Yoshi2 merge of Pikipedia and Fanon confirmed? :P 2015-07-04 20:44:03 @PikFan could we do it...? 2015-07-04 20:45:06 @PikFan we could have a fanon portal on the main page 2015-07-04 20:45:35 Testyo [Fanon RC] PikminFanon:News Archives by PikFan23 (+213 m Archiving.) http://www.pikminfanon.com/index.php?title=PikminFanon:News_Archives&curid=3645&diff=48677&oldid=45788 2015-07-04 20:45:35 Testyo [Fanon RC] PikminFanon:Policy by PikFan23 (+98) http://www.pikminfanon.com/index.php?title=PikminFanon:Policy&curid=5300&diff=48678&oldid=44307 2015-07-04 20:46:34 @PikFan part of the reason why I hardly clean anything is because there's so much stuff 2015-07-04 20:46:43 @PikFan it's just really, really overwhelming 2015-07-04 20:47:17 @PikFan bleh, I wish I could be like Espyo, and just get things done 2015-07-04 20:47:20 @PikFan bam, bam, bam 2015-07-04 20:47:54 @PikFan but I'm an immature 15 year old 2015-07-04 20:48:13 @PikFan but hey, at least I got a new policy in 2015-07-04 20:48:25 @PikFan it still feels super short 2015-07-04 20:59:42 --> Spark (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has joined #pikipedia 2015-07-04 21:02:11 @Espyo I hardly get things done 2015-07-04 21:02:20 @PikFan lies 2015-07-04 21:02:24 @PikFan blatant lies 2015-07-04 21:02:27 @Espyo I only report the stuff that gets done 2015-07-04 21:02:43 @Espyo the past few months had less engine activity than any other month in the project's history 2015-07-04 21:02:43 @PikFan did you not create a page analyzer for the wiki? 2015-07-04 21:02:49 @Espyo hm 2015-07-04 21:02:50 @Espyo guess I did 2015-07-04 21:03:12 @PikFan and did you not talk to the PW folk to convince them to merge? 2015-07-04 21:03:49 @PikFan and also you go around making all these edits to make sure that the pages stay up to date 2015-07-04 21:03:52 @PikFan on the polices 2015-07-04 21:03:54 @PikFan *policies 2015-07-04 21:03:58 @PikFan that YOU made 2015-07-04 21:04:39 <-- Spark (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has quit (Ping timeout: 252 seconds) 2015-07-04 21:08:16 @PikFan http://www.pikminwiki.com/Pikipedia:Game_article_policy 2015-07-04 21:08:17 @PikFan oh 2015-07-04 21:08:21 @PikFan I feel better now 2015-07-04 21:10:29 @PikFan http://www.pikminwiki.com/Alph_quotes 2015-07-04 21:10:38 @PikFan all of those need {{transcript}} 2015-07-04 21:10:39 Testyo "transcript" template = http://www.pikminwiki.com/index.php?title=Template:transcript 2015-07-04 21:15:37 @Espyo hehe 2015-07-04 21:15:43 @Espyo they do 2015-07-04 21:15:53 @Espyo so do prima guide and such transcripts on enemy articles 2015-07-04 21:15:54 @Espyo and such 2015-07-04 22:43:36 --> Spark (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has joined #pikipedia 2015-07-04 22:49:25 @J all of a sudden my fridge started freezing stuff 2015-07-04 22:49:43 @PikFan fun 2015-07-04 22:49:56 @PikFan so all the liquids are frozen now? 2015-07-04 22:51:30 @J well, not quite frozen frozen 2015-07-04 22:51:34 @J but there are ice crystals 2015-07-04 22:51:42 @PikFan I see 2015-07-04 22:51:46 @J in the fruit and vegetables 2015-07-04 22:52:44 @PikFan one time I had a tomato that grew a new plant inside itself 2015-07-04 22:53:03 @J what 2015-07-04 22:53:20 @PikFan it was sitting in the windowsill for a few weeks 2015-07-04 22:53:36 @PikFan then we noticed tiny stems growing under the skin 2015-07-04 22:54:09 @J that's crazy 2015-07-04 22:54:22 @PikFan yeah 2015-07-04 22:54:26 @PikFan then we cut it open 2015-07-04 22:54:39 @PikFan the stems even had leaves 2015-07-04 22:54:41 @PikFan it was nuts 2015-07-04 22:55:54 @PikFan oh, Espyo 2015-07-04 22:56:11 @PikFan so I'm thinking I'll create [[Brittany's notes]] 2015-07-04 22:56:11 Testyo "Brittany's_notes" article = http://www.pikminwiki.com/index.php?title=Brittany's_notes 2015-07-04 22:56:16 @Espyo go ahead 2015-07-04 22:56:27 @Espyo J: I think that means the door is not closed properly 2015-07-04 22:56:45 @PikFan should "notes" be title case or lowercase? I'm thinking lowercase, but there's a link on [[fruit]] that's got it title case 2015-07-04 22:56:45 Testyo "fruit" article = http://www.pikminwiki.com/index.php?title=fruit 2015-07-04 22:56:58 @Espyo what does the game say? 2015-07-04 22:57:04 @PikFan uhh 2015-07-04 22:57:09 @PikFan lemme check 2015-07-04 22:59:09 @PikFan it doesn't say 2015-07-04 22:59:18 @PikFan lowercase, then 2015-07-04 22:59:52 @PikFan do we have an image somewhere that has Brittany's notes about a fruit? 2015-07-04 23:00:35 <-- Yoshi2 (Yoshi2@1522-9yf7-p304-1-i044-x739-902c-to24.ipv0dyn.netcologne.de) has quit (Read error: Connection reset by peer) 2015-07-04 23:01:12 --> Yoshi2 (Yoshi2@1522-9yf7-p304-1-i044-x739-902c-to24.ipv0dyn.netcologne.de) has joined #pikipedia 2015-07-04 23:01:19 <-- Yoshi2 (Yoshi2@1522-9yf7-p304-1-i044-x739-902c-to24.ipv0dyn.netcologne.de) has quit (Read error: Connection reset by peer) 2015-07-04 23:01:58 @Espyo hmmm 2015-07-04 23:02:00 @Espyo here and there 2015-07-04 23:11:36 Testyo [Pikipedia RC] File:Brittany's notes.jpg uploaded by PikFan23 (A screenshot depicting [[Brittany's notes]]. [[Category:Pikmin 3 images]]) http://www.pikminwiki.com/index.php?title=File:Brittany's_notes.jpg 2015-07-04 23:18:06 @PikFan Espyo, there is a problem 2015-07-04 23:18:30 @PikFan I typed {{notes|Astringent Clump|brittany|brittanyreg}} but only the US version of it appears 2015-07-04 23:18:31 Testyo "notes|Astringent_Clump|brittany|brittanyreg" template = http://www.pikminwiki.com/index.php?title=Template:notes|Astringent_Clump|brittany|brittanyreg 2015-07-04 23:18:46 @Espyo "brittanyreg"? 2015-07-04 23:18:59 @PikFan [[Astringent Clump]] 2015-07-04 23:18:59 Testyo "Astringent_Clump" article = http://www.pikminwiki.com/index.php?title=Astringent_Clump 2015-07-04 23:19:11 @PikFan open it up and it has brittany=y and brittanyreg=y 2015-07-04 23:19:21 @Espyo well, do the same 2015-07-04 23:19:31 @Espyo brittany=y and brittanyreg=y 2015-07-04 23:19:36 @Espyo not just brittany and brittanyreg 2015-07-04 23:19:40 @PikFan I tried that, but then it's all weird and funky 2015-07-04 23:19:56 @Espyo I don't think it's meant to work like you think it is 2015-07-04 23:19:58 @PikFan this appears: “{{notes:Astringent Clump/{{{2}}}}} ” 2015-07-04 23:19:58 Testyo "2" template = http://www.pikminwiki.com/index.php?title=Template:2 2015-07-04 23:20:09 @Espyo the notes template shows all provided note types for a thing 2015-07-04 23:20:12 @Espyo and adds ==Notes== 2015-07-04 23:20:18 @Espyo or it just provides one note, if you only provide one 2015-07-04 23:20:18 @Espyo I think 2015-07-04 23:20:20 @Espyo it's a bit messed up 2015-07-04 23:20:24 @PikFan right, but I don't want it to do that 2015-07-04 23:20:32 @Espyo what do you want it to do exactly? 2015-07-04 23:20:48 @Espyo chances are you might want a {{transcript|{{Notes:Astringent Clump/brittanyus}}}} 2015-07-04 23:20:49 Testyo "Notes:Astringent_Clump/brittanyus" template = http://www.pikminwiki.com/index.php?title=Template:Notes:Astringent_Clump/brittanyus 2015-07-04 23:20:50 @PikFan I want to write ==Astringent Clump== with the notes underneath it 2015-07-04 23:21:00 @Espyo don't think it'll work, no 2015-07-04 23:21:09 @PikFan bleh 2015-07-04 23:21:10 @PikFan hmm 2015-07-04 23:21:42 @PikFan oh, I can just split it 2015-07-04 23:22:28 @PikFan ...then how do we get the flags to appeat 2015-07-04 23:22:30 @PikFan *appear 2015-07-04 23:23:56 @Espyo uh, {{US}}, I think? 2015-07-04 23:23:56 Testyo "US" template = http://www.pikminwiki.com/index.php?title=Template:US 2015-07-04 23:24:02 @PikFan oh, right 2015-07-04 23:24:03 @PikFan thanks 2015-07-04 23:25:13 @PikFan it's not ideal, but I've got {{US}} {{notes|Astringent Clump|brittany}} {{EU}} {{notes|Astringent Clump|brittanyreg}} 2015-07-04 23:25:13 Testyo "US" template = http://www.pikminwiki.com/index.php?title=Template:US 2015-07-04 23:25:17 @PikFan spaces are line breaks 2015-07-04 23:29:11 @Espyo hm, I think that works 2015-07-04 23:34:28 @PikFan should I put the fruit navbox at the bottom? 2015-07-04 23:35:04 @Espyo uh, sure 2015-07-04 23:35:27 @PikFan okay 2015-07-04 23:35:43 @PikFan oh 2015-07-04 23:35:50 @PikFan what about spoilers? 2015-07-04 23:36:10 @PikFan I don't think it's too much of a spoiler, but some of the fruits are discovered late in the game 2015-07-04 23:44:09 <-- Spark (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has quit (Ping timeout: 252 seconds) 2015-07-04 23:45:22 @Espyo no spoilers 2015-07-04 23:45:29 @Espyo not much different from [[Olimar's notes]] 2015-07-04 23:45:30 Testyo "Olimar's_notes" article = http://www.pikminwiki.com/index.php?title=Olimar's_notes 2015-07-04 23:45:39 @PikFan alright 2015-07-04 23:48:30 @PikFan oh, I almost forgot {{quotes}} 2015-07-04 23:48:31 Testyo "quotes" template = http://www.pikminwiki.com/index.php?title=Template:quotes 2015-07-04 23:48:49 @PikFan hmm, maybe I shouldn't have {{fruits}} 2015-07-04 23:48:49 Testyo "fruits" template = http://www.pikminwiki.com/index.php?title=Template:fruits 2015-07-04 23:49:48 @PikFan huh, {{quotes}} doesn't have a category? 2015-07-04 23:49:48 Testyo "quotes" template = http://www.pikminwiki.com/index.php?title=Template:quotes 2015-07-04 23:49:52 @PikFan there should be a category for that 2015-07-04 23:50:34 @PikFan done 2015-07-04 23:51:10 @PikFan we need to go through the quotes and get rid of all those extra spaces at the end 2015-07-04 23:51:52 Testyo [Pikipedia RC] Brittany's notes by PikFan23 (+3307) http://www.pikminwiki.com/index.php?title=Brittany's_notes&curid=19065&diff=151122&oldid=150617 2015-07-04 23:55:28 @PikFan alright, I think that works 2015-07-04 23:56:53 Testyo [Pikipedia RC] Category:Quotes by PikFan23 (+106 N Created page with "This category contains of all the quotes in the [[Pikmin (ser...) http://www.pikminwiki.com/index.php?title=Category:Quotes&curid=19126&diff=151123&oldid=0 2015-07-04 23:56:54 Testyo [Pikipedia RC] Template:Quotes by PikFan23 (+20 m Adding category.) http://www.pikminwiki.com/index.php?title=Template:Quotes&curid=17551&diff=151124&oldid=149558 2015-07-05 00:01:55 Testyo [Pikipedia RC] Brittany's Notes by PikFan23 (+30 N Redirected page to [[Brittany's notes]]) http://www.pikminwiki.com/index.php?title=Brittany's_Notes&curid=19127&diff=151125&oldid=0 2015-07-05 00:14:25 @Espyo did you run Pikan? 2015-07-05 00:14:37 @PikFan on which page? 2015-07-05 00:14:40 @Espyo the new one 2015-07-05 00:14:43 @PikFan yeah 2015-07-05 00:14:50 @PikFan only thing was See also 2015-07-05 00:14:59 @Espyo nice 2015-07-05 00:15:07 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Ping timeout: 252 seconds) 2015-07-05 00:15:18 @PikFan didn't need a see also because {{quotes}} 2015-07-05 00:15:28 @PikFan and Testyo died 2015-07-05 00:15:29 @PikFan rip 2015-07-05 00:16:16 @PikFan http://www.pikminwiki.com/Brittany#Trivia 2015-07-05 00:16:26 @PikFan "Brittany's hair is not naturally pink, it's coloured." 2015-07-05 00:16:31 @PikFan was that ever confirmed? 2015-07-05 00:24:30 @Espyo not afaik 2015-07-05 00:24:42 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-05 00:24:42 Testyo Hey everyone! 2015-07-05 00:26:47 @PikFan gotta go now 2015-07-05 00:26:48 @PikFan bye 2015-07-05 00:26:52 @Espyo bye 2015-07-05 00:26:57 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-05 00:43:57 --> Spark (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has joined #pikipedia 2015-07-05 00:51:59 Pidgey|SLP ok I've tried this sleeping thing 2015-07-05 00:52:01 Pidgey|SLP didn't work 2015-07-05 00:52:16 Pidgey|SLP well it did for an hour, then warmth killed me 2015-07-05 00:53:47 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-05 00:54:16 En_Passant Probably should've seen Inkipedia being the new member in advance 2015-07-05 00:55:14 En_Passant Though I guess I thought it was already a member since they were approached about leaving Wikia 2015-07-05 01:07:10 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-05 01:08:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-05 01:08:42 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-05 01:09:01 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Ping timeout: 252 seconds) 2015-07-05 01:09:53 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-05 01:09:54 Testyo Good day everyone! 2015-07-05 01:35:23 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-05 01:35:31 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-05 02:12:56 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-05 02:13:05 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-05 02:13:07 -- UM is now known as UltraMario 2015-07-05 02:21:04 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-05 02:21:40 -- Pidgey|SLP is now known as Pidgey|WRK 2015-07-05 02:29:47 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-05 02:43:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-05 03:04:58 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-05 03:21:41 --> RingtailedFox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has joined #pikipedia 2015-07-05 03:33:41 <-- RingtailedFox (foxfoxfox@2001:470:1d:puv:ljhm:sxxh:ngyj:mjgo) has quit (Read error: No route to host) 2015-07-05 03:33:59 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-07-05 03:40:32 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-05 05:59:06 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-05 06:00:14 En_Passant I have an idea for a redesign for the Iridescent Flint Beetle that is closer to its original appearance, but I can't decide if I dislike the current design enough to put the effort into drawing it 2015-07-05 06:51:35 -- Pidgey|WRK is now known as Pidgey 2015-07-05 07:30:46 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-05 07:53:13 --> Yoshi2 (Yoshi2@8403-8pn9-f003-2-014t-1r03-0795-qm1.ipv3dyn.netcologne.de) has joined #pikipedia 2015-07-05 07:55:51 <-- Spark (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has quit (Ping timeout: 252 seconds) 2015-07-05 08:12:15 --> Spark (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has joined #pikipedia 2015-07-05 08:16:45 <-- Spark (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has quit (Ping timeout: 252 seconds) 2015-07-05 08:38:01 --> Yoshi2_ (Yoshi2@1522-4mc7-j592-6-3u43-3zd5-o44k-wx4a.ipv0dyn.netcologne.de) has joined #pikipedia 2015-07-05 08:39:51 <-- Yoshi2 (Yoshi2@8403-8pn9-f003-2-014t-1r03-0795-qm1.ipv3dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-05 08:42:55 --> Yoshi2__ (Yoshi2@czrq-13-49-803-996.netcologne.de) has joined #pikipedia 2015-07-05 08:44:15 <-- Yoshi2_ (Yoshi2@1522-4mc7-j592-6-3u43-3zd5-o44k-wx4a.ipv0dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-05 08:47:54 <-- Yoshi2__ (Yoshi2@czrq-13-49-803-996.netcologne.de) has quit (Ping timeout: 272 seconds) 2015-07-05 09:26:10 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2015-07-05 09:27:56 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-05 09:29:58 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Client Quit) 2015-07-05 10:15:40 --> Yoshi2 (Yoshi2@9146-0ne5-s94o-5-d45h-s1w-8119-177y.ipv1dyn.netcologne.de) has joined #pikipedia 2015-07-05 10:35:23 --> Yoshi2_ (Yoshi2@5339-2qk1-e737-3-q33m-h4a-7426-939g.ipv4dyn.netcologne.de) has joined #pikipedia 2015-07-05 10:37:00 <-- Yoshi2 (Yoshi2@9146-0ne5-s94o-5-d45h-s1w-8119-177y.ipv1dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-05 10:55:33 @J phrase of the day: 'about as much use as a chocolate teapot' 2015-07-05 11:26:08 Yoshi2_ J: so it's only good for looks and to be eaten? 2015-07-05 12:36:07 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-05 12:36:07 Testyo Hey everyone! 2015-07-05 12:36:46 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-05 12:36:46 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-05 12:42:18 Yoshi2_ heyo Testyo & Espyo 2015-07-05 12:42:19 Testyo it is not the problem here, I think 2015-07-05 12:46:02 @Espyo hey 2015-07-05 12:51:06 Pidgey hi hi 2015-07-05 12:51:28 Pidgey uhh, there's supposed to be a comma there 2015-07-05 12:51:34 Pidgey <_< 2015-07-05 12:52:53 @Espyo heh 2015-07-05 12:53:24 Pidgey it ran away 2015-07-05 12:55:43 Yoshi2_ quick, catch it: , 2015-07-05 12:56:34 * Pidgey does so 2015-07-05 13:00:20 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-05 13:00:32 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-05 13:00:33 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-05 14:13:06 Testyo [Pikipedia RC] White Flower Garden by Scruffy (+124 Music and cleanup.) http://www.pikminwiki.com/index.php?title=White_Flower_Garden&curid=1446&diff=151129&oldid=150024 2015-07-05 14:23:15 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-05 14:24:17 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-05 14:25:32 -- Yoshi2_ is now known as Yoshi2 2015-07-05 14:28:18 Testyo [Pikipedia RC] Bulblax Kingdom by Scruffy (+292 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Bulblax_Kingdom&curid=61&diff=151130&oldid=149573 2015-07-05 14:30:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-05 14:30:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-05 14:33:21 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+54 m /* Metal 3 */) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=151131&oldid=151084 2015-07-05 14:38:25 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-05 14:38:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-05 14:39:16 Pidgey hmm 2015-07-05 14:39:42 Pidgey why was the link cut off there? 2015-07-05 14:40:34 @Espyo it was? 2015-07-05 14:40:39 @Espyo you mean the part you can click? 2015-07-05 14:43:24 Testyo [Pikipedia RC] Snagret Hole by Scruffy (+510 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Snagret_Hole&curid=1680&diff=151132&oldid=149934 2015-07-05 14:45:55 Pidgey no 2015-07-05 14:45:58 Pidgey well 2015-07-05 14:46:12 Pidgey it just goes to a page named Music_ 2015-07-05 14:46:32 @Espyo you can only really click the part up until Music_ 2015-07-05 14:46:36 @Espyo yeah, it's a Mibbit problem 2015-07-05 14:46:39 @Espyo it sees the ( in the URL 2015-07-05 14:46:43 @Espyo and thinks that that means the URL is over 2015-07-05 14:46:46 Pidgey ah 2015-07-05 14:46:49 Pidgey horrible, really 2015-07-05 14:46:53 @Espyo mhm 2015-07-05 14:52:08 Yoshi2 looks like it works fine with hexchat 2015-07-05 14:53:20 @Espyo mhm 2015-07-05 14:53:20 Yoshi2 I wonder why mibbit does that 2015-07-05 14:53:27 Testyo [Pikipedia RC] Citadel of Spiders by Scruffy (+361 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Citadel_of_Spiders&curid=197&diff=151133&oldid=148918 2015-07-05 14:53:37 @Espyo I think it's more than just Mibbit 2015-07-05 14:53:46 @Espyo URLs are meant to have those things encoded 2015-07-05 14:53:50 @Espyo %29 or some such 2015-07-05 14:54:03 Yoshi2 good point 2015-07-05 14:54:08 @Espyo so Music_%28Pikmin_2%29 or something should work 2015-07-05 14:54:19 @Espyo otherwise you can only trust that a space is what ends a url 2015-07-05 14:54:28 @Espyo which might not be exactly what the sender wanted 2015-07-05 14:54:42 @Espyo still, most of the time you don't put a ( right after the URL, without a space 2015-07-05 14:54:46 @Espyo so it's still stupid for Mibbit 2015-07-05 14:55:37 Yoshi2 detecting urls is a pain anyway 2015-07-05 14:56:42 @Espyo sure is 2015-07-05 14:57:53 Yoshi2 whenever I see somebody writing an url detector for a bot, e.g. to show information on a link, they just look for a string that starts with http: or www. and take the rest of the string as an url until it reaches a whitespace 2015-07-05 15:03:04 @Espyo hm 2015-07-05 15:03:32 Testyo [Pikipedia RC] Glutton's Kitchen by Scruffy (+198 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Glutton's_Kitchen&curid=449&diff=151135&oldid=149594 2015-07-05 15:08:34 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+1 m /* Tile 2 */) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=151136&oldid=151131 2015-07-05 15:08:35 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+4 m /* Tile 1 */) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=151137&oldid=151136 2015-07-05 15:18:41 Testyo [Pikipedia RC] Shower Room by Scruffy (+321 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Shower_Room&curid=1662&diff=151138&oldid=149634 2015-07-05 15:33:49 Testyo [Pikipedia RC] Submerged Castle by Scruffy (+675 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Submerged_Castle&curid=1632&diff=151139&oldid=149632 2015-07-05 15:48:53 Testyo [Pikipedia RC] Cavern of Chaos by Scruffy (+536 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Cavern_of_Chaos&curid=53&diff=151140&oldid=149652 2015-07-05 16:08:59 Testyo [Pikipedia RC] Hole of Heroes by Scruffy (+874 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Hole_of_Heroes&curid=816&diff=151141&oldid=150267 2015-07-05 16:16:22 Testyo see, I up your hostname... 2015-07-05 16:17:39 Yoshi2 nobody ups my hostname 2015-07-05 16:17:45 Yoshi2 Testyo: NOBODY 2015-07-05 16:17:46 Testyo Yoshi2 there was at what I just said 2015-07-05 16:24:04 Testyo [Pikipedia RC] Dream Den by Scruffy (+629 Music and cleanup.) http://www.pikminwiki.com/index.php?title=Dream_Den&curid=565&diff=151142&oldid=150413 2015-07-05 16:24:14 Pidgey wow so many bytes 2015-07-05 16:42:21 --> Spark (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has joined #pikipedia 2015-07-05 17:01:13 Yoshi2 Espyo: in linux, if I have a symlink (either hard or softlink) to a file named "A", and I use "unlink A" to delete the file, does anyhing happen to the symlink? 2015-07-05 17:02:57 --> Yoshi2_ (Yoshi2@2001:4dd3:ea56:w:igni:pwo:vgzg:nkmk) has joined #pikipedia 2015-07-05 17:03:31 @Espyo if you use unlink A, it should just remove the link 2015-07-05 17:03:35 @Espyo it should leave the original A alone 2015-07-05 17:04:17 --> Yoshi2__ (Yoshi2@2001:4dd3:ea5c:l:gwzh:iiv:pogx:minm) has joined #pikipedia 2015-07-05 17:05:51 <-- Yoshi2 (Yoshi2@5339-2qk1-e737-3-q33m-h4a-7426-939g.ipv4dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-05 17:07:58 Pidgey Yoshi2_ Yoshi2__ 2015-07-05 17:08:03 <-- Yoshi2_ (Yoshi2@2001:4dd3:ea56:w:igni:pwo:vgzg:nkmk) has quit (Ping timeout: 252 seconds) 2015-07-05 17:08:09 -- Yoshi2__ is now known as Yoshi2 2015-07-05 17:08:31 Yoshi2 Espyo: in linux, if I have a symlink (either hard or softlink) to a file named "A", and I use "unlink A" to delete the file, does anyhing happen to the symlink? 2015-07-05 17:09:19 @Espyo if you use unlink A, it should just remove the link 2015-07-05 17:09:19 @Espyo it should leave the original A alone 2015-07-05 17:10:08 Yoshi2 but I don't want to remove the link, I want to remove the original 2015-07-05 17:11:26 Yoshi2 as far as I can tell, nothing should happen to the symlink 2015-07-05 17:12:22 @J it just becomes a broken link 2015-07-05 17:12:30 @J for a hard link, it's fine and _is_ the file 2015-07-05 17:12:51 @J a broken symlink shows up red with 'ls' with colours on 2015-07-05 17:15:13 Yoshi2 hm, I should probably try it out myself 2015-07-05 17:15:18 * Yoshi2 fires up the VM 2015-07-05 17:19:25 Testyo [Pikipedia RC] 42-Pikmin run by 24.184.120.191 (-37 /* Requirements */) http://www.pikminwiki.com/index.php?title=42-Pikmin_run&curid=18304&diff=151143&oldid=145597 2015-07-05 17:19:25 Testyo [Pikipedia RC] 42-Pikmin run by 24.184.120.191 (+2 /* Requirements */) http://www.pikminwiki.com/index.php?title=42-Pikmin_run&curid=18304&diff=151144&oldid=151143 2015-07-05 17:23:48 Yoshi2 ah, interesting 2015-07-05 17:24:07 Yoshi2 if the symlink is a hardlink, it does not become broken 2015-07-05 17:24:19 Yoshi2 if I delete the file it points to 2015-07-05 17:26:06 Yoshi2 well, makes sense 2015-07-05 17:27:07 Yoshi2 because a hard link points directly to the data of the file, unlike the soft link, which only points to the particular path containing the file 2015-07-05 17:30:16 @J yeah, that's what I was saying, just not as well 2015-07-05 21:39:46 Spark hey espyo, quick question 2015-07-05 21:40:22 Spark you know about irc, right? so if im trying to make my bot send a message in color, is there a way to make the next character be a number without it interpreting that number as part of the color code? 2015-07-05 21:44:55 @Espyo no way 2015-07-05 21:45:16 Spark aw, okay; thanks 2015-07-05 21:45:22 @Espyo I guess you could add two bold tags 2015-07-05 21:45:26 @Espyo or two underlines 2015-07-05 21:45:30 @Espyo it's stupid, but it works 2015-07-05 21:45:35 Spark oh, yeah, i guess i could 2015-07-05 21:45:36 Yoshi2 what color codes do you use? 2015-07-05 21:46:10 Yoshi2 the mIRC ones? 2015-07-05 21:46:46 Spark they're the same for most clients afaik 2015-07-05 21:48:44 Yoshi2 most clients implement the color codes that are the most popular 2015-07-05 21:49:29 Yoshi2 which, iirc, are the mIRC ones, but I'm not sure 2015-07-05 21:49:48 Spark i think so, yeah 2015-07-05 21:50:04 Spark im using hexchat but it seems to be the same as mirc 2015-07-05 21:58:46 Yoshi2 you could probably try using a color that is two digits 2015-07-05 21:59:03 Yoshi2 123 is my favorite number 2015-07-05 22:07:50 Pidgey i dont have a favourite number 2015-07-05 22:08:08 Pidgey because every number is bound to be interesting in one way or another 2015-07-05 22:13:36 Yoshi2 indeed 2015-07-05 22:13:53 Yoshi2 123 was just a test to show that you can put a number after the color if you use a color with two digits 2015-07-05 22:18:08 @J can you put a 0 before the colour code? 2015-07-05 22:18:13 @J like 05 2015-07-05 22:20:09 Yoshi2 33asdsa 2015-07-05 22:20:20 Yoshi2 J: yup, seems so 2015-07-05 22:20:39 Yoshi2 at least in hexchat it works 2015-07-05 22:28:12 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-07-05 22:28:27 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Client Quit) 2015-07-05 22:40:08 Testyo so... not isn't a word 2015-07-05 22:42:40 @J lies 2015-07-05 22:43:42 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-05 22:43:43 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-05 22:43:51 @PikFan hi 2015-07-05 22:45:26 <-- Yoshi2 (Yoshi2@2001:4dd3:ea5c:l:gwzh:iiv:pogx:minm) has quit (Quit: Leaving) 2015-07-05 23:17:39 @Espyo hi 2015-07-06 00:04:31 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Bye everyone!) 2015-07-06 00:09:30 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-06 01:26:27 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-06 01:38:09 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-06 01:40:54 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 01:43:04 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 01:44:06 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 02:30:02 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-06 02:30:43 En_Passant Anyone home? 2015-07-06 02:31:03 Pidgey en passan 2015-07-06 02:31:04 Pidgey t 2015-07-06 02:31:07 Pidgey isn't that a Chess term 2015-07-06 02:32:13 En_Passant yes 2015-07-06 02:32:26 En_Passant You are the first person to identify that since I changed my username 2015-07-06 02:32:33 En_Passant Most people don't even pronounce it correctly QQ 2015-07-06 02:33:37 Pidgey what is that piece 2015-07-06 02:33:43 Pidgey the most worthless of them all 2015-07-06 02:33:51 Pidgey I don't know what they're called in English 2015-07-06 02:50:27 En_Passant pawn 2015-07-06 02:53:27 Pidgey ah yes 2015-07-06 02:53:36 Pidgey thanks 2015-07-06 02:53:45 En_Passant Wait what's your first language? 2015-07-06 02:53:49 Pidgey Swedish. 2015-07-06 02:54:01 En_Passant cool 2015-07-06 02:54:07 Pidgey so yay for understanding six languages 2015-07-06 02:54:53 En_Passant damn son 2015-07-06 02:55:06 En_Passant What are the other four? 2015-07-06 02:55:51 Pidgey well 2015-07-06 02:56:13 Pidgey oh I guess that makes it five 2015-07-06 02:56:20 Pidgey depending on how you count anyway 2015-07-06 02:57:10 Pidgey Fluent in Swedish, almost fluent in English, automatic understanding of both Norwegian languages (Bokmål and Nynosk), and Danish. 2015-07-06 02:58:39 Pidgey I need to practise my Danish hearing comprehension, though. 2015-07-06 02:59:21 Pidgey But it's so very hard to do that, considering that they don't even know how to signal where a word ends. 2015-07-06 03:00:58 En_Passant lol 2015-07-06 03:02:43 -- Pidgey is now known as Pidgey|SLP 2015-07-06 03:14:05 En_Passant also lol to the new policy 2015-07-06 03:14:14 En_Passant because so many people follow the old ones 2015-07-06 03:55:25 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 03:56:35 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 03:58:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 04:42:04 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-06 04:42:04 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-06 04:46:35 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-07-06 04:46:42 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-06 04:46:42 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-06 04:47:30 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-07-06 04:49:00 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-06 04:49:00 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-06 04:50:20 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-07-06 04:51:16 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-06 04:51:16 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-06 05:30:46 En_Passant ChanServ has given op to PikFan 2015-07-06 05:32:26 @PikFan hmm? 2015-07-06 05:37:14 En_Passant That message appeared four times in a row 2015-07-06 05:37:33 En_Passant Also, I'm bored and it was a good excuse to ping someone to talk to 2015-07-06 05:39:30 @PikFan oh, heh 2015-07-06 05:40:00 @PikFan yeah, it's because I kept connecting and disconnecting 2015-07-06 05:40:46 @PikFan for whatever reason, the wiki widget doesn't show people joining or quitting 2015-07-06 05:41:49 En_Passant So what do you think of the Iridescent Flint Beetle's new design 2015-07-06 05:42:20 En_Passant Because I thought of a redesign that looks a lot like the original, but I don't know if I dislike the current one enough to put the effort into drawing it 2015-07-06 05:45:36 @PikFan in P3? 2015-07-06 05:46:23 En_Passant yeah 2015-07-06 05:46:44 @PikFan it's... interesting, to say the least 2015-07-06 05:50:40 En_Passant My conundrum is that I don't think it looks anything like a beetle, but this is Pikmin so that's not a valid reason 2015-07-06 05:51:06 En_Passant Is it? 2015-07-06 05:52:19 @PikFan well, Pikmin makes no sense 2015-07-06 05:52:41 @PikFan although beetles do have a hard covering 2015-07-06 05:52:56 @PikFan and the IFB's have a hard covering 2015-07-06 05:53:16 @PikFan maybe you could draw one with six legs 2015-07-06 05:54:30 En_Passant Well, yeah 2015-07-06 05:55:06 En_Passant It would be similar to the old design, but with updates that fit into P3's style 2015-07-06 05:55:18 @PikFan mhm 2015-07-06 05:55:31 @PikFan well, it's your call 2015-07-06 05:57:35 En_Passant I think I'll do i 2015-07-06 05:57:36 En_Passant *it 2015-07-06 05:57:45 @PikFan alright 2015-07-06 05:58:06 En_Passant I don't think the IGB (or the GFB as it will be called in Pikmin V) would look good with the current design 2015-07-06 05:58:44 @PikFan I see 2015-07-06 05:58:55 @PikFan what's the G stand for? 2015-07-06 05:59:01 En_Passant Gilded 2015-07-06 05:59:12 @PikFan oh 2015-07-06 05:59:16 En_Passant Not quite as fancy, but it works 2015-07-06 05:59:44 @PikFan actually, "gilded" sounds fancier 2015-07-06 06:00:02 @PikFan because it's always been "iridescent" 2015-07-06 06:00:07 En_Passant Well, not as fancy as the word Iridescent 2015-07-06 06:00:25 En_Passant I originally wanted Illustrious, but that world has no relation to the word Lustrous 2015-07-06 06:00:48 @PikFan hmm 2015-07-06 06:01:25 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 06:01:41 En_Passant Eh, doesn't matter too much 2015-07-06 06:02:09 En_Passant Gilded's a perfect description of it, after all 2015-07-06 06:02:23 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-06 06:02:24 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-06 06:02:42 En_Passant And I'm kinda rambling about nothing 2015-07-06 06:02:51 @PikFan I disconnected again 2015-07-06 06:03:01 @PikFan nah, it's fine 2015-07-06 06:05:15 En_Passant Something better to discuss would be Onions 2015-07-06 06:05:40 @PikFan heh 2015-07-06 06:05:42 En_Passant I feel like having a Master Onion for all 9 would be hard to make smooth 2015-07-06 06:05:58 @PikFan hm 2015-07-06 06:06:34 En_Passant I could do 3 of 3, though that + the two ships would make the landing site a bit too big for comfort 2015-07-06 06:06:54 @PikFan well, just have like an arrow next to the 5th Pikmin type so you can go to the 6th, 7th, etc 2015-07-06 06:08:36 En_Passant I guess I could 2015-07-06 06:12:41 En_Passant Also, did you see the drawings I did 2015-07-06 06:12:48 En_Passant Not trying to brag, but I'm really proud of them 2015-07-06 06:13:07 @PikFan mhm, I did 2015-07-06 06:13:21 @PikFan are they based off of the P3 designs? 2015-07-06 06:13:28 En_Passant Yeah 2015-07-06 06:13:41 @PikFan ah 2015-07-06 06:13:53 @PikFan they look pretty good 2015-07-06 06:13:54 En_Passant Why wouldn't they? They're the most recent 2015-07-06 06:14:02 En_Passant *being based off of p3 2015-07-06 06:14:30 En_Passant And thanks 2015-07-06 06:49:24 --> PikFan23 (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-06 06:49:33 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Killed (NickServ (GHOST command used by PikFan23))) 2015-07-06 06:49:42 -- PikFan23 is now known as PikFan 2015-07-06 06:49:46 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-06 06:50:45 En_Passant hm 2015-07-06 06:50:55 En_Passant making a Flint Beetle isn't as easy as I thought 2015-07-06 08:04:04 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 08:09:59 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-07-06 08:29:22 --> Spark02 (sparkles@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2015-07-06 08:32:36 <-- Spark (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has quit (Ping timeout: 252 seconds) 2015-07-06 10:12:45 --> Yoshi2 (Yoshi2@134.61.uy.lo) has joined #pikipedia 2015-07-06 10:12:51 -- Pidgey|SLP is now known as Pidgey 2015-07-06 10:46:37 <-- Yoshi2 (Yoshi2@134.61.uy.lo) has quit (Quit: Leaving) 2015-07-06 10:52:19 --> CyborgKing0 (Mibbit@114.108.wjx.jjh) has joined #pikipedia 2015-07-06 10:55:04 <-- CyborgKing0 (Mibbit@114.108.wjx.jjh) has quit (Client Quit) 2015-07-06 10:55:14 --> CyborgKing0 (Mibbit@114.108.wjx.jjh) has joined #pikipedia 2015-07-06 10:55:29 <-- CyborgKing0 (Mibbit@114.108.wjx.jjh) has quit (Client Quit) 2015-07-06 13:02:54 --> Yoshi2 (Yoshi2@134.61.uy.lo) has joined #pikipedia 2015-07-06 13:32:31 <-- Yoshi2 (Yoshi2@134.61.uy.lo) has quit (Quit: Leaving) 2015-07-06 14:54:33 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 14:58:29 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 14:59:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 14:59:49 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 15:01:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 15:02:10 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 15:04:12 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 15:08:12 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 15:09:24 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 15:10:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 15:14:51 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 15:23:15 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 15:26:33 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 15:32:25 <-- Spark02 (sparkles@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Ping timeout: 258 seconds) 2015-07-06 15:46:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 15:47:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 15:58:23 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 16:01:11 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 16:03:15 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 16:03:34 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-06 16:03:36 -- UM is now known as UltraMario 2015-07-06 16:16:24 --> U (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 16:16:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by U))) 2015-07-06 16:16:48 -- U is now known as UltraMario 2015-07-06 16:23:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 16:23:34 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 16:24:56 --> U (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 16:25:15 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by U))) 2015-07-06 16:26:02 -- U is now known as UltraMario 2015-07-06 16:29:19 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 16:29:36 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 16:30:56 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 16:31:16 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-06 16:31:49 -- UM is now known as UltraMario 2015-07-06 16:56:12 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 16:56:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-06 16:56:55 -- UM is now known as UltraMario 2015-07-06 17:00:37 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 17:01:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 17:06:01 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 17:06:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-06 17:06:48 -- UM is now known as UltraMario 2015-07-06 17:11:23 --> U (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 17:11:50 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 17:11:59 -- U is now known as UltraMario 2015-07-06 17:13:10 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 17:13:29 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-06 17:13:39 -- UM is now known as UltraMario 2015-07-06 17:15:10 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 17:15:38 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 17:16:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 17:28:55 --> Yoshi2 (Yoshi2@5334-7mh6-yxf5-8-u86s-rmh-t280-yz5.ipv4dyn.netcologne.de) has joined #pikipedia 2015-07-06 17:32:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 17:44:42 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 17:45:02 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 18:11:41 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 18:12:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 18:12:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 18:12:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 18:13:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 18:14:17 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 18:15:04 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 18:16:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 18:19:43 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-06 18:20:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-06 18:28:02 --> Spark02 (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has joined #pikipedia 2015-07-06 18:30:34 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 18:42:43 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-06 18:42:44 Testyo Hello everyone! 2015-07-06 18:43:22 Pidgey oh god 2015-07-06 18:43:22 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-06 18:43:22 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-06 18:43:32 Pidgey all of that join/quit text 2015-07-06 18:43:36 Pidgey either way hi 2015-07-06 18:54:45 @Espyo hi 2015-07-06 18:56:12 Yoshi2 hey Testyo & Espyo 2015-07-06 18:56:13 Testyo you need to hear what you're creating to make sure it now? 2015-07-06 18:56:19 @Espyo hi 2015-07-06 19:21:22 @PikFan hi 2015-07-06 19:21:28 @PikFan Espyo, did you get my memo? 2015-07-06 19:21:42 @Espyo oh 2015-07-06 19:21:49 @PikFan and holy crap that is way too much join/quit text 2015-07-06 19:21:53 @Espyo it's saying I have 'em, but it says it on the server tab that I NEVER check 2015-07-06 19:22:04 @PikFan what 2015-07-06 19:22:09 @PikFan that's not right 2015-07-06 19:22:13 @PikFan meh 2015-07-06 19:22:24 @PikFan well, I made a todo list for Fanon 2015-07-06 19:22:58 @PikFan http://www.pikminfanon.com/User:PikFan23#Wiki 2015-07-06 19:23:15 @PikFan I think I got the most important stuff 2015-07-06 19:23:50 @Espyo sounds good 2015-07-06 19:25:15 @PikFan as for the file licenses, I think we'd have to get into monobook.css or something 2015-07-06 19:25:22 @PikFan I'm not sure how it all works 2015-07-06 19:25:31 @Espyo I'm pretty sure it can't be monobook.css 2015-07-06 19:25:42 @PikFan hm 2015-07-06 19:25:50 @Espyo that's just the Monobook style 2015-07-06 19:25:53 @Espyo what goes where, what colors 2015-07-06 19:25:58 @Espyo what font size, etc. 2015-07-06 19:26:16 @J file licenses? 2015-07-06 19:26:19 @Espyo ! 2015-07-06 19:26:20 @J is that mediawiki:licenses? 2015-07-06 19:26:21 @Espyo PikFan 2015-07-06 19:26:24 @J something like that 2015-07-06 19:26:24 @PikFan ? 2015-07-06 19:26:29 @Espyo one of your boxes says "alot of friends" 2015-07-06 19:26:30 @Espyo ALOT 2015-07-06 19:26:34 @J alot 2015-07-06 19:26:40 @PikFan ugh 2015-07-06 19:27:47 @Espyo anyway, yeah, I think it's that 2015-07-06 19:27:58 @Espyo also, don't know if you guys noticed, but I closed the merging process 2015-07-06 19:28:00 @Espyo (except for images) 2015-07-06 19:28:02 @Espyo (there's like) 2015-07-06 19:28:04 @PikFan nothing http://www.pikminfanon.com/MediaWiki:Licenses 2015-07-06 19:28:05 @Espyo (3 million of them) 2015-07-06 19:28:06 @Espyo (screw that) 2015-07-06 19:28:15 @PikFan (to be precise, 3 thousand) 2015-07-06 19:28:20 @Espyo (close= 2015-07-06 19:28:21 @Espyo *) 2015-07-06 19:28:29 @PikFan (:P) 2015-07-06 19:28:33 @Espyo http://www.pikminwiki.com/MediaWiki:Licenses 2015-07-06 19:28:58 @Espyo now we can actually see how many pages we have 2015-07-06 19:29:00 @Espyo 893 2015-07-06 19:29:06 Testyo [Fanon RC] Template:Friends by PikFan23 (+1 m Ugh.) http://www.pikminfanon.com/index.php?title=Template:Friends&curid=183&diff=48687&oldid=784 2015-07-06 19:29:50 @PikFan wasn't it like 1400 or something 2015-07-06 19:30:04 @Espyo 1500 I think 2015-07-06 19:30:09 @PikFan mm 2015-07-06 19:30:11 @Espyo I deleted 550 or so pages 2015-07-06 19:30:16 @Espyo so err... probably 1400+- 2015-07-06 19:30:27 @PikFan uhh 2015-07-06 19:30:39 @PikFan I thought we were keeping the /merge pages? 2015-07-06 19:30:46 @Espyo what for? 2015-07-06 19:30:51 @Espyo everything's all merged 2015-07-06 19:30:54 @PikFan for history 2015-07-06 19:31:13 @PikFan meh, never mind 2015-07-06 19:32:43 @Espyo the history's on the normal pages too 2015-07-06 19:32:53 @Espyo err, I think? 2015-07-06 19:33:06 @Espyo well, the actual /merge page doesn't exist 2015-07-06 19:33:12 @Espyo so its history doesn't need to be kept 2015-07-06 19:33:15 @Espyo what we have is a hybrid 2015-07-06 19:33:16 @Espyo that we made 2015-07-06 19:33:18 @Espyo so we have our history 2015-07-06 19:33:23 @PikFan by history I didn't mean the page's history 2015-07-06 19:33:37 @PikFan I meant... 2015-07-06 19:33:38 @Espyo that, combined with the fact that most of the people that did the other pages are with us now and don't care 2015-07-06 19:33:44 @PikFan ...I don't know what I meant 2015-07-06 19:33:47 @Espyo heh 2015-07-06 19:36:27 @PikFan so last night I cleaned up my game article a bit 2015-07-06 19:36:55 @PikFan the wording is sounding better 2015-07-06 19:37:20 @PikFan not like an 12 year old who created it, which it was 2015-07-06 19:37:29 @PikFan it's sounding more professional now 2015-07-06 19:37:47 @PikFan there's still some instances of "you" but I'll go through and weed those out 2015-07-06 19:38:24 @PikFan and in the opening paragraph, I acknowledged that it's a fangame 2015-07-06 19:38:31 @PikFan and it will probably never come out 2015-07-06 19:38:45 @J I forget, did I actually merge the page histories then create a separate /merge page and put the old page back over the top? 2015-07-06 19:38:57 @J in which case the history will be preserved, in the same page 2015-07-06 19:39:24 @PikFan I forget too 2015-07-06 19:43:09 @Espyo hehe 2015-07-06 19:43:20 @Espyo wait 2015-07-06 19:43:23 @Espyo oh, of course we did 2015-07-06 19:43:26 @Espyo yeah, that's what happened 2015-07-06 19:43:35 @Espyo the wikia pages got slammed on top of our pages 2015-07-06 19:43:40 @Espyo so the history is intact 2015-07-06 19:43:46 @Espyo then reverted, so we get the Pikipedia version 2015-07-06 19:43:48 @Espyo then put on /merge 2015-07-06 19:55:32 @PikFan and fanon is broken again 2015-07-06 19:55:33 @PikFan yay 2015-07-06 19:55:40 @PikFan I hate the fatal errors : 2015-07-06 19:55:43 @PikFan :| 2015-07-06 20:01:50 @PikFan so what's going on with Greece? 2015-07-06 20:03:04 @Espyo not sure 2015-07-06 20:03:24 <-- Spark02 (sparkles@2602:306:3717:vpqg:wjq:ptgr:trst:vwk) has quit (Ping timeout: 252 seconds) 2015-07-06 20:03:35 @PikFan it looks like they lost all their money 2015-07-06 20:03:46 @PikFan other than that I have no idea 2015-07-06 20:04:09 Yoshi2 they didn't lose money 2015-07-06 20:04:39 @PikFan hm 2015-07-06 20:04:54 Pidgey ok thing is 2015-07-06 20:05:18 Pidgey I will assume you are aware of the referendum that held place yesterday 2015-07-06 20:06:01 Pidgey and that the result was a resounding 'no; 2015-07-06 20:06:47 Pidgey so yeah the thing was basically a vote about austerity 2015-07-06 20:07:22 Pidgey and the Greek people didn't want that, considering the youth unemployment is at 50%, or even higher 2015-07-06 20:09:32 @PikFan hmm 2015-07-06 20:19:17 @PikFan http://www.pikminwiki.com/index.php?title=42-Pikmin_run&curid=18304&diff=151236&oldid=151144 2015-07-06 20:19:21 @PikFan why 15? 2015-07-06 20:19:36 @PikFan I thought the Portable Sunset only needed 8 Pikmin? 2015-07-06 20:19:51 @Espyo ... 2015-07-06 20:19:52 @Espyo shit 2015-07-06 20:19:53 Testyo I hope you've vented off your anger by swearing, friend. 2015-07-06 20:20:13 @Espyo ...didn't I tell you to stop that already, Testyo? 2015-07-06 20:20:14 Testyo it was cold, it was meant to be "rumors" 2015-07-06 20:20:34 @Espyo wait, doesn't this mean 2015-07-06 20:20:41 @Espyo that the limit ISN'T 42 Pikmin any more? 2015-07-06 20:20:46 @J please close your quote Pi 2015-07-06 20:20:52 @J pleeaaaase 2015-07-06 20:21:08 @PikFan 'no; 2015-07-06 20:21:14 Pidgey okay 2015-07-06 20:21:18 Pidgey *'no' 2015-07-06 20:21:22 @Espyo I'm still waiting for Pidgey to end his quote 2015-07-06 20:21:29 @Espyo you just started a new one 2015-07-06 20:21:34 Pidgey ' 2015-07-06 20:21:36 @Espyo ah 2015-07-06 20:21:38 @J okay 2015-07-06 20:21:38 @Espyo long quote, that 2015-07-06 20:21:41 Pidgey that was a horrible quite tbh 2015-07-06 20:21:42 @J I can breathe 2015-07-06 20:21:44 Pidgey *quote 2015-07-06 20:22:11 Pidgey I apologise for the unnecessary stress caused. 2015-07-06 20:22:52 @Espyo oh right, candypop buds 2015-07-06 20:22:55 @Espyo okay, all is good with the world 2015-07-06 20:23:48 @PikFan yay 2015-07-06 20:25:31 Yoshi2 we can live peacefully once again 2015-07-06 20:31:17 Testyo [Pikipedia RC] Decorated Cannon Beetle by Scittery Leaves23 (+1073 Behavior, Strategy) http://www.pikminwiki.com/index.php?title=Decorated_Cannon_Beetle&curid=436&diff=151238&oldid=149593 2015-07-06 20:31:18 Testyo [Fanon RC] User:StarWolf by StarWolf (+266) http://www.pikminfanon.com/index.php?title=User:StarWolf&curid=9670&diff=48688&oldid=48601 2015-07-06 20:31:18 Testyo [Fanon RC] User:StarWolf by StarWolf (-2) http://www.pikminfanon.com/index.php?title=User:StarWolf&curid=9670&diff=48689&oldid=48688 2015-07-06 20:32:13 @Espyo ...Scittery is alive? 2015-07-06 20:35:12 Yoshi2 Espyo: is there any reason why that person shouldn't be alive? 2015-07-06 20:35:21 @Espyo last edit was months ago 2015-07-06 20:35:29 @Espyo as far as I can remember, at least 2015-07-06 20:35:40 @Espyo http://www.pikminwiki.com/Special:Contributions/Scittery_Leaves23 3 months 2015-07-06 20:35:54 @Espyo not that I'm complaining, of course 2015-07-06 20:38:20 Yoshi2 3 months is nothing 2015-07-06 20:38:38 @Espyo sure it is 2015-07-06 20:38:46 Yoshi2 my last contribution on TCRF must be a couple of months old by now 2015-07-06 20:50:21 --> Spark02 (sparkles@2602:306:3717:ovnz:vkiu:guku:unvz:vj) has joined #pikipedia 2015-07-06 21:10:52 @PikFan don't we love anonymous spammers http://www.pikminfanon.com/index.php?title=Pikmin%3A_Connection_of_the_Worlds&action=historysubmit&diff=22818&oldid=22744 2015-07-06 21:11:16 @Espyo yyyyyyep 2015-07-06 21:13:17 Pidgey Good Boy And Girl, Low Sounds, and Good Words 2015-07-06 21:13:20 Pidgey what 2015-07-06 21:13:25 Pidgey what is Good Words 2015-07-06 21:13:27 @PikFan I have 2015-07-06 21:13:28 @PikFan no 2015-07-06 21:13:30 @PikFan idea 2015-07-06 21:13:41 Pidgey Good Boy And Girl 2015-07-06 21:13:44 Pidgey Low Sounds 2015-07-06 21:13:48 Pidgey ??????????????? 2015-07-06 21:14:30 @J has everyone heard of Duck Game? 2015-07-06 21:14:33 @J it looks amazing 2015-07-06 21:14:42 @PikFan nan des ka? 2015-07-06 21:14:50 Pidgey Duck Game? 2015-07-06 21:14:53 Pidgey *google* 2015-07-06 21:16:35 @J kind of like local multiplayer Super Crate Box, but with _much_ more variation 2015-07-06 21:17:34 Pidgey le hat meme 2015-07-06 21:42:57 @Espyo I've seen people play it 2015-07-06 21:43:05 @Espyo looks like one of those games that's a lot funner to play than to see 2015-07-06 21:43:08 @Espyo so... I didn't see much of it 2015-07-06 21:53:40 <-- Yoshi2 (Yoshi2@5334-7mh6-yxf5-8-u86s-rmh-t280-yz5.ipv4dyn.netcologne.de) has quit (Quit: Leaving) 2015-07-06 21:55:40 Testyo i HATE it. sadly, i can only learn more ACs 2015-07-06 21:56:19 Pidgey good one 2015-07-06 21:57:22 Pidgey either way, going for a walk 2015-07-06 21:57:25 Pidgey yes I know it's late 2015-07-06 21:57:30 Pidgey but I don't care 2015-07-06 21:57:53 @PikFan how late is it 2015-07-06 21:58:06 Pidgey about 11 PM 2015-07-06 21:58:09 @PikFan oh 2015-07-06 21:58:14 @PikFan meh, not too late 2015-07-06 21:58:19 @PikFan you are an adult, after all 2015-07-06 21:58:27 Pidgey mhm 2015-07-06 21:58:38 @PikFan enjoy your walk 2015-07-06 21:58:43 Pidgey I will 2015-07-06 22:15:24 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-07-06 22:15:31 Waterpikmin hello friends 2015-07-06 22:15:39 @PikFan hi 2015-07-06 22:15:58 Waterpikmin so did anyone have any guess at what happened with omni? 2015-07-06 22:17:32 Waterpikmin ? 2015-07-06 22:18:10 Waterpikmin espyo, do you know anything about what happened with omni? lol 2015-07-06 22:18:28 @Espyo hm, not really 2015-07-06 22:18:30 @Espyo he just never replied 2015-07-06 22:19:02 Waterpikmin wow, thats strange, maybe he didnt reply because he didnt want any smashified characters getting leake 2015-07-06 22:19:06 Waterpikmin leaked 2015-07-06 22:19:06 @PikFan he probably doesn't care 2015-07-06 22:19:25 @PikFan he probably thinks we're peons 2015-07-06 22:19:36 Waterpikmin because they dont give out characters they want to smashify 2015-07-06 22:19:47 @PikFan no, it's not that 2015-07-06 22:19:51 Waterpikmin he may just give us credit in the video 2015-07-06 22:20:04 @PikFan he probably has no interest in talking to wiki folk like us 2015-07-06 22:20:06 Waterpikmin because he never gives out characters 2015-07-06 22:20:13 Waterpikmin hmm... maybe 2015-07-06 22:20:27 @PikFan in his eyes, we're insignificant 2015-07-06 22:20:29 Waterpikmin so how is inkipedia going? 2015-07-06 22:22:56 Waterpikmin i gtg lol 2015-07-06 22:23:03 Waterpikmin ttyl 2015-07-06 22:23:08 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-06 22:34:15 -- Spark02 is now known as Spark 2015-07-06 22:40:13 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-06 22:41:30 En_Passant So was the merge complete a long time ago and we just hadn't deleted the merge pages yet? 2015-07-06 22:43:55 @Espyo pretty much :V 2015-07-06 22:47:13 @PikFan why am I drinking hot cocoa in July 2015-07-06 22:47:34 @Espyo you're testing your taste buds' strength 2015-07-06 22:48:03 @PikFan strength? 2015-07-06 22:48:05 @PikFan to what 2015-07-06 22:48:06 @PikFan ? 2015-07-06 22:48:53 @PikFan well, now I'm overheating 2015-07-06 22:48:57 @PikFan despite the AC going 2015-07-06 22:49:07 @PikFan yay me 2015-07-06 22:50:57 @Espyo strength to heat 2015-07-06 22:51:24 @PikFan I don't think my tongue has Red Pikmin DNA in them 2015-07-06 22:51:35 @PikFan *tastebuds 2015-07-06 22:51:46 @PikFan *have 2015-07-06 22:53:02 @Espyo hehe 2015-07-06 22:59:56 En_Passant bleh, still having troubles with this Flint Beetle 2015-07-06 23:00:16 En_Passant Can't figure out what it looks like at the angle I want it at 2015-07-06 23:01:17 @Espyo hehe 2015-07-06 23:03:17 Testyo [Pikipedia RC] (log) Special:Interwiki by Greenpickle (0) http://www.pikminwiki.com/index.php?title=Special:Interwiki&curid=0&diff=0&oldid=0 2015-07-06 23:03:18 @PikFan I have come to a grand realization: 2015-07-06 23:03:25 @PikFan Espyo just laughs at everything 2015-07-06 23:03:35 @Espyo heh 2015-07-06 23:03:37 @Espyo silly PikFan 2015-07-06 23:03:58 @PikFan me, silly? never 2015-07-06 23:10:01 @Espyo always 2015-07-06 23:10:09 @PikFan lies 2015-07-06 23:10:14 @PikFan blatant lies 2015-07-06 23:14:17 @PikFan oh, idea 2015-07-06 23:14:26 @PikFan okay so 2015-07-06 23:14:38 @PikFan you know how on Fanon, there's game banners for each game? 2015-07-06 23:14:49 @Espyo yep 2015-07-06 23:14:56 @PikFan what if we combined all of them 2015-07-06 23:15:06 @Espyo ...? 2015-07-06 23:15:49 @PikFan so I'm thinking that it could be written out as like {{games|PCW|PET}} 2015-07-06 23:15:49 Testyo "games|PCW|PET" template = http://www.pikminwiki.com/index.php?title=Template:games|PCW|PET 2015-07-06 23:16:01 En_Passant Oh, a game banner template 2015-07-06 23:16:18 En_Passant so {{game|name|maker|(opt)icon}} 2015-07-06 23:16:19 Testyo "game|name|maker|(opt)icon" template = http://www.pikminwiki.com/index.php?title=Template:game|name|maker|(opt)icon 2015-07-06 23:16:27 @PikFan which would display as: This article applies to the following games: Pikmin: Connection of the Worlds; Pikmin: End of Time. 2015-07-06 23:16:31 @PikFan with links to both games 2015-07-06 23:16:32 En_Passant Where game is the Template 2015-07-06 23:16:38 @Espyo hm, I see 2015-07-06 23:16:41 @Espyo could work 2015-07-06 23:16:43 Pidgey back from my walk 2015-07-06 23:16:44 En_Passant Or that, I guess 2015-07-06 23:16:55 @PikFan we'd just have to get ALL of the games 2015-07-06 23:17:03 @PikFan ...and update it for each new game 2015-07-06 23:17:04 En_Passant I don't like that, actually 2015-07-06 23:17:09 @PikFan Pidgey: long walk 2015-07-06 23:17:16 Pidgey it was appropriately warm outside, at a comfortable 14C with a wind that made it feel about 8C. 2015-07-06 23:17:16 Testyo 14 C = 57.2 °F / 287.15 K 2015-07-06 23:17:27 @PikFan 8C 2015-07-06 23:17:28 Testyo 8 C = 46.4 °F / 281.15 K 2015-07-06 23:17:31 @PikFan thanks Testyo 2015-07-06 23:17:32 En_Passant Most game templates include the author 2015-07-06 23:17:32 Testyo was there actually a pirate is all dat l need 2015-07-06 23:18:11 @PikFan well, you can just find out who made a game by going to that game's page 2015-07-06 23:18:35 En_Passant Yeah, but we're combining the banners, aren't we? 2015-07-06 23:18:46 En_Passant The banners (meant to say that, not templates) include the authors 2015-07-06 23:18:51 @PikFan combining and simplifying 2015-07-06 23:19:24 @PikFan really, the banners' main purpose is to say "This game X applies to this article Y" 2015-07-06 23:19:34 @PikFan the author thing is optional 2015-07-06 23:19:41 @PikFan and then everybody just adopted it 2015-07-06 23:21:01 @PikFan I thought of this because if we add game banner templates to all the articles, some articles might end up with a huge tower of templates at the top 2015-07-06 23:21:07 @PikFan and we don't want that 2015-07-06 23:21:29 @PikFan and it would have a consistent style 2015-07-06 23:21:38 @PikFan no different colors being splattered everywhere 2015-07-06 23:24:31 En_Passant Nobody puts their templates at the top 2015-07-06 23:24:38 En_Passant They put them in the section for thei game 2015-07-06 23:24:43 En_Passant *their 2015-07-06 23:24:48 @PikFan some articles do 2015-07-06 23:25:25 En_Passant Well, it sounds like the problem is that they're being put there 2015-07-06 23:25:40 @PikFan even if it's spread out across the page, it still adds unnecessary height 2015-07-06 23:25:46 @PikFan *even if they're 2015-07-06 23:26:19 En_Passant Smashing them together doesn't fix that 2015-07-06 23:26:32 En_Passant It's less space, but it's far more noticeable when they're all in the same place 2015-07-06 23:26:46 @PikFan 15:16 PikFan which would display as: This article applies to the following games: Pikmin: Connection of the Worlds; Pikmin: End of Time. 2015-07-06 23:26:54 @PikFan you could have more games 2015-07-06 23:27:01 @PikFan and it would still be pretty small 2015-07-06 23:27:25 @PikFan if you had a ton of games, it'd still be only three lines of text 2015-07-06 23:27:30 En_Passant But it wouldn't look very nice 2015-07-06 23:27:38 @PikFan I suppose not, no 2015-07-06 23:27:39 En_Passant Lists are usually bulleted for a reason 2015-07-06 23:27:48 @PikFan hm, yeah 2015-07-06 23:27:59 @PikFan well, there's always the show/hide option 2015-07-06 23:28:25 @PikFan open it up real quick to see the games in there, then collapse it when you're done 2015-07-06 23:28:49 @PikFan or maybe multiple columns 2015-07-06 23:30:09 Pidgey or hey 2015-07-06 23:30:13 Pidgey nav templates 2015-07-06 23:30:16 Pidgey they're handy to use 2015-07-06 23:30:44 En_Passant That's a great idea, actually 2015-07-06 23:31:01 @PikFan navboxes? 2015-07-06 23:31:07 Pidgey navigational boxes 2015-07-06 23:31:08 Pidgey yes 2015-07-06 23:31:11 @PikFan you mean like a customizable navbox? 2015-07-06 23:31:12 En_Passant Yeah, because they're collapsable 2015-07-06 23:31:19 Pidgey so just have like 2015-07-06 23:31:28 Pidgey {{f:CotW}} 2015-07-06 23:31:28 Testyo "CotW" template = http://www.pikminfanon.com/index.php?title=Template:CotW 2015-07-06 23:31:28 En_Passant And the not-collpased part is much smaller than a banner 2015-07-06 23:32:04 Pidgey and that CotW template is a collapsible navbox of everything that can be found in Pikmin: Connection of the Worlds, for example 2015-07-06 23:33:01 Pidgey and then you could have {{f:EoT}} for everything pertaining to Pikmin: End of Time 2015-07-06 23:33:01 @PikFan hmm, I see 2015-07-06 23:33:01 Testyo "EoT" template = http://www.pikminfanon.com/index.php?title=Template:EoT 2015-07-06 23:33:26 @PikFan but again, you'd just end up with a ton of navboxes at the bottom 2015-07-06 23:33:40 Pidgey yes, that's the point of navboxes 2015-07-06 23:33:41 @PikFan although... 2015-07-06 23:33:45 Pidgey but thing is 2015-07-06 23:33:47 En_Passant It could be done at the bottom of each section 2015-07-06 23:33:52 Pidgey you can make 2015-07-06 23:33:53 Pidgey a template 2015-07-06 23:33:54 @PikFan since it'd be at the bottom, it'd be less obtrusive 2015-07-06 23:34:05 Pidgey like {{f:navboxes}} that would contain all navboxes 2015-07-06 23:34:06 Testyo "navboxes" template = http://www.pikminfanon.com/index.php?title=Template:navboxes 2015-07-06 23:34:27 @PikFan and then pass arguments for each individual game navbox 2015-07-06 23:34:31 En_Passant Also remember that most of our users are like 12 2015-07-06 23:34:45 En_Passant They won't know or care about advanced editing tools 2015-07-06 23:34:54 @PikFan probably not, no 2015-07-06 23:35:10 @PikFan ah, the joys of being a 15 year old 2015-07-06 23:35:15 @PikFan you worry about everything 2015-07-06 23:35:44 Pidgey that can be added later 2015-07-06 23:35:47 Pidgey so yeah 2015-07-06 23:35:49 Pidgey but also 2015-07-06 23:36:07 Pidgey don't force the usage of {{f:navboxes}} unless there are enough navtemplates on a page 2015-07-06 23:36:08 Testyo "navboxes" template = http://www.pikminfanon.com/index.php?title=Template:navboxes 2015-07-06 23:36:24 Pidgey because for one, two, three or small numbers, it looks weird 2015-07-06 23:36:31 Pidgey but for fifteen? 2015-07-06 23:36:34 Pidgey then it's necessary 2015-07-06 23:37:06 Pidgey I'm certain you'll find a guideline for this that fits the wiki 2015-07-06 23:37:13 @PikFan this sounds like a good idea 2015-07-06 23:37:33 @PikFan but I'm biased towards my idea because selfishness :P 2015-07-06 23:37:41 Pidgey yeah :P 2015-07-06 23:38:10 @PikFan hmm... 2015-07-06 23:38:20 @PikFan never mind 2015-07-06 23:38:21 Pidgey but this also means you have to create an entirely new navbox every single time a new game article is made 2015-07-06 23:38:28 @PikFan right 2015-07-06 23:38:31 Pidgey and new categories 2015-07-06 23:38:51 @PikFan and also, you'd have to edit the navbox every time you decide to add a new article to it 2015-07-06 23:38:58 Pidgey mhm 2015-07-06 23:40:16 En_Passant I don't mind doing that 2015-07-06 23:40:26 En_Passant Every game should have its own category anyway 2015-07-06 23:40:36 @PikFan most games do 2015-07-06 23:40:57 @PikFan good thing [[Special:AllPages]] is a thing 2015-07-06 23:40:57 En_Passant The navbox would just be most of what's in that category 2015-07-06 23:40:57 Testyo "Special:AllPages" article = http://www.pikminwiki.com/index.php?title=Special:AllPages 2015-07-06 23:41:09 @PikFan *[[f:Special:AllPages]] 2015-07-06 23:41:09 Testyo "Special:AllPages" article = http://www.pikminfanon.com/index.php?title=Special:AllPages 2015-07-06 23:41:11 @PikFan oops 2015-07-06 23:41:16 Pidgey Then we have the worrisome question of how you categorise pages. 2015-07-06 23:41:32 @PikFan simple 2015-07-06 23:41:42 @PikFan just do it like Pikipedia does 2015-07-06 23:42:33 Pidgey of course 2015-07-06 23:42:36 @PikFan if article X appears in games A, B, and C, then add categories A, B, and C 2015-07-06 23:42:40 Pidgey man this reminds me 2015-07-06 23:42:58 Pidgey I still don't remember the utterly confusing policies for categorisation on the mario wiki 2015-07-06 23:43:22 @PikFan I should go through the enemy categories and rename them to family 2015-07-06 23:43:26 @PikFan like on Pikipedia 2015-07-06 23:43:55 @PikFan do you still edit on mario wiki? 2015-07-06 23:44:12 Pidgey yes 2015-07-06 23:44:21 Pidgey but like 2015-07-06 23:44:29 Pidgey just read it through http://www.mariowiki.com/MarioWiki:Categories 2015-07-06 23:44:30 Pidgey it's a mess 2015-07-06 23:45:28 @PikFan what http://www.mariowiki.com/MarioWiki:Categories#Category_Webs 2015-07-06 23:45:31 @PikFan why 2015-07-06 23:45:47 Pidgey blame Walkazo 2015-07-06 23:45:58 @PikFan that whole policy could be SO much simpler 2015-07-06 23:46:02 @PikFan it's so... bulky 2015-07-06 23:46:04 Pidgey she's a great 'crat but likes to keep her explanations very wordy 2015-07-06 23:46:09 @PikFan I'm not going to read through all that 2015-07-06 23:46:23 @PikFan even I wouldn't be that thorough 2015-07-06 23:46:29 @PikFan and I'm pretty thorough 2015-07-06 23:47:20 @PikFan nearly 30K characters holy crap 2015-07-06 23:47:21 Testyo 30 K = -243.15 °C / -405.67 °F 2015-07-06 23:48:13 @PikFan by contrast, [[Pikipedia:Policy]] is only 17K characters long 2015-07-06 23:48:14 Testyo 17 K = -256.15 °C / -429.07 °F 2015-07-06 23:48:23 @PikFan ...what? 2015-07-06 23:48:29 @PikFan [[Pikipedia:Policy]] 2015-07-06 23:48:30 Testyo "Pikipedia:Policy" article = http://www.pikminwiki.com/index.php?title=Pikipedia:Policy 2015-07-06 23:48:46 @PikFan 17K [[Pikipedia:Policy]] 2015-07-06 23:48:46 Testyo 17 K = -256.15 °C / -429.07 °F 2015-07-06 23:49:05 @PikFan hey Espyo, you should prioritize links over temperatures 2015-07-06 23:49:36 Pidgey I think it's the wordiest one on the wiki 2015-07-06 23:49:43 @Espyo good point 2015-07-06 23:49:48 @Espyo what, our policy page is the biggest? 2015-07-06 23:49:52 @Espyo [[Special:LongPages]] 2015-07-06 23:49:52 Testyo "Special:LongPages" article = http://www.pikminwiki.com/index.php?title=Special:LongPages 2015-07-06 23:50:01 @Espyo nope 2015-07-06 23:50:03 @Espyo 114k 2015-07-06 23:50:04 Testyo 114 K = -159.15 °C / -254.47 °F 2015-07-06 23:50:23 @PikFan no, not longest page for the whole wiki 2015-07-06 23:50:40 @PikFan I meant, I think [[Pikipedia:Policy]] is the longest policy page 2015-07-06 23:50:41 Testyo "Pikipedia:Policy" article = http://www.pikminwiki.com/index.php?title=Pikipedia:Policy 2015-07-06 23:50:45 Pidgey I was talking about the mwiki 2015-07-06 23:51:04 @Espyo ah 2015-07-06 23:51:05 Pidgey I think there are no policy pages larger than the category policy page 2015-07-06 23:51:34 @PikFan when 3 of the top 5 longest pages on the wiki have to do with Pikmin 2, you know Pikmin 2 is pretty big 2015-07-06 23:54:23 Pidgey y 2015-07-06 23:54:26 Pidgey es 2015-07-06 23:55:01 @PikFan uuuuuuggggghhhhh 2015-07-06 23:55:09 @PikFan Fanon needs a manual of style bad 2015-07-06 23:55:27 Pidgey make one 2015-07-06 23:55:57 @PikFan I would, but lazy 2015-07-06 23:56:23 Pidgey oh yeah by the way we had a proposal over at the mariowiki for two years ago pertaining the spelling of 'mini-game' versus 'minigame' 2015-07-06 23:56:30 @PikFan and this is why I don't understand how I am possibly a 'crat 2015-07-06 23:56:33 @PikFan because I'm 2015-07-06 23:56:33 @PikFan so 2015-07-06 23:56:34 @PikFan lazy 2015-07-06 23:56:51 Pidgey minigame won by the way, because less space = better 2015-07-06 23:57:00 Pidgey so everyone now has to spell it 'minigame' 2015-07-06 23:57:02 @Espyo hmm 2015-07-06 23:57:16 @PikFan yeah, "minigame" sounds better, opposed to "mini-game" 2015-07-06 23:57:22 @PikFan awkward dash is awkward 2015-07-06 23:57:42 Pidgey it's spelled 'mini-game' in certain cases but that's just when it's spelt that way in game 2015-07-06 23:57:53 @PikFan ...spelling "awkward" itself is awkward, because it's a W, then a K, then another W 2015-07-06 23:57:53 Pidgey Mini-Game Coaster, for example. 2015-07-06 23:58:01 @PikFan hm 2015-07-06 23:58:06 Pidgey so those are exceptions 2015-07-06 23:58:13 @PikFan here's a good one: 2015-07-06 23:58:23 @PikFan internet: title case or lowercase? 2015-07-06 23:58:30 Pidgey no we don't do [[Mini-Game Coaster|Minigame Coaster]] 2015-07-06 23:58:31 Testyo "Mini-Game_Coaster|Minigame_Coaster" article = http://www.pikminwiki.com/index.php?title=Mini-Game_Coaster|Minigame_Coaster 2015-07-06 23:58:48 Pidgey because that would be dumb 2015-07-06 23:58:51 @PikFan Espyo: ? 2015-07-06 23:58:58 En_Passant Fanon has policies 2015-07-06 23:59:10 @PikFan yes, it does 2015-07-06 23:59:14 @PikFan but not nearly enough 2015-07-06 23:59:18 En_Passant But none of our members gives any craps about them 2015-07-06 23:59:38 @PikFan yeah... 2015-07-06 23:59:44 @Espyo huh? 2015-07-06 23:59:50 En_Passant There's not much we can do about that 2015-07-06 23:59:54 @PikFan 15:57 Espyo hmm 2015-07-06 23:59:59 @PikFan well, we can 2015-07-07 00:00:10 @Espyo just reading 2015-07-07 00:00:11 @PikFan I can just give out a bunch of warnings to everybody 2015-07-07 00:00:24 @PikFan and block them if they don't comply 2015-07-07 00:00:30 @PikFan but I don't feel like doing that :P 2015-07-07 00:00:41 @PikFan oh, and also delete their articles 2015-07-07 00:01:11 @PikFan the policies aren't followed because nobody enforces them 2015-07-07 00:01:22 @PikFan bad PikFan is bad 2015-07-07 00:01:53 @PikFan also, I guess it's because I'm basically the only active admin 2015-07-07 00:02:23 @PikFan and managing a whole wiki is pretty overwhelming when it's just by yourself 2015-07-07 00:02:36 @PikFan even if it's inactive 2015-07-07 00:02:53 @Espyo it's hard for everybody to know every policy 2015-07-07 00:03:04 @Espyo so only start giving warnings after people disobey them blatantly 2015-07-07 00:03:09 @Espyo specially after they're warned not to 2015-07-07 00:03:13 @Espyo but don't warned them from the start 2015-07-07 00:03:20 @Espyo you want it to be a wiki where people can dump their ideas 2015-07-07 00:03:32 @Espyo not doing the taxes for a book club 2015-07-07 00:03:45 <-- Spark (sparkles@2602:306:3717:ovnz:vkiu:guku:unvz:vj) has quit (Ping timeout: 252 seconds) 2015-07-07 00:03:50 @PikFan yeah 2015-07-07 00:03:53 @PikFan that's the thing 2015-07-07 00:04:10 @PikFan it's because of Fanon's open nature that I don't really do anything 2015-07-07 00:04:39 En_Passant I feel like we need to up our game 2015-07-07 00:04:47 @PikFan (that was another reason, but it was buried deep in my mind until Espyo revived me) 2015-07-07 00:04:58 @PikFan we do 2015-07-07 00:05:08 @PikFan just so little motivation 2015-07-07 00:05:23 @PikFan and, like always, what will we get out of this discussion? 2015-07-07 00:05:27 @PikFan probably nothing 2015-07-07 00:05:46 @PikFan other than more shared ideas... 2015-07-07 00:06:26 @PikFan why is Fanon even a thing anymore... 2015-07-07 00:06:36 @PikFan I'm beginning to question its existence 2015-07-07 00:08:07 @Espyo it's a gradual process 2015-07-07 00:08:15 @Espyo don't think you can discuss the whole table of solutions in one goe 2015-07-07 00:08:18 @Espyo ...*-e 2015-07-07 00:08:26 @PikFan goal 2015-07-07 00:08:28 @PikFan heh 2015-07-07 00:11:16 En_Passant How long has this wiki been in existence? 2015-07-07 00:11:24 En_Passant And how many failed reform attempts have we had? 2015-07-07 00:11:45 @PikFan since late 2008 2015-07-07 00:11:49 @PikFan and too many to count 2015-07-07 00:12:10 @PikFan oh, that reminds me 2015-07-07 00:12:20 @PikFan Pikipedia turns 10 years old this December 2015-07-07 00:12:26 Pidgey ten years 2015-07-07 00:12:30 @PikFan we should do something special for the anniversary 2015-07-07 00:12:49 Pidgey almost the same as mariowiki, actually 2015-07-07 00:12:53 Pidgey except that happens in August 2015-07-07 00:12:58 @Espyo bed time 2015-07-07 00:12:59 @Espyo night 2015-07-07 00:13:02 @PikFan night 2015-07-07 00:13:02 Pidgey night 2015-07-07 00:13:15 Pidgey I should follow soon 2015-07-07 00:13:29 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-07 00:14:09 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-07 00:14:39 Pidgey and on the mariowiki, the anniversary has been celebrated every year since its creation 2015-07-07 00:15:01 Pidgey and tonnes of drama is generated and everything is horrible the end 2015-07-07 00:15:13 @PikFan >tonnes 2015-07-07 00:15:22 @PikFan ah, grammatical differences 2015-07-07 00:40:55 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 00:43:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-07 00:43:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 00:44:06 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-07 00:44:15 @PikFan oh, he's using his Wii U 2015-07-07 00:44:18 @PikFan ...I think 2015-07-07 00:44:21 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 00:44:28 @PikFan hey UM 2015-07-07 00:44:34 @PikFan are you using your Wii U 2015-07-07 00:45:07 Pidgey spoiler: he is 2015-07-07 00:45:33 @PikFan ermahgurd spoilers aaaaaahhhhhhh I'm going to die 2015-07-07 00:45:35 * @PikFan explodes 2015-07-07 00:45:52 Pidgey rip 2015-07-07 00:45:57 @PikFan in peace 2015-07-07 00:46:01 Pidgey ;___; 2015-07-07 00:46:04 @PikFan no wait 2015-07-07 00:46:08 @PikFan rip in pieces 2015-07-07 00:46:15 @PikFan yay puns 2015-07-07 00:46:29 @PikFan (well, minus the -s at the end) 2015-07-07 00:46:39 @PikFan ((ugh, I'm bad at this :x) 2015-07-07 00:46:45 @PikFan *)) 2015-07-07 00:46:46 @PikFan ... 2015-07-07 00:46:48 * @PikFan fails 2015-07-07 00:46:59 @PikFan oh well 2015-07-07 00:48:25 Pidgey rip 2015-07-07 00:52:06 --> Spark (sparkles@2602:306:3717:ovnz:vkiu:guku:unvz:vj) has joined #pikipedia 2015-07-07 00:52:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 00:52:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 00:57:21 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-07 01:00:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 01:01:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 01:14:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 01:16:21 -- Pidgey is now known as Pidgey|SLP 2015-07-07 01:17:01 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 01:17:05 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-07 01:18:02 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 01:19:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-07 01:21:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 01:22:30 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-07 01:33:34 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-07 02:44:05 -- Pidgey|SLP is now known as Pidgey 2015-07-07 03:47:04 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 03:59:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 04:04:07 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-07 04:04:26 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Client Quit) 2015-07-07 04:06:27 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 248 seconds) 2015-07-07 04:10:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 04:10:38 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 04:39:39 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 04:40:12 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 04:54:33 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-07 04:58:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 05:27:26 -- Pidgey is now known as pidgey|slp 2015-07-07 06:44:42 <-- Spark (sparkles@2602:306:3717:ovnz:vkiu:guku:unvz:vj) has quit (Ping timeout: 252 seconds) 2015-07-07 07:01:18 --> Spark (sparkles@2602:306:3717:ovnz:vkiu:guku:unvz:vj) has joined #pikipedia 2015-07-07 07:06:09 <-- Spark (sparkles@2602:306:3717:ovnz:vkiu:guku:unvz:vj) has quit (Ping timeout: 252 seconds) 2015-07-07 08:55:59 <-- pidgey|slp (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 09:46:24 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-07-07 10:34:43 --> Yoshi2 (Yoshi2@727-659.eduroam.rwth-aachen.de) has joined #pikipedia 2015-07-07 12:37:24 <-- Yoshi2 (Yoshi2@727-659.eduroam.rwth-aachen.de) has quit (Quit: Leaving) 2015-07-07 13:34:22 --> Spark (sparkles@2602:306:3717:ovnz:vkiu:guku:unvz:vj) has joined #pikipedia 2015-07-07 13:35:35 --> Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-07 15:34:54 <-- Spark (sparkles@2602:306:3717:ovnz:vkiu:guku:unvz:vj) has quit (Ping timeout: 252 seconds) 2015-07-07 16:28:26 --> Yoshi2 (Yoshi2@2001:4dd3:ef89:x:gmts:rsvg:hjyy:zsz) has joined #pikipedia 2015-07-07 16:36:30 --> Spark (sparkles@2602:306:3717:xtjm:mpms:rsnh:qvum:hpzg) has joined #pikipedia 2015-07-07 17:06:45 <-- Spark (sparkles@2602:306:3717:xtjm:mpms:rsnh:qvum:hpzg) has quit (Ping timeout: 252 seconds) 2015-07-07 17:23:03 --> Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has joined #pikipedia 2015-07-07 17:27:39 <-- Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has quit (Ping timeout: 252 seconds) 2015-07-07 18:10:25 --> Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has joined #pikipedia 2015-07-07 19:02:55 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-07 19:02:56 Testyo Evening everyone! 2015-07-07 19:03:36 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-07 19:03:36 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-07 19:06:09 Yoshi2 hey Espyo & Testyo 2015-07-07 19:06:10 Testyo okay so I checked the recent changes and came upon this might be more resilient 2015-07-07 19:07:39 @Espyo hi 2015-07-07 19:08:26 Pidgey hi 2015-07-07 19:08:59 @Espyo hey 2015-07-07 19:54:37 --> Klemen702 (Mibbit@86.61.js.hyr) has joined #pikipedia 2015-07-07 19:54:58 Klemen702 woah alot more people today 2015-07-07 20:07:24 @Espyo yep 2015-07-07 20:07:28 @Espyo it's been like this lately 2015-07-07 20:08:32 Pidgey summer does that 2015-07-07 20:08:37 Pidgey or maybe not idk 2015-07-07 20:09:10 Yoshi2 I'm on irc all year 2015-07-07 20:09:31 Yoshi2 it helps that my uni homework requires a computer 2015-07-07 20:15:13 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-07 20:34:22 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 20:44:22 Klemen702 hmm, is anyone excited for the pluto flyby that will happen in about a week? 2015-07-07 20:47:15 @Espyo hm, didn't even know 2015-07-07 20:47:15 @Espyo neat 2015-07-07 20:47:33 Klemen702 yeah, new horizons 2015-07-07 20:47:40 Pidgey oh neat 2015-07-07 20:47:47 Pidgey when will it happen, exactly? 2015-07-07 20:47:54 Klemen702 15th 2015-07-07 20:48:35 Pidgey I said exactly. 2015-07-07 20:49:17 Klemen702 technicly the flyby is happening now but the most detailed information will be on 15th July 2015-07-07 20:49:26 Pidgey oh ok 2015-07-07 20:56:55 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-07 20:56:55 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-07 20:57:05 @PikFan hi 2015-07-07 20:57:18 @Espyo hi 2015-07-07 20:57:44 @PikFan what 2015-07-07 20:57:45 @PikFan http://www.pikminfanon.com/Help:Uploading_files 2015-07-07 20:57:47 Klemen702 Hi 2015-07-07 20:57:53 @PikFan why does that exist 2015-07-07 20:58:11 @PikFan ugh 2015-07-07 20:58:26 @Espyo heh 2015-07-07 20:59:16 @PikFan nobody would upload a file like that 2015-07-07 20:59:20 @PikFan other than him, I guess 2015-07-07 20:59:41 @PikFan I'll clean it sometime today 2015-07-07 21:09:18 @PikFan have any of you ever been roller skating before 2015-07-07 21:09:29 @Espyo nope 2015-07-07 21:09:30 @PikFan because I haven't and now my friend wants me to 2015-07-07 21:09:45 @Espyo you'll probably break a bone 2015-07-07 21:09:48 @Espyo it'll regrow stronger 2015-07-07 21:09:50 Testyo [Pikipedia RC] Bulbmin by 24.38.153.52 (+274 /* Trivia */) http://www.pikminwiki.com/index.php?title=Bulbmin&curid=195&diff=151289&oldid=151098 2015-07-07 21:09:50 Testyo [Pikipedia RC] User account Ryanfrogger created http://www.pikminwiki.com/index.php?title=User:Ryanfrogger 2015-07-07 21:10:00 @PikFan thanks for the vote of confidence :| 2015-07-07 21:10:07 @Espyo oh, that's probably somebody from Pikipedia 2015-07-07 21:10:09 @Espyo or Inkipedia 2015-07-07 21:10:17 @Espyo ...there are a lot of Ryans on skype 2015-07-07 21:10:25 @Espyo PikFan: any time 2015-07-07 21:10:32 @Espyo nah, it should be fine, specially with helmets and such 2015-07-07 21:10:36 @Espyo worst that can happen is you falling 2015-07-07 21:10:43 @Espyo unless you fall from a wall, no you won't break anything 2015-07-07 21:11:03 @PikFan my friend says ice skating is worse 2015-07-07 21:11:17 @Espyo sure is 2015-07-07 21:11:17 @PikFan apparently one time somebody's finger got cut off 2015-07-07 21:11:22 @Espyo you're walking on blades 2015-07-07 21:16:44 Klemen702 finger cut off for going skating? how exactly? 2015-07-07 21:17:07 @Espyo again, you're walking on blades 2015-07-07 21:17:18 @Espyo if somebody skates over your fingers lying on the ground... 2015-07-07 21:17:21 @Espyo SCHWING 2015-07-07 21:17:31 @PikFan schwing 2015-07-07 21:17:36 @PikFan that's a great sound effect word 2015-07-07 21:17:39 Klemen702 why would someone have fingers on the ground? :P 2015-07-07 21:17:47 @PikFan if they fell over 2015-07-07 21:18:16 Klemen702 so his fingers got cut off because of 2 coincidences? 2015-07-07 21:19:08 Klemen702 hmm, [[]]:P i wonder if this will work here too 2015-07-07 21:19:10 Klemen702 nope 2015-07-07 21:19:13 Klemen702 wikia only 2015-07-07 21:20:31 @Espyo PikFan: onomatopoeia 2015-07-07 21:20:42 @PikFan oh, right 2015-07-07 21:20:46 @Espyo what do you mean wikia only? 2015-07-07 21:21:34 Klemen702 on wikia things like these :P become emoticons, but you can make it not happen by typing [[]] before it 2015-07-07 21:22:04 @Espyo that's so confusing 2015-07-07 21:22:07 @Espyo like 2015-07-07 21:22:09 @Espyo on blog pages? 2015-07-07 21:22:13 Klemen702 on chat 2015-07-07 21:22:30 @Espyo ...wikia has a chat? 2015-07-07 21:22:36 Klemen702 yes actuall 2015-07-07 21:22:46 Klemen702 wiki's can enable and disable them 2015-07-07 21:22:53 @PikFan you have to be logged in to use it, I think 2015-07-07 21:22:57 @Espyo hmm 2015-07-07 21:23:01 Klemen702 yeah 2015-07-07 21:23:09 @PikFan which is ridiculous 2015-07-07 21:38:05 Klemen702 i'll go 2015-07-07 21:38:07 Klemen702 cya 2015-07-07 21:38:17 <-- Klemen702 (Mibbit@86.61.js.hyr) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 22:23:02 <-- Yoshi2 (Yoshi2@2001:4dd3:ef89:x:gmts:rsvg:hjyy:zsz) has quit (Quit: Leaving) 2015-07-07 22:34:01 Testyo i tried sound right 2015-07-07 22:37:16 @J tried and failed 2015-07-07 22:41:11 Pidgey rough judgement 2015-07-07 22:41:33 Testyo [Fanon RC] Pikmin 4:Bacterial Outbre... by PikPik1248 (+1102) http://www.pikminfanon.com/index.php?title=Pikmin_4:Bacterial_Outbreak&curid=9572&diff=48692&oldid=48672 2015-07-07 22:48:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 23:04:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 23:07:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 23:07:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-07 23:08:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 23:08:48 @PikFan that's J for you 2015-07-07 23:09:40 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-07 23:10:02 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 23:10:25 @Espyo ugh, I hate this part 2015-07-07 23:10:30 @Espyo I know what to do for the leader logic on the engine 2015-07-07 23:10:34 @Espyo but it's so long and tedious 2015-07-07 23:10:36 @Espyo and I don't WAAAANT to 2015-07-07 23:10:49 @Espyo and I can't even pull off the excuse that I can't focus on the code because I'm skyping with friends 2015-07-07 23:10:54 @Espyo because I tried starting a call, but no audio came up 2015-07-07 23:10:56 @Espyo classic skype 2015-07-07 23:10:57 @Espyo sigh... 2015-07-07 23:10:59 @PikFan is this a different thing from AI, or is it related? 2015-07-07 23:11:07 @Espyo the same AI system 2015-07-07 23:11:11 UltraMario hey pikfan 2015-07-07 23:11:13 @Espyo I'm just teaching the leaders how to work with it 2015-07-07 23:11:13 @PikFan oh 2015-07-07 23:11:17 @PikFan hi UM 2015-07-07 23:11:18 UltraMario hey espyo 2015-07-07 23:11:22 @Espyo hey 2015-07-07 23:11:34 UltraMario are you guys hyped for Mario Maker? 2015-07-07 23:11:36 @PikFan I thought you said the AI system was easy to work with? 2015-07-07 23:11:41 @Espyo it is 2015-07-07 23:11:41 @PikFan yeah 2015-07-07 23:11:45 @Espyo but it's a bit long, regardless 2015-07-07 23:11:51 UltraMario I know I am :D 2015-07-07 23:12:01 @Espyo I think it'll be nice, but I won't be getting it 2015-07-07 23:12:06 @Espyo can't go around buying every Wii U title 2015-07-07 23:12:08 @PikFan nightmares from hell will be made with it 2015-07-07 23:12:14 @Espyo mhm 2015-07-07 23:12:38 UltraMario i probably won't be that great at making my own levels, but i could still recreate classic mario levels 2015-07-07 23:13:01 Pidgey apparently you have to finish the levels you create before they can be published to the public 2015-07-07 23:13:12 @PikFan yeah 2015-07-07 23:13:17 Pidgey so if you make it too hard, you can't even get it out there 2015-07-07 23:13:24 @Espyo hah, awesome 2015-07-07 23:13:28 UltraMario that'll be hard to do when i get to recreating lost levels :p 2015-07-07 23:13:31 Pidgey and as such, this prevents impossible levels to be created 2015-07-07 23:13:37 @PikFan but there's crazy people who can easily beat their own levels 2015-07-07 23:14:08 @PikFan all you have to do is reach the goal post, right? 2015-07-07 23:14:18 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-07 23:14:25 @PikFan people will create super hard levels and then exploit glitches to reach the goal post 2015-07-07 23:14:32 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-07 23:15:04 @PikFan speaking of glitches, I wonder what kinds of glitches will crop up in Mario Maker 2015-07-07 23:16:09 UltraMario i wonder if you can play as luigi 2015-07-07 23:16:22 UltraMario i dont mean as an amiibo costume 2015-07-07 23:16:35 @Espyo maybe after completing the stock levels 2015-07-07 23:16:41 @Espyo shouldn't be hard to put him in the game 2015-07-07 23:17:00 UltraMario yeah 2015-07-07 23:17:12 UltraMario i dont want him as a mario reskin 2015-07-07 23:17:13 @PikFan Mario Maker is pretty much Nintendo's response to all the NSMB hacks 2015-07-07 23:17:41 UltraMario well i mean its just a response to level maker stuff in gener 2015-07-07 23:17:43 UltraMario al 2015-07-07 23:17:59 UltraMario ive been waiting for something like this for awhile 2015-07-07 23:18:09 UltraMario speaking of amiibo costumes 2015-07-07 23:18:27 UltraMario too bad they can't be used outside smb1 2015-07-07 23:19:02 UltraMario also apparently dlc objects and enemies aren't planned 2015-07-07 23:19:18 UltraMario im juat hoping dlc game templates are added 2015-07-07 23:19:33 UltraMario it could use some mario all-stars 2015-07-07 23:20:07 @PikFan I will never buy an amiibo 2015-07-07 23:20:16 @PikFan DLC is enough 2015-07-07 23:20:32 UltraMario I like amiibo 2015-07-07 23:20:38 @PikFan well good for you 2015-07-07 23:21:25 @PikFan amiibo is just another gimmick 2015-07-07 23:21:33 @PikFan we don't need gimmicks, Nintendo 2015-07-07 23:21:36 UltraMario i do more obvious recreations, ill do stuff like Super Mario Bros. Special, New Super Mario Bros. multiplayer courses, NSMBW and NSMBU coin battle courses, NSMBU challenge mode courses, and World e from SMA4 2015-07-07 23:21:42 @PikFan we just need traditional games 2015-07-07 23:21:42 UltraMario amiibo is cool 2015-07-07 23:21:55 UltraMario well they're not that expensive 2015-07-07 23:22:20 UltraMario i mean, if theyre not the rare ones, lol 2015-07-07 23:22:24 @PikFan are you kidding? I'm not paying 13$ for an electronic action figure 2015-07-07 23:22:38 UltraMario good for you :S 2015-07-07 23:22:41 @PikFan they're basically a quarter the cost of a full blown Wii U game 2015-07-07 23:22:49 @PikFan *$13 2015-07-07 23:22:57 @PikFan ... 2015-07-07 23:22:59 @PikFan $13 2015-07-07 23:23:00 Testyo $ 13 = 11.9561 € / £ 8.4487 2015-07-07 23:23:17 UltraMario its only more costly because they work with more than one game, so they do more than skylanders 2015-07-07 23:23:25 UltraMario i likw that approach 2015-07-07 23:23:47 @PikFan I thought you had to erase the data on an amiibo if you wanted to use it for another game 2015-07-07 23:24:04 @PikFan ugh 2015-07-07 23:24:08 UltraMario well it depends 2015-07-07 23:24:10 UltraMario like 2015-07-07 23:24:20 @PikFan if there's amiibo that works with Pikmin 4, I'm killing someone 2015-07-07 23:24:31 UltraMario if it just adds something like costumes like in mk8 2015-07-07 23:24:39 @Espyo yeah 2015-07-07 23:24:40 UltraMario that doesn't erase anything 2015-07-07 23:24:43 @Espyo Smash 4 loads and saves data 2015-07-07 23:24:47 @Espyo your amiibo fighter data 2015-07-07 23:24:54 @Espyo which includes name, color, custom moves, custom equipment, etc. 2015-07-07 23:24:58 @Espyo for Mario Kart 8 and such 2015-07-07 23:24:59 UltraMario if its something like amiino party it loads and saves 2015-07-07 23:25:00 @Espyo you just tap it 2015-07-07 23:25:05 @Espyo the game is like "oh, you have this amiibo" 2015-07-07 23:25:10 @Espyo "all right, I'll unlock this costume inside the game" 2015-07-07 23:25:11 @PikFan hmm 2015-07-07 23:25:14 @Espyo and does nothing to the amiibo itself 2015-07-07 23:25:27 UltraMario you can find more info about what games load and save on the amiibo website 2015-07-07 23:25:46 @PikFan seems like Smash is the only game that intensively uses amiibo 2015-07-07 23:25:56 UltraMario no 2015-07-07 23:26:01 @Espyo there was another... 2015-07-07 23:26:03 @Espyo can't remember which one 2015-07-07 23:26:03 UltraMario Splatoon does 2015-07-07 23:26:10 UltraMario also so far my favorite game that has amiibo functionality is Splatoon 2015-07-07 23:26:20 UltraMario it adds replay value 2015-07-07 23:26:20 @Espyo yeah, but it doesn't save 2015-07-07 23:26:20 @Espyo does it? 2015-07-07 23:26:23 UltraMario idk 2015-07-07 23:26:33 UltraMario but it has like missions and stuff 2015-07-07 23:26:39 UltraMario it's cool 2015-07-07 23:27:03 @PikFan hey UM, how many Wii U games do you have? 2015-07-07 23:27:18 UltraMario oh, uh 2015-07-07 23:27:23 UltraMario well 2015-07-07 23:27:41 UltraMario do you mean as in disc games or eshop or both 2015-07-07 23:27:58 @PikFan both 2015-07-07 23:28:13 UltraMario a lot :p 2015-07-07 23:28:25 UltraMario i have lots of eshop stuff 2015-07-07 23:28:32 UltraMario brb 2015-07-07 23:30:32 UltraMario back 2015-07-07 23:31:04 UltraMario do you want to know specifically every game i have on Wii U both disc and digital or no? 2015-07-07 23:31:55 @PikFan not specifically 2015-07-07 23:31:57 @PikFan just the total 2015-07-07 23:33:53 UltraMario oh 2015-07-07 23:33:56 UltraMario well 2015-07-07 23:34:13 UltraMario i remember when i did my Wii U transfer 2015-07-07 23:34:20 UltraMario it gave me a total 2015-07-07 23:34:56 UltraMario i was surprised by the number it gave me 2015-07-07 23:35:18 UltraMario however the number has gone up since i recently got some vc games 2015-07-07 23:35:33 @PikFan Wii U exclusives 2015-07-07 23:35:41 UltraMario ...oh 2015-07-07 23:35:46 UltraMario well fuc, 2015-07-07 23:36:02 @PikFan uh 2015-07-07 23:36:08 @PikFan I think I have 7 2015-07-07 23:36:10 UltraMario i probably dont have as much exclusives as i do vc i mean :p 2015-07-07 23:36:16 @PikFan oh 2015-07-07 23:36:20 UltraMario let me think 2015-07-07 23:36:23 Pidgey I have like 19 Wii U games 2015-07-07 23:36:29 UltraMario can i brb 2015-07-07 23:36:33 @PikFan sure 2015-07-07 23:36:40 @PikFan Pidgey: I see 2015-07-07 23:36:44 UltraMario i wanna look at my wii u menu :p 2015-07-07 23:36:53 @PikFan err, how? 2015-07-07 23:37:04 Pidgey and at least 20 Virtual Console games 2015-07-07 23:37:11 Pidgey so yay for games 2015-07-07 23:37:20 Pidgey this meant I've bought two games per month 2015-07-07 23:37:33 @PikFan heh 2015-07-07 23:37:45 UltraMario oh so i should include vc games? 2015-07-07 23:37:55 @PikFan ...meh, never mind 2015-07-07 23:38:03 @PikFan at this point I don't care anymore :P 2015-07-07 23:38:10 UltraMario i thought when you said wii u exclusive i should keep them out 2015-07-07 23:38:13 UltraMario oyay 2015-07-07 23:38:58 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-07 23:40:40 @PikFan while we're on the topic of games, looks like Binding of Isaac: Rebirth is coming to Wii U 2015-07-07 23:40:48 Pidgey oh neat 2015-07-07 23:40:54 Pidgey I've been interested in that game 2015-07-07 23:40:59 Pidgey but moneys 2015-07-07 23:41:02 Pidgey ;___; 2015-07-07 23:41:09 @PikFan ): 2015-07-07 23:53:12 -- Pidgey is now known as Pidgey|SLP 2015-07-08 00:03:58 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-08 00:05:02 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-08 00:15:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 00:15:46 UltraMario hey PikFan 2015-07-08 00:15:54 UltraMario I'm back 2015-07-08 00:16:01 UltraMario okay so 2015-07-08 00:17:11 UltraMario I have 13 disc games (if you count NSLU as another game and count NES Remix 1 & 2 as games) 2015-07-08 00:17:30 UltraMario 2 eshop exclusives 2015-07-08 00:17:37 UltraMario and 30 vc games 2015-07-08 00:17:51 UltraMario i toldja i had a lot of vc games :p 2015-07-08 00:18:38 UltraMario rip PikFan 2015-07-08 00:21:15 @PikFan oh 2015-07-08 00:21:18 @PikFan was away 2015-07-08 00:21:32 UltraMario o 2015-07-08 00:21:46 @PikFan hm, that's quite a lot 2015-07-08 00:21:54 UltraMario yup 2015-07-08 00:21:55 @PikFan where do you get the money to pay for all that 2015-07-08 00:22:18 UltraMario well eshop stuff isnt as expensive 2015-07-08 00:22:54 UltraMario also a few off the games i have from vc on Wii U had discounts cuz I had them on Wii 2015-07-08 00:22:59 UltraMario *of 2015-07-08 00:27:23 UltraMario i love how cheap you get n64 games for when you had them on Wii VC 2015-07-08 00:33:33 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 00:33:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 00:42:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 00:43:31 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-08 00:44:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 01:01:44 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 01:02:14 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 01:13:01 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 01:14:10 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-08 01:14:16 -- UM is now known as UltraMario 2015-07-08 01:16:55 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-08 01:17:14 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Client Quit) 2015-07-08 01:36:49 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-08 01:40:27 <-- Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has quit (Ping timeout: 252 seconds) 2015-07-08 01:40:58 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 01:40:59 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 01:41:23 -- UM is now known as UltraMario 2015-07-08 01:45:06 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 01:45:28 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-08 01:46:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 01:50:31 <-- UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 02:14:26 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 02:16:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-08 02:16:17 -- UM is now known as UltraMario 2015-07-08 02:28:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 02:29:14 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 02:30:45 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 02:31:10 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-08 02:31:17 -- UM is now known as UltraMario|School 2015-07-08 02:31:19 -- UltraMario|School is now known as UltraMario 2015-07-08 02:43:42 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 02:44:05 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 02:45:41 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 02:46:03 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-08 02:46:04 -- UM is now known as UltraMario 2015-07-08 02:56:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 02:56:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 03:00:06 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 03:01:32 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 03:02:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 03:05:03 <-- UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 03:06:53 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 03:07:15 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 03:07:22 -- UM is now known as UltraMario 2015-07-08 03:16:04 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-08 03:20:44 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Read error: Connection reset by peer) 2015-07-08 03:21:52 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-07-08 03:21:55 --> Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has joined #pikipedia 2015-07-08 03:27:10 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 03:30:04 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 03:31:46 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 03:32:15 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-08 03:32:20 -- UM is now known as UltraMario 2015-07-08 03:32:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-08 03:36:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 04:00:08 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 04:00:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-08 04:00:33 -- UM is now known as UltraMario 2015-07-08 04:13:12 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 04:14:18 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-08 04:15:02 -- UM is now known as UltraMario 2015-07-08 04:17:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-08 04:17:32 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 04:20:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 04:44:13 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 04:45:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-08 04:45:33 -- UM is now known as UltraMario 2015-07-08 05:09:04 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 05:09:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-08 05:26:29 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 06:19:11 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-08 06:19:15 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Client Quit) 2015-07-08 06:24:20 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-08 06:24:20 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-08 06:34:18 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 06:34:42 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-08 06:34:42 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-08 06:35:41 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Client Quit) 2015-07-08 06:36:05 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-08 06:36:05 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-08 07:12:58 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 07:13:18 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-08 07:13:19 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-08 07:22:42 --> PikFan23 (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-08 07:22:57 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Killed (NickServ (GHOST command used by PikFan23))) 2015-07-08 07:23:02 -- PikFan23 is now known as PikFan 2015-07-08 07:23:06 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-08 07:30:48 <-- Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has quit (Ping timeout: 252 seconds) 2015-07-08 08:16:10 --> Yoshi2 (Yoshi2@2001:4dd3:f0f1:p:mlm:hjmx:tiqk:ikmm) has joined #pikipedia 2015-07-08 08:49:11 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: z) 2015-07-08 09:43:42 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-08 10:22:35 -- Pidgey|SLP is now known as Pidgey 2015-07-08 10:52:51 --> Pidgey_ (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-08 10:53:10 <-- Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Killed (NickServ (GHOST command used by Pidgey_))) 2015-07-08 10:53:16 -- Pidgey_ is now known as Pidgey 2015-07-08 11:13:05 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-08 11:13:05 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-08 11:19:20 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: why am I even here I should sleep) 2015-07-08 11:52:18 --> Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has joined #pikipedia 2015-07-08 15:13:39 --> Klemen702 (Mibbit@86.61.js.hyr) has joined #pikipedia 2015-07-08 15:23:30 --> Yoshi2_ (Yoshi2@5384-7iz6-e082-3-k362-bhz6-67zd-21u5.ipv9dyn.netcologne.de) has joined #pikipedia 2015-07-08 15:26:33 <-- Yoshi2 (Yoshi2@2001:4dd3:f0f1:p:mlm:hjmx:tiqk:ikmm) has quit (Ping timeout: 252 seconds) 2015-07-08 15:37:22 <-- Klemen702 (Mibbit@86.61.js.hyr) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-08 16:41:14 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 240 seconds) 2015-07-08 17:02:15 <-- Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has quit (Ping timeout: 252 seconds) 2015-07-08 17:50:42 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-07-08 18:01:19 --> Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has joined #pikipedia 2015-07-08 18:51:27 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-08 18:51:27 Testyo Hi everyone! 2015-07-08 18:52:11 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-08 18:52:11 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-08 19:07:55 Yoshi2_ hey Espyo & Testyo 2015-07-08 19:07:56 Testyo the bar for CF remains on the next 20 tries doing stupid mistakes 2015-07-08 19:08:06 -- Yoshi2_ is now known as Yoshi2 2015-07-08 19:14:12 -- Pidgey is now known as Pidgey|Banjo-Tooie 2015-07-08 19:33:47 @Espyo hi 2015-07-08 19:43:10 @J http://www.niwanetwork.org/forums/index.php?topic=1451.msg26290;topicseen#new 2015-07-08 19:43:11 @J WTF 2015-07-08 19:43:32 @J the sheer craziness 2015-07-08 19:44:30 Yoshi2 isn't that the person who posted in 5 year old threads? 2015-07-08 19:45:50 Yoshi2 yup, it was 2015-07-08 19:46:42 @J and is continuing to do so 2015-07-08 19:46:46 @J even as he makes that one 2015-07-08 19:46:47 @J why 2015-07-08 19:47:28 @J it's like he's just saying, "guys, I'm accidentallying all over the place and I need help" 2015-07-08 19:48:41 Yoshi2 I'm really considering creating an account there just so I can call that person out 2015-07-08 19:49:04 Yoshi2 but that would probably look weird 2015-07-08 20:06:49 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-08 20:16:30 Yoshi2 J: "I'm all over the place" seems about right 2015-07-08 20:25:30 Yoshi2 the NIWA forum doesn't even seem to have that many threads 2015-07-08 20:25:58 Yoshi2 and that person managed to post in every single one of them 2015-07-08 20:28:48 @J every 2015-07-08 20:28:49 @J single 2015-07-08 20:28:50 @J one 2015-07-08 20:29:15 Pidgey|Banjo-Tooie why can't you just warn him for spamming the forums 2015-07-08 20:29:20 Pidgey|Banjo-Tooie you /are/ a mod there after all 2015-07-08 20:31:58 @J yeah... 2015-07-08 20:32:18 @J I'm kind of suspecting that the reason he created that topic is because another mod warned him already 2015-07-08 20:32:32 Pidgey|Banjo-Tooie wait why don't you know this 2015-07-08 20:32:47 Pidgey|Banjo-Tooie why don't you immediately know when a user is being warned from another mod 2015-07-08 20:34:57 Yoshi2 mhm, if an actual warning was issued, I'd assume a mod would be able to check that 2015-07-08 20:35:24 Pidgey|Banjo-Tooie no I don't mean though that 2015-07-08 20:35:26 Pidgey|Banjo-Tooie *through 2015-07-08 20:35:46 Pidgey|Banjo-Tooie surely you must have a special board that only administrators of the board have access to where you discuss warnings and such 2015-07-08 20:36:16 Yoshi2 ah 2015-07-08 20:36:54 Yoshi2 a sort of communication channel just for staff members 2015-07-08 20:37:44 Yoshi2 well, I guess that requires creating a thread there and asking around 2015-07-08 20:37:52 Yoshi2 then waiting for the response 2015-07-08 20:40:30 @Espyo that guy 2015-07-08 20:45:03 @J not really 2015-07-08 20:45:17 @J the place is pretty dead really 2015-07-08 20:45:24 @J had hardly any posts until that guy started 2015-07-08 20:52:58 Pidgey|Banjo-Tooie ah 2015-07-08 21:06:26 Yoshi2 I assume staff boards are more often used when there is a lot of activity in the forum 2015-07-08 21:20:30 -- Pidgey|Banjo-Tooie is now known as Pidgey 2015-07-08 21:40:05 Testyo [Pikipedia RC] Garden of Hope Remix by En Passant (+63 Icons and Pikan fixes.) http://www.pikminwiki.com/index.php?title=Garden_of_Hope_Remix&curid=16374&diff=151452&oldid=144976 2015-07-08 21:45:11 Testyo [Pikipedia RC] Distant Tundra Remix by En Passant (-7 Pikan fixes.) http://www.pikminwiki.com/index.php?title=Distant_Tundra_Remix&curid=16389&diff=151453&oldid=151290 2015-07-08 22:00:27 Testyo [Pikipedia RC] Talk:Glitches in Pikmin 3 by Peach Bulborb (+1034 /* Strange Seed Glitch */) http://www.pikminwiki.com/index.php?title=Talk:Glitches_in_Pikmin_3&curid=18264&diff=151454&oldid=151110 2015-07-08 22:05:12 En_Passant We don't have P3 Candypop Bud icons, by the way 2015-07-08 22:12:17 @Espyo yeah... 2015-07-08 22:22:24 Testyo (eg. list, holiday? 2015-07-08 22:22:38 @Espyo but that's not how you use e.g. 2015-07-08 22:23:24 En_Passant punish it 2015-07-08 22:24:28 @Espyo Testyo: bad bot 2015-07-08 22:24:29 Testyo maybe Pikmin 2's aaf part, they're a bunch of slobbering idiots 2015-07-08 22:30:52 Testyo [Pikipedia RC] Twilight River Remix by En Passant (+33 Icons and Pikan fixes. Nearby.) http://www.pikminwiki.com/index.php?title=Twilight_River_Remix&curid=15783&diff=151455&oldid=147887 2015-07-08 22:40:57 Testyo [Pikipedia RC] Formidable Oak Remix by En Passant (+92 Icons and Pikan fixes.) http://www.pikminwiki.com/index.php?title=Formidable_Oak_Remix&curid=16398&diff=151456&oldid=148562 2015-07-08 22:40:58 Testyo [Pikipedia RC] Formidable Oak Remix by En Passant (+69 m) http://www.pikminwiki.com/index.php?title=Formidable_Oak_Remix&curid=16398&diff=151457&oldid=151456 2015-07-08 22:53:09 <-- Yoshi2 (Yoshi2@5384-7iz6-e082-3-k362-bhz6-67zd-21u5.ipv9dyn.netcologne.de) has quit (Quit: Leaving) 2015-07-08 22:56:04 Testyo [Pikipedia RC] Fortress of Festivity by En Passant (+193 Icons and Pikan fixes.) http://www.pikminwiki.com/index.php?title=Fortress_of_Festivity&curid=9493&diff=151458&oldid=148547 2015-07-08 22:59:04 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 272 seconds) 2015-07-08 23:02:29 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-08 23:16:18 Testyo [Pikipedia RC] The Rustyard by En Passant (+363 Icons and Pikan fixes.) http://www.pikminwiki.com/index.php?title=The_Rustyard&curid=15735&diff=151459&oldid=148580 2015-07-08 23:21:19 Testyo [Pikipedia RC] Beastly Caverns by En Passant (-24 m Small Pikan fixes.) http://www.pikminwiki.com/index.php?title=Beastly_Caverns&curid=15759&diff=151460&oldid=148605 2015-07-08 23:26:22 Testyo [Pikipedia RC] Forgotten Cove by En Passant (-16 m Small Pikan fixes.) http://www.pikminwiki.com/index.php?title=Forgotten_Cove&curid=15761&diff=151461&oldid=148650 2015-07-08 23:33:59 @J http://dustkid.com/animator.php?replays=4892265,3961809 some guy made an online Dustforce replay viewer 2015-07-08 23:34:02 @J and you can compare runs 2015-07-08 23:34:19 @J this is my any%/100% runs for the same level 2015-07-08 23:34:23 @Espyo wha?! 2015-07-08 23:34:29 @Espyo oh, like that 2015-07-08 23:34:36 @Espyo don't get me wrong, still pretty kickass 2015-07-08 23:34:43 @Espyo but I actually imagined the full game emulated at first 2015-07-08 23:35:13 @J yeah 2015-07-08 23:35:21 @Espyo it's so interesting to see 2015-07-08 23:35:25 @Espyo I don't play the game, and I LOVE this 2015-07-08 23:35:34 @J when I heard about it, I was thinking it showed the actions you did, not the map 2015-07-08 23:35:39 @J which in hindsight would be kind of weird 2015-07-08 23:35:44 @Espyo mhm 2015-07-08 23:35:50 @J but yeah, the idea is really interesting 2015-07-08 23:36:15 @J also the website can be a proxy against the real leaderboards servers, and instead of saving just your best replays, it saves them all 2015-07-08 23:36:50 @Espyo right 2015-07-08 23:36:57 @J anyway, there are no in-game ghosts or multiple replay viewing, so this should help if I can't work out why I'm so slow 2015-07-08 23:37:07 @J although the answer is probably just I'm bad 2015-07-08 23:37:12 @Espyo heh, yeah 2015-07-08 23:37:52 @J anyway, I should sleep, goodnight 2015-07-08 23:38:10 @Espyo night 2015-07-08 23:56:38 Testyo [Pikipedia RC] Clockwork Chasm by En Passant (+4 m Small Pikan fixes.) http://www.pikminwiki.com/index.php?title=Clockwork_Chasm&curid=16411&diff=151462&oldid=148754 2015-07-09 00:04:39 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-09 00:04:46 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-09 00:19:31 <-- Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has quit (Quit: Tidings.) 2015-07-09 01:14:40 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-07-09 01:41:53 --> Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-07-09 01:45:13 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 265 seconds) 2015-07-09 01:50:13 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 02:40:03 --> Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has joined #pikipedia 2015-07-09 03:29:28 <-- Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: z) 2015-07-09 05:26:57 <-- Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has quit (Ping timeout: 252 seconds) 2015-07-09 05:47:15 --> Spark02 (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has joined #pikipedia 2015-07-09 05:56:39 <-- Spark02 (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has quit (Ping timeout: 252 seconds) 2015-07-09 06:01:52 --> Spark02 (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has joined #pikipedia 2015-07-09 06:34:57 --> GerardoRVP (Mibbit@189.225.rh.vqj) has joined #pikipedia 2015-07-09 06:37:27 <-- GerardoRVP (Mibbit@189.225.rh.vqj) has quit (Client Quit) 2015-07-09 06:38:08 --> GerardoRVP (Mibbit@189.225.rh.vqj) has joined #pikipedia 2015-07-09 06:39:09 <-- GerardoRVP (Mibbit@189.225.rh.vqj) has quit (Client Quit) 2015-07-09 07:18:36 <-- Spark02 (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has quit (Ping timeout: 252 seconds) 2015-07-09 08:25:19 --> Yoshi2 (Yoshi2@2001:4dd3:f39b:p:nkt:shoz:imwq:jktm) has joined #pikipedia 2015-07-09 09:48:59 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-07-09 11:51:05 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 12:06:46 <-- Yoshi2 (Yoshi2@2001:4dd3:f39b:p:nkt:shoz:imwq:jktm) has quit (Quit: Leaving) 2015-07-09 12:10:27 --> Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-09 12:11:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 12:25:58 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 12:26:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Remote host closed the connection) 2015-07-09 12:58:30 --> Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has joined #pikipedia 2015-07-09 14:15:30 <-- Spark (sparkles@2602:306:3717:ygxz:rtjk:gupg:zxhk:ozzm) has quit (Ping timeout: 252 seconds) 2015-07-09 14:31:50 --> Spark (sparkles@2602:306:3717:ovip:hnto:qnns:miti:vsqq) has joined #pikipedia 2015-07-09 14:36:24 <-- Spark (sparkles@2602:306:3717:ovip:hnto:qnns:miti:vsqq) has quit (Ping timeout: 252 seconds) 2015-07-09 15:06:12 --> Yoshi2 (Yoshi2@134.61.yi.rz) has joined #pikipedia 2015-07-09 16:08:12 --> Spark (sparkles@2602:306:3717:ovip:hnto:qnns:miti:vsqq) has joined #pikipedia 2015-07-09 16:21:01 <-- Yoshi2 (Yoshi2@134.61.yi.rz) has quit (Quit: Leaving) 2015-07-09 16:22:19 <-- Spark (sparkles@2602:306:3717:ovip:hnto:qnns:miti:vsqq) has quit (Read error: Connection reset by peer) 2015-07-09 16:22:36 --> Spark (sparkles@2602:306:3717:ovip:hnto:qnns:miti:vsqq) has joined #pikipedia 2015-07-09 16:25:01 <-- Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 16:25:09 --> Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-09 16:28:14 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 16:36:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 16:36:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 16:51:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 16:52:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 16:53:30 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-09 16:54:39 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 16:54:39 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Remote host closed the connection) 2015-07-09 16:55:20 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 16:55:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-09 16:55:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 17:12:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 17:14:00 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 17:23:10 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 17:28:05 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 17:34:25 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 17:34:46 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 17:36:23 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-09 17:38:00 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 17:38:06 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-09 17:38:56 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 17:44:37 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 17:50:33 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 17:50:51 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-09 17:52:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 17:57:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 18:01:13 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 18:04:08 --> UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 18:04:21 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Killed (NickServ (GHOST command used by UM))) 2015-07-09 18:04:49 <-- UM (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-09 18:28:18 --> Klemen702 (Mibbit@86.61.js.hyr) has joined #pikipedia 2015-07-09 18:30:00 Klemen702 i have a question, just in case i ever get pikmin 2, i have a PAL TV and a gamecube, would i need the PAL version of pikmin 2 for the game to work? 2015-07-09 18:42:06 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 18:43:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-09 18:48:52 --> Yoshi2 (Yoshi2@2001:4dd3:f510:n:vtyj:gtwv:jgnq:xour) has joined #pikipedia 2015-07-09 18:49:12 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-09 18:49:12 Testyo Greetings everyone! 2015-07-09 18:49:51 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-09 18:49:51 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-09 18:50:19 Klemen702 hi 2015-07-09 18:53:23 Yoshi2 good day 2015-07-09 18:55:50 Klemen702 may i copy and paste my question earlier to see if i get an answer? 2015-07-09 18:56:39 @Espyo hi 2015-07-09 18:56:40 @Espyo uh, sure 2015-07-09 18:56:58 Klemen702 ''i have a question, just in case i ever get pikmin 2, i have a PAL TV and a gamecube, would i need the PAL version of pikmin 2 for the game to work?'' 2015-07-09 18:57:09 @Espyo yep 2015-07-09 18:57:14 @Espyo you can't use an NTSC copy at all 2015-07-09 18:57:18 @Espyo unless you do crazy homebrew stuff 2015-07-09 18:57:25 Klemen702 ah okay 2015-07-09 18:57:31 Klemen702 i guess i know what i am after now 2015-07-09 18:59:12 Testyo [Pikipedia RC] Glitches in Pikmin 3 by 109.176.216.132 (+5 /* Character line mix-up */) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_3&curid=8429&diff=151695&oldid=150724 2015-07-09 18:59:14 Yoshi2 if the GC is PAL, you'll need a PAL game 2015-07-09 18:59:20 Yoshi2 because region locking is awesome 2015-07-09 19:16:58 @J Nintendo handhelds don't have region locking though, do they? 2015-07-09 19:17:29 @Espyo hm, I think I read the 3DS doesn't, so... 2015-07-09 19:21:19 Yoshi2 I thought the 3ds did have region locking 2015-07-09 19:21:36 Yoshi2 the DS didn't, iirc 2015-07-09 19:26:11 <-- Klemen702 (Mibbit@86.61.js.hyr) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 20:55:28 Testyo [Pikipedia RC] Talk:Glitches in Pikmin 3 by Peach Bulborb (+81 /* Strange Seed Glitch */) http://www.pikminwiki.com/index.php?title=Talk:Glitches_in_Pikmin_3&curid=18264&diff=151696&oldid=151471 2015-07-09 21:11:30 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-09 21:12:37 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-09 21:12:38 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-09 21:13:01 @PikFan hi 2015-07-09 21:16:31 Yoshi2 good day 2015-07-09 21:19:50 En_Passant hi 2015-07-09 21:26:10 --> EnPassant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-09 21:26:15 EnPassant :/ 2015-07-09 21:26:51 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 21:27:39 -- EnPassant is now known as En_Passant 2015-07-09 21:30:48 Testyo [Pikipedia RC] Glutton's Kitchen by En Passant (-99 m It's 1190. Maybe they didn't count the Dream Material?) http://www.pikminwiki.com/index.php?title=Glutton's_Kitchen&curid=449&diff=151697&oldid=151648 2015-07-09 21:30:55 @Espyo hi 2015-07-09 21:32:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 21:40:54 Testyo [Fanon RC] User talk:En Passant by LoganPikmin (+194 /* Hello? */ new section) http://www.pikminfanon.com/index.php?title=User_talk:En_Passant&curid=9202&diff=48773&oldid=48434 2015-07-09 21:41:07 En_Passant and now bye, have to go to work. After I read this. 2015-07-09 21:41:14 @Espyo heh 2015-07-09 21:41:15 @Espyo bye 2015-07-09 21:45:57 Testyo [Fanon RC] How Do You Archive Talk P... by LoganPikmin (+66 N Oops) http://www.pikminfanon.com/index.php?title=How_Do_You_Archive_Talk_Pages?&curid=9700&diff=48774&oldid=0 2015-07-09 21:46:50 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 21:50:58 Testyo [Fanon RC] Topic: How Do I Archive M... by LoganPikmin (+319 N Please help) http://www.pikminfanon.com/index.php?title=Topic:_How_Do_I_Archive_My_Talk_Page?&curid=9701&diff=48775&oldid=0 2015-07-09 21:53:57 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 21:54:51 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 22:32:37 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 22:32:54 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 22:35:58 @PikFan "Sorry about that, but wikis are like specialized encyclopedias. They cannot have repeat data or baseless conjecture. They also don't want to go too deep into topics, since it will eventually bring up nothing but uninformative data." 2015-07-09 22:36:00 @PikFan uh 2015-07-09 22:36:07 @PikFan yes we want to go deep into topics 2015-07-09 22:36:18 @PikFan we want to cover as much information as possible 2015-07-09 22:36:27 @PikFan even if it is abstract 2015-07-09 22:36:37 @PikFan like the enemy properties 2015-07-09 22:37:06 <-- Spark (sparkles@2602:306:3717:ovip:hnto:qnns:miti:vsqq) has quit (Ping timeout: 252 seconds) 2015-07-09 22:53:12 --> Spark (sparkles@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2015-07-09 22:53:13 <-- Yoshi2 (Yoshi2@2001:4dd3:f510:n:vtyj:gtwv:jgnq:xour) has quit (Quit: Leaving) 2015-07-09 22:55:02 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 22:58:27 @PikFan ugh 2015-07-09 22:58:33 @PikFan I need to revise my areas 2015-07-09 22:58:40 @PikFan they're too linear 2015-07-09 23:26:37 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-09 23:47:14 @Espyo hi 2015-07-09 23:47:15 @Espyo and bye 2015-07-09 23:47:17 @Espyo 'cause I'm leaving now 2015-07-09 23:47:29 @PikFan :| 2015-07-09 23:47:34 @PikFan well, bye 2015-07-09 23:47:41 @Espyo who said that that you quoted? 2015-07-09 23:47:57 @PikFan kirbyddd 2015-07-09 23:48:19 @Espyo of course 2015-07-09 23:48:25 @Espyo such stupidity 2015-07-09 23:48:44 @PikFan indeed 2015-07-09 23:48:54 @Espyo like, of course you don't want to go so deep as to cover the RGB value of every pixel in a Blue Pikmin's texture 2015-07-09 23:49:08 @Espyo but the way he worded it almost made him seem like he knows how stuff works 2015-07-09 23:49:12 @Espyo puh-lease 2015-07-09 23:49:13 @Espyo anyway, night 2015-07-09 23:49:22 @PikFan night 2015-07-09 23:49:33 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-09 23:49:55 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-09 23:51:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-09 23:51:42 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-10 00:00:54 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-10 00:01:06 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-10 00:18:37 -- irc: disconnected from server 2015-07-10 00:26:30 --> J (J@f-771.cust-91586.ip.static.uno.uk.net) has joined #pikipedia 2015-07-10 00:26:30 -- Topic for #pikipedia is "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com | Rules: http://pikminwiki.com/Help:Chat" 2015-07-10 00:26:30 -- Topic set by PikFan on Sat, 03 May 2014 19:36:58 2015-07-10 00:26:30 -- Channel #pikipedia: 10 nicks (2 ops, 0 voices, 8 normals) 2015-07-10 00:26:30 -- URL for #pikipedia: http://www.pikminwiki.com 2015-07-10 00:26:30 -- Mode #pikipedia [+o J] by ChanServ 2015-07-10 00:26:33 -- Channel created on Sat, 27 Jul 2013 18:55:16 2015-07-10 00:31:03 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-10 00:34:10 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-10 00:38:42 <-- Spark (sparkles@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Ping timeout: 272 seconds) 2015-07-10 00:56:48 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-10 00:57:24 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-10 01:18:25 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-10 01:27:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-10 01:27:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-10 01:51:06 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-10 02:03:41 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-10 03:04:44 --> WikiGuest (Mibbit@189.225.rh.vqj) has joined #pikipedia 2015-07-10 03:04:55 <-- WikiGuest (Mibbit@189.225.rh.vqj) has quit (Client Quit) 2015-07-10 03:13:22 --> Spark (sparkles@2602:306:3717:rhuo:yhpr:itxn:vnlm:vogk) has joined #pikipedia 2015-07-10 04:56:12 <-- Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-10 05:52:23 --> Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-10 05:59:56 <-- Spark (sparkles@2602:306:3717:rhuo:yhpr:itxn:vnlm:vogk) has quit (Quit: Tidings.) 2015-07-10 06:00:00 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-10 06:04:58 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-10 07:06:33 --> Yoshi2 (Yoshi2@gcxc-32-51-169-297.netcologne.de) has joined #pikipedia 2015-07-10 07:33:05 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 265 seconds) 2015-07-10 08:32:22 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-07-10 09:14:00 --> SailorHaumea (DN-boards1@2602:306:8381:nggz:rowk:xmxm:qvon:mypq) has joined #pikipedia 2015-07-10 09:45:49 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-10 09:45:49 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-10 12:25:57 <-- Ringtailed-Fox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Read error: Connection reset by peer) 2015-07-10 12:48:10 --> nick (Mibbit@184.65.yp.mn) has joined #pikipedia 2015-07-10 12:48:25 <-- nick (Mibbit@184.65.yp.mn) has quit (Client Quit) 2015-07-10 14:49:26 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-07-10 15:37:55 @PikFan hey is anybody here good with templates 2015-07-10 15:42:14 Pidgey what templates 2015-07-10 15:42:30 @PikFan this http://www.pikminfanon.com/Template:PCW 2015-07-10 15:42:51 @PikFan because it automatically categorizes the pages that it's on 2015-07-10 15:43:03 Pidgey and you don't want that? 2015-07-10 15:43:08 @PikFan no 2015-07-10 15:43:21 @PikFan I want to add a parameter that disables categorization 2015-07-10 15:43:44 @PikFan I think it needs {{#if: , but I'm not sure 2015-07-10 15:43:58 Pidgey hmm 2015-07-10 15:44:04 Pidgey I'm not that good with templates, sadly 2015-07-10 15:44:15 @PikFan I see 2015-07-10 15:44:15 Pidgey ask Espyo whenever he comes online 2015-07-10 15:44:25 @PikFan mhm, that's what I planned on doing 2015-07-10 15:44:31 @PikFan thanks anyway 2015-07-10 15:45:13 @PikFan so I've been up for nearly 19 hours 2015-07-10 15:45:29 Pidgey sleep 2015-07-10 15:45:46 @PikFan trying to go for 24 hours 2015-07-10 15:45:55 @PikFan so... no :P 2015-07-10 15:46:15 @PikFan it's a challenge I like to try every summer 2015-07-10 15:49:20 --> Yoshi2_ (Yoshi2@2001:4dd3:f7eb:g:nnvp:kpzt:jjxx:omwk) has joined #pikipedia 2015-07-10 15:53:18 <-- Yoshi2 (Yoshi2@gcxc-32-51-169-297.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-10 17:34:11 Yoshi2_ PikFan: what are you planning to do after you have finished the challenge? 2015-07-10 17:37:30 @PikFan sleep, duh 2015-07-10 17:38:05 @PikFan or maybe stay up a little longer 2015-07-10 17:38:15 @PikFan to set a personal record 2015-07-10 17:38:39 @PikFan depends on how I feel then 2015-07-10 17:38:46 @PikFan which is in 3.5 hours 2015-07-10 17:38:55 Pidgey My personal record is around 39 hours, I believe. 2015-07-10 17:39:20 Pidgey Then I slept for eight hours, and everything was suddenly okay. 2015-07-10 17:39:34 @PikFan what 2015-07-10 17:39:47 @PikFan ...eight hours? only eight? 2015-07-10 17:39:51 Pidgey Yup. 2015-07-10 17:40:04 Pidgey My body just couldn't sleep anymore, that's how it went down. 2015-07-10 17:40:14 @PikFan hm 2015-07-10 17:40:22 @PikFan how deep in a sleep were you 2015-07-10 17:40:28 Pidgey Very, very deep. 2015-07-10 17:40:36 @PikFan ah, that makes more sense 2015-07-10 17:40:57 Yoshi2_ I've been trying to sleep for more than 8 hours 2015-07-10 17:40:59 Yoshi2_ doesn't work 2015-07-10 17:41:11 @PikFan it's because you're an adult 2015-07-10 17:41:13 Pidgey It also felt like a dreamless night, but we all know that's just codswallop. 2015-07-10 17:41:24 @PikFan codswallop 2015-07-10 17:41:27 @PikFan new favorite word 2015-07-10 17:42:01 Pidgey Yes, it's a thing that Hagrid says in the British version of Harry Potter and the Philosopher's Stone, when he mentions that everyone thinks Voldemort is dead. 2015-07-10 17:42:21 @PikFan I am a muggle, so I wouldn't know :P 2015-07-10 17:42:26 Pidgey haha 2015-07-10 17:42:51 @PikFan and I only know what muggle means because of my friends 2015-07-10 17:43:12 @PikFan otherwise... I'd be too much of a muggle to know what a muggle is 2015-07-10 17:43:13 Pidgey But it /is/ an official word in the English language, though. 2015-07-10 17:43:30 @PikFan yeah 2015-07-10 17:44:26 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-07-10 17:45:12 @PikFan so who else is excited for the New Horizons flyby of Pluto? 2015-07-10 17:45:38 Pidgey me tbh 2015-07-10 17:46:16 @PikFan >tbh 2015-07-10 17:46:19 @PikFan why tbh? 2015-07-10 17:46:28 @PikFan you say it as if it's a bad thing 2015-07-10 17:46:32 Pidgey because tbh (to be honest) 2015-07-10 17:46:47 Pidgey idk it's a thing I just say 2015-07-10 17:46:54 @PikFan I see 2015-07-10 17:47:06 @PikFan sorry, it just struck me in an odd way :P 2015-07-10 17:47:10 Pidgey it's fine 2015-07-10 17:47:14 @PikFan and my tiredness doesn't help 2015-07-10 17:47:17 Pidgey I understand how it felt out of place 2015-07-10 17:47:49 @PikFan anyway, noted 2015-07-10 17:49:14 @PikFan back to the original subject: I'm interested in the strange regions they've spotted 2015-07-10 17:49:29 Pidgey oh? 2015-07-10 17:49:53 @PikFan you haven't heard about those regions? 2015-07-10 17:50:17 Pidgey no, my astronomy side has been slacking recently 2015-07-10 17:50:23 @PikFan I see 2015-07-10 17:50:40 @PikFan well, they've seen a bright area that looks like a heart 2015-07-10 17:50:52 Pidgey hmm, odd shape 2015-07-10 17:51:04 @PikFan then there's a darker area to the lower left of it which they call a whale 2015-07-10 17:51:05 Pidgey wait, what heart-shape are we talking about? 2015-07-10 17:51:10 Pidgey the real one, or the fake one? 2015-07-10 17:51:12 @PikFan ♥ 2015-07-10 17:51:14 Pidgey ah 2015-07-10 17:51:15 Pidgey okay 2015-07-10 17:51:15 Yoshi2_ coincidences happen 2015-07-10 17:51:17 Pidgey the fake one 2015-07-10 17:51:44 @PikFan http://i.space.com/images/i/000/048/721/i02/pluto-heart-new-horizons.jpg?1436376724 2015-07-10 17:51:59 Pidgey ooh, neat! 2015-07-10 17:52:25 @PikFan and then there's a smaller area on the other side that they call a "donut" 2015-07-10 17:52:55 @PikFan http://i2.wp.com/www.universetoday.com/wp-content/uploads/2015/07/nh-pluto-color-7-6-2015_0.png 2015-07-10 17:53:05 Pidgey ah 2015-07-10 17:53:07 Pidgey neat! 2015-07-10 17:53:26 @PikFan there's three other circular things near the donut, which makes me think these are craters 2015-07-10 17:53:36 @PikFan as for the heart and the whale, I've no idea 2015-07-10 17:54:08 @PikFan some weird differentiation in the ices? too early to tell 2015-07-10 17:54:21 Pidgey the whale? 2015-07-10 17:54:50 @PikFan 09:51 PikFan then there's a darker area to the lower left of it which they call a whale 2015-07-10 17:54:55 Pidgey ah 2015-07-10 17:55:14 Pidgey now I can see it 2015-07-10 17:56:38 @PikFan woah 2015-07-10 17:57:03 Pidgey ? 2015-07-10 17:57:16 @PikFan at its closest approach, New Horizons will take pictures of Pluto with staggering resolution 2015-07-10 17:57:30 @PikFan something like this http://static3.businessinsider.com/image/559f0ccaeab8ea8e5e014807-1200-706/nh-stern_8.jpg 2015-07-10 17:57:44 Pidgey holy... 2015-07-10 17:58:21 @PikFan well, this should be interesting 2015-07-10 18:02:05 @PikFan 10:02 am 2015-07-10 18:02:11 @PikFan 3 hours remain 2015-07-10 19:27:53 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-10 19:27:53 Testyo Hello everyone! 2015-07-10 19:28:22 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-10 19:28:22 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-10 19:28:31 @PikFan hi 2015-07-10 19:29:05 Yoshi2_ hiho Espyo & Testyo 2015-07-10 19:29:06 Testyo you in game when l'm ready,l'll hunt whenever you're ready. 2015-07-10 19:29:27 @PikFan Yoshi2 why do you say hi to Testyo 2015-07-10 19:29:28 Testyo Ah, I still need to test that 2015-07-10 19:29:33 @PikFan :\ 2015-07-10 19:29:56 @PikFan Testyo is not deserving of greetings 2015-07-10 19:29:56 Testyo why would it be linking to the chances of TWO people doing it? 2015-07-10 19:30:38 Yoshi2_ because bots deserve to be treated as equals 2015-07-10 19:31:00 @PikFan it can't feel emotion though 2015-07-10 19:31:04 @PikFan or anything, really 2015-07-10 19:32:48 Yoshi2_ doesn't mean you shouldn't treat them well 2015-07-10 19:32:52 Yoshi2_ I support bot rights 2015-07-10 19:32:54 -- Yoshi2_ is now known as Yoshi2 2015-07-10 19:33:39 Yoshi2 also, it gives me an excuse to mention testyo's name so he says something potentially hilarious 2015-07-10 19:33:39 Testyo luckily HexChat = too cumbersome 2015-07-10 19:33:55 Yoshi2 WHAT 2015-07-10 19:34:00 @PikFan case in point 2015-07-10 19:34:19 @PikFan because now hilarious = offensive! 2015-07-10 19:34:35 Yoshi2 Testyo: that's, like, your opinion, man 2015-07-10 19:34:35 Testyo forest with random lab in the middle of it now 2015-07-10 19:40:01 @Espyo hi 2015-07-10 19:40:13 @Espyo hm 2015-07-10 19:40:22 @Espyo I know Testyo's line is from Dustforce 2015-07-10 19:40:23 Testyo oops yep 2015-07-10 19:40:29 @Espyo but it could be from a LOT of games 2015-07-10 19:40:31 @Espyo that has to be a trope 2015-07-10 19:42:55 @PikFan Espyo: did you get my memo? 2015-07-10 19:44:26 @Espyo have now 2015-07-10 19:44:29 @Espyo category disable? 2015-07-10 19:44:49 @PikFan like {{PCW|nocat=y}} 2015-07-10 19:44:50 Testyo "PCW|nocat=y" template = http://www.pikminwiki.com/index.php?title=Template:PCW|nocat=y 2015-07-10 19:45:12 @PikFan since it automatically categorizes 2015-07-10 19:47:13 @Espyo {{#if:{{{nocat|}}}||[[Category:Blergh]]}} 2015-07-10 19:47:13 Testyo "Category:Blergh" article = http://www.pikminwiki.com/index.php?title=Category:Blergh 2015-07-10 19:47:48 @PikFan okay 2015-07-10 19:50:15 @PikFan thanks 2015-07-10 19:51:34 @Espyo np 2015-07-10 19:52:27 @PikFan hmm, maybe I should get rid of the categorization thing altogether 2015-07-10 19:52:46 @PikFan since everything can be organized into subcategories 2015-07-10 19:52:57 @PikFan wait, even better 2015-07-10 19:53:03 @PikFan just flip it 2015-07-10 19:53:14 Testyo [Fanon RC] Template:PCW by PikFan23 (+22) http://www.pikminfanon.com/index.php?title=Template:PCW&curid=4218&diff=48788&oldid=47580 2015-07-10 19:53:14 Testyo [Fanon RC] Rugged Tundra by PikFan23 (+8 m Testing...) http://www.pikminfanon.com/index.php?title=Rugged_Tundra&curid=4651&diff=48789&oldid=47138 2015-07-10 19:53:29 @Espyo hm 2015-07-10 19:54:05 @PikFan also, if I don't make sense, it's because I am extremely tired because I've stayed up nearly 23 hours straight 2015-07-10 19:54:11 @PikFan just warning you 2015-07-10 19:56:00 @Espyo good grief 2015-07-10 19:56:04 @Espyo how does your body even work 2015-07-10 19:56:11 @PikFan it defies logic 2015-07-10 19:56:23 @Espyo sure looks like it 2015-07-10 19:56:43 @PikFan but if you think that's insane, listen to this: 2015-07-10 19:56:56 @PikFan 09:39 Pidgey My personal record is around 39 hours, I believe. 2015-07-10 19:56:58 @PikFan 09:39 Pidgey Then I slept for eight hours, and everything was suddenly okay. 2015-07-10 19:57:09 @Espyo wut 2015-07-10 19:57:19 @PikFan pretty much 2015-07-10 19:57:21 @Espyo am I in #guinessworldrecords instead? 2015-07-10 19:57:49 Yoshi2 Espyo: but you haven't heard the best part yet 2015-07-10 19:58:01 @PikFan best part...? 2015-07-10 19:58:05 @PikFan what best part 2015-07-10 19:58:15 Yoshi2 the reason PikFan is doing this is not because he has to do it, but because he wants to, as a challenge 2015-07-10 19:58:28 Pidgey Isn't that why everyone does it, though, Yoshi2? 2015-07-10 19:58:53 @PikFan my mom involuntarily stayed up 3 days while in labor 2015-07-10 19:58:55 @PikFan so no 2015-07-10 19:59:12 @PikFan er wait 2015-07-10 19:59:17 @PikFan ...not in labor 2015-07-10 19:59:17 Yoshi2 Pidgey: not really, no 2015-07-10 19:59:20 @PikFan after birth 2015-07-10 19:59:32 @PikFan er, after MY birth, that is 2015-07-10 19:59:36 @PikFan ...you get the point 2015-07-10 19:59:43 @PikFan uh, anyway 2015-07-10 20:00:00 @Espyo hmm 2015-07-10 20:00:43 @PikFan oh, Espyo 2015-07-10 20:00:48 @Espyo mhm? 2015-07-10 20:00:49 Yoshi2 whenever I hear somebody stay up for so long, it's because they want to fix their sleeping schedule like that, or because they need to finish a paper that is due next day 2015-07-10 20:01:10 @PikFan adding |nocat=y adds an empty line between the template and the text 2015-07-10 20:04:58 @Espyo make it not be on its own line 2015-07-10 20:06:29 @PikFan the template or the {{#if: in the template? 2015-07-10 20:06:39 @Espyo the {{#if 2015-07-10 20:08:20 Testyo [Fanon RC] Template:PCW by PikFan23 (-1 m Hm.) http://www.pikminfanon.com/index.php?title=Template:PCW&curid=4218&diff=48790&oldid=48788 2015-07-10 20:08:41 @PikFan better 2015-07-10 20:11:35 @J this is weird, I was talking to someone earlier today about staying up all night 2015-07-10 20:12:29 @PikFan must be a phenomenon then 2015-07-10 20:13:15 @Espyo it's the newest craze 2015-07-10 20:13:22 Testyo [Fanon RC] The Garden by PikFan23 (+15 m Changing categories.) http://www.pikminfanon.com/index.php?title=The_Garden&curid=4955&diff=48791&oldid=43865 2015-07-10 20:13:46 @PikFan oh yeah 2015-07-10 20:13:58 @PikFan Espyo you forgot to update the anonnotice 2015-07-10 20:14:03 @Espyo ... 2015-07-10 20:14:19 @Espyo [[MediaWiki:Anonnotice]] 2015-07-10 20:14:19 Testyo "MediaWiki:Anonnotice" article = http://www.pikminwiki.com/index.php?title=MediaWiki:Anonnotice 2015-07-10 20:14:27 @Espyo oh yeah... 2015-07-10 20:14:57 @Espyo well, done 2015-07-10 20:15:09 @Espyo we should probably put a tutorial somewhere 2015-07-10 20:15:28 @Espyo you have to change it, AND change the anonnotice, AND change the sitenotice id 2015-07-10 20:17:22 @PikFan hmm... 2015-07-10 20:17:35 @PikFan oh, there's something that I could do 2015-07-10 20:17:43 @PikFan I could grab all the obstacle locations 2015-07-10 20:17:49 @Espyo http://www.pikminwiki.com/MediaWiki_talk:Sitenotice#To_update and done 2015-07-10 20:18:38 @PikFan what's the purpose of this anyway? http://www.pikminwiki.com/MediaWiki:Sitenotice_id 2015-07-10 20:19:08 @PikFan does keeping track of the sitenotice changes actually do something? 2015-07-10 20:19:37 @Espyo I think it forces clients to fetch the most updated version instead of using the cache 2015-07-10 20:19:43 @Espyo clients go check that number 2015-07-10 20:19:52 @Espyo if it's the same as the one they have in cache, then they just assume the notice didn't change 2015-07-10 20:19:55 @Espyo and use the cache one 2015-07-10 20:20:05 @PikFan ah 2015-07-10 20:20:17 @PikFan caches can be really unreliable sometimes 2015-07-10 20:20:29 @Espyo it's a necessary evil 2015-07-10 20:20:39 @Espyo ah caches... 2015-07-10 20:20:48 @PikFan especially for [[Special:WhosOnline]] 2015-07-10 20:20:48 Testyo "Special:WhosOnline" article = http://www.pikminwiki.com/index.php?title=Special:WhosOnline 2015-07-10 20:20:55 @Espyo on the engine, instead of the game drawing every bit of geometry in the terrain every single frame 2015-07-10 20:21:05 @Espyo it just draws the terrain onto images once, and then uses the static images 2015-07-10 20:21:08 @Espyo it's a lot faster 2015-07-10 20:21:18 @Espyo ...but that means the terrain has to be static (unless I hack around it) 2015-07-10 20:21:27 @Espyo and more importantly, it could uncover bugs because stuff isn't updated right 2015-07-10 20:21:34 @Espyo like my classic month-old bug 2015-07-10 20:21:37 @Espyo fun times 2015-07-10 20:22:05 @PikFan by terrain changes, do you mean like obstacles being cleared, etc? 2015-07-10 20:22:45 @Espyo almost 2015-07-10 20:22:55 @Espyo but mostly, yes 2015-07-10 20:23:00 @Espyo well, gates are just an object 2015-07-10 20:23:03 @Espyo they're just the object's graphic 2015-07-10 20:23:09 @Espyo and when you clear them, only the gate really disappears 2015-07-10 20:23:24 @Espyo but for like bridges, that'll have to be a combination of parts of the terrain 2015-07-10 20:23:41 @Espyo and I'll have to draw the original terrain sans bridge, and then draw bridge terrain on top of it 2015-07-10 20:23:47 @Espyo the purpose of the cache is to avoid drawing stuff in real time 2015-07-10 20:23:51 @Espyo but it's just one bridge, no worries 2015-07-10 20:24:10 @Espyo comparing the bridge's 1-5~ sectors to the area's total of 500+ sectors... 2015-07-10 20:24:15 @PikFan what if people go insane and make a level based on bridges 2015-07-10 20:24:52 @Espyo then let's hope they're not insane enough to wonder why their level is so slow 2015-07-10 20:26:01 @PikFan also, are P1+2-style bridges easier on the engine than P3-style bridges? 2015-07-10 20:26:35 @PikFan since you don't have to carry fragments for a wooden bridge as opposed to a ceramic bridge? 2015-07-10 20:28:01 @Espyo a LOT 2015-07-10 20:28:12 @Espyo just one "enemy"-like object that the Pikmin hit 2015-07-10 20:28:14 @Espyo it drops its HP 2015-07-10 20:28:17 @Espyo when its HP reaches 0 2015-07-10 20:28:20 @Espyo boom, new sector 2015-07-10 20:28:21 @Espyo done 2015-07-10 20:28:40 @Espyo for P3, I'd have to implement a "pile" object that has the number of pieces in it 2015-07-10 20:28:49 @Espyo to keep it simple, if I make it, I won't make its graphics change 2015-07-10 20:28:59 @Espyo or at least have two stages: full and half-full 2015-07-10 20:29:07 @Espyo anyway, the Pikmin will have to carry it... which shouldn't be TOO hard 2015-07-10 20:29:14 @Espyo and deliver it to the bridge, which again, shouldn't be all that hard 2015-07-10 20:29:21 @Espyo updating the bridge's graphics is gonna be cumbersome 2015-07-10 20:29:29 @Espyo because if you take one shard from a pile, the pile looks the same 2015-07-10 20:29:37 @Espyo but if you add one shard to any bridge, the bridge looks different 2015-07-10 20:29:40 @Espyo specially from a top-down view 2015-07-10 20:29:47 @PikFan just shrink the pile a tiny bit 2015-07-10 20:29:52 @Espyo mhm 2015-07-10 20:29:57 @Espyo but the problem is the bridge 2015-07-10 20:30:02 @Espyo I could just make it ugly and have 3 graphics for the bridge 2015-07-10 20:30:14 @Espyo 0 - 33%, where the bridge is only like 3 shards big 2015-07-10 20:30:22 @Espyo 33 - 66%, where it has a bit 2015-07-10 20:30:35 @Espyo 66% to 100% where it's almost done 2015-07-10 20:30:40 @Espyo and block passageway until the bridge is all done 2015-07-10 20:30:53 @Espyo well, it shouldn't be hard, but it'll certainly be harder than P1/2 bridges 2015-07-10 20:31:25 @PikFan mm 2015-07-10 20:32:12 @PikFan oh, so yesterday I realized that I was making my areas too linear 2015-07-10 20:32:23 @PikFan well, they ARE too linear 2015-07-10 20:32:48 @PikFan because in the canon games the landing site is usually near the middle of the map 2015-07-10 20:32:59 @PikFan in my game, the landing site is near the edge 2015-07-10 20:33:06 @PikFan not really good exploration wise 2015-07-10 20:33:14 @PikFan and it ends up being linear 2015-07-10 20:33:21 @PikFan which I don't want 2015-07-10 20:33:49 @Espyo yeah, not very good 2015-07-10 20:33:54 @PikFan yes, there is at least one path you have to take to advance the story 2015-07-10 20:34:00 @PikFan but you have to have other paths, too 2015-07-10 20:34:02 @Espyo mhm 2015-07-10 20:34:16 @PikFan like when you go back to the Tropical Wilds 2015-07-10 20:34:29 @PikFan when you throw the leaders across that bridge, already you've got three ways to go 2015-07-10 20:34:50 @Espyo mhm 2015-07-10 20:34:53 @PikFan and even then, right at the onion itself, you can go back into that cave 2015-07-10 20:35:05 @PikFan or go attack that bulborb 2015-07-10 20:35:18 @PikFan anyway, I need to update my areas so they have more paths 2015-07-10 20:35:48 @Espyo yes 2015-07-10 20:35:55 @Espyo remember, paths aren't the only way to delete linearity 2015-07-10 20:36:12 @Espyo a large open room with several platforms provides several things to do 2015-07-10 20:36:14 @Espyo without using paths 2015-07-10 20:36:34 @PikFan by path, I don't mean an actual pathway 2015-07-10 20:36:56 @PikFan just the route to get somewhere 2015-07-10 20:37:12 @Espyo ...so a pathway 2015-07-10 20:37:32 @PikFan ugh 2015-07-10 20:37:44 @PikFan I meant not physically defined 2015-07-10 20:37:45 @Espyo try using "corridor" in your explanation 2015-07-10 20:37:52 @Espyo probably a word you want 2015-07-10 20:37:53 @PikFan noted 2015-07-10 20:38:45 @PikFan but yeah, not strictly a corridor, but just a way 2015-07-10 20:39:19 @Espyo hm, okay 2015-07-10 20:39:48 @PikFan [[f:Distant Desert]] 2015-07-10 20:39:48 Testyo "Distant_Desert" article = http://www.pikminfanon.com/index.php?title=Distant_Desert 2015-07-10 20:40:03 @PikFan if you look at that, you'll see it's pretty much one giant line 2015-07-10 20:40:18 @PikFan not going to work 2015-07-10 20:41:29 @Espyo hm, yeah 2015-07-10 20:42:52 @PikFan speaking of my game, I mentioned objects in the main article 2015-07-10 20:43:15 @PikFan http://www.pikminfanon.com/Pikmin:_Connection_of_the_Worlds#Objects 2015-07-10 20:43:30 @PikFan I don't know why I never mentioned that before 2015-07-10 20:44:35 @PikFan I ought to change this to Achievements or something http://www.pikminfanon.com/Pikmin:_Connection_of_the_Worlds#Flowers 2015-07-10 20:45:30 @PikFan I blame my immature 12 year old self who made it as a blatant rip off of NSMBW's stars 2015-07-10 20:45:31 @PikFan ._. 2015-07-10 20:46:09 Yoshi2 wait until you start blaming your immature 15 year old self in another 3 years 2015-07-10 20:46:17 @PikFan ikr 2015-07-10 20:46:40 @PikFan I wonder what amazing inconsistencies I'll find then 2015-07-10 20:46:55 @PikFan if nobody's found them yet 2015-07-10 20:47:15 Yoshi2 I'm still blaming my younger self from 1 year ago for the stuff I did in my code 2015-07-10 20:47:28 @PikFan heh 2015-07-10 21:02:40 @PikFan stayed up 24 hours now 2015-07-10 21:03:12 @PikFan going to sleep now 2015-07-10 21:03:16 @PikFan ugh... I need it 2015-07-10 21:03:18 @PikFan bye 2015-07-10 21:03:30 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-10 21:04:17 Yoshi2 and that is the reason why you do not want to stay up long unless you need to 2015-07-10 21:16:03 @Espyo hehe 2015-07-10 21:30:31 Pidgey and I still beat myself up from things I did when I was at an immature age of 17 2015-07-10 21:33:35 Yoshi2 I'm starting to see a pattern 2015-07-10 21:34:00 Yoshi2 what if we beat ourself up for things we did in the distant past? 2015-07-10 21:34:42 @Espyo distant? 2015-07-10 21:34:52 @Espyo I sometimes beat 2-hour-ago Espyo for something stupid in the code 2015-07-10 21:35:11 @Espyo https://xkcd.com/221/ good to know this is how windows' batch scripting works 2015-07-10 21:35:31 @Espyo there's a... uh, convoluted, to say the ABSOLUTE least 2015-07-10 21:35:35 @Espyo to get a random file in a folder 2015-07-10 21:35:39 @Espyo ...it's a random pick, sure 2015-07-10 21:35:43 @Espyo but it's ALWAYS the same pick 2015-07-10 21:35:47 @Espyo no matter how many times you run the script 2015-07-10 21:39:08 @Espyo actually, I'm reading that it depends on the system clock 2015-07-10 21:39:10 @Espyo and uses the second 2015-07-10 21:39:18 @Espyo ...but for me, it looks more like it uses the minutes 2015-07-10 21:39:19 @Espyo ugh 2015-07-10 21:39:29 @Espyo good thing I knew hours in advance what I'd be getting in to 2015-07-10 21:39:34 @Espyo *into 2015-07-10 21:42:15 Yoshi2 Espyo: there is a way to get a random file in batch? 2015-07-10 21:42:29 @Espyo convoluted, yeah 2015-07-10 21:42:48 @Espyo set n=0 2015-07-10 21:42:48 @Espyo for %%f in (*.jpg) do ( 2015-07-10 21:42:49 @Espyo set /A n+=1 2015-07-10 21:42:49 @Espyo set "file[!n!]=%%f" 2015-07-10 21:42:49 @Espyo ) 2015-07-10 21:42:49 @Espyo set /A "rand=(n*%random%)/32768+1" 2015-07-10 21:42:50 Testyo Espyo is a flooder! 2015-07-10 21:42:51 @Espyo "!file[%rand%]!" 2015-07-10 21:42:53 @Espyo ultra-intuitive, right? 2015-07-10 21:43:41 Pidgey sure, anyone could understand that 2015-07-10 21:44:44 @Espyo yyyyyep 2015-07-10 21:45:39 Yoshi2 different question: why would you need to choose a random file? 2015-07-10 21:46:48 @Espyo just something I want to do 2015-07-10 21:47:06 Yoshi2 fair enough 2015-07-10 21:47:20 @Espyo so I'm trying PowerShell 2015-07-10 21:47:27 Yoshi2 in that case, yeah, it's silly 2015-07-10 21:47:27 @Espyo people say that you should use that unless you're a masochist 2015-07-10 21:47:58 @Espyo it's slow... but I think it's only slow because an antimalware process from windows is running in the background, taking up 30%+ 2015-07-10 21:48:00 @Espyo *CPU usage 2015-07-10 21:48:05 @Espyo anyway, I open task manager 2015-07-10 21:48:11 @Espyo and on the list of processes 2015-07-10 21:48:15 @Espyo it says task manager isn't responding 2015-07-10 21:48:27 @Espyo even though I'm clicking on its menus, scrolling its bars, and it's fine 2015-07-10 21:48:37 @Espyo I'm telling you, not a single day goes by without windows making me facepalm 2015-07-10 21:48:38 @Espyo not 2015-07-10 21:48:38 @Espyo a 2015-07-10 21:48:39 @Espyo one 2015-07-10 21:50:52 @Espyo WOAH WOAH 2015-07-10 21:50:54 @Espyo HOLD THE PHONE 2015-07-10 21:50:59 @Espyo PowerShell has UNIX COMMANDS? 2015-07-10 21:51:03 @Espyo did I just find the holy grail? 2015-07-10 21:51:06 * Yoshi2 holds the phone 2015-07-10 21:51:12 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-10 21:51:29 @Espyo did I just go from a poor excuse of a command line to a mimic of the best possible one? 2015-07-10 21:51:33 @Espyo hi 2015-07-10 21:53:27 En_Passant Command line? 2015-07-10 21:55:00 @J I hear PowerShell is weird 2015-07-10 21:55:12 @J and that's pretty much all I've heard 2015-07-10 21:55:53 @Espyo it wouldn't surprise me 2015-07-10 21:55:58 @Espyo En_Passant: windows stuff 2015-07-10 21:58:23 @J unixy command-line scripting has weird stuff anyway 2015-07-10 21:58:40 En_Passant That's what I thought. I don't know what you mean by poor excuse of/best possible one, then. 2015-07-10 21:58:42 @J like, I recently learned that xargs does weird unescaping on lines it reads 2015-07-10 21:58:56 @J you have to shell-escape the lines individually for it to work in a sensible way, or something 2015-07-10 21:59:16 @J also $() in Bash trims your trailing whitespace for no apparenty reason 2015-07-10 21:59:27 @J *apparent 2015-07-10 22:00:07 @Espyo it relates to what I was saying before En_Passant 2015-07-10 22:00:11 @Espyo err, complex stuff 2015-07-10 22:00:27 @Espyo hm, that is kinda weird 2015-07-10 22:00:39 @Espyo still, anything that isn't windows' default bash is a relief for me 2015-07-10 22:00:55 @J *batch? 2015-07-10 22:01:21 @Espyo oops, yes 2015-07-10 22:10:38 -- Pidgey is now known as RandomYoshisWoollyWorld 2015-07-10 22:22:15 <-- Yoshi2 (Yoshi2@2001:4dd3:f7eb:g:nnvp:kpzt:jjxx:omwk) has quit (Quit: Leaving) 2015-07-10 22:57:41 -- RandomYoshisWoollyWorld is now known as pidgey 2015-07-10 22:58:29 -- pidgey is now known as Pidgey 2015-07-10 23:28:50 Testyo setting up a git client and opposite of what the policy says 2015-07-10 23:29:52 Pidgey ok 2015-07-10 23:46:28 Testyo [Pikipedia RC] Talk:Iridescent Glint Bee... by LuisYKW2 (+165 /* Family */ new section) http://www.pikminwiki.com/index.php?title=Talk:Iridescent_Glint_Beetle&curid=4241&diff=151712&oldid=62909 2015-07-10 23:59:41 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-11 00:00:00 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-11 00:00:16 En_Passant *sigh* 2015-07-11 00:13:04 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit 2015-07-11 00:27:09 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-11 00:49:42 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-11 01:42:48 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-07-11 02:19:42 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-11 02:19:44 En_Passant uhh 2015-07-11 02:19:56 En_Passant so somehow my response overrode Espyo's 2015-07-11 02:21:22 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Client Quit) 2015-07-11 02:54:36 <-- Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-11 03:20:53 --> Gamefreak75_ (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-11 03:22:11 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Ping timeout: 248 seconds) 2015-07-11 03:22:15 -- Gamefreak75_ is now known as Gamefreak75 2015-07-11 08:09:33 <-- SailorHaumea (DN-boards1@2602:306:8381:nggz:rowk:xmxm:qvon:mypq) has quit (Ping timeout: 252 seconds) 2015-07-11 10:07:16 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-07-11 11:30:04 --> Yoshi2 (Yoshi2@2001:4dd3:f930:m:zrog:hjnp:giqj:gqzq) has joined #pikipedia 2015-07-11 12:17:07 --> Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-11 12:34:42 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-11 12:34:42 Testyo Hi everyone! 2015-07-11 12:35:01 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-11 12:35:01 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-11 12:35:57 Yoshi2 morning Testyo & Espyo 2015-07-11 12:35:57 Testyo cause like, in voice chat, you edited the rarc directly? 2015-07-11 12:41:01 @Espyo hi 2015-07-11 12:41:13 @Espyo pretty sure skype isn't a rarc extractor 2015-07-11 12:43:09 Yoshi2 Testyo: lm 2015-07-11 12:43:09 Testyo I said cause like, in voice chat, you edited the rarc directly? because Yoshi2 mentioned my name. This random message came from the messages wait, you edited the rarc directly? and cause like, in voice chat, you can't go back and look at what they just said. They were joined by the common word you. 2015-07-11 13:20:09 Testyo [Pikipedia RC] User talk:Espyo by Scruffy (+579) http://www.pikminwiki.com/index.php?title=User_talk:Espyo&curid=5393&diff=151722&oldid=151505 2015-07-11 13:45:41 Testyo [Pikipedia RC] User talk:Espyo by Scruffy (+234) http://www.pikminwiki.com/index.php?title=User_talk:Espyo&curid=5393&diff=151725&oldid=151724 2015-07-11 15:16:57 @Espyo http://www.niwanetwork.org/forums/index.php?topic=1451.0;topicseen WHAT 2015-07-11 15:17:34 Yoshi2 is it that person again? 2015-07-11 15:17:38 Pidgey yes, Espyo 2015-07-11 15:17:43 Pidgey I agree though 2015-07-11 15:17:47 @Espyo no, look 2015-07-11 15:17:49 @Espyo the thing is 2015-07-11 15:17:56 @Espyo KidIcarus is posting on a lot of old threads 2015-07-11 15:18:04 @Espyo and KidIcarus made a thread to stop themselves from doing that 2015-07-11 15:18:06 @Espyo I... 2015-07-11 15:18:14 Yoshi2 ah 2015-07-11 15:18:26 Yoshi2 we discussed that not too long ago 2015-07-11 15:19:15 Yoshi2 I had plans to ask that person about that, but it requires me creating an account on the forum 2015-07-11 15:22:06 -- Pidgey is now known as Pidgey|Away 2015-07-11 15:39:18 Testyo so keys - why not use those? 2015-07-11 15:39:47 @Espyo huh? 2015-07-11 15:39:49 @Espyo hmm 2015-07-11 15:40:01 @Espyo I never thought of typing with a keyboard 2015-07-11 15:40:03 @Espyo I just copy-paste letters 2015-07-11 15:41:49 Yoshi2 when I was younger, we had to apply a current to the wires to receive an output 2015-07-11 15:51:47 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+67 m) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=151726&oldid=151706 2015-07-11 15:59:24 --> Yoshi2_ (Yoshi2@0389-2wb1-is1z-3-i925-v522-emj3-r2t2.ipv4dyn.netcologne.de) has joined #pikipedia 2015-07-11 16:02:33 <-- Yoshi2 (Yoshi2@2001:4dd3:f930:m:zrog:hjnp:giqj:gqzq) has quit (Ping timeout: 252 seconds) 2015-07-11 16:03:31 @Espyo what the 2015-07-11 16:03:35 @Espyo what HAS Paraxade been doing? 2015-07-11 16:03:38 @Espyo what is this wizardry? 2015-07-11 16:14:58 Yoshi2_ what is paraxade? 2015-07-11 16:16:48 @Espyo a Metroid Prime expert, like Miles 2015-07-11 16:16:57 @Espyo apparently he made an editor for Metroid Prime 2 levels 2015-07-11 16:17:05 @Espyo that's what I'm gathering from the tweets 2015-07-11 16:27:54 Pidgey|Away what 2015-07-11 16:27:57 -- Pidgey|Away is now known as Pidgey 2015-07-11 16:28:11 Pidgey Metroid Prime 2: Echoes level editor 2015-07-11 16:28:14 Pidgey please link 2015-07-11 16:29:42 Yoshi2_ a level editor oOo 2015-07-11 16:30:12 Yoshi2_ it's difficult enough to read and write the file formats from a game 2015-07-11 16:30:18 @Espyo https://twitter.com/Paraxade0 2015-07-11 16:30:32 Yoshi2_ let alone create a level editor with a decent UI 2015-07-11 16:31:07 @Espyo mhm... 2015-07-11 16:32:02 Yoshi2_ I really feel some people know far more about the games than the information that is available on the internet 2015-07-11 16:32:08 Pidgey this reminds me of Super Mario World hacking 2015-07-11 16:32:26 Pidgey you can apparently make Super Mario World into an RPG if you use Lunar Magic efficiently 2015-07-11 16:32:42 @Espyo holy 2015-07-11 16:32:42 Pidgey there are even Super Mario World hacks that combine generes 2015-07-11 16:32:50 Pidgey so in short 2015-07-11 16:33:00 Pidgey you can make almost anything with Super Mario World 2015-07-11 16:33:22 @Espyo well, TASers did manage to turn it into Snake 2015-07-11 16:33:25 Yoshi2_ there are assembly wizzards who can do crazy stuff with SMW 2015-07-11 16:33:29 Pidgey yeah 2015-07-11 16:33:37 Pidgey and Pong 2015-07-11 16:33:46 Pidgey and insert the entirety of SMB 2015-07-11 16:33:52 @Espyo ... that part is new to me 2015-07-11 16:33:54 @Espyo the SMB one 2015-07-11 16:33:55 @Espyo link? 2015-07-11 16:33:58 Pidgey hang on 2015-07-11 16:34:20 Pidgey https://www.youtube.com/watch?v=YHyaTCuZRzM 2015-07-11 16:34:25 @Espyo thanks 2015-07-11 16:34:33 Pidgey you're welcome 2015-07-11 16:36:48 @Espyo oh yeah, I don't think I've caught back all of the AGDQ 2015 scenes 2015-07-11 16:37:12 Pidgey ah 2015-07-11 16:37:28 Pidgey I watched the thing whilst it was streaming 2015-07-11 16:38:05 Pidgey Miles' Metroid Prime run kind of disappointed me because I couldn't watch it at 8x speed. 2015-07-11 16:39:42 @Espyo that was ridiculous 2015-07-11 16:40:02 @Espyo hehe 2015-07-11 16:42:07 Testyo [Pikipedia RC] Music (Pikmin 2) by Scruffy (+3357 Now all the tracks have IDs, so other pages can link to them.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_2)&curid=19020&diff=151727&oldid=151726 2015-07-11 16:42:13 Pidgey Holy... 2015-07-11 17:19:32 Miles "editor" 2015-07-11 17:19:42 Miles A year later and it still isn't actually capable of editing 2015-07-11 17:21:38 @Espyo well, data viewer, at the very least 2015-07-11 17:44:45 -- Yoshi2_ is now known as Yoshi2 2015-07-11 18:53:10 Testyo [Pikipedia RC] Easter egg by TheSneakySpy (+2 m Fixed an image not appearing.) http://www.pikminwiki.com/index.php?title=Easter_egg&curid=371&diff=151736&oldid=150349 2015-07-11 19:06:14 Yoshi2 I was a bit disappointed that the wind waker editor could only show data and let you edit the values of the entities 2015-07-11 19:06:45 @Espyo hmm 2015-07-11 22:41:46 <-- Yoshi2 (Yoshi2@0389-2wb1-is1z-3-i925-v522-emj3-r2t2.ipv4dyn.netcologne.de) has quit (Quit: Leaving) 2015-07-11 22:44:28 --> T3 (T3@298-257-224-48.cable.teksavvy.com) has joined #pikipedia 2015-07-11 23:20:45 Testyo same *itn 2015-07-12 00:15:58 --> Ringtailed-Fox (foxfoxfox@2001:470:1d:vrk:kqgt:zmjs:nrm:gugv) has joined #pikipedia 2015-07-12 00:18:16 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 265 seconds) 2015-07-12 00:19:30 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-12 00:19:30 --> Miles_ (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-07-12 00:19:30 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 258 seconds) 2015-07-12 00:34:49 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 00:36:54 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-07-12 00:38:26 <-- Miles_ (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 258 seconds) 2015-07-12 01:26:36 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-12 01:28:02 --> nick (Mibbit@184.65.yp.mn) has joined #pikipedia 2015-07-12 01:28:30 -- nick is now known as Guest66122 2015-07-12 01:29:34 <-- Guest66122 (Mibbit@184.65.yp.mn) has quit (Client Quit) 2015-07-12 01:33:13 -- Pidgey is now known as Pidgey|WRK 2015-07-12 02:31:22 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-12 02:31:23 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-12 02:41:33 --> Spark (sparkles@2602:306:3717:soow:ikzz:vupx:wgsg:rvhz) has joined #pikipedia 2015-07-12 02:50:23 <-- Spark (sparkles@2602:306:3717:soow:ikzz:vupx:wgsg:rvhz) has quit (Quit: Tidings.) 2015-07-12 03:48:55 --> LordofPineapples (pineapple@ejhrfiiuy.craeton.com) has joined #pikipedia 2015-07-12 04:44:01 <-- LordofPineapples (pineapple@ejhrfiiuy.craeton.com) has left #pikipedia 2015-07-12 05:50:55 -- Pidgey|WRK is now known as Pidgey 2015-07-12 06:32:09 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-07-12 08:17:55 --> Yoshi2 (Yoshi2@2001:4dd3:fcd7:j:wknq:ovsn:hiwj:xiwn) has joined #pikipedia 2015-07-12 10:21:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 10:24:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-12 10:49:27 <-- Yoshi2 (Yoshi2@2001:4dd3:fcd7:j:wknq:ovsn:hiwj:xiwn) has quit (Quit: Leaving) 2015-07-12 12:38:28 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-12 12:38:29 Testyo Greetings everyone! 2015-07-12 12:39:00 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-12 12:39:00 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-12 12:52:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 12:54:05 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-12 12:54:23 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 13:00:40 Pidgey hi 2015-07-12 13:04:13 @J hey 2015-07-12 13:05:45 @Espyo hi 2015-07-12 13:57:12 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 14:03:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 14:06:23 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-12 14:06:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 14:14:53 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 14:15:36 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 14:19:11 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-12 14:21:06 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 14:22:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-12 14:23:18 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 14:46:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 14:48:43 --> Yoshi2 (Yoshi2@2001:4dd3:fcd7:g:ghq:zgjh:xxgr:ipyv) has joined #pikipedia 2015-07-12 15:03:52 --> Spark (sparkles@2602:306:3717:soow:ikzz:vupx:wgsg:rvhz) has joined #pikipedia 2015-07-12 15:29:49 <-- Spark (sparkles@2602:306:3717:soow:ikzz:vupx:wgsg:rvhz) has quit (Quit: Tidings.) 2015-07-12 15:46:24 -- Pidgey is now known as Pidgey|away 2015-07-12 15:47:22 --> Yoshi2_ (Yoshi2@2001:4dd3:ff95:y:xyoh:zphp:symp:ssju) has joined #pikipedia 2015-07-12 15:50:21 <-- Yoshi2 (Yoshi2@2001:4dd3:fcd7:g:ghq:zgjh:xxgr:ipyv) has quit (Ping timeout: 252 seconds) 2015-07-12 16:11:32 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 16:23:47 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 16:45:13 -- Yoshi2_ is now known as Yoshi2 2015-07-12 16:50:18 -- Pidgey|away is now known as Pidgey 2015-07-12 18:06:15 Testyo [Pikipedia RC] Music (Pikmin 3) by Scruffy (+17409 Finished cutscenes.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_3)&curid=19111&diff=151739&oldid=151738 2015-07-12 18:07:59 Pidgey he's on a roll 2015-07-12 18:08:14 Yoshi2 I wish I was on a roll too 2015-07-12 18:08:26 Yoshi2 but I've been sitting here and doing nothing 2015-07-12 18:10:12 @Espyo heh 2015-07-12 18:15:15 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 18:28:09 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 18:28:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 18:29:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-12 18:30:04 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 18:42:42 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 18:46:16 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 18:46:30 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-12 18:53:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 19:14:38 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 19:19:48 Testyo you could make a are broken in the version I'm using 2015-07-12 19:20:48 @Espyo yes 2015-07-12 20:12:56 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-12 20:41:39 <-- T3 (T3@298-257-224-48.cable.teksavvy.com) has quit (Ping timeout: 248 seconds) 2015-07-12 21:01:08 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 21:07:34 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 21:10:35 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 21:15:36 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 21:22:25 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 21:22:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-12 21:23:21 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-12 21:35:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 21:48:13 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 22:20:57 <-- Yoshi2 (Yoshi2@2001:4dd3:ff95:y:xyoh:zphp:symp:ssju) has quit (Quit: Leaving) 2015-07-12 22:47:22 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-12 23:14:43 Testyo ... but please fill me in. 2015-07-12 23:16:25 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-12 23:16:47 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-12 23:16:47 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-12 23:34:44 <-- Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-12 23:44:23 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2015-07-12 23:46:50 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-13 00:10:57 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: So long everyone!) 2015-07-13 00:10:59 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-13 00:57:13 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-13 00:57:19 En_Passant dammit Espyo's not here 2015-07-13 00:57:25 En_Passant Breaking news 2015-07-13 00:57:27 En_Passant http://www.nintendo.co.jp/ir/pdf/2015/150713e.pdf 2015-07-13 00:57:32 En_Passant rip Iwata 2015-07-13 01:10:54 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-13 02:03:58 --> Pidgey (Mibbit@59-995-323-88-lr28.tbcn.telia.com) has joined #pikipedia 2015-07-13 03:42:39 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2015-07-13 04:01:28 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-13 06:34:33 --> Yoshi2 (Yoshi2@2001:4dd3:c221:g:krnr:tlhk:lxnq:zki) has joined #pikipedia 2015-07-13 06:38:42 Pidgey hi Yoshi2 2015-07-13 06:38:46 Pidgey did you get the news 2015-07-13 06:38:54 Yoshi2 hiho Pidgey 2015-07-13 06:39:00 Yoshi2 no, what news? 2015-07-13 06:39:18 Pidgey Iwata 2015-07-13 06:39:20 Pidgey is rip 2015-07-13 06:41:31 Yoshi2 WHAT 2015-07-13 06:41:33 Yoshi2 WHAT 2015-07-13 06:41:36 Pidgey yes 2015-07-13 06:41:37 Pidgey he's rip 2015-07-13 06:41:39 Yoshi2 WHAT THE FUCK 2015-07-13 06:41:53 Pidgey He died on the 11th of July. 2015-07-13 06:42:05 Pidgey http://www.nintendo.co.jp/ir/pdf/2015/150713e.pdf 2015-07-13 06:47:55 Yoshi2 well, that ruins my morning, I guess 2015-07-13 06:48:56 Pidgey it already ruined mine 2015-07-13 06:49:04 Pidgey so welcome to the club 2015-07-13 06:54:03 Yoshi2 ... I'll go make myself something to eat 2015-07-13 06:57:05 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-13 07:01:44 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Client Quit) 2015-07-13 07:33:50 Pidgey nap time 2015-07-13 07:34:01 Pidgey because I woke up at 3 2015-07-13 07:34:04 Pidgey so yay 2015-07-13 07:38:54 Yoshi2 heh, have a good sleep 2015-07-13 07:53:39 <-- Yoshi2 (Yoshi2@2001:4dd3:c221:g:krnr:tlhk:lxnq:zki) has quit (Quit: Leaving) 2015-07-13 08:32:35 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: nwehehehe) 2015-07-13 08:36:51 <-- Ringtailed-Fox (foxfoxfox@2001:470:1d:vrk:kqgt:zmjs:nrm:gugv) has quit (Ping timeout: 252 seconds) 2015-07-13 08:39:08 --> Ringtailed-Fox (foxfoxfox@2001:470:1d:vrk:kqgt:zmjs:nrm:gugv) has joined #pikipedia 2015-07-13 09:09:18 <-- Ringtailed-Fox (foxfoxfox@2001:470:1d:vrk:kqgt:zmjs:nrm:gugv) has quit (Ping timeout: 252 seconds) 2015-07-13 09:13:43 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-07-13 10:34:49 --> Yoshi2 (Yoshi2@134.61.nz.nps) has joined #pikipedia 2015-07-13 10:55:47 <-- Yoshi2 (Yoshi2@134.61.nz.nps) has quit (Quit: Leaving) 2015-07-13 13:06:42 --> Yoshi2 (Yoshi2@134.61.nz.nps) has joined #pikipedia 2015-07-13 14:00:48 <-- Yoshi2 (Yoshi2@134.61.nz.nps) has quit (Quit: Leaving) 2015-07-13 14:08:36 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit (Ping timeout: 258 seconds) 2015-07-13 15:18:05 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 265 seconds) 2015-07-13 15:19:00 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-07-13 15:48:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-13 15:48:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-13 15:49:44 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-13 16:02:49 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-13 16:08:07 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-13 16:09:51 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-07-13 16:11:30 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-13 16:49:42 --> Yoshi2 (Yoshi2@8458-8ux4-c6k3-7-5z-528f-2629-7u6s.ipv6dyn.netcologne.de) has joined #pikipedia 2015-07-13 17:20:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-13 17:55:30 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-13 18:32:56 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-13 18:42:37 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-13 18:49:10 --> T3 (T3@298-257-224-48.cable.teksavvy.com) has joined #pikipedia 2015-07-13 18:50:41 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-13 18:50:41 Testyo Hi everyone! 2015-07-13 18:51:05 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-13 18:51:06 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-13 18:52:21 Pidgey hi 2015-07-13 18:52:27 Pidgey Espyo did you get the news 2015-07-13 18:53:03 Yoshi2 hey Testyo & Espyo 2015-07-13 18:53:04 Testyo STOP DOING THINGS I CAN'T DO TELL 2015-07-13 18:57:36 @Espyo hi 2015-07-13 18:57:39 @Espyo yeah... I did 2015-07-13 18:57:51 @Espyo ugh, I hate cancer 2015-07-13 18:58:14 Yoshi2 it's such a pain 2015-07-13 18:58:14 Pidgey it's the worst 2015-07-13 19:01:40 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-13 19:01:40 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-13 19:01:49 @PikFan hi 2015-07-13 19:02:38 Pidgey hi 2015-07-13 19:04:14 Yoshi2 hey Pidgey 2015-07-13 19:04:17 Yoshi2 oops 2015-07-13 19:04:24 Yoshi2 *PikFan 2015-07-13 19:04:36 @PikFan evil tab is evil 2015-07-13 19:04:44 @Espyo hi PikFan 2015-07-13 19:05:12 @PikFan so I added an extra thing to {{f:PCW}} 2015-07-13 19:05:12 Testyo "PCW" template = http://www.pikminfanon.com/index.php?title=Template:PCW 2015-07-13 19:05:36 @PikFan it can make a category for enemies now 2015-07-13 19:05:56 @PikFan problem is, you also have to put in |nocat=y for it to work 2015-07-13 19:06:08 @PikFan otherwise, it'll have two categories, and I don't want that 2015-07-13 19:06:09 @Espyo that doesn't sound right 2015-07-13 19:06:54 @PikFan this is what I added: {{#if:{{{enemies|}}}|[[Category:Pikmin: Connection of the Worlds Enemies]]|}} 2015-07-13 19:06:54 Testyo "Category:Pikmin:_Connection_of_the_Worlds_Enemies" article = http://www.pikminwiki.com/index.php?title=Category:Pikmin:_Connection_of_the_Worlds_Enemies 2015-07-13 19:07:12 @Espyo well, that seems right 2015-07-13 19:07:18 @Espyo why would nocat be needed 2015-07-13 19:07:20 @Espyo *? 2015-07-13 19:07:52 @PikFan because if I don't have it, then Category:PCW appears along with Category:PCWEnemies 2015-07-13 19:08:06 @PikFan and I only want Category:PCWEnemies 2015-07-13 19:09:18 @Espyo the purpose of nocat is to not categorize anything 2015-07-13 19:12:54 @PikFan hm 2015-07-13 19:13:13 @PikFan well, I'm not sure what's wrong then 2015-07-13 19:13:46 @PikFan it should be {{PCW}} = Category:PCW 2015-07-13 19:13:46 Testyo "PCW" template = http://www.pikminwiki.com/index.php?title=Template:PCW 2015-07-13 19:14:00 @PikFan {{PCW|enemies}} = Category:PCWEnemies 2015-07-13 19:14:00 Testyo "PCW|enemies" template = http://www.pikminwiki.com/index.php?title=Template:PCW|enemies 2015-07-13 19:14:10 @PikFan *enemies=y 2015-07-13 19:14:23 @PikFan {{PCW|nocat=y}} = nothing 2015-07-13 19:14:23 Testyo "PCW|nocat=y" template = http://www.pikminwiki.com/index.php?title=Template:PCW|nocat=y 2015-07-13 19:16:07 @Espyo {{#if:{{{nocat|}}}||{{#if:{{{enemies|}}}|[[Category:PCWEnemies]]|[[Category:Enemies]] }} }} 2015-07-13 19:16:08 Testyo "Category:PCWEnemies" article = http://www.pikminwiki.com/index.php?title=Category:PCWEnemies 2015-07-13 19:17:55 @PikFan hmm, okay 2015-07-13 19:18:26 @PikFan Category:Enemies? 2015-07-13 19:18:36 @Espyo oops 2015-07-13 19:18:37 @Espyo PCW 2015-07-13 19:18:45 @PikFan yeah 2015-07-13 19:18:59 @PikFan speaking of categories, did you read my forum post? 2015-07-13 19:19:12 @PikFan (I haven't checked the wiki yet btw) 2015-07-13 19:19:30 @PikFan ah, so you did 2015-07-13 19:19:43 Yoshi2 silence means yes? 2015-07-13 19:20:06 @PikFan no, I said I hadn't checked the wiki yet, and I just did 2015-07-13 19:24:36 @Espyo Yoshi2: telepathy 2015-07-13 19:25:21 @PikFan Espyo, imagine Testyo talking to Cleverbot 2015-07-13 19:25:22 Testyo and we have no technology to edit that EASILY at the British version 2015-07-13 19:25:41 @Espyo I imagined 2015-07-13 19:25:43 @Espyo it's not pretty 2015-07-13 19:25:49 Yoshi2 Testyo: can you do telepathy? (y/n) 2015-07-13 19:25:49 Testyo No idea. 2015-07-13 19:25:52 Yoshi2 damnit 2015-07-13 19:26:06 @PikFan it would cause explosions 2015-07-13 19:30:45 Pidgey PikFan, did you hear the awful news? 2015-07-13 19:30:59 @PikFan yeah, Iwata died :( 2015-07-13 19:31:25 Pidgey why was it so sudden 2015-07-13 19:31:30 Pidgey I don't understand 2015-07-13 19:32:03 @PikFan I guess the tumor killed him 2015-07-13 19:32:12 Pidgey mhm 2015-07-13 19:32:30 Pidgey apparently the type of cancer he had only had a 30% survival rate 2015-07-13 19:32:37 Pidgey and that's after the first five years 2015-07-13 19:33:06 @PikFan who's going to take over...? 2015-07-13 19:33:43 @PikFan as cool as it'd be for Miyamoto to be president, I feel like that he should focus only on making games 2015-07-13 19:34:59 @Espyo hm, yeah 2015-07-13 19:35:47 @PikFan I hope that whoever takes over will make the NX do really good 2015-07-13 19:38:23 Yoshi2 according to an official document, Miyamoto and Genyo Takeda are currently the representative directors 2015-07-13 19:38:26 Yoshi2 http://www.nintendo.co.jp/ir/pdf/2015/150713e.pdf 2015-07-13 19:39:29 @J about the same age as my parents 2015-07-13 19:39:40 @Espyo same here 2015-07-13 19:39:42 @Espyo quite scary 2015-07-13 19:39:50 @Espyo plus my mum's family had a history of cancer 2015-07-13 19:40:00 @Espyo she has no symptoms, but... 2015-07-13 19:40:05 @Espyo there's always that fear 2015-07-13 19:41:03 @J I didn't know he was CEO of NoA 2015-07-13 19:41:10 @J /acronyms 2015-07-13 19:41:15 @Espyo same 2015-07-13 19:43:37 @J well, on a completely unrelated note it looks like I should be able to get fibre internet now 2015-07-13 19:44:49 Yoshi2 you should 2015-07-13 19:44:50 @Espyo good, good 2015-07-13 19:44:52 Yoshi2 but will you? 2015-07-13 19:45:05 @Espyo you need to play more online games to enjoy it though 2015-07-13 19:45:24 @J my latency's never been a problem 2015-07-13 19:45:30 @J but greater upload speed will be nice 2015-07-13 19:45:51 @J well, latency is a problem if downloads are happening, sure 2015-07-13 19:46:36 @J anyway, I'm talking with my ISP to get details 2015-07-13 19:47:13 @Espyo hm 2015-07-13 20:03:15 <-- T3 (T3@298-257-224-48.cable.teksavvy.com) has quit (Ping timeout: 248 seconds) 2015-07-13 20:04:13 @J http://arstechnica.com/gaming/2015/07/the-quotable-satoru-iwata-nintendos-late-president-in-his-own-words/ 2015-07-13 20:06:31 --> Yoshi2_ (Yoshi2@2001:4dd3:c5a8:q:qrzk:snmw:lxso:osll) has joined #pikipedia 2015-07-13 20:07:12 @Espyo good stuff 2015-07-13 20:09:51 <-- Yoshi2 (Yoshi2@8458-8ux4-c6k3-7-5z-528f-2629-7u6s.ipv6dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-13 21:08:25 <-- Yoshi2_ (Yoshi2@2001:4dd3:c5a8:q:qrzk:snmw:lxso:osll) has quit (Quit: Leaving) 2015-07-13 21:49:15 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-13 22:02:05 Testyo [Pikipedia RC] User:Scruffy by Scruffy (-555 Simplification.) http://www.pikminwiki.com/index.php?title=User:Scruffy&curid=18977&diff=151775&oldid=151034 2015-07-13 22:10:53 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-13 22:11:28 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-13 22:26:31 Testyo or comics mhm 2015-07-13 22:45:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-13 22:47:54 Testyo [Fanon RC] Template:PCW by PikFan23 (0 m Better. Thanks Espyo!) http://www.pikminfanon.com/index.php?title=Template:PCW&curid=4218&diff=48796&oldid=48793 2015-07-13 22:47:54 Testyo [Fanon RC] Dwarf Purple Bulborb by PikFan23 (-8 m There we go.) http://www.pikminfanon.com/index.php?title=Dwarf_Purple_Bulborb&curid=4418&diff=48797&oldid=48794 2015-07-13 22:48:40 @Espyo hm 2015-07-13 22:50:42 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-13 22:54:52 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-13 22:58:03 Testyo [Pikipedia RC] Notes:Blonde Impostor/bri... by PikFan23 (-1 m) http://www.pikminwiki.com/index.php?title=Notes:Blonde_Impostor/brittanyeu&curid=18537&diff=151778&oldid=147066 2015-07-13 22:58:03 Testyo [Pikipedia RC] Notes:Blonde Impostor/bri... by PikFan23 (-1 m) http://www.pikminwiki.com/index.php?title=Notes:Blonde_Impostor/brittanyus&curid=9325&diff=151779&oldid=147064 2015-07-13 22:58:04 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2015-07-13 23:01:30 @J hmm, okay, looks like my ISP is doing a trial of phone + fibre which they don't actually have available publically yet 2015-07-13 23:01:49 @J and somehow during the trial period it'll be the same cost as my current broadband 2015-07-13 23:01:53 @Espyo ...then how are they testing it? 2015-07-13 23:02:02 @Espyo oh 2015-07-13 23:02:07 @Espyo sheesh that's a harsh deal 2015-07-13 23:02:10 @J I mean, they're offering it to me now, since I contacted them to ask about stuff 2015-07-13 23:02:17 @J harsh? 2015-07-13 23:02:18 @Espyo ah, yeah 2015-07-13 23:02:23 @J upgrade to fibre for no increased cost? 2015-07-13 23:02:39 @Espyo the way you worded it 2015-07-13 23:02:46 @Espyo sounded more like you're being overcharged for a beta 2015-07-13 23:03:07 Testyo [Pikipedia RC] Notes:Heroine's Tear/brit... by PikFan23 (-1 m) http://www.pikminwiki.com/index.php?title=Notes:Heroine's_Tear/brittanyus&curid=9314&diff=151799&oldid=147096 2015-07-13 23:03:07 Testyo [Pikipedia RC] Notes:Insect Condo/britta... by PikFan23 (-1 m) http://www.pikminwiki.com/index.php?title=Notes:Insect_Condo/brittanyeu&curid=18546&diff=151800&oldid=147102 2015-07-13 23:03:07 @J not at all 2015-07-13 23:03:07 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2015-07-13 23:03:24 @Espyo well, good then 2015-07-13 23:03:25 @J well, I should ask how long the trial lasts, but it seems worth it 2015-07-13 23:03:41 @Espyo yeah 2015-07-13 23:06:10 @J also it's unmetered, unlike any of the current packages they offer 2015-07-13 23:07:05 @J though metering only applies 8am-8pm weekdays, so it wouldn't really be an issue 2015-07-13 23:07:24 @Espyo hmmm 2015-07-13 23:08:13 Testyo [Pikipedia RC] Notes:Tremendous Sniffer/... by PikFan23 (-1 m) http://www.pikminwiki.com/index.php?title=Notes:Tremendous_Sniffer/brittanyeu&curid=18559&diff=151823&oldid=147146 2015-07-13 23:08:13 Testyo [Pikipedia RC] Notes:Tremendous Sniffer/... by PikFan23 (-1 m) http://www.pikminwiki.com/index.php?title=Notes:Tremendous_Sniffer/brittanyus&curid=9322&diff=151824&oldid=147144 2015-07-13 23:08:13 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2015-07-13 23:08:40 @J well, I should be going, goodnight 2015-07-13 23:08:43 @Espyo night 2015-07-13 23:08:44 @PikFan night 2015-07-13 23:08:48 @PikFan also done 2015-07-13 23:08:48 @J speedy 2015-07-13 23:09:04 @PikFan speedy with what? 2015-07-13 23:09:09 @J the responses 2015-07-13 23:09:15 @PikFan oh 2015-07-13 23:09:30 @J you're just all sitting there waiting for me to say bye so you can start plotting when I'm gone 2015-07-13 23:10:11 @PikFan we already have 2015-07-13 23:13:17 Testyo [Pikipedia RC] Notes:Wayward Moon/britta... by PikFan23 (-1 m) http://www.pikminwiki.com/index.php?title=Notes:Wayward_Moon/brittanyus&curid=9337&diff=151828&oldid=147152 2015-07-13 23:13:18 Testyo [Pikipedia RC] Notes:Zest Bomb/brittany by PikFan23 (-1 m) http://www.pikminwiki.com/index.php?title=Notes:Zest_Bomb/brittany&curid=9302&diff=151829&oldid=141012 2015-07-13 23:47:20 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-13 23:47:24 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-13 23:47:52 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-13 23:49:09 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-13 23:49:13 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-13 23:58:13 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-13 23:58:20 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-13 23:59:54 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-14 00:01:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-14 00:02:22 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-14 00:08:07 Pidgey um 2015-07-14 00:08:08 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-14 00:08:11 Pidgey oh wait wrong chat 2015-07-14 00:08:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-14 00:09:59 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-14 00:10:21 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-14 00:24:19 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-14 00:26:18 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-14 00:28:06 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-14 00:30:09 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-14 00:31:49 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-14 00:42:16 --> T3 (T3@298-257-224-48.cable.teksavvy.com) has joined #pikipedia 2015-07-14 00:42:45 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-14 00:51:16 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-14 02:01:24 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 265 seconds) 2015-07-14 02:39:13 --> Maya (Mibbit@45-282-38-98-ztmdov.hfc.comcastbusiness.net) has joined #pikipedia 2015-07-14 02:39:41 -- Maya is now known as Guest78697 2015-07-14 02:39:57 <-- Guest78697 (Mibbit@45-282-38-98-ztmdov.hfc.comcastbusiness.net) has quit (Client Quit) 2015-07-14 03:58:58 <-- BetaMaster (BetaMaster@n-907-82-57-96.hsd9.pa.comcast.net) has quit (Quit: Signing off for the week due to vacation.) 2015-07-14 06:59:24 --> Yoshi2 (Yoshi2@0384-2st1-u191-3-47vx-626b-ixc-1b25.ipv4dyn.netcologne.de) has joined #pikipedia 2015-07-14 07:11:22 --> Yoshi2_ (Yoshi2@5389-2og1-u150-8-1829-980a-11am-5769.ipv4dyn.netcologne.de) has joined #pikipedia 2015-07-14 07:13:42 <-- Yoshi2 (Yoshi2@0384-2st1-u191-3-47vx-626b-ixc-1b25.ipv4dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-14 07:41:21 <-- Yoshi2_ (Yoshi2@5389-2og1-u150-8-1829-980a-11am-5769.ipv4dyn.netcologne.de) has quit (Quit: Leaving) 2015-07-14 10:20:24 --> Yoshi2 (Yoshi2@134.61.zu.hiw) has joined #pikipedia 2015-07-14 11:39:36 <-- Yoshi2 (Yoshi2@134.61.zu.hiw) has quit (Quit: Leaving) 2015-07-14 12:41:38 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-14 12:41:38 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-14 13:23:51 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-14 13:49:05 --> RingtailedFox (foxfoxfox@2001:470:1d:qhk:nvii:ix:iult:kqlg) has joined #pikipedia 2015-07-14 13:52:24 <-- RingtailedFox (foxfoxfox@2001:470:1d:qhk:nvii:ix:iult:kqlg) has quit (Read error: No route to host) 2015-07-14 13:53:20 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-07-14 14:51:14 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 240 seconds) 2015-07-14 15:01:17 --> Yoshi2 (Yoshi2@134.61.zu.hiw) has joined #pikipedia 2015-07-14 16:34:11 <-- Yoshi2 (Yoshi2@134.61.zu.hiw) has quit (Quit: Leaving) 2015-07-14 16:35:52 --> Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has joined #pikipedia 2015-07-14 16:35:58 <-- Waterpikmin (Mibbit@zpxk-936-86-531-74.nwrknj.fios.verizon.net) has quit (Client Quit) 2015-07-14 19:16:52 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-14 19:16:53 Testyo Greetings everyone! 2015-07-14 19:17:40 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-14 19:17:40 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-14 19:19:26 --> Yoshi2 (Yoshi2@2001:4dd3:c8a3:k:qlrz:qkjj:wstg:iuwx) has joined #pikipedia 2015-07-14 20:03:12 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2015-07-14 20:03:13 -- Mode #pikipedia [+o PikFan] by ChanServ 2015-07-14 20:03:20 @PikFan hi 2015-07-14 20:03:44 Yoshi2 good day 2015-07-14 20:04:11 @PikFan so, did you guys hear that New Horizons flew by Pluto? 2015-07-14 20:05:01 Yoshi2 I've heard around 6 hours ago that it would fly by Pluto in around 5 hours 2015-07-14 20:05:28 @PikFan it flew by Pluto over 7 hours ago 2015-07-14 20:05:39 Yoshi2 huh 2015-07-14 20:06:02 Yoshi2 so maybe the article I read was already 5 hours old when I read it 2015-07-14 20:06:17 @PikFan now they're waiting for the "phone home" 2015-07-14 20:06:28 @PikFan which will take place at around 8:30 EDT 2015-07-14 20:06:37 @PikFan ...8:30 EDT 2015-07-14 20:06:46 @PikFan 8:30 EST? 2015-07-14 20:06:47 Testyo 30 EST = 11 UTC / 13 CET 2015-07-14 20:07:06 @PikFan 8:30 pm EST 2015-07-14 20:07:12 @PikFan guh 2015-07-14 20:07:20 @PikFan well, there's other time converters 2015-07-14 20:07:54 @Espyo hi 2015-07-14 20:07:56 @Espyo I've heard 2015-07-14 20:08:02 @Espyo but I'm actually really not interested at all 2015-07-14 20:08:05 @Espyo *shrug* 2015-07-14 20:09:02 @PikFan aw, c'mon 2015-07-14 20:09:11 @PikFan it's freaking PLUTO 2015-07-14 20:09:27 @PikFan we've never seen it before 2015-07-14 20:09:38 @Espyo we can actually SEE it? 2015-07-14 20:09:45 @PikFan yes :| 2015-07-14 20:09:51 Yoshi2 we've never seen it before? 2015-07-14 20:10:13 Yoshi2 that's a bit suprising, is it so far away? 2015-07-14 20:10:17 @PikFan there was a picture taken with Hubble, but it was so... blobby 2015-07-14 20:10:29 @PikFan but now we have pretty good pictures 2015-07-14 20:10:42 Yoshi2 *we should have 2015-07-14 20:10:48 @PikFan even better pictures are on their way 2015-07-14 20:10:59 @PikFan Espyo: https://upload.wikimedia.org/wikipedia/commons/5/51/NH-Pluto-color-NewHorizons-20150713.png 2015-07-14 20:11:12 @Espyo hm 2015-07-14 20:12:34 Yoshi2 oOoO 2015-07-14 20:13:12 @Espyo what in the world 2015-07-14 20:13:17 @Espyo today I learned 2015-07-14 20:13:19 @Espyo https://www.youtube.com/watch?v=ICkWjdQuK7Q of this song 2015-07-14 20:13:37 @Espyo we have a song in Portuguese that's the exact same, and the chorus is an exact translation 2015-07-14 20:13:43 @Espyo I thought the song was exclusively ours 2015-07-14 20:13:48 @Espyo because our lyrics aren't forced or anything 2015-07-14 20:13:52 @Espyo and then suddenly I hear this 2015-07-14 20:14:11 @Espyo the actual tone of the song is different; ours is more like a girl on the beach making other bikini girls jealous 2015-07-14 20:14:20 @Espyo but damn, this shook the life out of me 2015-07-14 20:15:00 @PikFan what's the song in Portuguese? 2015-07-14 20:15:31 @Espyo well, pretty much what I described 2015-07-14 20:15:36 @Espyo unless you want a transcription you can't understand 2015-07-14 20:17:47 @PikFan should've asked a different question 2015-07-14 20:17:58 @PikFan is there a video of the Portuguese song? 2015-07-14 20:19:15 Yoshi2 for some odd reason, I want to wear a yellow polka dot bikini now 2015-07-14 20:19:20 Yoshi2 that song is way too catchy 2015-07-14 20:20:43 @Espyo hm, there might be, one sec 2015-07-14 20:20:57 @Espyo no song videoclip, probably just the song sung in a video 2015-07-14 20:21:46 @Espyo https://www.youtube.com/watch?v=ZjdbjHQVLOI there's this 2015-07-14 20:21:57 @Espyo the video itself is... 2015-07-14 20:22:00 @Espyo magically bad 2015-07-14 20:22:03 @Espyo I never saw something so poor 2015-07-14 20:22:07 @Espyo but the song is intact 2015-07-14 20:25:04 --> Shard1 (Mibbit@945-928-066-991.lightspeed.cicril.sbcglobal.net) has joined #pikipedia 2015-07-14 20:26:09 Shard1 Hello everyone 2015-07-14 20:27:41 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-14 20:29:17 @Espyo hi 2015-07-14 20:29:51 Gamefreak75 hi 2015-07-14 20:30:19 Shard1 Sad that Iwata passed away, isn't it? 2015-07-14 20:30:44 @Espyo a lot 2015-07-14 20:30:50 Yoshi2 definitely 2015-07-14 20:31:18 @PikFan yeah... 2015-07-14 20:31:48 Shard1 I actually wanted to one day meet him, but I guess that can't happen anymore 2015-07-14 20:34:03 Shard1 Are they actually discontinuing the Splatoon Amiibo? 2015-07-14 20:34:19 Yoshi2 Shard1: where did you read that? 2015-07-14 20:35:51 Shard1 I heard it from a friend 2015-07-14 20:38:18 Shard1 Luckily I got me a 3-Pack 2015-07-14 20:38:19 Yoshi2 they might discontinue the 3-pack and release the squid amiibo as a stand-alone 2015-07-14 20:38:31 Yoshi2 http://nintendo247.com/splatoon-amiibo-triple-pack-may-be-discontinued-in-japan/ 2015-07-14 20:40:39 Shard1 Any advice on beating the Water Temple? 2015-07-14 20:41:47 Yoshi2 in OoT on the N64? 2015-07-14 20:41:52 Shard1 yes 2015-07-14 20:42:08 @Espyo 1) suffer 2015-07-14 20:42:12 @Espyo I'm out of advice 2015-07-14 20:42:32 Yoshi2 ^ 2015-07-14 20:42:34 Shard1 good advice! 2015-07-14 20:43:00 Yoshi2 if you need more advice, tell us when and where you get stuck 2015-07-14 20:43:24 Yoshi2 well, also 2015-07-14 20:43:27 Shard1 I just can't find the mini-boss or any more keys 2015-07-14 20:43:42 @Espyo I think somebody asked for advice some days ago too 2015-07-14 20:43:43 Yoshi2 before changing water levels, see that you have checked everything you can do on the current level 2015-07-14 20:43:47 @Espyo I said that the temple isn't that hard 2015-07-14 20:43:53 @Espyo people just don't pay attention and are too impatient 2015-07-14 20:44:01 @PikFan it was me 2015-07-14 20:44:01 Yoshi2 yup 2015-07-14 20:44:07 Yoshi2 the temple wasn't THAT bad 2015-07-14 20:44:13 @Espyo right 2015-07-14 20:44:23 Shard1 I did check all of the levels, but I'll double check now. 2015-07-14 20:45:10 @Espyo it's been far too long for me, so I can't remember any advice 2015-07-14 20:45:11 @Espyo sorry 2015-07-14 20:45:27 Yoshi2 I think the mini boss is somewhere on the middle or top level 2015-07-14 20:45:58 @PikFan 21:43:46: if you look at the water temple with a "aaagggh this isn't streamlined, screw you Nintendo" outlook 2015-07-14 20:46:00 @PikFan 21:44:09: if you face the Water Temple as a temple you need to pay attention and explore in, it's pretty standard 2015-07-14 20:46:08 @Espyo yeah, that 2015-07-14 20:46:23 @PikFan oh, missed a part 2015-07-14 20:46:27 @PikFan but yeah 2015-07-14 20:46:36 Yoshi2 when the water level is high, check the bottom of the tower, it might contain a key or so 2015-07-14 20:46:37 Shard1 Actually, that's true. The water temple isn't that hard, you just need to payattention 2015-07-14 20:51:43 Shard1 I can't get past that one room where there's all the water currents 2015-07-14 20:53:55 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Ping timeout: 252 seconds) 2015-07-14 20:54:18 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Ping timeout: 252 seconds) 2015-07-14 20:54:54 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-14 20:54:54 Testyo Hey everyone! 2015-07-14 20:55:57 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-14 20:55:57 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-14 20:56:29 Yoshi2 and then Testyo dies 2015-07-14 20:56:30 Testyo it helpts that the UI seems to be taken straight from one of buttons 2015-07-14 21:01:49 @Espyo I just tried to rip a texture off a DS emulator 2015-07-14 21:01:54 @Espyo got blue-screened 2015-07-14 21:06:16 Yoshi2 god does not want you to do that 2015-07-14 21:06:44 Shard1 Well, my download for New Super Mario Bros finished 2015-07-14 21:18:24 <-- Shard1 (Mibbit@945-928-066-991.lightspeed.cicril.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-14 21:28:01 --> Yoshi2_ (Yoshi2@2001:4dd3:cb55:o:ywtj:ygvi:ptqp:gqoh) has joined #pikipedia 2015-07-14 21:31:09 <-- Yoshi2 (Yoshi2@2001:4dd3:c8a3:k:qlrz:qkjj:wstg:iuwx) has quit (Ping timeout: 252 seconds) 2015-07-14 21:42:07 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-14 21:42:10 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-14 21:42:16 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-14 21:42:16 Testyo Hey everyone! 2015-07-14 21:42:22 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-14 21:42:23 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-14 22:12:44 <-- Yoshi2_ (Yoshi2@2001:4dd3:cb55:o:ywtj:ygvi:ptqp:gqoh) has quit (Quit: Leaving) 2015-07-15 00:05:02 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-15 00:06:00 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-15 01:44:21 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: Leaving) 2015-07-15 01:44:41 <-- Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has quit 2015-07-15 02:23:51 --> Miles (Miles@w-18-3-19-639.hsd7.ga.comcast.net) has joined #pikipedia 2015-07-15 02:28:11 --> RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2015-07-15 04:35:53 -- Pidgey is now known as Kazooie 2015-07-15 06:09:25 <-- T3 (T3@298-257-224-48.cable.teksavvy.com) has quit (Ping timeout: 258 seconds) 2015-07-15 08:02:13 --> Yoshi2 (Yoshi2@2001:4dd3:ccaa:u:wnts:ojqu:vrhn:pwl) has joined #pikipedia 2015-07-15 08:17:11 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2015-07-15 08:19:04 --> Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has joined #pikipedia 2015-07-15 09:06:06 <-- Gamefreak75 (NewYokuba@tje-051-024-560-02.socal.res.rr.com) has quit (Quit: a) 2015-07-15 11:21:19 <-- RingtailedFox (foxfoxfox@p57-35-8-400.home.cgocable.net) has quit (Read error: Connection reset by peer) 2015-07-15 14:49:15 --> SailorHaumea (DN-boards1@156.110.pw.npo) has joined #pikipedia 2015-07-15 15:34:39 --> Yoshi2_ (Yoshi2@2001:4dd3:ce99:s:szil:pqki:rovv:ltu) has joined #pikipedia 2015-07-15 15:37:24 <-- Yoshi2 (Yoshi2@2001:4dd3:ccaa:u:wnts:ojqu:vrhn:pwl) has quit (Ping timeout: 252 seconds) 2015-07-15 15:43:58 --> HOA (Mibbit@hz77-063-661-28.hr.hr.cox.net) has joined #pikipedia 2015-07-15 15:44:25 <-- HOA (Mibbit@hz77-063-661-28.hr.hr.cox.net) has quit (Client Quit) 2015-07-15 16:19:23 <-- SailorHaumea (DN-boards1@156.110.pw.npo) has quit (Read error: Connection reset by peer) 2015-07-15 16:23:23 --> SailorHaumea (DN-boards1@156.110.pw.npo) has joined #pikipedia 2015-07-15 16:35:33 -- Yoshi2_ is now known as Yoshi2 2015-07-15 17:13:49 -- Kazooie is now known as Dragon_Kazooie 2015-07-15 17:31:43 --> Yoshi2_ (Yoshi2@9646-0iu0-wzf7-0-s470-w6ba-lg12-608.ipv1dyn.netcologne.de) has joined #pikipedia 2015-07-15 17:34:00 <-- Yoshi2 (Yoshi2@2001:4dd3:ce99:s:szil:pqki:rovv:ltu) has quit (Ping timeout: 252 seconds) 2015-07-15 17:43:45 -- Yoshi2_ is now known as Yoshi2 2015-07-15 18:43:04 --> Yoshi2_ (Yoshi2@2215-1ky3-euxw-9-r613-u0xs-vv74-965.ipv5dyn.netcologne.de) has joined #pikipedia 2015-07-15 18:46:03 <-- Yoshi2 (Yoshi2@9646-0iu0-wzf7-0-s470-w6ba-lg12-608.ipv1dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-15 18:50:16 --> Testyo (Testyo@89.152.yos.pwz) has joined #pikipedia 2015-07-15 18:50:16 Testyo Greetings everyone! 2015-07-15 18:50:56 --> Espyo (Espyo@89.152.yos.pwz) has joined #pikipedia 2015-07-15 18:50:56 -- Mode #pikipedia [+o Espyo] by ChanServ 2015-07-15 18:53:55 <-- SailorHaumea (DN-boards1@156.110.pw.npo) has quit (Ping timeout: 252 seconds) 2015-07-15 19:00:24 Testyo [Pikipedia RC] Template:News item by AeroBlaze777 (0 m) http://www.pikminwiki.com/index.php?title=Template:News_item&curid=18104&diff=151944&oldid=151943 2015-07-15 19:01:59 --> RingtailedFox (foxfoxfox@2001:470:1d:moj:mim:lxqs:xtz:wkvs) has joined #pikipedia 2015-07-15 19:02:43 --> SailorHaumea (DN-boards1@156.110.pw.npo) has joined #pikipedia 2015-07-15 19:03:02 --> AeroBlaze777 (Mibbit@ujux582-72.cloughlabs.gatech.edu) has joined #pikipedia 2015-07-15 19:03:05 AeroBlaze777 espyo 2015-07-15 19:03:26 AeroBlaze777 i added a nintendo parameter to the news item template 2015-07-15 19:03:45 AeroBlaze777 but idk the color code for gray, I tried like 3 different types 2015-07-15 19:03:55 AeroBlaze777 so when you can plz fix 2015-07-15 19:03:57 AeroBlaze777 ty fam 2015-07-15 19:03:59 <-- AeroBlaze777 (Mibbit@ujux582-72.cloughlabs.gatech.edu) has quit (Client Quit) 2015-07-15 19:05:31 Testyo [Pikipedia RC] Template:News item by AeroBlaze777 (-3) http://www.pikminwiki.com/index.php?title=Template:News_item&curid=18104&diff=151945&oldid=151944 2015-07-15 19:05:31 Testyo [Pikipedia RC] Template:News by AeroBlaze777 (+1) http://www.pikminwiki.com/index.php?title=Template:News&curid=17218&diff=151946&oldid=151766 2015-07-15 19:05:34 @Espyo hi 2015-07-15 19:05:39 @Espyo #888 2015-07-15 19:06:46 Yoshi2_ sadly, that person already left 2015-07-15 19:07:14 <-- SailorHaumea (DN-boards1@156.110.pw.npo) has quit (Ping timeout: 240 seconds) 2015-07-15 19:08:05 @Espyo oh 2015-07-15 19:08:14 @Espyo yeah, why would we even have Nintendo news? 2015-07-15 19:10:36 Testyo [Pikipedia RC] Captain Olimar by L3re7z (+37 m Bulbie is also a part of his family) http://www.pikminwiki.com/index.php?title=Captain_Olimar&curid=286&diff=151947&oldid=150406 2015-07-15 19:18:00 Yoshi2_ the idea of news is neat 2015-07-15 19:18:22 Yoshi2_ but keeping up with stuff happening requires quite a bit of dedication 2015-07-15 19:18:37 @Espyo well, if we decide to keep up with everything Nintendo, then YES, definitely 2015-07-15 19:18:46 @Espyo if not, that means we'll never use that Nintendo tag 2015-07-15 19:18:48 @Espyo so it's pointless 2015-07-15 19:18:53 @Espyo the Series tag works just fine 2015-07-15 19:20:44 Testyo [Pikipedia RC] Merchandise by CreativeSushi (+2 m /* Olimar amiibo */) http://www.pikminwiki.com/index.php?title=Merchandise&curid=833&diff=151948&oldid=151927 2015-07-15 19:20:44 Testyo [Pikipedia RC] Merchandise by CreativeSushi (0 m /* Olimar amiibo */) http://www.pikminwiki.com/index.php?title=Merchandise&curid=833&diff=151949&oldid=151948 2015-07-15 19:25:52 --> Yoshi2 (Yoshi2@2001:4dd3:cf10:y:kyvr:mznt:tntr:ini) has joined #pikipedia 2015-07-15 19:26:12 <-- Yoshi2_ (Yoshi2@2215-1ky3-euxw-9-r613-u0xs-vv74-965.ipv5dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-15 19:29:37 @J Espyo: http://www.niwanetwork.org/forums/index.php?topic=1453.msg26317 - want to pass this on to whoever manages the Pikipedia Twitter account? 2015-07-15 19:29:43 @J and Facebook, if that's still around 2015-07-15 19:30:20 @Espyo we have to try to... "reconquer" the facebook account 2015-07-15 19:30:56 @Espyo okay, I'll relay the info for Twitter 2015-07-15 19:32:09 --> Yoshi2_ (Yoshi2@2001:4dd3:cf12:s:susq:zlzx:hjlg:gyp) has joined #pikipedia 2015-07-15 19:32:56 @J fanon too, if they have any 2015-07-15 19:35:00 <-- Yoshi2 (Yoshi2@2001:4dd3:cf10:y:kyvr:mznt:tntr:ini) has quit (Ping timeout: 252 seconds) 2015-07-15 19:35:04 @Espyo I... actually don't think they do 2015-07-15 19:36:03 @Espyo yikes 2015-07-15 19:36:14 @Espyo Testyo: memo PikFan you should remove the link to wikia on the main page 2015-07-15 19:36:14 Testyo Done, I saved a memo for PikFan saying: you should remove the link to wikia on the main page. 2015-07-15 19:36:40 @Espyo yeah, I see no twitter on fanon 2015-07-15 19:37:47 Dragon_Kazooie Can't you do that? 2015-07-15 19:37:58 Dragon_Kazooie You are a Sysop, so you should be able to do it. 2015-07-15 19:38:44 @Espyo oh yeah 2015-07-15 19:38:45 @Espyo durr 2015-07-15 19:40:03 Dragon_Kazooie hurr 2015-07-15 19:40:55 Testyo [Pikipedia RC] Merchandise by CreativeSushi (+11 /* Olimar amiibo */) http://www.pikminwiki.com/index.php?title=Merchandise&curid=833&diff=151951&oldid=151950 2015-07-15 19:41:21 @Espyo http://www.pikminfanon.com/index.php?title=Template:News&action=edit fanon sure is good at being alive and not dead 2015-07-15 19:42:13 Yoshi2_ fatal error 2015-07-15 19:42:14 Dragon_Kazooie fatal error 2015-07-15 19:42:21 Dragon_Kazooie Fatal error: Call to a member function isDisabled() on a non-object in /home/pikminfa/public_html/includes/db/DatabaseError.php on line 220 2015-07-15 19:42:44 @Espyo yep... 2015-07-15 19:42:48 Dragon_Kazooie indeed 2015-07-15 19:43:52 Yoshi2_ because of stuff like that I generally assume that programs can go bad with time, similar to food 2015-07-15 19:44:28 -- Yoshi2_ is now known as Yoshi2 2015-07-15 19:45:57 Testyo [Pikipedia RC] Merchandise by CreativeSushi (+27 /* Box text */ Fixed Olimar Text) http://www.pikminwiki.com/index.php?title=Merchandise&curid=833&diff=151952&oldid=151951 2015-07-15 19:46:54 @Espyo mhm 2015-07-15 19:48:15 Dragon_Kazooie you should delete the memo 2015-07-15 19:48:24 Dragon_Kazooie can you delete the memo 2015-07-15 19:48:27 Yoshi2 on the other hand, my irc bot runs on at least 8 month old code and its uptime is only reset when the server dies or the bot is restarted because I made a hotfix 2015-07-15 19:49:07 @Espyo I can't edit 2015-07-15 19:49:11 @Espyo so might as well keep it in case I forget 2015-07-15 19:49:12 Dragon_Kazooie oh right 2015-07-15 19:49:16 @Espyo and I can delete it 2015-07-15 19:49:21 @Espyo by manually messing with the database |: 2015-07-15 19:50:48 --> SailorHaumea (DN-boards1@2602:306:8381:vwsj:qjvz:xnws:zhit:xmmz) has joined #pikipedia 2015-07-15 19:50:59 Testyo [Pikipedia RC] File:World of Nintendo Blue Pikmin.png uploaded by CreativeSushi (The World of Nintendo Jakks Pacific Blue Pikmin Figure.jpg) http://www.pikminwiki.com/index.php?title=File:World_of_Nintendo_Blue_Pikmin.png 2015-07-15 19:50:59 Testyo [Pikipedia RC] Merchandise by CreativeSushi (+178 /* Box text */ added some info for unreleased figures) http://www.pikminwiki.com/index.php?title=Merchandise&curid=833&diff=151954&oldid=151952 2015-07-15 19:51:05 --> Yoshi2_ (Yoshi2@2001:4dd3:cf1b:o:ztlw:rusy:yijr:xxi) has joined #pikipedia 2015-07-15 19:53:09 <-- Yoshi2 (Yoshi2@2001:4dd3:cf12:s:susq:zlzx:hjlg:gyp) has quit (Ping timeout: 252 seconds) 2015-07-15 20:11:08 Testyo [Pikipedia RC] Merchandise by CreativeSushi (+320 /* Jakk's Pacific Pikmin figurines */ Work in Progress) http://www.pikminwiki.com/index.php?title=Merchandise&curid=833&diff=151955&oldid=151954 2015-07-15 20:16:10 Testyo [Pikipedia RC] Merchandise by CreativeSushi (-27 /* Box text */) http://www.pikminwiki.com/index.php?title=Merchandise&curid=833&diff=151956&oldid=151955 2015-07-15 20:16:12 Testyo [Fanon RC] Template:News by Espyo (-26 Search engine optimization.) http://www.pikminfanon.com/index.php?title=Template:News&curid=1448&diff=48801&oldid=48676 2015-07-15 20:21:13 Testyo [Pikipedia RC] Merchandise by CreativeSushi (0 m /* Figures */) http://www.pikminwiki.com/index.php?title=Merchandise&curid=833&diff=151957&oldid=151956 2015-07-15 20:26:14 Testyo [Pikipedia RC] Merchandise by CreativeSushi (-125 /* Jakk's Pacific Pikmin figurines */) http://www.pikminwiki.com/index.php?title=Merchandise&curid=833&diff=151958&oldid=151957 2015-07-15 20:58:10 --> DN-boards1 (DN-boards1@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has joined #pikipedia 2015-07-15 21:01:21 <-- SailorHaumea (DN-boards1@2602:306:8381:vwsj:qjvz:xnws:zhit:xmmz) has quit (Ping timeout: 252 seconds) 2015-07-15 21:07:59 -- DN-boards1 is now known as SailorHaumea 2015-07-15 21:14:38 --> Yoshi2 (Yoshi2@6077-4lf7-sx22-1-t732-y2ad-mi05-341.ipv7dyn.netcologne.de) has joined #pikipedia 2015-07-15 21:16:45 <-- Yoshi2_ (Yoshi2@2001:4dd3:cf1b:o:ztlw:rusy:yijr:xxi) has quit (Ping timeout: 252 seconds) 2015-07-15 21:21:31 Testyo [Pikipedia RC] Music (Pikmin 3) by Scruffy (+10946 Done.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_3)&curid=19111&diff=151959&oldid=151942 2015-07-15 21:21:31 Testyo [Pikipedia RC] Music (Pikmin 3) by Scruffy (-9 m) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_3)&curid=19111&diff=151960&oldid=151959 2015-07-15 21:22:36 --> Yoshi2_ (Yoshi2@gccr-72-83-326-65.netcologne.de) has joined #pikipedia 2015-07-15 21:25:00 <-- Yoshi2 (Yoshi2@6077-4lf7-sx22-1-t732-y2ad-mi05-341.ipv7dyn.netcologne.de) has quit (Ping timeout: 252 seconds) 2015-07-15 21:25:28 Dragon_Kazooie 10000 2015-07-15 21:25:37 Dragon_Kazooie just 2015-07-15 21:25:40 Dragon_Kazooie 10000 2015-07-15 21:30:11 <-- SailorHaumea (DN-boards1@294-15-94-59.lightspeed.okcbok.sbcglobal.net) has quit (Ping timeout: 248 seconds) 2015-07-15 21:49:33 --> Yoshi2__ (Yoshi2@2001:4dd3:cf45:k:rsox:yjvk:qhmx:urv) has joined #pikipedia 2015-07-15 21:52:07 <-- Yoshi2__ (Yoshi2@2001:4dd3:cf45:k:rsox:yjvk:qhmx:urv) has quit (Client Quit) 2015-07-15 21:52:40 <-- Yoshi2_ (Yoshi2@gccr-72-83-326-65.netcologne.de) has quit (Ping timeout: 265 seconds) 2015-07-15 22:14:32 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-15 22:22:22 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-15 22:29:04 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-15 22:42:19 Testyo no separate your code be OS-dependent? 2015-07-15 22:45:06 UltraMario wut 2015-07-15 23:14:27 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-15 23:30:31 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-15 23:37:22 Testyo [Pikipedia RC] Music (Pikmin Adventure) by Scruffy (+5509 N Began areas.) http://www.pikminwiki.com/index.php?title=Music_(Pikmin_Adventure)&curid=19169&diff=151961&oldid=0 2015-07-15 23:37:39 @Espyo ooh, nice 2015-07-15 23:55:45 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-15 23:56:22 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 00:02:03 <-- Testyo (Testyo@89.152.yos.pwz) has quit (Quit: Bye everyone!) 2015-07-16 00:02:12 <-- Espyo (Espyo@89.152.yos.pwz) has quit (Quit: Leaving) 2015-07-16 00:03:14 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-16 00:03:29 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 00:04:12 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-16 00:04:53 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 00:11:33 --> En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has joined #pikipedia 2015-07-16 00:27:40 <-- En_Passant (Mibbit@25-907-904-448.hlrn.qwest.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-16 00:32:01 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-16 00:32:40 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 00:32:52 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-16 00:33:06 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 00:33:30 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-16 00:33:57 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 00:34:50 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-16 00:35:49 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 00:36:00 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-16 00:36:26 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 00:37:19 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit) 2015-07-16 00:37:41 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 00:58:48 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-16 01:03:04 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 01:10:37 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-16 01:12:11 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 01:18:06 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2015-07-16 01:18:22 --> UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has joined #pikipedia 2015-07-16 01:18:56 <-- UltraMario (Mibbit@d-75-69-344-16.hsd6.nj.comcast.net) has quit (Client Quit)