2014-04-11 21:47:38 Spark neither worked 2014-04-11 21:47:52 @Espyo same error? 2014-04-11 21:48:02 Spark yea 2014-04-11 21:48:14 @Espyo but you did remove the =true in the .cpp, right? 2014-04-11 21:48:28 Spark oh, no i didnt 2014-04-11 21:48:39 @Espyo yeah, you have to 2014-04-11 21:49:15 Spark thats weird but it worked 2014-04-11 21:49:17 Spark thanks 2014-04-11 21:49:50 @Espyo np 2014-04-11 21:49:56 @Espyo all right, no drop in framerate this time 2014-04-11 21:50:09 @Espyo I'll add the other Linux-like things and push it 2014-04-11 21:51:56 @J [21:38:56] @Espyo J: is your machine 64-bit? 2014-04-11 21:51:56 @J yeah 2014-04-11 21:52:17 @Espyo ok, so that's not why your machine takes millions of tries to find a valid spot 2014-04-11 21:52:32 @Espyo maybe mine also takes millions, but it's incredibly faster... somehow 2014-04-11 21:53:33 @J hmm 2014-04-11 21:53:45 @J well, that was 36M 2014-04-11 21:53:46 Testyo 36 m = 39.3696 yd / 118.109 ft / 1894.74 Olimar-heights / 5999.98 TRY-heights 2014-04-11 21:54:07 @Espyo 40 yards of tries... ouch 2014-04-11 21:54:08 Testyo 40 yards = 36.576 m 2014-04-11 21:54:09 @Espyo how even 2014-04-11 21:54:55 @J maybe a slower rand() implementation? 2014-04-11 21:55:02 @J you're using a different compiler, after all 2014-04-11 21:55:05 @Espyo maybe 2014-04-11 21:55:06 @Espyo yeah 2014-04-11 21:55:53 @J http://sprunge.us/FYPf 2014-04-11 21:56:55 @Espyo hmmmmm 2014-04-11 22:05:55 @J did a quick test, and rand() seems to manage about 130M calls per second 2014-04-11 22:05:56 Testyo 130 m = 142.168 yd / 426.504 ft / 6842.11 Olimar-heights / 21666.6 TRY-heights 2014-04-11 22:07:09 @Espyo hm 2014-04-11 22:07:29 @Espyo also I think I found the problem with what I had, regarding the folder lister returning a weird path to you 2014-04-11 22:07:37 @Espyo I made it so it always returns just the filename, not the fullpath 2014-04-11 22:07:54 @Espyo and I do this by finding the last backslash or forward slash, and only grabbing what's in front of that 2014-04-11 22:08:17 @Espyo the problem is that finding the last backslash is easy 2014-04-11 22:08:37 @Espyo but when it finds the last forward slash, it decides whether it's in front of the last backwards slash 2014-04-11 22:08:47 @Espyo (some paths can have both back and forward slashes) 2014-04-11 22:09:05 @Espyo the problem is, when I was comparing if the position of the forward slash was greater than the position of the backslash 2014-04-11 22:09:11 @Espyo I forgot to take into account the "not found" value 2014-04-11 22:09:27 @Espyo which is worth several billions 2014-04-11 22:09:33 @Espyo uh, 2^32 2014-04-11 22:09:48 @J what? 2014-04-11 22:10:02 @J what do you mean, the not found value is worth several billions? 2014-04-11 22:10:07 @Espyo string::npos 2014-04-11 22:10:10 @Espyo it's a reserved value 2014-04-11 22:10:24 @Espyo there has to be SOME value that represents a "not found" position 2014-04-11 22:10:32 @Espyo when you do my_string.find("abc") 2014-04-11 22:10:38 @Espyo if "abc" doesn't exist, it returns that 2014-04-11 22:10:41 @J oh 2014-04-11 22:10:46 @Espyo I know what you're thinking: why not return -1 like JS? 2014-04-11 22:10:49 @Espyo simple: it's unsigned 2014-04-11 22:10:50 @J why not NULL? 2014-04-11 22:10:55 @J uh, wait 2014-04-11 22:10:57 @J never mind 2014-04-11 22:10:57 @Espyo NULL is 0 2014-04-11 22:11:11 @J yeah, I was thinking pointers for some reason 2014-04-11 22:11:25 @J anyway 2014-04-11 22:11:29 @Espyo maybe I should go with what the manual is telling me 2014-04-11 22:11:37 @J instead of both \ and /, you should just use the system path separator 2014-04-11 22:11:44 @J should be available to you somehow 2014-04-11 22:11:58 @Espyo I mean, don't go around saving strings, but instead, use Allegro filesystem functions and variables, everywhere I go 2014-04-11 22:12:03 @Espyo but I'd have to rewirte a lot, and I don't want to 2014-04-11 22:12:09 @Espyo should it really? this is windows, remember 2014-04-11 22:12:15 @J yes, it should 2014-04-11 22:12:32 @J ...I would hope 2014-04-11 22:12:35 @Espyo the problem is, like I said, a path can have both 2014-04-11 22:12:42 @Espyo I've seen a path have \ and / 2014-04-11 22:12:52 @Espyo on windows, I mean 2014-04-11 22:13:57 @J paths can't have / on Windows filesystems, I thought 2014-04-11 22:14:13 @Espyo they can 2014-04-11 22:14:15 @J if they look like they do, that's just a library using a different convention and converting it 2014-04-11 22:14:17 @Espyo it allows both 2014-04-11 22:14:22 @J hmm 2014-04-11 22:15:46 @J no 2014-04-11 22:16:08 @J lots of Windows stuff supports /, even builtin tools 2014-04-11 22:16:17 @J but whatever tool you use should always give the same one 2014-04-11 22:16:39 @Espyo https://dl.dropboxusercontent.com/u/47921869/yup.png 2014-04-11 22:16:57 @Espyo it should, but instead of checking the system's separator, I just search both \ and / 2014-04-11 22:17:03 @Espyo plus I just tested, and it works with both 2014-04-11 22:17:07 @Espyo so stuff shouldn't break in Linux now 2014-04-11 22:17:34 @J that's not something giving you path separators, it's something interpreting both \ and / as separators, which is very different 2014-04-11 22:17:39 @Espyo also I actually fixed the deleter not being inside the while loop 2014-04-11 22:17:44 @J any tool that gives you separators should always use the same one 2014-04-11 22:17:47 @Espyo hm, true 2014-04-11 22:17:48 @J just look at the documentation 2014-04-11 22:17:53 @J if it doesn't, it's wrong in all the way 2014-04-11 22:17:54 @J s 2014-04-11 22:18:01 @Espyo yeah, I know what you mean 2014-04-11 22:18:12 @Espyo but right now, I won't over-complicate it unless I have to 2014-04-11 22:18:12 @J you should also consider the fact that Linux filenames can contain \ 2014-04-11 22:18:20 @Espyo uh, you never — 2014-04-11 22:18:21 @Espyo .................. 2014-04-11 22:18:22 @J not that they will, if you want your game to be portable 2014-04-11 22:18:34 @Espyo what about folders? 2014-04-11 22:18:44 @J a folder is a file 2014-04-11 22:18:49 @Espyo right 2014-04-11 22:18:56 @J a filename can contain any byte except null and / 2014-04-11 22:19:07 @J even new lines 2014-04-11 22:19:08 @Espyo no reserved characters? 2014-04-11 22:19:14 @Espyo like the trillions windows has? 2014-04-11 22:19:26 @J there are 3 reserved names: '', '.' and '.. 2014-04-11 22:19:27 @J ' 2014-04-11 22:19:36 @Espyo ah, at least thos 2014-04-11 22:19:37 @Espyo *those 2014-04-11 22:19:56 @Espyo I only see two there 2014-04-11 22:19:59 @Espyo . 2014-04-11 22:20:00 @Espyo .. 2014-04-11 22:20:04 @J 'see'? 2014-04-11 22:20:13 @Espyo wait 2014-04-11 22:20:18 @Espyo you mean a 0-length name is a reserved name? 2014-04-11 22:20:29 @J in that you can't create a file with an empty name 2014-04-11 22:20:34 @Espyo ah, haha 2014-04-11 22:20:35 @Espyo I get it now 2014-04-11 22:20:45 @Espyo I was having a hard time /seeing/ those tiny apostrophes 2014-04-11 22:20:51 @Espyo ...anyway... 2014-04-11 22:20:58 @Espyo I'll just hope nobody has crazy filenames 2014-04-11 22:21:18 @J if they do, you won't even be able to extract the archive on Windows 2014-04-11 22:21:31 @Espyo very true 2014-04-11 22:21:36 @J ...uh, or maybe you actually can sometimes 2014-04-11 22:21:45 @Espyo but I meant more the players, not so much the game makers 2014-04-11 22:21:46 @J it messes things up pretty badly 2014-04-11 22:21:52 @Espyo yep 2014-04-11 22:21:59 @Espyo I've seen filenames with invalid characters before 2014-04-11 22:22:02 IAMAHIPO_ocolor . 2014-04-11 22:22:04 @Espyo don't think anything broke, though... 2014-04-11 22:22:10 @Espyo I think I posted a screenie here as well 2014-04-11 22:22:11 @J because NTFS supports it, but not Windows 2014-04-11 22:22:11 @Espyo hey hipo 2014-04-11 22:22:12 @J IAMAHIPO_ocolor: hi 2014-04-11 22:22:15 IAMAHIPO_ocolor hey 2014-04-11 22:22:15 @Espyo yeah 2014-04-11 22:22:27 @Espyo anyway, if they do have an invalid character and something goes wrong, I'll point them to Error_log.txt 2014-04-11 22:22:34 @Espyo and it'll say it can't find bla bla bla 2014-04-11 22:22:39 @Espyo and I'll instantly tell them: stop being fancy 2014-04-11 22:22:50 @Espyo because c'mon, if I have to worry about fancy filenames, I'm never getting out of here 2014-04-11 22:22:52 @J yeah, once you fix stuff so it errors instead of segfaulting 2014-04-11 22:23:02 @Espyo did already 2014-04-11 22:23:03 @Espyo ...ish 2014-04-11 22:23:04 @Espyo ...no 2014-04-11 22:23:15 @Espyo yeah, why /does/ it segfault? 2014-04-11 22:23:20 @Espyo I think I have error handlers for everything 2014-04-11 22:23:25 @Espyo oh, you know what, must be my debugging code 2014-04-11 22:23:47 @Espyo I have code that, for instance, sets the first enemy type's animations to the Cloaking Burrow-nit's 2014-04-11 22:24:01 @Espyo because the CBN animations aren't in the game data folder yet, they're just test-like 2014-04-11 22:24:12 @Espyo and I don't check if the vector of enemy types has any size, I just assume because testing 2014-04-11 22:24:20 @Espyo so stuff like that is probably it segfaults 2014-04-11 22:24:33 @Espyo but yeah, I meant I now make it output errors on the file as soon as they happen 2014-04-11 22:24:46 @Espyo anyway, you never replied: do you still get the fog of war effect when you zoom out? 2014-04-11 22:24:51 @Espyo (did you reply?) 2014-04-11 22:28:33 @J I remember replying 2014-04-11 22:28:36 @J a few days ago, you mean? 2014-04-11 22:28:38 @J yes, I do 2014-04-11 22:29:45 @Espyo nuts 2014-04-11 22:29:47 @J hmm, can't even find it in my logs 2014-04-11 22:30:01 @Espyo I don't think I've ever called it that 2014-04-11 22:30:38 @Espyo I really can't think of anything 2014-04-11 22:30:43 @Espyo well, I'll just push what I have here 2014-04-11 22:30:48 @Espyo see if it runs ok in Linux, please 2014-04-11 22:38:57 @J number of errors is around about a million 2014-04-11 22:39:19 @J http://sprunge.us/FBRZ 2014-04-11 22:45:52 Testyo [Fanon RC] User talk:Peach Bulborb by Pikberry149 (+333 /* 2 min.??? */ new section) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=43993&oldid=43985 2014-04-11 22:50:38 IAMAHIPO_ocolor hey j what have you been up to? 2014-04-11 22:51:26 @J just...things and stuff 2014-04-11 22:51:31 @J wait, when did we last speak? 2014-04-11 22:51:42 IAMAHIPO_ocolor like two years ago 2014-04-11 22:51:46 @J probably before I started working 2014-04-11 22:51:51 IAMAHIPO_ocolor maybe a year 2014-04-11 22:51:52 IAMAHIPO_ocolor yeah 2014-04-11 22:51:53 @J yeah, I have a programming job 2014-04-11 22:52:02 IAMAHIPO_ocolor what do you do? 2014-04-11 22:52:30 @J struggling not to say 'programming' 2014-04-11 22:52:44 @J web backend-type stuff 2014-04-11 22:52:46 IAMAHIPO_ocolor well who do you work for 2014-04-11 22:52:51 IAMAHIPO_ocolor from home? 2014-04-11 22:52:55 @J no 2014-04-11 22:53:03 @J a company which was recently bought by HP 2014-04-11 22:53:17 @J so I technically work for HP now 2014-04-11 22:53:18 IAMAHIPO_ocolor does it feel weird to be an adult 2014-04-11 22:53:23 @J heh 2014-04-11 22:53:37 @J I guess it's not very different 2014-04-11 22:53:50 @J I mean, I already lived away from home 2014-04-11 22:53:56 IAMAHIPO_ocolor yeah 2014-04-11 22:54:01 IAMAHIPO_ocolor you drive now? 2014-04-11 22:54:09 @J hmm, no 2014-04-11 22:54:13 @J just too lazy, I guess 2014-04-11 22:54:22 IAMAHIPO_ocolor public transit ? 2014-04-11 22:54:43 @J yes, but it's not like I've really had to do anything other than walking 2014-04-11 22:54:56 @J many people here cycle, but I'm too lazy for that too 2014-04-11 22:55:06 @J I'll probably get a bike at some point, I expect 2014-04-11 22:55:09 IAMAHIPO_ocolor cycling is like 2014-04-11 22:55:21 IAMAHIPO_ocolor the opitome of being lazy 2014-04-11 22:55:37 IAMAHIPO_ocolor epitome* 2014-04-11 22:55:50 @J I don't mean actually doing it, I mean maintenance and actually buying a bike and having to know where I'll lock it up, and insurance, and all that stuff 2014-04-11 22:55:51 IAMAHIPO_ocolor you expend so little energy for work 2014-04-11 22:55:59 IAMAHIPO_ocolor insurance for a bike? 2014-04-11 22:56:14 @J ...maybe? It's not like I've looked into it 2014-04-11 22:56:24 @J yeah, I don't see why not - they get stolen 2014-04-11 22:56:30 @J and can be expensive 2014-04-11 22:56:38 IAMAHIPO_ocolor well they cost like $50 2014-04-11 22:56:38 Testyo $ 50 = 36.86 € / £ 31.525 2014-04-11 22:56:46 IAMAHIPO_ocolor for a decent old road bike 2014-04-11 22:56:54 IAMAHIPO_ocolor anyways 2014-04-11 22:56:59 IAMAHIPO_ocolor you still doing games? 2014-04-11 22:57:37 @J kind of 2014-04-11 22:57:47 @J not as much as I would like, but I still want to 2014-04-11 22:57:59 @J I went to a local indie meetup a few times 2014-04-11 22:58:30 @J Stephen Lavelle and Terry Cavanagh moved away from here fairly recently 2014-04-11 22:58:46 IAMAHIPO_ocolor who are they 2014-04-11 22:59:02 @J Terry Cavanagh made VVVVVV and Super Hexagon and lots of other stuff 2014-04-11 22:59:37 @J Stephen Lavelle made English Country Tune 2014-04-11 23:00:21 IAMAHIPO_ocolor have you watched indie game the movie? 2014-04-11 23:00:43 @J yeah, a while back 2014-04-11 23:01:20 IAMAHIPO_ocolor i still think you should polish up world view of a slime and release it on new grounds or something 2014-04-11 23:01:30 IAMAHIPO_ocolor its a really fun core game mechanic 2014-04-11 23:01:39 IAMAHIPO_ocolor and original 2014-04-11 23:02:22 @J Newgrounds is for Flash games 2014-04-11 23:02:46 IAMAHIPO_ocolor well whatever game site that would accept it 2014-04-11 23:03:00 @J yeah, I get what you're saying 2014-04-11 23:03:03 IAMAHIPO_ocolor whichevevr* 2014-04-11 23:03:21 IAMAHIPO_ocolor have you tried spelunky? 2014-04-11 23:03:38 @J no, but it's on the list of games I'll probably play some day 2014-04-11 23:03:53 IAMAHIPO_ocolor you still dont play many games? 2014-04-11 23:04:19 @J it's more like I'm just a few years behind 2014-04-11 23:05:54 @Espyo there's a free version of Spelunky 2014-04-11 23:06:20 @J meh, if I played it I'd buy it anyway 2014-04-11 23:06:22 IAMAHIPO_ocolor its difficult to play without a controller 2014-04-11 23:06:51 @J yeah, looks like it 2014-04-11 23:07:25 --> Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has joined #pikipedia 2014-04-11 23:07:40 @Espyo all right, now to fix these errors... 2014-04-11 23:07:41 @Espyo boy... 2014-04-11 23:07:49 @J yeah, they don't look like fun ones 2014-04-11 23:09:22 @Espyo oh come /on/... 2014-04-11 23:09:22 @Espyo FINE 2014-04-11 23:09:26 @Espyo I'll make two bleeding files 2014-04-11 23:16:00 Testyo [Fanon RC] User talk:Whitepik by Pikberry149 (+131 /* Hello! */ new section) http://www.pikminfanon.com/index.php?title=User_talk:Whitepik&curid=8706&diff=43994&oldid=43891 2014-04-11 23:16:00 Testyo [Fanon RC] User talk:Whitepik by Pikberry149 (+82) http://www.pikminfanon.com/index.php?title=User_talk:Whitepik&curid=8706&diff=43995&oldid=43994 2014-04-11 23:31:04 Testyo [Fanon RC] User:Pikberry149 by Pikberry149 (+459) http://www.pikminfanon.com/index.php?title=User:Pikberry149&curid=8705&diff=43996&oldid=43984 2014-04-11 23:36:08 Testyo [Fanon RC] User:Pikberry149 by Pikberry149 (-10 m) http://www.pikminfanon.com/index.php?title=User:Pikberry149&curid=8705&diff=43997&oldid=43996 2014-04-11 23:36:08 Testyo [Fanon RC] User:Pikberry149 by Pikberry149 (-5 m) http://www.pikminfanon.com/index.php?title=User:Pikberry149&curid=8705&diff=43998&oldid=43997 2014-04-11 23:40:30 @Espyo I think half of the mess is me not specifying what a string is 2014-04-11 23:40:37 @Espyo and it giving over 100 errors that don't explain a thing 2014-04-11 23:40:45 @Espyo nope 2014-04-11 23:42:18 @J I can give gcc output too in case it's more useful 2014-04-11 23:42:46 @Espyo not really 2014-04-11 23:42:52 @Espyo clang's is... bloated 2014-04-11 23:42:54 @Espyo but... useful 2014-04-11 23:43:17 @Espyo wait, I think I got it 2014-04-11 23:43:29 @Espyo I mean, I know what Clang's problem is 2014-04-11 23:44:14 @Espyo in retrospect, I think I could've just moved animation_set to the bottom 2014-04-11 23:44:22 @Espyo but meh, I split the .h and .cpp now 2014-04-11 23:44:28 @Espyo should help for the future anyway, maybe 2014-04-11 23:44:37 @Espyo either way, Clang can't complain now 2014-04-11 23:44:40 @Espyo let's see, what else... 2014-04-11 23:45:00 @Espyo I can barely read the rest 2014-04-11 23:45:02 @Espyo err... 2014-04-11 23:45:44 @Espyo https://dl.dropboxusercontent.com/u/47921869/animation.zip please place these in the source folder 2014-04-11 23:46:54 @J hah, I didn't have unzip installed yet 2014-04-11 23:48:02 @Espyo how even 2014-04-11 23:54:10 IAMAHIPO_ocolor what is this project youre working on 2014-04-11 23:54:18 @J struggling to track the segfaults... 2014-04-11 23:55:15 IAMAHIPO_ocolor of 2014-04-11 23:55:56 @J *was letting Espyo answer* 2014-04-11 23:56:06 @J a game engine thing for making Pikmin games 2014-04-11 23:56:24 @J by Espyo, that is 2014-04-11 23:57:00 @Espyo still segfaulting...? 2014-04-11 23:57:12 @J there's one in do_logic() 2014-04-11 23:58:49 @J also, this line is 200 characters long 2014-04-11 23:58:52 @J I'm ashamed 2014-04-11 23:59:01 @J (of you) 2014-04-11 23:59:38 @Espyo I don't segment them as much as I do 2014-04-11 23:59:51 @Espyo now now, don't look at me like this is one of my crazy programming standards 2014-04-11 23:59:59 @Espyo a) my standards are excellent 2014-04-12 00:00:03 @Espyo b) I'm just lazy to split lines 2014-04-12 00:00:08 @J [23:59:38] @Espyo I don't segment them as much as I do 2014-04-12 00:00:11 @Espyo do_logic is massive, btw 2014-04-12 00:00:11 @J what does this even mean 2014-04-12 00:00:14 @J I know 2014-04-12 00:00:16 @Espyo *I should 2014-04-12 00:00:20 @J also it's a header file 2014-04-12 00:00:27 @J which means it won't recompile properly 2014-04-12 00:00:33 @Espyo how so? 2014-04-12 00:00:42 @Espyo (also I'm Skyping, so that explains my weirdglish) 2014-04-12 00:00:49 @J because the objects built correspond to cpp files 2014-04-12 00:01:00 @Espyo well, yeah 2014-04-12 00:01:16 @J they only get rebuilt when the corresponding cpp file changes 2014-04-12 00:01:23 @Espyo it's just that having a .h that just contains "void do_logic()" and having a .cpp with the function is pretty crap 2014-04-12 00:01:35 @Espyo works fine in VS though 2014-04-12 00:01:53 @J hmm, well, I don't think it should 2014-04-12 00:02:49 @J okay, this function 2014-04-12 00:02:51 @J wow 2014-04-12 00:10:16 @Espyo don't scare me 2014-04-12 00:11:24 @J hitbox_instance* closest_hitbox = get_closest_hitbox(pik_ptr->x, pik_ptr->y, mob_ptr); 2014-04-12 00:11:39 @J the 'wow' was at its crazy length and number of branches 2014-04-12 00:11:47 @J so yeah, that line segfaults 2014-04-12 00:11:51 @J for the second mob 2014-04-12 00:12:03 @J of 76 2014-04-12 00:12:35 @Espyo ... 2014-04-12 00:12:42 @Espyo the second mob would be a pikmin 2014-04-12 00:13:07 @Espyo wait 2014-04-12 00:13:15 @Espyo the second mob for that Pikmin? 2014-04-12 00:13:31 @J yeah 2014-04-12 00:13:42 @J first Pikmin 2014-04-12 00:15:45 @Espyo and it crashes in that line yes? 2014-04-12 00:15:51 @J caused by f->hitbox_instances.size() 2014-04-12 00:15:57 @Espyo and not inside the function that's in that— 2014-04-12 00:16:01 @Espyo it's not opening the file, probably 2014-04-12 00:16:11 @Espyo f must be NULL 2014-04-12 00:16:28 @J which file? 2014-04-12 00:17:00 @Espyo Test.txt 2014-04-12 00:17:01 @Espyo root 2014-04-12 00:18:17 @Espyo ...it shouldn't crash, though 2014-04-12 00:18:28 @J where is it trying to load it? 2014-04-12 00:18:34 @Espyo the root of the game 2014-04-12 00:18:43 @Espyo but yeah, I tried removing the file 2014-04-12 00:18:52 @Espyo worst that can happen is the CBN not appearing 2014-04-12 00:18:56 @Espyo the game didn't crash for me 2014-04-12 00:20:37 @Espyo mob_event.cpp, line 80 2014-04-12 00:20:47 @Espyo it's the only place where an animation instance is created 2014-04-12 00:21:00 @Espyo and the only place where the anim member is set, in an animation instance 2014-04-12 00:21:08 @Espyo so the only place in which this can be null 2014-04-12 00:21:21 @Espyo which is one of the only two ways that f can be null, and cause the segfault 2014-04-12 00:22:56 @Espyo simpler: add a cout after line 778 2014-04-12 00:23:02 @Espyo if(!f) cout << "NOPE" 2014-04-12 00:23:17 @Espyo and if you get a nope, well... 2014-04-12 00:24:53 @J yeah, anim is falsy in get_frame() 2014-04-12 00:25:04 @J I guess that means null 2014-04-12 00:25:43 @Espyo ...pfft, falsy? 2014-04-12 00:26:23 @Espyo well, it can only return null things if it really can't read the animation 2014-04-12 00:26:31 @Espyo tell you what, what if you start the engine with an argument? 2014-04-12 00:26:34 @Espyo any argument 2014-04-12 00:26:38 @Espyo this makes the animation editor load 2014-04-12 00:26:58 @Espyo the main menu straight away tells you the number of animations, frames and hitboxes in Test.txt, the animation file for the CBN 2014-04-12 00:27:10 @Espyo if it says 0 everywhere... must be a problem with file loading 2014-04-12 00:27:29 @Espyo although it's using the exact same method as the options file... 2014-04-12 00:27:42 <-- Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 00:28:33 @J it's fine 2014-04-12 00:28:37 @J 8 29 4 2014-04-12 00:29:37 @Espyo bleh 2014-04-12 00:30:44 @Espyo after line 244 of main.cpp, what if you cout enemy_types->begin()->second->anim.animations.size() ? 2014-04-12 00:30:55 @Espyo you should get an 8... 2014-04-12 00:31:04 @Espyo I didn't want to have to ask so many questions, dammit 2014-04-12 00:31:18 @Espyo it's just that, remember last time we tried having this work in a VM here? didn't work 2014-04-12 00:31:21 @Espyo can't remember why 2014-04-12 00:31:27 @Espyo gonna try again either way 2014-04-12 00:31:47 --> Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has joined #pikipedia 2014-04-12 00:32:46 @J wait, 'second'? 2014-04-12 00:34:13 @J okay, I messed something up... 2014-04-12 00:35:22 @Espyo yeah, second 2014-04-12 00:35:37 @Espyo an iterator of a map has a first and a second member 2014-04-12 00:35:44 @Espyo better known as key and value 2014-04-12 00:35:48 @Espyo why didn't they call them that? 2014-04-12 00:35:51 @Espyo ...very good question 2014-04-12 00:36:11 @J I get 8 there 2014-04-12 00:36:24 @Espyo gaaaah 2014-04-12 00:37:30 @Espyo but wait, you only sigsev if you get a Pikmin close to the CBN, right? 2014-04-12 00:37:56 @J wha? 2014-04-12 00:38:01 @J it segfaults on startup 2014-04-12 00:38:04 @J first frame 2014-04-12 00:38:05 @Espyo how!? 2014-04-12 00:38:15 @J the magic of C++ 2014-04-12 00:38:25 @Espyo get_closest_hitbox is only called if a Pikmin is within range of the CBN 2014-04-12 00:38:32 @Espyo within "task" range 2014-04-12 00:38:38 @J hmm, okay 2014-04-12 00:38:50 @Espyo so how in the world... 2014-04-12 00:38:56 @J how do I check what type a mob is? 2014-04-12 00:39:02 @J or something about it - co-ordinates, etc. 2014-04-12 00:39:16 @Espyo mob.x, mob.y are the coordinates 2014-04-12 00:39:37 @Espyo for the type... you'd have to do something like if(typeid(*mob_ptr) == typeid(enemy)) 2014-04-12 00:39:50 @Espyo mob_ptr being a pointer to the mob, and enemy being enemy, pikmin, pellet, ... 2014-04-12 00:39:59 @J it's at (0, 0) 2014-04-12 00:40:05 @Espyo the CBN? 2014-04-12 00:40:10 @J whatever this mob is 2014-04-12 00:40:21 @Espyo must be Olimar 2014-04-12 00:40:28 @Espyo leader{ coords = 0 0 type = Olimar } 2014-04-12 00:40:36 @Espyo Game_data/Areas/test.txt 2014-04-12 00:40:39 @Espyo yeah, that's Olimar 2014-04-12 00:41:24 @Espyo ...great, if I install VBox now, it'll throw the Skype call down 2014-04-12 00:41:34 @Espyo might as well download a distro during this time 2014-04-12 00:41:42 @Espyo ...any distro'd work, right? 2014-04-12 00:41:43 @J why is it saying Pikmin should attack Olimar? 2014-04-12 00:41:51 @J ...who knows 2014-04-12 00:41:52 @Espyo ...wha 2014-04-12 00:41:54 @J you need Allegro 5 2014-04-12 00:41:59 @J (right?) 2014-04-12 00:42:09 @Espyo that I do, but you got your version of Allegro 5 from... 2014-04-12 00:42:14 @Espyo err, from that command line thing 2014-04-12 00:42:19 @Espyo uh, tired to remember it 2014-04-12 00:42:24 @Espyo apt-install get 2014-04-12 00:42:35 @Espyo and yeah, nothing nowhere tells Pikmin to attack Olimar 2014-04-12 00:42:39 @J yeah, but other distros might ship old versions 2014-04-12 00:42:51 @J you used Ubuntu before, looks like 13.04 or later has 5 2014-04-12 00:43:18 @Espyo this isn't my dream today, where I dreamed I was playing Pikmin 3, and 2000+ Pikmin were carrying Olimar (what), and they tripped on an edge, took fall damage (what), and 1700 of them died 2014-04-12 00:43:19 @J well, should_attack() returns true for this mob at (0, 0) 2014-04-12 00:43:27 @Espyo uh 2014-04-12 00:43:31 @Espyo that doesn't sound right 2014-04-12 00:43:43 @Espyo oh, uh 2014-04-12 00:43:46 @Espyo that does sound right 2014-04-12 00:43:51 @Espyo I think Olimar's "team" might be undefined 2014-04-12 00:44:05 @Espyo in fact, I don't even know how should_attack() is even /working/ 2014-04-12 00:44:13 @Espyo seeing as I don't remember setting "teams" anywhere 2014-04-12 00:44:51 @Espyo but yeah, aren't the Allegro 5 libraries downloaded from whatever package servers the distro has? 2014-04-12 00:44:59 @Espyo pretty sure most distros would share servers 2014-04-12 00:45:32 @J so you only load an animation for a single mob? 2014-04-12 00:45:43 @J and if anything else tries to animate it'll crash? 2014-04-12 00:45:51 @J [00:44:59] @Espyo pretty sure most distros would share servers 2014-04-12 00:45:54 @J very much not true 2014-04-12 00:46:00 @Espyo nothing else animates 2014-04-12 00:46:05 @Espyo really? huh 2014-04-12 00:46:08 @J okay 2014-04-12 00:46:32 @J so, many are based on other distros, which often means they share packages 2014-04-12 00:46:41 @Espyo right 2014-04-12 00:46:44 @J but they might also have their own repositories on top of the parent distro 2014-04-12 00:47:04 @J and there are still many different package formats 2014-04-12 00:47:06 @Espyo but shouldn't it be possible to fetch packages from repositories that "belong" to other distros? 2014-04-12 00:47:11 @Espyo ... 2014-04-12 00:47:52 @J and you can't just install a random package, even if it's in the right format, because it will have versioned dependencies 2014-04-12 00:48:16 @Espyo yeah, I know that much, but... 2014-04-12 00:48:16 @J on Windows, programs just bundle libraries with them, which is why they're so big 2014-04-12 00:48:21 @Espyo yeah 2014-04-12 00:49:18 @J also, Pikmin 'should attack' whatever's at (-100, 100) 2014-04-12 00:49:37 @Espyo the ship 2014-04-12 00:49:51 @Espyo yeah, pretty sure pretty much nothing has a team set 2014-04-12 00:49:55 @Espyo so it must default to teamless 2014-04-12 00:50:03 @Espyo which means it can attack anything and be attacked by anything 2014-04-12 00:50:28 @Espyo it /shouldn't/ default to 0, because I never set the default value 2014-04-12 00:50:31 @Espyo = bad thing to do 2014-04-12 00:50:35 @Espyo garbage values are horrible things 2014-04-12 00:51:45 @J the Pikmin apparently has no team 2014-04-12 00:51:57 @Espyo that's also bad 2014-04-12 00:52:09 @J okay 2014-04-12 00:52:15 @Espyo yeah, only enemies have their team set 2014-04-12 00:52:17 @J so VS's compiler is just setting things to 0/ 2014-04-12 00:52:18 @J *? 2014-04-12 00:52:21 @Espyo guess that's enough for should_attack() to work 2014-04-12 00:52:28 @Espyo uhhhhh... it should, actually 2014-04-12 00:52:41 @Espyo you know, it really should 2014-04-12 00:52:43 @Espyo what if this explains everything 2014-04-12 00:52:59 @J except that if the Pikmin has no team, it attacks everything 2014-04-12 00:53:02 @J so it attacks captains 2014-04-12 00:53:10 @J which requires them to have hitboxes 2014-04-12 00:53:14 @J which requires them to have animations 2014-04-12 00:53:15 @Espyo yes, yes... 2014-04-12 00:53:35 @Espyo sigsev 2014-04-12 00:53:38 @Espyo oh yeah 2014-04-12 00:53:46 @Espyo well, "Unhandled exception at 0x010986e9 in Pikmin_fangame_engine.exe: 0xC0000005: Access violation reading location 0x00000070." 2014-04-12 00:53:52 @J where //ToDo removeish. 2014-04-12 00:53:53 @J nice 2014-04-12 00:53:56 @Espyo I can't believe how off the wall this solution is 2014-04-12 00:54:07 @J wait, you made it happen? 2014-04-12 00:54:08 @Espyo hey, enemies are meant to have the "none" team 2014-04-12 00:54:12 @Espyo I made it happen 2014-04-12 00:54:17 @J how? 2014-04-12 00:54:21 @Espyo forced all mobs to have a "none" team 2014-04-12 00:54:29 @J where is it set? 2014-04-12 00:54:32 @Espyo which makes Pikmin attack everything, which... yeah 2014-04-12 00:54:37 @Espyo I just set it in the constructor of mob 2014-04-12 00:54:42 @Espyo type = MOB_TYPE_NONE; 2014-04-12 00:55:08 @Espyo ........ 2014-04-12 00:55:13 @Espyo MOB_TYPE_NONE is 0 2014-04-12 00:55:27 @Espyo maybe this crash is something else? 2014-04-12 00:55:51 @Espyo nope, it's the same problem 2014-04-12 00:55:53 @Espyo then... 2014-04-12 00:56:08 @Espyo oh yeah, second mob 2014-04-12 00:56:35 @Espyo but... 2014-04-12 00:56:41 @Espyo wait, AM I setting the team somewhere? 2014-04-12 00:56:49 @J hmm 2014-04-12 00:57:02 @J maybe VS initialises to 5 or something 2014-04-12 00:57:09 @Espyo pfft 2014-04-12 00:57:12 @Espyo could be, really 2014-04-12 00:57:34 @Espyo 205 2014-04-12 00:57:40 @Espyo huh, it's set to garbage values 2014-04-12 00:58:38 @Espyo ok, I don't really know what determines whether VS zeroes structures out or not 2014-04-12 00:58:44 @Espyo maybe only pointers...? 2014-04-12 00:58:46 @Espyo dunno 2014-04-12 01:00:01 @Espyo all right, this should be enough 2014-04-12 01:00:06 @J ah, just realised I wasn't building in parallel this whole time 2014-04-12 01:00:29 @Espyo hmm? multi-threaded? 2014-04-12 01:00:35 @J yeah, I have garbage too, but it determines that that means no team 2014-04-12 01:00:36 @Espyo also, this means Clang was zeroing the structures 2014-04-12 01:00:40 @J nope 2014-04-12 01:02:05 @Espyo yeah, just had to check if stuff was null in three places, and boom, no more crash 2014-04-12 01:02:21 @Espyo functions.cpp, 778 2014-04-12 01:02:21 @Espyo if(!f) return NULL; 2014-04-12 01:02:37 @Espyo (after 778) 2014-04-12 01:02:43 @Espyo logic.h, 397 2014-04-12 01:02:44 @J ...you should still make sure the team is initialised 2014-04-12 01:02:48 @Espyo if(!closest_hitbox) continue; 2014-04-12 01:03:00 @Espyo logic.h, 357 2014-04-12 01:03:01 @Espyo if(!closest_hitbox) continue; 2014-04-12 01:03:06 @Espyo oh that too 2014-04-12 01:03:21 @Espyo mob.cpp, 26 2014-04-12 01:03:22 @Espyo team = MOB_TEAM_NONE; 2014-04-12 01:03:26 @Espyo that should be enough 2014-04-12 01:03:34 @Espyo it can't crash now... right?... 2014-04-12 01:03:43 <-- Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 01:05:36 @J [01:00:29] @Espyo hmm? multi-threaded? 2014-04-12 01:05:40 @J processes, I think 2014-04-12 01:05:45 @Espyo or that 2014-04-12 01:06:00 @J just added -j8 and suddenly 6x faster or so 2014-04-12 01:06:18 @J okay, it works, and no lag on whistle 2014-04-12 01:06:34 @Espyo woah 2014-04-12 01:06:38 @Espyo ah, phew 2014-04-12 01:06:42 @Espyo can you kill the CBN? 2014-04-12 01:06:50 @J I like how height and width are separated in options 2014-04-12 01:06:52 @Espyo should be just like in the Pikmin games, so no notes here 2014-04-12 01:07:02 @Espyo you can have a super tall window 2014-04-12 01:07:05 @Espyo game doesn't care 2014-04-12 01:07:31 @Espyo also hey, it shouldn't matter, but if you edit window_x and window_y to something like 0 and 0, does the window move? 2014-04-12 01:07:49 @Espyo it matters for PikFan — for some reason it loads the window SEVERAL pixels to the right and bottom of the screen 2014-04-12 01:08:47 @J not sure what you're talking about, but I mean that the options in the file are not next to each other 2014-04-12 01:09:05 @Espyo alphabetical 2014-04-12 01:09:18 @J seems like you fixed that weird issue I had where Pikmin were thrown random distances at exactly 20FPS 2014-04-12 01:09:42 @J yeah, alphabetical by section 2014-04-12 01:09:46 @J but sections are kind of random 2014-04-12 01:10:06 @Espyo dunno what I did, but hurray 2014-04-12 01:10:08 @J window_x=2147483647 2014-04-12 01:10:10 @J what 2014-04-12 01:10:30 @Espyo https://www.allegro.cc/manual/5/al_set_new_window_position To reset to the default behaviour, pass (INT_MAX, INT_MAX). 2014-04-12 01:10:49 @Espyo hey, not gonna fight fate 2014-04-12 01:10:55 @Espyo 2147483647, so be it 2014-04-12 01:11:48 @Espyo but the zoom out glitch still happens, huh 2014-04-12 01:12:05 @Espyo I think you answer before, but both if you press C and use the mouse wheel, right? 2014-04-12 01:12:27 @J yes, I killed the Burrow-nit 2014-04-12 01:12:45 @Espyo good, no crashes 2014-04-12 01:12:47 @Espyo ...right 2014-04-12 01:12:53 @J yep, it's fine 2014-04-12 01:13:02 @J also, I was experiencing random segfaults before, but they seem to be gone 2014-04-12 01:13:09 @J might've been related to the mob type stuff 2014-04-12 01:13:12 @J team 2014-04-12 01:13:20 @Espyo yeah 2014-04-12 01:13:29 @Espyo I should try to search for more uninitialized members 2014-04-12 01:13:33 @J yes, zoom glitch with both methods 2014-04-12 01:13:48 @Espyo heck, I wonder why no compiler warns me about them 2014-04-12 01:14:02 @J little bit sad there's a zoom limit 2014-04-12 01:14:46 @Espyo const.h line 62 2014-04-12 01:14:53 @J and movement is still a little off (hold a and d and Olimar moves, probably shouldn't) 2014-04-12 01:14:57 @Espyo it'll probably underflow past 0 2014-04-12 01:15:10 @Espyo huh, what do you mean? 2014-04-12 01:15:29 @Espyo oh, *A* and D 2014-04-12 01:15:38 @Espyo yeah, I really have to make it better 2014-04-12 01:16:29 @J zoom level seems to do nothing 2014-04-12 01:16:40 @Espyo hey, so wait, your Pikmin aren't dying any more, are they? 2014-04-12 01:16:43 @J wait, did I want min or max? 2014-04-12 01:16:48 @J no, they're not 2014-04-12 01:16:48 @Espyo min 2014-04-12 01:16:53 @Espyo they're constants, they're the limits 2014-04-12 01:16:57 @Espyo set it to like 0 2014-04-12 01:17:01 @Espyo oh, HAH! 2014-04-12 01:17:03 @J I did 2014-04-12 01:17:09 @Espyo I think the Pikmin were killing each other off 2014-04-12 01:17:14 @Espyo they were teamless 2014-04-12 01:17:15 @J nope, looks like I wanted max 2014-04-12 01:17:21 @J wonderful 2014-04-12 01:17:23 @J same bug 2014-04-12 01:17:26 @Espyo and back then, you didn't need hitboxes! 2014-04-12 01:17:30 @Espyo haha this is great 2014-04-12 01:18:02 @Espyo controls.cpp, after line 19, add cam_zoom = 0.6; 2014-04-12 01:18:07 @Espyo then press T in-game 2014-04-12 01:18:11 @Espyo see if you still get the fade out 2014-04-12 01:18:17 @Espyo and I better start pointing these results down 2014-04-12 01:18:22 @Espyo 'cause this looks like a bug that's here to stay 2014-04-12 01:18:35 @J can I pluck? 2014-04-12 01:18:49 @Espyo cllick 2014-04-12 01:18:51 @Espyo *click 2014-04-12 01:19:05 @Espyo and yes, that's also a thing 2014-04-12 01:19:12 @Espyo yes, also with other leaders in your party 2014-04-12 01:20:25 @J okay, when Pikmin start attacking something they teleport? 2014-04-12 01:20:37 @Espyo if you C-stick them, I think they do 2014-04-12 01:21:00 @Espyo ok, they shouldnt 2014-04-12 01:21:02 @Espyo *shouldn't 2014-04-12 01:21:26 @J throwing them 2014-04-12 01:21:33 @J as they land, they teleport to the enemy 2014-04-12 01:21:37 @J or move _really_ fast 2014-04-12 01:21:38 @Espyo something = CBN, right? 2014-04-12 01:22:06 @Espyo well, if I throw them near the CBN, they move to attack it 2014-04-12 01:22:09 @Espyo but no faster than normal 2014-04-12 01:22:27 @J yeah 2014-04-12 01:22:32 @J hmm 2014-04-12 01:22:47 @Espyo you're probably throwing a flower Pikmin 2014-04-12 01:22:59 @J the thing didn't fix camera zooming thing 2014-04-12 01:23:13 @Espyo pressing T? 2014-04-12 01:23:27 @J yeah 2014-04-12 01:23:32 @J looks like they're all leaf to me 2014-04-12 01:23:32 @Espyo all right 2014-04-12 01:23:34 @J I'll record it 2014-04-12 01:23:35 @Espyo *noting* 2014-04-12 01:23:42 @Espyo you can zoom in to check 2014-04-12 01:23:47 @Espyo there's only like two flower Pikmin 2014-04-12 01:23:50 @Espyo a Red and a Yellow 2014-04-12 01:23:58 @Espyo /pretty/ sure a Blue should be flower too, but... 2014-04-12 01:23:59 IAMAHIPO_ocolor ok so fuck spelunky 2014-04-12 01:24:27 IAMAHIPO_ocolor whats this engine you're working on 2014-04-12 01:24:49 @Espyo an engine to make Pikmin fan games 2014-04-12 01:25:06 IAMAHIPO_ocolor whats it like? 2014-04-12 01:25:12 IAMAHIPO_ocolor 2d?\ 2014-04-12 01:25:17 @Espyo top-down view, yeah 2014-04-12 01:25:26 @Espyo you can try it now, there's a playable alpha 2014-04-12 01:25:42 IAMAHIPO_ocolor linky? 2014-04-12 01:26:06 @Espyo https://dl.dropboxusercontent.com/u/47921869/Permanent/PFE/PFE%20Alpha%203.zip 2014-04-12 01:26:11 @Espyo should run straight away 2014-04-12 01:26:24 @Espyo it's a bit outdated, like, I don't think you can kill the Cloaking Burrow-nit there 2014-04-12 01:26:33 @Espyo me and J are using a more outdated version, but I haven't made a Windows build out of it 2014-04-12 01:27:06 @J *up-to-date 2014-04-12 01:27:15 Spark i need to get a book on opengl 2014-04-12 01:27:19 IAMAHIPO_ocolor this is really neat 2014-04-12 01:27:34 @Espyo oops 2014-04-12 01:27:38 @Espyo thanks 2014-04-12 01:27:47 Spark then i can make 3d version an everyone will be impressed and ill be cooler than espy =d 2014-04-12 01:27:47 @Espyo Spark: internet 2014-04-12 01:27:53 @Espyo you sure would 2014-04-12 01:27:55 IAMAHIPO_ocolor you are the lead designer? 2014-04-12 01:27:58 @Espyo given how much harder it is 2014-04-12 01:28:01 @Espyo right now I'm the lead everything 2014-04-12 01:28:03 @J oh yeah, shadows look good 2014-04-12 01:28:07 @Espyo except for J, he's the lead support 2014-04-12 01:28:10 @Espyo which makes no sense, but he is 2014-04-12 01:28:14 @Espyo oh, thanks 2014-04-12 01:28:18 @Espyo incredible how easy it is to make them 2014-04-12 01:28:26 @J they confused me at first because they were to the side 2014-04-12 01:28:31 @J then I realised things 2014-04-12 01:29:10 @J are there actually any decent OpenGL tutorials? 2014-04-12 01:29:17 @J including books 2014-04-12 01:29:21 @J for modern OpenGL 2014-04-12 01:29:38 Spark no 2014-04-12 01:29:48 @Espyo everything that exists everywhere is for old versions 2014-04-12 01:30:24 @J I should learn OpenGL too 2014-04-12 01:30:32 Spark i went on opengl chat and was like "WHY ARE THERE NO DECENT OPENGL TUTORIALS" and he was like "buy this book and this book and this other book and then maybe you'll be able to understand this other book" 2014-04-12 01:30:51 @Espyo youch 2014-04-12 01:30:55 @Espyo I'm lucky I learned in college 2014-04-12 01:30:59 @Espyo and even that's outdated 2014-04-12 01:31:15 @J yeah, I don't really want to bother with pre-shader stuff 2014-04-12 01:31:16 Spark im not even in college so i guess id be luckier if i started learning 2014-04-12 01:31:23 Spark unfortunately thats probably not gonna happen 2014-04-12 01:31:43 @Espyo right, shaders 2014-04-12 01:31:49 @Espyo what /exactly/ are they, anyway? 2014-04-12 01:31:53 @Espyo the idea I have in my head is 2014-04-12 01:31:57 @J I heard it might make more sense to learn OpenGL ES instead - someone told me it's OpenGL but with all the duplicate ways of doing things removed 2014-04-12 01:32:01 Spark anyways dude this is really good, the graphics are a bit confusing since everything is monochrome but i can see this being really fun 2014-04-12 01:32:11 @J monochrome? 2014-04-12 01:32:14 @Espyo after you render the image, but before flipping the display, you can do stuff to the pixels 2014-04-12 01:32:17 @J I see lots of colours 2014-04-12 01:32:23 Spark i mean like 2014-04-12 01:32:31 Spark the pikmin are solid red/blue/yellow 2014-04-12 01:32:31 IAMAHIPO_ocolor thats impossible j 2014-04-12 01:32:32 Spark etc 2014-04-12 01:32:35 IAMAHIPO_ocolor you're colorblind 2014-04-12 01:32:41 @Espyo uh, scratch all of that until the "you can do stuff with the pixels" 2014-04-12 01:32:43 @Espyo he's right there 2014-04-12 01:32:44 @J hey, that's not what colour-blind means 2014-04-12 01:32:50 IAMAHIPO_ocolor shhhhh 2014-04-12 01:32:56 @Espyo thanks 2014-04-12 01:33:00 @Espyo but... monochrome? 2014-04-12 01:33:01 @J oh, on the topic - today I learned the Portal portal colours are orange and blue 2014-04-12 01:33:03 @Espyo I think you just meant solid 2014-04-12 01:33:08 @J not orange and purple, as I've always thought 2014-04-12 01:33:26 @Espyo but yeah, they are pretty much rgb 255 0 0, 255 255 0 and 0 0 255 2014-04-12 01:33:27 IAMAHIPO_ocolor hahahahahaha 2014-04-12 01:33:34 @Espyo couldn't really be bothered to make more betterer colors 2014-04-12 01:33:37 Spark mono means one, and chrome means color, right? 2014-04-12 01:33:40 @J maybe you could try thick dark outlines on everything like we did with the icons 2014-04-12 01:33:40 @Espyo J: don't play co-op 2014-04-12 01:33:43 @J might look really nice 2014-04-12 01:33:46 @J oh, I have 2014-04-12 01:33:48 @Espyo .............you're right 2014-04-12 01:33:49 @Espyo great Scott 2014-04-12 01:33:58 IAMAHIPO_ocolor j you play any coop online games at all>' 2014-04-12 01:33:59 IAMAHIPO_ocolor ? 2014-04-12 01:34:07 @J I thought the 2-player portals were both blue, apparently one's purple 2014-04-12 01:34:07 @Espyo I won't try it because I want it to fit the rest of the textures 2014-04-12 01:34:10 @Espyo like the grass and such 2014-04-12 01:34:11 @J IAMAHIPO_ocolor: no 2014-04-12 01:34:20 @Espyo you gotta try TF2 2014-04-12 01:34:50 @J oh, the videa 2014-04-12 01:34:52 @J *video 2014-04-12 01:34:57 @J I uploaded it but forgot to link 2014-04-12 01:35:01 @J http://stuff.ikn.org.uk/fileshare/teleport.mkv 2014-04-12 01:35:15 @J http://stuff.ikn.org.uk/fileshare/teleport.mkv 2014-04-12 01:35:20 @J ... 2014-04-12 01:35:21 Spark if i were less lazy i would help you make nicer graphics but unfortunately i am not :T 2014-04-12 01:35:27 @Espyo oooooooohh... 2014-04-12 01:35:29 @Espyo like /that/ 2014-04-12 01:35:34 @Espyo if they cross the enemy while being thrown 2014-04-12 01:35:47 @J can you reproduce it? 2014-04-12 01:35:53 @Espyo easily, yeah 2014-04-12 01:35:57 @Espyo ok, thanks for letting me now 2014-04-12 01:36:02 @Espyo I'll take care of that tomorrow 2014-04-12 01:36:06 @Espyo can't believe I haven't tried that 2014-04-12 01:36:15 @Espyo I even took some time to make sure everything about throwing and fighting was working 2014-04-12 01:36:39 @Espyo Spark: thanks, but if you can't, it's fine 2014-04-12 01:36:43 @Espyo it'll just stay the way they are 2014-04-12 01:36:47 @Espyo they aren't /that/ bad... right? 2014-04-12 01:36:55 @J [01:32:14] @Espyo after you render the image, but before flipping the display, you can do stuff to the pixels 2014-04-12 01:37:09 @J I think it happens before textures get mapped to objects 2014-04-12 01:37:31 @J or, rather, the shader _defines_ mapping the texture to the object 2014-04-12 01:37:36 @Espyo right, 01:32 Espyo uh, scratch all of that until the "you can do stuff with the pixels" 2014-04-12 01:38:17 @J and it doesn't have to be a texture - you write code that gets executed on the GPU to generate the pixels directly 2014-04-12 01:38:30 @Espyo right 2014-04-12 01:38:37 @Espyo should help for a couple of things in the engine 2014-04-12 01:38:44 @Espyo like making pale Pikmin 2014-04-12 01:38:47 @Espyo when they're idle 2014-04-12 01:38:47 @J and then I think the GPU runs it massively in parallel 2014-04-12 01:39:03 @Espyo right now, there's a graphic for normal Pikmin and idle 2014-04-12 01:39:05 @Espyo which is just wasteful 2014-04-12 01:39:16 @Espyo but coloring something paler is actually pretty darn hard in real-time 2014-04-12 01:39:29 @J hmm, really? 2014-04-12 01:39:36 @J you just mix it with a colour 2014-04-12 01:39:45 @J semi-transparent white 2014-04-12 01:39:52 @Espyo it's subtractive 2014-04-12 01:39:54 @Espyo hmmm 2014-04-12 01:40:10 @Espyo y— 2014-04-12 01:40:11 @Espyo wait 2014-04-12 01:40:11 Spark : they aren't /that/ bad... right? 2014-04-12 01:40:11 @J should be able to do lots of types of colour merging 2014-04-12 01:40:18 Spark nah they're good it just takes some getting used to 2014-04-12 01:40:25 @Espyo I would imagine so... 2014-04-12 01:40:32 @Espyo they blend kinda badly 2014-04-12 01:40:40 @J yeah, individually, they're not bad 2014-04-12 01:40:52 @Espyo yeah, I was looking, Allegro has multiple blender mods 2014-04-12 01:40:53 @Espyo *modes 2014-04-12 01:40:55 @Espyo and I knew it did 2014-04-12 01:40:59 @Espyo and I knew one of them was addictive 2014-04-12 01:41:00 @J but they don't work together as well as they could 2014-04-12 01:41:03 @Espyo but I could swear I had that on already 2014-04-12 01:41:04 @J addictive 2014-04-12 01:41:06 @Espyo right 2014-04-12 01:41:06 @J best typo 2014-04-12 01:41:12 @Espyo add... 2014-04-12 01:41:14 @Espyo uh 2014-04-12 01:41:17 IAMAHIPO_ocolor does it have blast processing> 2014-04-12 01:41:21 @Espyo additive isn't even a word here 2014-04-12 01:41:32 @Espyo IAMAHIPO_ocolor: it will when I install the Sanic chip 2014-04-12 01:41:38 Spark wouldnt it be easier to make an onion sprite that recolors for each type? 2014-04-12 01:41:51 @Espyo yeah, but I can't have that 2014-04-12 01:42:02 @Espyo someone might have a "Spiky Pikmin" as a Pikmin type 2014-04-12 01:42:06 @Espyo and its Onion could have spikes 2014-04-12 01:42:09 @Espyo hence, different bitmaps 2014-04-12 01:42:15 Spark oh that makes sense 2014-04-12 01:42:29 @Espyo ok, I'm already using the additive blend mode 2014-04-12 01:43:23 @Espyo https://www.allegro.cc/manual/5/al_draw_tinted_bitmap 2014-04-12 01:43:27 @Espyo it /only/ multiplies 2014-04-12 01:43:28 @Espyo drat 2014-04-12 01:43:36 Spark you could use SFML 2014-04-12 01:43:38 @Espyo the blender mode is only for blitting 2014-04-12 01:43:42 @Espyo too late to change now 2014-04-12 01:43:52 Spark is the source included 2014-04-12 01:44:02 Spark i could try making it sfml if youre too busy 2014-04-12 01:44:17 Spark im not a great programmer as you know but it shouldnt be too hard, just tedious 2014-04-12 01:45:04 @J source is https://github.com/Espyo/Pikmin_fangame_engine 2014-04-12 01:45:12 @J but that doesn't sound like it would be fun 2014-04-12 01:46:10 @Espyo yeah, a lot of things are pretty different 2014-04-12 01:46:20 @J https://www.allegro.cc/manual/5/al_set_blender 2014-04-12 01:46:28 @J you draw a bitmap to another with a blending mode 2014-04-12 01:46:28 @Espyo yeah 2014-04-12 01:47:04 @Espyo yep, blitting 2014-04-12 01:48:17 @J anyway, I should go 2014-04-12 01:48:24 @J sleep is already happening 2014-04-12 01:48:30 IAMAHIPO_ocolor goodnight 2014-04-12 01:49:11 @Espyo same here 2014-04-12 01:49:16 @Espyo and thanks for tonight J 2014-04-12 01:49:18 @Espyo it was a huge help 2014-04-12 01:49:27 @Espyo I really have to read better on how the blending modes work 2014-04-12 01:49:37 @Espyo I cannot for the life of me get my head around the concept of pre-multiplied colors 2014-04-12 01:50:05 @J no problem 2014-04-12 01:50:18 @J and just try them in a graphics program, I guess, see what happens 2014-04-12 01:50:20 @J bye 2014-04-12 01:51:04 @Espyo yeah 2014-04-12 01:51:08 @Espyo bye 2014-04-12 01:52:38 <-- Espyo (Mibbit@h48-318-37-136.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 01:52:48 <-- Testyo (Testyo@h48-318-37-136.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-04-12 02:04:30 --> Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has joined #pikipedia 2014-04-12 03:22:39 <-- IAMAHIPO_ocolor (Mibbit@s-91-17-009-095.hsd9.nj.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 04:08:10 <-- Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 06:19:12 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 06:19:49 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-12 10:08:10 <-- Miles_ (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit 2014-04-12 10:12:27 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-04-12 10:35:41 <-- Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 11:17:39 --> Testyo (Testyo@h48-318-37-136.cpe.netcabo.pt) has joined #pikipedia 2014-04-12 11:22:40 --> Espyo (Mibbit@h48-318-37-136.cpe.netcabo.pt) has joined #pikipedia 2014-04-12 11:22:41 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-12 12:23:41 --> Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has joined #pikipedia 2014-04-12 13:45:55 --> Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has joined #pikipedia 2014-04-12 14:00:49 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 14:02:12 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-12 14:54:26 -- Nepeta is now known as Nep|away 2014-04-12 15:14:51 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 15:19:07 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-12 16:48:12 <-- Testyo (Testyo@h48-318-37-136.cpe.netcabo.pt) has quit (Ping timeout: 240 seconds) 2014-04-12 17:03:39 <-- Espyo (Mibbit@h48-318-37-136.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 17:12:07 --> Espyo (Mibbit@h48-318-37-136.cpe.netcabo.pt) has joined #pikipedia 2014-04-12 17:12:07 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-12 18:02:14 --> Testyo (Testyo@h48-318-37-136.cpe.netcabo.pt) has joined #pikipedia 2014-04-12 18:08:17 <-- Nep|away (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 18:22:22 Testyo [Fanon RC] Category:Users by Pikberry149 (+75 m) http://www.pikminfanon.com/index.php?title=Category:Users&curid=2821&diff=43999&oldid=38371 2014-04-12 18:22:22 Testyo [Fanon RC] Category:Users by Pikberry149 (-75 m) http://www.pikminfanon.com/index.php?title=Category:Users&curid=2821&diff=44000&oldid=43999 2014-04-12 18:22:22 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) 2014-04-12 18:32:28 Testyo [Fanon RC] User talk:Peach Bulborb by Pikberry149 (+88 /* New sig? */ new section) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=44002&oldid=43993 2014-04-12 18:34:11 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-12 18:34:36 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Client Quit) 2014-04-12 18:38:26 <-- Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 18:38:56 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-12 18:38:57 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Client Quit) 2014-04-12 18:39:26 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-12 18:39:54 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Client Quit) 2014-04-12 18:42:22 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-12 18:42:46 TPM Finally 2014-04-12 18:51:54 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 18:57:52 Testyo [Fanon RC] User:Pikberry149 by Pikberry149 (+9 m) http://www.pikminfanon.com/index.php?title=User:Pikberry149&curid=8705&diff=44003&oldid=43998 2014-04-12 18:57:52 Testyo [Fanon RC] User:Pikberry149 by Pikberry149 (+11) http://www.pikminfanon.com/index.php?title=User:Pikberry149&curid=8705&diff=44004&oldid=44003 2014-04-12 18:57:52 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) 2014-04-12 19:08:03 Testyo [Fanon RC] User talk:Peach Bulborb by Pikberry149 (+252 /* Suggestions Wanted! */ new section) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=44006&oldid=44002 2014-04-12 19:13:09 Testyo [Fanon RC] User:ThePikminMeister by ThePikminMeister (-2073 m Blanked the page) http://www.pikminfanon.com/index.php?title=User:ThePikminMeister&curid=8101&diff=44007&oldid=43908 2014-04-12 19:25:54 --> Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has joined #pikipedia 2014-04-12 19:33:31 Testyo [Fanon RC] Pikmin: Dawn of the Food ... by Bulborb bro (+13 /* Amphitubers */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_Dawn_of_the_Food_Chain_Piklopedia&curid=8683&diff=44008&oldid=43783 2014-04-12 19:48:47 Testyo [Fanon RC] Scary Citadel by Bulborb bro (+2502) http://www.pikminfanon.com/index.php?title=Scary_Citadel&curid=8707&diff=44009&oldid=43900 2014-04-12 19:48:47 Testyo [Fanon RC] Scary Citadel by Bulborb bro (-13 /* Sublevel 5 */ ) http://www.pikminfanon.com/index.php?title=Scary_Citadel&curid=8707&diff=44010&oldid=44009 2014-04-12 19:57:31 --> Tpm (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-12 19:57:41 -- Tpm is now known as TPM 2014-04-12 20:01:00 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Client Quit) 2014-04-12 20:04:24 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-12 20:04:24 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-12 20:04:32 @PikFan . 2014-04-12 20:06:29 @PikFan hmmm 2014-04-12 20:06:45 @PikFan I wonder how long it would take to save up 900 quintillion cookies 2014-04-12 20:13:08 @PikFan well, takes about 3 days to make a sextillion cookies 2014-04-12 20:13:39 @PikFan if kitten overseers doubles my cps, then kitten managers should triple it 2014-04-12 20:13:54 @PikFan ...bringing it to 1 quadrillion cookies per second 2014-04-12 20:19:20 Testyo [Fanon RC] Black Sprout Garden by Bulborb bro (+2029 N Created page with "'''Black Sprout Garden''' is the last cave dungeon in the [[F...) http://www.pikminfanon.com/index.php?title=Black_Sprout_Garden&curid=8731&diff=44011&oldid=0 2014-04-12 20:19:21 Testyo [Fanon RC] Black Sprout Garden by Bulborb bro (-1 /* Sublevel 1 */ ) http://www.pikminfanon.com/index.php?title=Black_Sprout_Garden&curid=8731&diff=44012&oldid=44011 2014-04-12 20:20:51 @PikFan Black Sprout Garden? 2014-04-12 20:21:01 @PikFan sounds like a place where Black Pikmin are found 2014-04-12 20:38:54 @Espyo hey 2014-04-12 20:39:18 @Espyo yeah, it does 2014-04-12 20:39:28 @Espyo have you patrolled the edits on Pikipedia yet? 2014-04-12 20:39:36 @PikFan yes 2014-04-12 20:40:29 @PikFan I'm expanding Crimson Banquet atm 2014-04-12 20:40:37 @Espyo great 2014-04-12 20:45:44 @PikFan done 2014-04-12 20:46:08 @PikFan I had to go find my carry weight/max carriers papers 2014-04-12 20:46:19 @PikFan couldn't exactly remember CB's weight 2014-04-12 20:46:49 @Espyo oh 2014-04-12 20:47:35 @PikFan hm 2014-04-12 20:47:56 @PikFan maybe we should make a tooltip for the value parameter 2014-04-12 20:48:07 @PikFan some people might be confused by value 2014-04-12 20:48:45 @Espyo yeah, what IS value? 2014-04-12 20:48:57 @PikFan it's the value of the fruit in Mission Mode 2014-04-12 20:49:13 @Espyo hm, just what I thought 2014-04-12 20:49:17 @Espyo yeah, I agree 2014-04-12 20:49:20 @PikFan but 2014-04-12 20:49:26 @Espyo "In Pokos, used in Mission Mode" 2014-04-12 20:49:33 @PikFan yeah, about that 2014-04-12 20:49:44 @PikFan I'm not so sure we should use "Pokos" 2014-04-12 20:49:45 @Espyo or maybe just call that field "Pokos" 2014-04-12 20:49:49 @PikFan could be anything 2014-04-12 20:49:54 Testyo [Pikipedia RC] Crimson Banquet by PikFan23 (+634 expanding) http://www.pikminwiki.com/index.php?title=Crimson_Banquet&curid=9667&diff=79462&oldid=79461 2014-04-12 20:49:54 @Espyo oh, it's not clear? 2014-04-12 20:50:02 @PikFan yeah 2014-04-12 20:50:04 @Espyo well, /points/ is probably the most accurate 2014-04-12 20:50:05 @PikFan it's just a coin 2014-04-12 20:50:09 @PikFan yeah 2014-04-12 20:50:29 @PikFan "In Mission Mode, this fruit is slightly more common, and is worth 1,000." 2014-04-12 20:50:43 @PikFan yeah, I didn't use Pokos or points 2014-04-12 20:50:58 @PikFan points is most reasonable 2014-04-12 20:51:18 @Espyo mhm 2014-04-12 20:51:28 @Espyo or maybe just avoid any name-calling whatsoever 2014-04-12 20:51:31 @Espyo the field is "Value" 2014-04-12 20:51:49 @PikFan yeah 2014-04-12 20:51:58 @Espyo and when you mouse-over, you get "How much the fruit is worth in Mission Mode." 2014-04-12 20:52:13 @PikFan right 2014-04-12 22:05:40 Testyo [Fanon RC] Monstrous Mountain by Bulborb bro (0 /* Enemies */ ) http://www.pikminfanon.com/index.php?title=Monstrous_Mountain&curid=8672&diff=44013&oldid=43717 2014-04-12 22:58:20 <-- Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-12 23:04:00 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-12 23:56:05 Testyo [Fanon RC] User talk:Bulborb bro by New Pikminjp (+214 /* Yo */ ) http://www.pikminfanon.com/index.php?title=User_talk:Bulborb_bro&curid=6626&diff=44014&oldid=43902 2014-04-13 00:01:06 Testyo [Fanon RC] User talk:Bulborb bro by New Pikminjp (+200 /* Yo */ ) http://www.pikminfanon.com/index.php?title=User_talk:Bulborb_bro&curid=6626&diff=44015&oldid=44014 2014-04-13 00:06:07 Testyo [Fanon RC] User talk:ThePikminMeiste... by New Pikminjp (+101 /* I believe I got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44016&oldid=43989 2014-04-13 00:11:08 Testyo [Fanon RC] User talk:New Pikminjp by ThePikminMeister (+55 m /* Re: I believe I've got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44017&oldid=44001 2014-04-13 00:45:49 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-13 00:46:15 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Client Quit) 2014-04-13 00:46:46 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-13 00:47:49 --> TPMonComputer (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-13 00:53:10 <-- TPMonComputer (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-13 00:55:58 @Espyo well 2014-04-13 00:56:20 @Espyo you can actually have the R-button reticle appear on-screen without the ability to look up and down, in Metroid Prime 2014-04-13 00:56:31 @Espyo my controller isn't working right, so it thinks I'm holding the R clicker 2014-04-13 00:56:38 @Espyo but it also knows that I'm holding R 0% 2014-04-13 01:02:05 @Espyo same with MP2 2014-04-13 01:10:27 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-13 01:11:03 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-13 01:11:55 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Client Quit) 2014-04-13 01:13:13 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-13 01:34:41 --> Gamefreak75 (NewYokuba@2605:e000:2e44:zsnn:jzig:qvos:qvsg:junq) has joined #pikipedia 2014-04-13 01:46:06 --> Gamefreak75_ (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has joined #pikipedia 2014-04-13 01:49:17 --> Gamefreak75__ (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has joined #pikipedia 2014-04-13 01:49:25 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:zsnn:jzig:qvos:qvsg:junq) has quit (Ping timeout: 250 seconds) 2014-04-13 01:49:26 -- Gamefreak75__ is now known as Gamefreak75 2014-04-13 01:51:27 <-- Gamefreak75_ (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has quit (Ping timeout: 240 seconds) 2014-04-13 01:52:31 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-13 02:06:01 <-- Gamefreak75 (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has quit (Quit: nwehehehe) 2014-04-13 02:08:26 --> Gamefreak75 (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has joined #pikipedia 2014-04-13 02:32:08 <-- Espyo (Mibbit@h48-318-37-136.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-13 02:32:43 <-- Testyo (Testyo@h48-318-37-136.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-04-13 02:34:43 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has left #pikipedia 2014-04-13 04:41:51 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Ping timeout: 240 seconds) 2014-04-13 05:35:34 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-13 05:35:35 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-13 06:19:07 <-- Gamefreak75 (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2014-04-13 08:48:30 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-13 10:51:29 --> Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has joined #pikipedia 2014-04-13 17:13:12 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-13 17:21:33 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-13 17:21:34 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-13 17:53:53 Testyo [Fanon RC] Black Sprout Garden by Bulborb bro (0 /* Sublevel 4 */ ) http://www.pikminfanon.com/index.php?title=Black_Sprout_Garden&curid=8731&diff=44032&oldid=44027 2014-04-13 18:39:26 Testyo [Fanon RC] Freaky Cavern by Bulborb bro (+3656 N Created page with "'''Freaky Cavern''' is the second cave dungeon in [[Fearful F...) http://www.pikminfanon.com/index.php?title=Freaky_Cavern&curid=8734&diff=44033&oldid=0 2014-04-13 18:59:43 Testyo [Pikipedia RC] Treasure by Espyo (-19 m Iunno.) http://www.pikminwiki.com/index.php?title=Treasure&curid=1638&diff=79464&oldid=78683 2014-04-13 20:01:05 -- irc: disconnected from server 2014-04-13 20:01:19 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-13 20:01:19 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-13 20:01:19 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-13 20:01:19 -- Channel #pikipedia: 9 nicks (3 ops, 0 voices, 6 normals) 2014-04-13 20:01:19 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-13 20:01:19 -- Mode #pikipedia [+o J] by ChanServ 2014-04-13 20:01:21 -- Mode #pikipedia [+nt] 2014-04-13 20:01:21 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-13 20:01:23 @PikFan don't we just love clots? 2014-04-13 20:01:24 @PikFan . 2014-04-13 20:01:33 @Espyo indeed 2014-04-13 20:02:31 @PikFan hmmmmm 2014-04-13 20:02:59 @PikFan by the time I reset I SHOULD have gotten all make x cookies with 1 building achievements 2014-04-13 20:03:48 @Espyo hmm? 2014-04-13 20:03:57 @PikFan oh 2014-04-13 20:04:09 @PikFan there are achievements for buildings 2014-04-13 20:04:23 @PikFan for example, Gushing Grannies 2014-04-13 20:04:38 @PikFan you have to make 1 quintillion cookies just from grandmas 2014-04-13 20:05:42 @Espyo oh 2014-04-13 20:05:47 @Espyo but how would you get that by resetting 2014-04-13 20:06:04 @PikFan I don't 2014-04-13 20:06:21 @PikFan I said by the time I reset I should have gotten all those achievements 2014-04-13 20:06:37 @PikFan I'm aiming to make 1.9 sextillion this game 2014-04-13 20:07:08 @Espyo but what do you mean "should"? 2014-04-13 20:07:11 @Espyo you don't know? 2014-04-13 20:07:14 @Espyo is resetting random now? 2014-04-13 20:07:17 @PikFan yeah 2014-04-13 20:07:21 @PikFan I don't know 2014-04-13 20:07:23 @Espyo what 2014-04-13 20:07:38 @PikFan wait, what did you mean by "is resetting random now" 2014-04-13 20:08:33 @Espyo dude 2014-04-13 20:08:36 @Espyo you reset when you want to 2014-04-13 20:08:43 @Espyo so only reset after you get the achivement 2014-04-13 20:08:46 @Espyo *achievement 2014-04-13 20:09:20 @PikFan I'm resetting once I make 1.9 sextillion cookies 2014-04-13 20:09:42 @PikFan see, I'm trying to follow a pattern 2014-04-13 20:10:05 @PikFan I want each reset to yield more HCs than the last reset 2014-04-13 20:11:52 @Espyo oh 2014-04-13 20:11:56 @Espyo just reset after the achievement 2014-04-13 20:12:01 @Espyo achievements = more CpS 2014-04-13 20:12:19 @PikFan I understand that 2014-04-13 20:12:45 @PikFan hmm... 2014-04-13 20:12:53 @PikFan not even halfway to resetting 2014-04-13 20:13:09 @PikFan but over halfway to getting praise the sun 2014-04-13 20:13:21 @PikFan (make 100 quintillion with just prisms) 2014-04-13 20:15:52 @Espyo hmmmm 2014-04-13 20:17:00 @PikFan oh, I just realized something 2014-04-13 20:17:21 @PikFan elder frenzy + reindeer seems more common than frenzy + click frenzy 2014-04-13 20:17:48 @PikFan I got a F+CF last night, and got about 50 quintillion 2014-04-13 20:18:13 @PikFan EF+R yields about 37 quint 2014-04-13 20:20:30 @PikFan oh, also 2014-04-13 20:20:52 @PikFan I think Orteil should make a golden cookie upgrade 2014-04-13 20:21:11 @PikFan this one will double the effects of golden cookies 2014-04-13 20:21:46 @PikFan that is, make frenzy x14, clicking frenzy x1,554, and lucky 40 minutes of cps 2014-04-13 20:22:00 @PikFan but it would cost 777.8 quint 2014-04-13 20:22:51 @PikFan ooh, got Click Delegator 2014-04-13 20:22:57 @PikFan 1 quint with cursors 2014-04-13 20:23:17 @Espyo well yeah 2014-04-13 20:23:27 @Espyo you can get a reindeer at any point during a GC's effects 2014-04-13 20:23:39 @Espyo but you can only get a GC 3 or so minutes after the previous one 2014-04-13 20:24:04 @PikFan more like 2 minutes 2014-04-13 20:24:19 @Espyo could swear I read 3 minutes on the wiki, last I checked 2014-04-13 20:24:31 @PikFan >the wiki 2014-04-13 20:25:02 @PikFan well, if they appeared in 3 minute intervals then I 2014-04-13 20:25:12 @PikFan 'd never gotten as far as I am now 2014-04-13 20:26:27 @Espyo could've been from ages ago 2014-04-13 20:26:37 @Espyo the only wiki is on wikia 2014-04-13 20:26:42 @Espyo so saying wiki or wikia is the same in this case 2014-04-13 20:27:11 @PikFan yeah 2014-04-13 20:30:41 @PikFan ok yeah, F+CF yields more than EF+R 2014-04-13 20:31:27 @PikFan F+CF gives 52.596 quint, and EF+R gives 38.604 quint 2014-04-13 20:32:25 @PikFan brb 2014-04-13 20:33:22 @Espyo yep 2014-04-13 20:33:24 @Espyo ok 2014-04-13 20:41:23 @Espyo by my calculations, I get... 2014-04-13 20:41:29 @Espyo 42 quint after popping them all 2014-04-13 20:41:42 @Espyo ...I need 70 quint for the next prism, and I have 10 quint 2014-04-13 20:41:46 @Espyo gaaaaahhhhhh... 2014-04-13 20:42:14 @PikFan back 2014-04-13 20:42:30 @PikFan are your calculations not taking GCs into effect? 2014-04-13 20:42:36 @Espyo yeah, they're not 2014-04-13 20:42:40 @PikFan ah 2014-04-13 20:42:41 @Espyo just the withered CpS 2014-04-13 20:42:51 @Espyo still, best case scenario, I get enough to buy one prism 2014-04-13 20:42:55 @Espyo here's what I'll do 2014-04-13 20:43:01 @Espyo I'll pop one, see how many cookies I get 2014-04-13 20:43:03 @Espyo then close 2014-04-13 20:43:05 @Espyo and reload 2014-04-13 20:43:07 @Espyo so I can get it back 2014-04-13 20:43:12 @Espyo gotta make sure the game doesn't save in the meantime 2014-04-13 20:43:19 @PikFan right 2014-04-13 20:44:02 @Espyo wow! 2014-04-13 20:44:09 @Espyo I got 5 whole quint! 2014-04-13 20:44:13 @Espyo that's INCREDIBLE 2014-04-13 20:44:21 @PikFan wow! 2014-04-13 20:44:26 @Espyo it will only take me 40 years to buy a prism at this rate! 2014-04-13 20:44:29 @Espyo ...ugh 2014-04-13 20:44:43 @PikFan idea 2014-04-13 20:44:44 @Espyo but yeah, guess my calculation is right 2014-04-13 20:44:48 @PikFan we should have a petition 2014-04-13 20:44:49 @Espyo 50 quint after popping them all 2014-04-13 20:44:56 @PikFan get thousands of signatures 2014-04-13 20:45:07 @PikFan and send it to Orteil 2014-04-13 20:45:24 @PikFan the petition asking, "Please make Prisms cost 50 billion again!" 2014-04-13 20:45:28 @Espyo heh 2014-04-13 20:45:31 @Espyo I don't mind 2014-04-13 20:45:44 @Espyo it's only doubled or something 2014-04-13 20:46:21 @PikFan base prices is 75 billion now 2014-04-13 20:46:27 @PikFan *price 2014-04-13 20:46:56 @PikFan aaaaaah 2014-04-13 20:47:23 @PikFan so close to magnum opus 2014-04-13 20:47:42 @PikFan 10 quad with alchemy labs 2014-04-13 20:48:04 @Espyo not even double 2014-04-13 21:04:06 @PikFan yay, got it 2014-04-13 21:04:13 @PikFan magnum opus 2014-04-13 21:21:19 -- irc: disconnected from server 2014-04-13 21:21:31 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-13 21:21:31 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-13 21:21:31 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-13 21:21:31 -- Channel #pikipedia: 9 nicks (3 ops, 0 voices, 6 normals) 2014-04-13 21:21:31 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-13 21:21:31 -- Mode #pikipedia [+o J] by ChanServ 2014-04-13 21:21:34 -- Mode #pikipedia [+nt] 2014-04-13 21:21:34 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-13 21:40:38 -- irc: disconnected from server 2014-04-13 21:40:55 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-13 21:40:55 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-13 21:40:55 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-13 21:40:55 -- Channel #pikipedia: 9 nicks (3 ops, 0 voices, 6 normals) 2014-04-13 21:40:55 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-13 21:40:55 -- Mode #pikipedia [+o J] by ChanServ 2014-04-13 21:40:57 -- Mode #pikipedia [+nt] 2014-04-13 21:40:57 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-13 21:41:39 @PikFan 3.7 quint 2014-04-13 21:41:44 @PikFan eeh... 2014-04-13 21:42:00 @PikFan guess I will 2014-04-13 21:50:48 Testyo [Fanon RC] User talk:Pikberry149 by Peach Bulborb (+1135 /* Lightning Kill????? */ ) http://www.pikminfanon.com/index.php?title=User_talk:Pikberry149&curid=8704&diff=44036&oldid=43986 2014-04-13 21:55:50 Testyo [Fanon RC] Freaky Cavern by Peach Bulborb (+4 m minor paradox fixed) http://www.pikminfanon.com/index.php?title=Freaky_Cavern&curid=8734&diff=44037&oldid=44033 2014-04-13 22:05:52 Testyo [Fanon RC] User:Peach Bulborb by Peach Bulborb (+15 /* My Alter Aliasis */ I can't believe I haven't done this before!) http://www.pikminfanon.com/index.php?title=User:Peach_Bulborb&curid=6237&diff=44038&oldid=43528 2014-04-13 22:06:07 @PikFan aliasis? 2014-04-13 22:09:31 @Espyo :| 2014-04-13 22:09:46 @PikFan ? 2014-04-13 22:10:51 @Espyo aliasis is not a thing 2014-04-13 22:10:53 Testyo [Fanon RC] PikminFanon:Ranks by Peach Bulborb (-18 /* All Ranks */ as there is no rank above, changing) http://www.pikminfanon.com/index.php?title=PikminFanon:Ranks&curid=213&diff=44039&oldid=41942 2014-04-13 22:15:55 Testyo [Fanon RC] List of Pikmin: Invasion ... by Peach Bulborb (+83 added little warning at the top) http://www.pikminfanon.com/index.php?title=List_of_Pikmin:_Invasion_of_the_Giants_Enemies&curid=7153&diff=44040&oldid=37615 2014-04-13 22:15:55 Testyo [Fanon RC] User talk:PikFan23 by Peach Bulborb (+524) http://www.pikminfanon.com/index.php?title=User_talk:PikFan23&curid=4203&diff=44041&oldid=43880 2014-04-13 22:16:12 @PikFan oh what do you want 2014-04-13 22:16:34 @Espyo heh 2014-04-13 22:16:54 @Espyo I thought PB was an admin? 2014-04-13 22:16:57 @PikFan he is 2014-04-13 22:17:11 @Espyo why can't he give himself that 2014-04-13 22:17:41 @PikFan he just wants someone to affirm it 2014-04-13 22:18:21 @PikFan game page could be better but detailed enough 2014-04-13 22:18:28 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-13 22:18:39 @Espyo hm 2014-04-13 22:18:57 @PikFan I'll tell him to clean it up 2014-04-13 22:19:38 @PikFan ohi Meisterbot 2014-04-13 22:19:43 Meisterbot hi 2014-04-13 22:25:57 Testyo [Fanon RC] User talk:Peach Bulborb by PikFan23 (+269 /* Re: Rank Request */ new section) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=44042&oldid=44006 2014-04-13 22:29:20 --> Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has joined #pikipedia 2014-04-13 22:35:05 <-- Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-13 22:43:22 -- Sunscreen is now known as Sunscreen|afk 2014-04-13 23:10:51 --> Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has joined #pikipedia 2014-04-13 23:10:54 Nepeta http://cr33pykitten.tumblr.com/post/82621167299/dewitts-sodomywithsaddam-okayyy-can 2014-04-13 23:10:55 Nepeta hahaahha! 2014-04-13 23:11:46 @PikFan lolwut 2014-04-13 23:13:19 Meisterbot hey 2014-04-13 23:13:22 Meisterbot i was gonna say that 2014-04-13 23:13:31 @PikFan ninja'd 2014-04-13 23:13:41 Nepeta oops wrong chat 2014-04-13 23:13:48 Meisterbot lol 2014-04-13 23:13:52 @PikFan hehehehehehe 2014-04-13 23:13:52 Nepeta although i guess it still aplies here 2014-04-13 23:14:23 Meisterbot lolfail 2014-04-13 23:14:37 Meisterbot butwinatthesametime 2014-04-13 23:25:13 @PikFan aaaaaah 2014-04-13 23:25:17 @PikFan almost there 2014-04-13 23:25:26 @PikFan so close, yet so far 2014-04-13 23:32:42 @Espyo hehe 2014-04-14 00:40:49 <-- Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-14 00:57:36 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: Later everyone!) 2014-04-14 00:58:04 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-14 01:04:18 --> Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has joined #pikipedia 2014-04-14 01:29:14 @PikFan just bought kitten managers 2014-04-14 01:29:25 @PikFan and now my cps is 1.076 quad 2014-04-14 01:34:57 @Espyo what was it before? 2014-04-14 01:36:08 @PikFan 494 trillion 2014-04-14 01:36:51 @Espyo more than double!? 2014-04-14 01:37:03 @Espyo ...uh, what does it matter, I can't buy it 2014-04-14 01:37:07 @PikFan and when I bought kitten managers, it almost annihilated my bank 2014-04-14 01:38:03 -- Sunscreen|afk is now known as Sunscreen 2014-04-14 01:38:11 @PikFan yeah, you can't buy it now, you'll need... oh, 95k HCs to buy it within 36 hours 2014-04-14 01:38:12 Testyo 95 K = -178.15 °C / -288.67 °F 2014-04-14 01:39:05 @PikFan hmmmmm 2014-04-14 01:39:17 @PikFan maybe I should shoot for 2.5 sextillion this game 2014-04-14 01:39:31 Meisterbot wut 2014-04-14 01:40:23 @PikFan ...wow, that would yield over 20k HCs 2014-04-14 01:40:24 Testyo 20 K = -253.15 °C / -423.67 °F 2014-04-14 01:40:38 Meisterbot i have such a low amount in the bank 2014-04-14 01:42:28 Meisterbot only 28.23 quad 2014-04-14 01:42:38 Meisterbot *28.35 2014-04-14 01:43:34 Meisterbot im gonna pop a wrinkler right now 2014-04-14 01:43:38 @Espyo mhm 2014-04-14 01:43:48 Nepeta boy i just lost like 2014-04-14 01:43:51 Nepeta 300 sextillion 2014-04-14 01:43:53 Nepeta or something 2014-04-14 01:44:02 Nepeta i didnt look before i bought everything though 2014-04-14 01:44:46 Meisterbot i just spent all of my cookies on prims 2014-04-14 01:44:49 Meisterbot prisms 2014-04-14 01:44:54 Meisterbot i have 3 quad 2014-04-14 01:45:32 @PikFan how many HCs do you have Nepeta 2014-04-14 01:46:22 Nepeta 0 2014-04-14 01:46:43 @PikFan ...you have 0 heavenly chips? 2014-04-14 01:46:52 Nepeta yes 2014-04-14 01:47:03 @PikFan so you've never reset? 2014-04-14 01:47:10 Nepeta yep 2014-04-14 01:47:20 @PikFan why 2014-04-14 01:47:41 Nepeta because 2014-04-14 01:47:56 Nepeta i dont want to 2014-04-14 01:48:04 @PikFan wynaut 2014-04-14 01:48:25 Nepeta i already invested too much time 2014-04-14 01:48:31 @PikFan true 2014-04-14 01:48:45 @PikFan but you'd get like 2014-04-14 01:48:49 @PikFan hundreds of thousands 2014-04-14 01:48:53 @PikFan if not millions 2014-04-14 01:49:00 @PikFan your game, I guess 2014-04-14 01:49:09 Nepeta well 2014-04-14 01:49:17 Nepeta i dont really play it that much 2014-04-14 01:49:20 Nepeta anymore 2014-04-14 01:49:26 Nepeta usually i just go on if there is an update 2014-04-14 01:49:32 Nepeta to do whatever comes from it 2014-04-14 01:49:38 Nepeta and if i reset i would have ton invest more time 2014-04-14 01:49:54 @PikFan I see 2014-04-14 01:50:03 @PikFan so you just play passively, then 2014-04-14 01:50:36 Meisterbot do heavenly chips rely on the bank 2014-04-14 01:50:44 Meisterbot or how many cookies you baked in the game 2014-04-14 01:51:03 @Espyo how many you baked 2014-04-14 01:51:04 @PikFan how many cookies you baked 2014-04-14 01:51:14 Meisterbot ok 2014-04-14 01:51:19 @Espyo if you reset now, you can probably reach 1 sextillion in 10 minutes 2014-04-14 01:51:33 Meisterbot so if i reset now, i would get 462 chips 2014-04-14 01:51:44 @PikFan 462 isn't really much 2014-04-14 01:51:50 Meisterbot exactly 2014-04-14 01:51:52 @Espyo ...really? 2014-04-14 01:51:55 @Espyo that's really poor 2014-04-14 01:51:58 Meisterbot ik 2014-04-14 01:52:15 @Espyo you said you lost 300 sextillion 2014-04-14 01:52:22 Meisterbot wut 2014-04-14 01:52:22 @Espyo which means you baked at least 300 sextillion 2014-04-14 01:52:28 Meisterbot thats nepeta 2014-04-14 01:52:28 @Espyo and you only get 400 HCs by resetting now? 2014-04-14 01:52:30 @Espyo that can't be right 2014-04-14 01:52:35 @PikFan no, Nepeta lost 300 sextillion 2014-04-14 01:52:39 @Espyo oh, dammit 2014-04-14 01:52:40 Meisterbot ya 2014-04-14 01:52:42 Meisterbot lol 2014-04-14 01:52:45 @Espyo I'm Skyping and talking to two other people 2014-04-14 01:52:49 @PikFan hehe 2014-04-14 01:52:52 @Espyo can't keep a line of thought in one place 2014-04-14 01:52:56 @Espyo never mind then 2014-04-14 01:53:20 Meisterbot lol 2014-04-14 01:53:23 @PikFan oh, got Praise the sun 2014-04-14 01:53:27 @PikFan and Supermassive 2014-04-14 01:53:30 Nepeta how much is a nonillon 2014-04-14 01:53:41 @PikFan ...whaaaaaaaaaaat 2014-04-14 01:53:49 Meisterbot how many chips should i want at least to get a lot of cookies 2014-04-14 01:53:56 @Espyo it's 0 2014-04-14 01:53:59 @PikFan you're at a nonillion cookies ALREADY??? 2014-04-14 01:54:00 Nepeta no i dont have that much 2014-04-14 01:54:16 @PikFan uh let's see 2014-04-14 01:54:18 Nepeta i just heard someone talking about it 2014-04-14 01:54:24 @PikFan 10^30 2014-04-14 01:54:56 @PikFan oh wow 2014-04-14 01:54:57 @Espyo wait, the 9th thing? 2014-04-14 01:55:03 @Espyo like the 6th is sextillion? 2014-04-14 01:55:09 @Espyo and 4th is quadrillion? 2014-04-14 01:55:22 @Espyo or is it zero because "non"illon? 2014-04-14 01:55:29 @PikFan 7th is sept, 8th is oct, so yeah, 9th is non 2014-04-14 01:55:53 @Espyo ...scary 2014-04-14 01:56:14 @PikFan 10th is decillion, 11th is undecillion, 12 is duodecillion 2014-04-14 01:56:36 Meisterbot wtf 2014-04-14 01:56:41 Meisterbot TTOOMANYCOOKIES 2014-04-14 01:56:43 Meisterbot IMSCARED 2014-04-14 01:56:47 @PikFan http://en.wikipedia.org/wiki/Names_of_large_numbers#Extensions_of_the_standard_dictionary_numbers 2014-04-14 01:57:14 Nepeta i do have 2014-04-14 01:57:17 Nepeta an octillion cookies 2014-04-14 01:57:21 Nepeta total baked 2014-04-14 01:57:22 Nepeta ever 2014-04-14 01:57:27 @PikFan wow 2014-04-14 01:57:33 Nepeta a bit more actually 2014-04-14 01:58:00 @PikFan you'd get 44 million HCs if you reset 2014-04-14 01:58:25 @PikFan did you get Dr. T yet 2014-04-14 01:59:29 Nepeta i have 2014-04-14 01:59:32 Nepeta 345 cursors 2014-04-14 01:59:38 @PikFan oh 2014-04-14 02:00:01 @PikFan 400 cursors cost 190 septillion cookies, so you should have gotten it by now 2014-04-14 02:00:12 Nepeta i dont like cursors 2014-04-14 02:01:26 Nepeta i spend most of my money on the highest 3 2014-04-14 02:01:38 @PikFan how many prisms 2014-04-14 02:01:55 Nepeta 215 2014-04-14 02:02:04 @PikFan mm 2014-04-14 02:12:57 Meisterbot wait, wtf 2014-04-14 02:13:05 Meisterbot how did i just get 17 quad 2014-04-14 02:13:11 Meisterbot i just had 3 quad 2014-04-14 02:15:20 @Espyo going now, tired 2014-04-14 02:15:20 @Espyo night 2014-04-14 02:15:44 Meisterbot night 2014-04-14 02:16:00 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-14 02:16:06 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-04-14 03:21:16 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has quit 2014-04-14 06:54:22 <-- Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-14 07:12:28 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-14 10:59:58 -- irc: disconnected from server 2014-04-14 11:00:10 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-14 11:00:10 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-14 11:00:10 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-14 11:00:10 -- Channel #pikipedia: 6 nicks (1 op, 0 voices, 5 normals) 2014-04-14 11:00:10 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-14 11:00:10 -- Mode #pikipedia [+o J] by ChanServ 2014-04-14 11:00:13 -- Mode #pikipedia [+nt] 2014-04-14 11:00:13 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-14 11:13:23 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-14 11:20:54 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-14 11:20:55 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-14 12:33:47 Testyo [Fanon RC] User talk:Bulborb bro by New Pikminjp (+84 /* Yo */ ) http://www.pikminfanon.com/index.php?title=User_talk:Bulborb_bro&curid=6626&diff=44043&oldid=44025 2014-04-14 12:33:47 Testyo [Fanon RC] User talk:ThePikminMeiste... by New Pikminjp (+52 /* I believe I got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44044&oldid=44026 2014-04-14 13:08:55 Testyo [Fanon RC] User talk:New Pikminjp by ThePikminMeister (+135 m /* Re: I believe I've got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44045&oldid=44031 2014-04-14 13:09:34 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-14 19:04:47 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-14 19:04:47 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-14 19:04:47 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-14 19:04:47 -- Channel #pikipedia: 11 nicks (3 ops, 0 voices, 8 normals) 2014-04-14 19:04:47 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-14 19:04:47 -- Mode #pikipedia [+o J] by ChanServ 2014-04-14 19:04:48 -- Mode #pikipedia [+nt] 2014-04-14 19:04:49 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-14 19:05:49 @J did anyone see what time I left? And the reason? 2014-04-14 19:07:44 @Espyo 13:36 *** J quit (Ping timeout: 245 seconds) J@o-634.cust-87447.ip.static.uno.uk.net 2014-04-14 19:07:59 @Espyo also gonna shower really soon 2014-04-14 19:08:08 @J hmm 2014-04-14 19:08:14 @J I think there was a power cut 2014-04-14 19:08:24 @J at that time, I was eating at work, and the lights went out for a second 2014-04-14 19:08:41 @J and I quit at the same time, and my Raspberry Pi had rebooted? 2014-04-14 19:08:44 @J suspicious indeed 2014-04-14 19:08:56 @J and there goes my 100+-day uptime 2014-04-14 19:10:15 @Espyo hah 2014-04-14 19:10:18 @Espyo man, 100 days already... 2014-04-14 19:10:40 @J or something 2014-04-14 19:10:45 @J I don't even know any more 2014-04-14 19:10:55 @J must be much longer 2014-04-14 19:11:03 @Espyo must be less 2014-04-14 19:11:08 @J it was September or something 2014-04-14 19:11:11 @Espyo you quit several times already 2014-04-14 19:11:20 @Espyo anyway, brb, shower 2014-04-14 19:11:21 @J no, I quit, but didn't reboot 2014-04-14 19:47:09 -- irc: disconnected from server 2014-04-14 19:47:20 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-14 19:47:21 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-14 19:47:21 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-14 19:47:21 -- Channel #pikipedia: 11 nicks (3 ops, 0 voices, 8 normals) 2014-04-14 19:47:21 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-14 19:47:21 -- Mode #pikipedia [+o J] by ChanServ 2014-04-14 19:47:22 -- Mode #pikipedia [+nt] 2014-04-14 19:47:22 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-14 20:29:40 -- irc: disconnected from server 2014-04-14 20:29:53 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-14 20:29:53 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-14 20:29:53 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-14 20:29:53 -- Channel #pikipedia: 11 nicks (3 ops, 0 voices, 8 normals) 2014-04-14 20:29:53 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-14 20:29:53 -- Mode #pikipedia [+o J] by ChanServ 2014-04-14 20:29:54 -- Mode #pikipedia [+nt] 2014-04-14 20:29:54 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-14 20:44:42 @Espyo https://dl.dropboxusercontent.com/u/47921869/Pikmin_2_path%202014-04-14%2020-44-25-91.png 2014-04-14 21:00:28 Miles Find a glitch that will somehow add a bunch more that go straight down over the wall at the top of the map thanks in advance 2014-04-14 21:06:05 @Espyo will do 2014-04-14 21:12:09 Testyo [Fanon RC] Cave of Creeps by Bulborb bro (+1973 N Created page with "'''Cave of Creeps''' is the third cave dungeon in [[Freaky Fo...) http://www.pikminfanon.com/index.php?title=Cave_of_Creeps&curid=8736&diff=44046&oldid=0 2014-04-14 21:12:09 Testyo [Fanon RC] Cave of Creeps by Bulborb bro (-1) http://www.pikminfanon.com/index.php?title=Cave_of_Creeps&curid=8736&diff=44047&oldid=44046 2014-04-14 21:20:37 --> PikFan2 (Mibbit@opzq-664-097.monroe.lane.edu) has joined #pikipedia 2014-04-14 21:20:42 PikFan2 . 2014-04-14 21:21:03 PikFan2 wonder how my wrinklers are doing 2014-04-14 21:21:26 PikFan2 ...if the computer is still on 2014-04-14 21:22:56 PikFan2 still not sure what to think of this http://www.pikminwiki.com/index.php?title=Purple_Pikmin&curid=1101&diff=79467&oldid=79284 2014-04-14 21:24:00 PikFan2 also patrolled the edits 2014-04-14 21:25:06 PikFan2 hmmmmmmm 2014-04-14 21:25:15 PikFan2 [[f:Freaky Forest]] 2014-04-14 21:25:15 Testyo "f:Freaky_Forest" article = http://www.pikminwiki.com/index.php?title=f:Freaky_Forest 2014-04-14 21:25:25 PikFan2 [[fanon:Freaky Forest]] 2014-04-14 21:25:26 Testyo "Freaky_Forest" article = http://www.pikminfanon.com/index.php?title=Freaky_Forest 2014-04-14 21:25:48 PikFan2 yeah, f: is easier 2014-04-14 21:26:07 Meisterbot true dat 2014-04-14 21:26:15 PikFan2 ohi Meisterbot 2014-04-14 21:26:19 Meisterbot hai 2014-04-14 21:26:20 PikFan2 why aren't you in school 2014-04-14 21:26:25 Meisterbot wut 2014-04-14 21:26:32 PikFan2 did school end already 2014-04-14 21:26:36 Meisterbot no 2014-04-14 21:26:40 Meisterbot its 4:26 for me 2014-04-14 21:26:49 PikFan2 ...you're still at school? 2014-04-14 21:26:52 Meisterbot no 2014-04-14 21:26:58 Meisterbot im on spring break 2014-04-14 21:27:03 PikFan2 oh 2014-04-14 21:27:05 PikFan2 I see 2014-04-14 21:27:13 PikFan2 agh, bell's going to ring, gtg 2014-04-14 21:27:15 PikFan2 bye 2014-04-14 21:27:16 Testyo [Fanon RC] Talk:Pikmin: JfT/Brawl Mo... by New Pikminjp (+675) http://www.pikminfanon.com/index.php?title=Talk:Pikmin:_JfT/Brawl_Mode&curid=8620&diff=44048&oldid=43907 2014-04-14 21:27:16 Testyo [Fanon RC] User talk:ThePikminMeiste... by New Pikminjp (+67 /* I believe I got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44049&oldid=44044 2014-04-14 21:27:19 <-- PikFan2 (Mibbit@opzq-664-097.monroe.lane.edu) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-14 21:27:21 Meisterbot but even if I did have school, i would've been here an hour ago 2014-04-14 21:27:22 Meisterbot bai 2014-04-14 21:27:27 Meisterbot OMGWAT 2014-04-14 21:27:32 Meisterbot I GOT A SUGGESTION 2014-04-14 21:27:33 Meisterbot YES 2014-04-14 21:28:14 @J hmm, that's interesting 2014-04-14 21:28:23 @J I guess that explains why they sometimes go the wrong way for a bit 2014-04-14 21:29:26 @J do the edges have directionality? 2014-04-14 21:32:19 Testyo [Fanon RC] User talk:New Pikminjp by ThePikminMeister (+94 m /* Re: I believe I've got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44050&oldid=44045 2014-04-14 21:32:19 Testyo [Fanon RC] User:ThePikminMeister by ThePikminMeister (+1275 What the hail was I thinking) http://www.pikminfanon.com/index.php?title=User:ThePikminMeister&curid=8101&diff=44051&oldid=44007 2014-04-14 21:35:10 Meisterbot "What the hail" 2014-04-14 21:37:22 Testyo [Fanon RC] User talk:ThePikminMeiste... by New Pikminjp (+73 /* I believe I got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44052&oldid=44049 2014-04-14 21:37:23 Testyo [Fanon RC] User talk:ThePikminMeiste... by ThePikminMeister (-4 m) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44053&oldid=44052 2014-04-14 21:57:37 @Espyo true 2014-04-14 21:58:04 @Espyo I'll remove "Fanon:" if that's ok 2014-04-14 21:58:06 @Espyo just "F:" now 2014-04-14 21:58:18 @Espyo saves CPU usage and space and such 2014-04-14 21:58:24 @Espyo by a tiny amount, but it's still something 2014-04-14 21:58:44 @Espyo J: I think they do 2014-04-14 21:58:46 Meisterbot *puts on that "celebration" song* 2014-04-14 21:58:49 @Espyo I'll have to draw it later 2014-04-14 21:59:00 @Espyo besides an arrow, what other way can I draw it? 2014-04-14 22:01:10 Meisterbot gtg, cya 2014-04-14 22:01:12 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has left #pikipedia 2014-04-14 22:02:33 Testyo [Pikipedia RC] Purple Pikmin by Espyo (-94 m Undo revision 79467 by [[Special:Contributions/Pikmin Derp|Pikmin Derp]] ([[User...) http://www.pikminwiki.com/index.php?title=Purple_Pikmin&curid=1101&diff=79469&oldid=79467 2014-04-14 23:33:55 @Espyo doing transformations to align the map and the paths is super easy 2014-04-14 23:34:07 @Espyo but a simple translation to make the map image start at 0,0 so I can export to a bitmap 2014-04-14 23:34:13 @Espyo that, for some reason, is taking me over one hour 2014-04-14 23:36:45 @Espyo the image is drawn in the world coordinates X and Y 2014-04-14 23:36:51 @Espyo so to start at 0,0, I translate to -X and -Y 2014-04-14 23:36:54 @Espyo but... nope 2014-04-14 23:59:32 @Espyo ...finally 2014-04-14 23:59:36 @Espyo it's been far too long 2014-04-14 23:59:43 @Espyo since I made any progress 2014-04-15 00:24:25 @PikFan . 2014-04-15 00:25:11 @PikFan holy asdfghhjkl 2014-04-15 00:25:21 @PikFan popped a wrinkler and it gave 27 quint 2014-04-15 00:25:26 @PikFan refreshed of course 2014-04-15 00:25:50 @Espyo wow 2014-04-15 00:26:00 @Espyo also PikFan, I got two interesting news 2014-04-15 00:28:38 @PikFan hmm? 2014-04-15 00:28:56 @Espyo first of all, while searching for places to announce the engine in, I though of Reddit 2014-04-15 00:28:58 @Espyo I took a visit 2014-04-15 00:29:19 @Espyo and I noticed that the sidebar on the /Pikmin/ reddit has a link to Pikipedia as the wiki, and no links to wikia 2014-04-15 00:29:31 @Espyo so at LEAST from Reddit we're not losing traffic 2014-04-15 00:29:57 @PikFan yay 2014-04-15 00:30:09 @PikFan but 2014-04-15 00:30:22 @PikFan what if there are other Pikmin reddits, and they link to wikia 2014-04-15 00:30:29 @Espyo I think there's only one 2014-04-15 00:30:33 @PikFan or is there only one — ok, good 2014-04-15 00:31:20 @Espyo secondly, https://dl.dropboxusercontent.com/u/47921869/Pikmin_2_path%202014-04-14%2020-44-25-91.png weee 2014-04-15 00:31:29 @PikFan yeah 2014-04-15 00:31:36 @PikFan are those like carrying routes 2014-04-15 00:32:56 @Espyo yep 2014-04-15 00:33:03 @PikFan ah 2014-04-15 00:33:16 @Espyo it was easy to make (except for one part that literally took over an hour when it should've taken 5 minutes tops) 2014-04-15 00:33:21 @Espyo and it's of some good interest 2014-04-15 00:33:26 @Espyo not like a must-have, but it's pretty neat 2014-04-15 00:33:28 @PikFan right 2014-04-15 00:33:36 Testyo [Fanon RC] User:Peach Bulborb by Peach Bulborb (+19 Master flower rank!) http://www.pikminfanon.com/index.php?title=User:Peach_Bulborb&curid=6237&diff=44054&oldid=44038 2014-04-15 00:34:08 @PikFan so if there's an object that's not on a point, do the Pikmin carry the object to the nearest point and start following the shortest route? 2014-04-15 00:34:55 @Espyo I believe so 2014-04-15 00:35:03 @Espyo that's the method I'm thinking for the engine 2014-04-15 00:35:09 @Espyo that's the method that makes sense 2014-04-15 00:35:19 @Espyo all clues about how the paths and the data files are made point to that 2014-04-15 00:35:22 @Espyo so it has to work like that 2014-04-15 00:35:28 @PikFan pretty straightforward 2014-04-15 00:35:29 @Espyo so far, I haven't spotted any troublesome places 2014-04-15 00:35:46 @Espyo but I did notice that the PP has three waypoints that don't link to anything 2014-04-15 00:36:00 @Espyo I suppose the game must ignore them, because one of them is where the can-opener is 2014-04-15 00:36:06 @PikFan weird 2014-04-15 00:36:10 @Espyo wait, that's no can opener 2014-04-15 00:36:16 @Espyo the uh... bottle opener 2014-04-15 00:36:34 @PikFan ...what are you talking about 2014-04-15 00:36:40 @Espyo the Impediment Scourge 2014-04-15 00:36:41 @Espyo ugh 2014-04-15 00:36:44 @Espyo took a while to remember 2014-04-15 00:36:49 @PikFan oh heh 2014-04-15 00:36:58 @Espyo yeah, there's one lone waypoint with no connections on the stump with the Impediment Scourge 2014-04-15 00:37:03 @Espyo so I guess the game makes lone waypoints be ignored 2014-04-15 00:37:10 @PikFan odd 2014-04-15 00:37:16 @Espyo or else the Pikmin would get stuck on that point all the time when retrieving the IS 2014-04-15 00:37:31 @Espyo https://dl.dropboxusercontent.com/u/47921869/PP%20paths.png 2014-04-15 00:37:37 @Espyo let me know what you think 2014-04-15 00:37:45 @Espyo too big, colors hurt, arrows too small, ...? 2014-04-15 00:37:50 @PikFan I landed on PNF-404 2014-04-15 00:38:38 Testyo [Fanon RC] User talk:PikFan23 by Peach Bulborb (+122 /* Rank Request */ ) http://www.pikminfanon.com/index.php?title=User_talk:PikFan23&curid=4203&diff=44055&oldid=44041 2014-04-15 00:38:58 @Espyo huh 2014-04-15 00:43:39 Testyo [Fanon RC] User:Peach Bulborb/Archiv... by Peach Bulborb (+51) http://www.pikminfanon.com/index.php?title=User:Peach_Bulborb/Archive_Box&curid=7701&diff=44056&oldid=41067 2014-04-15 00:43:39 Testyo [Fanon RC] User talk:Peach Bulborb/A... by Peach Bulborb (+16788 N Created page with "{|style="margin-top: 7px; background-color: # FAE7...) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb/Archive_3&curid=8737&diff=44057&oldid=0 2014-04-15 00:43:39 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) 2014-04-15 00:44:17 @Espyo and that's all four of them 2014-04-15 00:45:09 @PikFan all four of what? 2014-04-15 00:45:28 @Espyo all four areas 2014-04-15 00:45:36 @Espyo got a map of all 2014-04-15 00:45:38 @Espyo will upload today 2014-04-15 00:45:43 @Espyo but first, tell me what you think 2014-04-15 00:45:47 @Espyo I linked to the PP one 2014-04-15 00:46:44 @PikFan 16:37 PikFan I landed on PNF-404 2014-04-15 00:47:48 @Espyo that tells me nothing 2014-04-15 00:47:54 @Espyo oh 2014-04-15 00:47:55 @Espyo heh 2014-04-15 00:47:55 @PikFan 404 page 2014-04-15 00:47:59 @Espyo ...but how can it be 2014-04-15 00:48:15 @Espyo https://dl.dropboxusercontent.com/u/47921869/PP%20paths.png 2014-04-15 00:48:28 @Espyo oh right! 2014-04-15 00:48:30 @Espyo Dropbox is paused 2014-04-15 00:48:41 Testyo [Fanon RC] User talk:Peach Bulborb by PikFan23 (+468) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=44059&oldid=44058 2014-04-15 00:50:03 @Espyo all right, click now 2014-04-15 00:55:10 @Espyo well? 2014-04-15 00:56:07 @PikFan I like the AW's style better 2014-04-15 00:56:37 @PikFan I mean, the arrows are good, I like that 2014-04-15 00:56:39 @Espyo in what regard? 2014-04-15 00:56:56 @Espyo the background color? 2014-04-15 00:56:59 @PikFan I don't see why there are those huge green lines 2014-04-15 00:57:08 @Espyo those are part of the information 2014-04-15 00:57:13 @Espyo notice how they have different widths 2014-04-15 00:57:21 @Espyo err, thicknesses 2014-04-15 01:03:47 Testyo [Fanon RC] Template:Pikmin Story by Peach Bulborb (-467) http://www.pikminfanon.com/index.php?title=Template:Pikmin_Story&curid=7389&diff=44060&oldid=43942 2014-04-15 01:03:47 Testyo [Fanon RC] PikminFanon:Pikmin Story ... by Peach Bulborb (+1243 /* Dream, or Nightmare? */ ) http://www.pikminfanon.com/index.php?title=PikminFanon:Pikmin_Story_Archive&curid=7406&diff=44061&oldid=43943 2014-04-15 01:03:47 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) 2014-04-15 01:11:49 @PikFan right, but 2014-04-15 01:11:56 @PikFan what do the thicknesses mean 2014-04-15 01:12:08 @Espyo I don't know yet 2014-04-15 01:12:12 @Espyo two hypotheses: 2014-04-15 01:12:24 @Espyo or three 2014-04-15 01:12:38 @Espyo a) it specifies the max girth of the object that can go through 2014-04-15 01:13:06 @Espyo so you don't try carrying a giant treasure through a small tunnel 2014-04-15 01:13:20 @Espyo b) it specifies how close the Pikmin need to be to be considered "on-path" 2014-04-15 01:13:37 @Espyo so a thicker line means more leeway to have the Pikmin be considered following the path 2014-04-15 01:13:46 @Espyo while thinner lines make the Pikmin be more precise before they keep going 2014-04-15 01:13:52 Testyo [Fanon RC] User talk:Peach Bulborb by New Pikminjp (+105 /* Re: Rank Request */ ) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=44063&oldid=44059 2014-04-15 01:13:53 @Espyo this allows them to align properly with tight entrances 2014-04-15 01:14:05 @Espyo or c) it's some sort of preference number 2014-04-15 01:14:21 @Espyo maybe the higher it is, the higher the chances of the Pikmin following that path instead of others 2014-04-15 01:14:31 @Espyo probably one or both of the first two 2014-04-15 01:15:55 @PikFan uh-oh 2014-04-15 01:16:00 @PikFan CC isn't working...! 2014-04-15 01:16:14 @PikFan ok, so here's what happened 2014-04-15 01:16:24 @PikFan I somehow went to the previous page 2014-04-15 01:16:37 @PikFan even though the "Do you want to leave?" notification is enabled 2014-04-15 01:16:44 @PikFan and now I can't get back in 2014-04-15 01:21:05 @Espyo uh, weird 2014-04-15 01:21:16 @Espyo also I just realized, that "thickness" is set on a per-waypoint basis 2014-04-15 01:21:22 @Espyo not on a per-path basis 2014-04-15 01:21:29 @Espyo so maybe it's the waypoint's radius 2014-04-15 01:25:27 @Espyo https://dl.dropboxusercontent.com/u/47921869/Output.png what about this? 2014-04-15 01:26:05 @PikFan a bit better 2014-04-15 01:26:15 @PikFan what do the different sized circles mean, though? 2014-04-15 01:26:31 @PikFan ...oh, that's AW 2014-04-15 01:27:23 @Espyo yeah, what I said above 2014-04-15 01:27:31 @Espyo except I guess now point b) is moot 2014-04-15 01:27:36 @Espyo rather, point a) 2014-04-15 01:27:40 @Espyo actually, I don't know 2014-04-15 01:32:42 @Espyo why are there so many points near the Bulblax Kingdom entrance? 2014-04-15 01:32:46 @Espyo what's in there that's so special? 2014-04-15 01:40:10 @Espyo hey, those two unconnected waypoints in PP 2014-04-15 01:40:20 @Espyo they're on the bridge that leads to the Shower Room 2014-04-15 01:40:26 @Espyo and there is no path there 2014-04-15 01:40:34 @Espyo so if you don't destroy the pre-SR clog 2014-04-15 01:40:47 @Espyo build the bridge, go there with Blues 2014-04-15 01:40:57 @Espyo kill the Wogpoles, bring them to land 2014-04-15 01:41:05 @Espyo then have non-Blues carry them 2014-04-15 01:41:13 @Espyo ...they should go through he water 2014-04-15 01:53:43 @PikFan *the 2014-04-15 01:53:54 @Espyo yeah 2014-04-15 01:53:56 @Espyo http://www.pikminwiki.com/index.php?title=Carrying&diff=79470&oldid=79135 all right, done 2014-04-15 01:54:05 @Espyo I'll have to test that thing tomorrow 2014-04-15 01:54:08 Testyo [Pikipedia RC] Carrying by Espyo (+3817 Added information about the paths. Images will come tomorrow.) http://www.pikminwiki.com/index.php?title=Carrying&curid=7921&diff=79470&oldid=79135 2014-04-15 01:54:59 @Espyo going to bed now 2014-04-15 01:55:01 @Espyo ...2AM 2014-04-15 01:55:24 @PikFan night 2014-04-15 01:55:43 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-15 01:55:48 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-04-15 02:02:23 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-15 02:03:46 --> Chillv (Mibbit@a99-09-355-843.try.wideopenwest.com) has joined #pikipedia 2014-04-15 02:04:18 Chillv Hello 2014-04-15 02:05:12 <-- Chillv (Mibbit@a99-09-355-843.try.wideopenwest.com) has quit (Client Quit) 2014-04-15 02:16:52 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-15 02:34:30 --> Gamefreak75 (NewYokuba@2605:e000:2e44:oqjk:ktul:qzwr:roxu:uxsz) has joined #pikipedia 2014-04-15 02:37:58 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-04-15 04:45:55 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit (Ping timeout: 240 seconds) 2014-04-15 05:43:21 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:oqjk:ktul:qzwr:roxu:uxsz) has quit (Ping timeout: 250 seconds) 2014-04-15 05:43:45 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-04-15 06:36:31 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit 2014-04-15 08:38:06 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-15 11:19:06 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-15 11:25:56 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-15 11:25:56 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-15 12:39:42 Testyo [Fanon RC] User talk:PikFan23 by New Pikminjp (+122 /* Rank Request */ ) http://www.pikminfanon.com/index.php?title=User_talk:PikFan23&curid=4203&diff=44065&oldid=44055 2014-04-15 13:25:04 Testyo [Fanon RC] User talk:Peach Bulborb by ThePikminMeister (+145 m) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=44066&oldid=44063 2014-04-15 13:28:47 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-15 13:29:07 Meisterbot [[fanon:Plan sheet for new pikminjp and bulborb bro's game]] 2014-04-15 13:29:07 Testyo "fanon:Plan_sheet_for_new_pikminjp_and_bulborb_bro's_game" article = http://www.pikminwiki.com/index.php?title=fanon:Plan_sheet_for_new_pikminjp_and_bulborb_bro's_game 2014-04-15 13:29:21 Meisterbot [[f:Plan sheet for new pikminjp and bulborb bro's game]] 2014-04-15 13:29:22 Testyo "Plan_sheet_for_new_pikminjp_and_bulborb_bro's_game" article = http://www.pikminfanon.com/index.php?title=Plan_sheet_for_new_pikminjp_and_bulborb_bro's_game 2014-04-15 13:29:44 Meisterbot [[f:Plan sheet for pikminjp and bulborb bro's game]] 2014-04-15 13:29:44 Testyo "Plan_sheet_for_pikminjp_and_bulborb_bro's_game" article = http://www.pikminfanon.com/index.php?title=Plan_sheet_for_pikminjp_and_bulborb_bro's_game 2014-04-15 13:29:46 Meisterbot there 2014-04-15 13:30:06 Testyo [Fanon RC] User talk:New Pikminjp by ThePikminMeister (+366 m /* Re: I believe I've got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44067&oldid=44064 2014-04-15 13:30:10 Meisterbot ugh no 2014-04-15 13:30:24 Meisterbot [[f:Plan sheet for Pikminjp and Bulborb bro's game]] 2014-04-15 13:30:24 Testyo "Plan_sheet_for_Pikminjp_and_Bulborb_bro's_game" article = http://www.pikminfanon.com/index.php?title=Plan_sheet_for_Pikminjp_and_Bulborb_bro's_game 2014-04-15 13:30:32 Meisterbot there 2014-04-15 13:30:46 Meisterbot now what was new pikminjp thinking when he made this 2014-04-15 13:50:16 Testyo [Pikipedia RC] File:VoR paths.png uploaded by Espyo (A graphical representation of the [[Carrying#Paths|carrying paths]] in the [[Val...) http://www.pikminwiki.com/index.php?title=File:VoR_paths.png 2014-04-15 13:55:20 Testyo [Pikipedia RC] File:VoR paths.png by Espyo (+41 m Felt this should be added.) http://www.pikminwiki.com/index.php?title=File:VoR_paths.png&curid=9669&diff=79472&oldid=79471 2014-04-15 13:55:20 Testyo [Pikipedia RC] File:AW paths.png uploaded by Espyo (A graphical representation of the [[Carrying#Paths|carrying paths]] in the [[Awa...) http://www.pikminwiki.com/index.php?title=File:AW_paths.png 2014-04-15 13:55:20 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) 2014-04-15 14:13:36 <-- Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has quit (Ping timeout: 245 seconds) 2014-04-15 14:20:47 Testyo [Pikipedia RC] Wayward Moon by Pikmin Derp (+395 N Created page with "===Wayward Moon=== the Wayward Moon is found once in Story Mo...) http://www.pikminwiki.com/index.php?title=Wayward_Moon&curid=9673&diff=79477&oldid=0 2014-04-15 14:33:41 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-15 14:33:46 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-15 14:33:46 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-15 14:49:19 @Espyo oh yeah 2014-04-15 14:49:29 @Espyo you can get Pikmin stuck 2014-04-15 14:51:34 Meisterbot *starts clapping* 2014-04-15 14:55:27 @Espyo http://www.pikminwiki.com/images/e/e8/PP_paths.png 2014-04-15 14:55:35 @Espyo those lone unconnected points to the right? 2014-04-15 14:55:45 @Espyo they're the bridge that leads to the Shower Room 2014-04-15 14:55:50 @Espyo but they don't have any paths 2014-04-15 14:55:57 @Espyo so if you make the Pikmin carry you on top of the bridge 2014-04-15 14:56:02 @Espyo they'll go for the point to the left of the bridge 2014-04-15 14:56:06 @Espyo and get stuck on the bridge's wall 2014-04-15 14:56:10 Meisterbot beautiful 2014-04-15 14:56:25 @Espyo I wanted to test having non-Blues carry you on the Shower Room beach, though 2014-04-15 14:56:30 @Espyo because the only path is through the water 2014-04-15 14:56:37 @Espyo what would they do? go in the water, or stay outside? 2014-04-15 15:03:13 @Espyo answer: water 2014-04-15 15:03:21 Meisterbot hurray 2014-04-15 15:11:42 Testyo [Pikipedia RC] Dawn Pustules by Pikmin Derp (+387 N Created page with "===Dawn Pustules=== The Dawn Pusstules are green Grapes, foun...) http://www.pikminwiki.com/index.php?title=Dawn_Pustules&curid=9674&diff=79478&oldid=0 2014-04-15 15:21:53 Testyo [Pikipedia RC] Fragments by Pikmin Derp (+363 N Created page with "===Fragments=== Fragments are the [[Bridge]] pieces in [[Pikm...) http://www.pikminwiki.com/index.php?title=Fragments&curid=9675&diff=79479&oldid=0 2014-04-15 15:26:59 Testyo [Pikipedia RC] Dawn Pustules by Pikmin Derp (-1 m) http://www.pikminwiki.com/index.php?title=Dawn_Pustules&curid=9674&diff=79480&oldid=79478 2014-04-15 15:26:59 Testyo [Pikipedia RC] Dusk Pustules by Pikmin Derp (+41 m) http://www.pikminwiki.com/index.php?title=Dusk_Pustules&curid=9668&diff=79481&oldid=79466 2014-04-15 15:32:05 Testyo [Pikipedia RC] Carrying by Espyo (+148 Fixed some info.) http://www.pikminwiki.com/index.php?title=Carrying&curid=7921&diff=79482&oldid=79476 2014-04-15 15:42:17 Testyo [Pikipedia RC] Glitches in Pikmin 2 by Espyo (+1159 m /* Pikmin-related */ Added the Pikmin getting stuck while carrying in PP.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_2&curid=8423&diff=79483&oldid=79430 2014-04-15 15:42:17 Testyo [Pikipedia RC] Template:Glitch by Espyo (+8 m It was ambiguous; could've meant "what should happen if the glitch is successful...) http://www.pikminwiki.com/index.php?title=Template:Glitch&curid=8671&diff=79484&oldid=78501 2014-04-15 15:42:18 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) 2014-04-15 15:47:20 Testyo [Pikipedia RC] Skeeterskate by Pikmin Derp (+396 N Created page with "===Skeeterskate=== The Skeeterskate is an enemy that slides a...) http://www.pikminwiki.com/index.php?title=Skeeterskate&curid=9676&diff=79486&oldid=0 2014-04-15 15:52:25 Testyo [Pikipedia RC] Skeeterskate by Pikmin Derp (0 m /* Trivia */) http://www.pikminwiki.com/index.php?title=Skeeterskate&curid=9676&diff=79487&oldid=79486 2014-04-15 15:52:26 Testyo [Pikipedia RC] Pikipedia:Glitch notes by Espyo (+171 Fixed some info.) http://www.pikminwiki.com/index.php?title=Pikipedia:Glitch_notes&curid=8390&diff=79488&oldid=76046 2014-04-15 16:02:28 Testyo [Pikipedia RC] Dusk Pustules by Pikmin Derp (+6 m) http://www.pikminwiki.com/index.php?title=Dusk_Pustules&curid=9668&diff=79489&oldid=79481 2014-04-15 16:02:29 Testyo [Fanon RC] Pikmin: Journey for Treas... by Peach Bulborb (0 m fixed templates) http://www.pikminfanon.com/index.php?title=Pikmin:_Journey_for_Treasures&curid=8561&diff=44068&oldid=43598 2014-04-15 16:12:38 Testyo [Fanon RC] Talk:Pikmin: JfT/Brawl Mo... by Peach Bulborb (+759 left suggestion) http://www.pikminfanon.com/index.php?title=Talk:Pikmin:_JfT/Brawl_Mode&curid=8620&diff=44069&oldid=44048 2014-04-15 16:12:38 Testyo [Fanon RC] Talk:Pikmin: JfT/Brawl Mo... by Peach Bulborb (+3 m) http://www.pikminfanon.com/index.php?title=Talk:Pikmin:_JfT/Brawl_Mode&curid=8620&diff=44070&oldid=44069 2014-04-15 16:17:44 Testyo [Fanon RC] User talk:Peach Bulborb by ThePikminMeister (+99 m /* Ideas! */ ) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=44071&oldid=44066 2014-04-15 16:22:49 Testyo [Pikipedia RC] Carrying by Espyo (+165 m /* Paths */ I can't really get them to go up walls in P1.) http://www.pikminwiki.com/index.php?title=Carrying&curid=7921&diff=79490&oldid=79482 2014-04-15 17:18:41 Testyo [Fanon RC] User:KirbyKrafter by KirbyKrafter (+31) http://www.pikminfanon.com/index.php?title=User:KirbyKrafter&curid=7616&diff=44072&oldid=43955 2014-04-15 17:23:45 Testyo [Fanon RC] User:KirbyKrafter by KirbyKrafter (-51) http://www.pikminfanon.com/index.php?title=User:KirbyKrafter&curid=7616&diff=44073&oldid=44072 2014-04-15 17:53:52 Testyo [Pikipedia RC] Purple Pikmin by Pikmin Derp (+81 m /* Trivia */) http://www.pikminwiki.com/index.php?title=Purple_Pikmin&curid=1101&diff=79491&oldid=79469 2014-04-15 17:58:54 Testyo [Pikipedia RC] Purple Pikmin by Pikmin Derp (+1 m /* Trivia */) http://www.pikminwiki.com/index.php?title=Purple_Pikmin&curid=1101&diff=79492&oldid=79491 2014-04-15 18:28:41 Meisterbot wow 2014-04-15 18:28:45 Meisterbot i have 199 cursors 2014-04-15 18:28:55 Meisterbot I CANT AFFORD THE 200TH ONE UGH 2014-04-15 18:33:02 Meisterbot ooh, elder frenzy 2014-04-15 18:33:07 Meisterbot 200 cursorS! 2014-04-15 18:36:53 @Espyo heh 2014-04-15 18:56:07 Meisterbot must get 100 cps 2014-04-15 18:56:11 Meisterbot i have 96 2014-04-15 18:56:35 Meisterbot *bliions 2014-04-15 19:09:15 Testyo [Pikipedia RC] Orange Bulborb by Pikmin Derp (0 m) http://www.pikminwiki.com/index.php?title=Orange_Bulborb&curid=1189&diff=79493&oldid=78388 2014-04-15 19:30:04 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-15 19:31:00 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Ping timeout: 240 seconds) 2014-04-15 19:35:38 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-15 19:35:38 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-15 19:43:44 <-- Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-15 19:43:48 Meisterbot YES 2014-04-15 19:44:09 Meisterbot 167.126 BILLION CPS!!!!!!!! 2014-04-15 20:14:55 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-15 21:05:32 Testyo [Fanon RC] User talk:Peach Bulborb by ThePikminMeister (+37 m /* Ideas! */ ) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=44075&oldid=44071 2014-04-15 21:30:37 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: Bye bye everyone!) 2014-04-15 21:39:57 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-15 21:40:19 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Client Quit) 2014-04-15 21:41:08 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-15 21:42:05 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Client Quit) 2014-04-15 21:42:16 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-15 21:47:11 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Client Quit) 2014-04-15 21:49:09 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-15 22:59:26 Testyo [Pikipedia RC] Purple Pikmin by Peach Bulborb (-82 /* Trivia */ Winged Pikmin lack a resistance) http://www.pikminwiki.com/index.php?title=Purple_Pikmin&curid=1101&diff=79494&oldid=79492 2014-04-15 23:37:43 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-15 23:37:43 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-15 23:38:32 @PikFan . 2014-04-15 23:39:26 @Espyo hey 2014-04-15 23:43:02 @PikFan gotta go to a dinner, back later 2014-04-15 23:43:08 @PikFan bye 2014-04-15 23:56:52 --> Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has joined #pikipedia 2014-04-16 01:50:53 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 01:50:59 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-04-16 02:55:14 --> Testyo (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-16 02:55:31 -- Testyo is now known as TPM 2014-04-16 03:00:53 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 04:08:14 -- Meisterbot is now known as PBlastoise 2014-04-16 04:10:08 -- PBlastoise is now known as Meisterbot 2014-04-16 04:10:20 Meisterbot stop teh game 2014-04-16 04:10:30 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-16 04:10:51 Meisterbot lets go to #meisterbot and play this 2014-04-16 04:11:02 Meisterbot whoops, wrong chan 2014-04-16 04:11:02 Meisterbot xD 2014-04-16 04:13:56 -- TPM is now known as PBlastoise 2014-04-16 04:19:31 -- PBlastoise is now known as TPM 2014-04-16 05:03:40 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has quit 2014-04-16 05:04:08 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 06:03:23 --> Gamefreak75 (NewYokuba@2605:e000:2e44:rrlo:wsj:kqzv:wgnm:kzuq) has joined #pikipedia 2014-04-16 06:11:00 --> Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-16 06:16:00 <-- Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 06:16:17 --> Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-16 06:21:22 <-- Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 06:21:26 --> Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-16 06:26:23 <-- Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 06:33:08 --> Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-16 06:38:07 <-- Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 06:47:28 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:oqjz:wiyw:rowg:pzji:kilo) has joined #pikipedia 2014-04-16 06:50:29 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:rrlo:wsj:kqzv:wgnm:kzuq) has quit (Ping timeout: 250 seconds) 2014-04-16 06:50:43 -- Gamefreak75_ is now known as Gamefreak75 2014-04-16 08:04:26 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:wmvo:gmz:nwlp:llzz:tzu) has joined #pikipedia 2014-04-16 08:07:19 --> Gamefreak75__ (NewYokuba@2605:e000:2e44:jgjk:kymx:njgv:ihkn:kltp) has joined #pikipedia 2014-04-16 08:07:37 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:oqjz:wiyw:rowg:pzji:kilo) has quit (Ping timeout: 250 seconds) 2014-04-16 08:07:44 -- Gamefreak75__ is now known as Gamefreak75 2014-04-16 08:11:05 <-- Gamefreak75_ (NewYokuba@2605:e000:2e44:wmvo:gmz:nwlp:llzz:tzu) has quit (Ping timeout: 250 seconds) 2014-04-16 08:38:23 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:jgjk:kymx:njgv:ihkn:kltp) has quit (Ping timeout: 250 seconds) 2014-04-16 08:51:49 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-16 09:32:28 --> Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has joined #pikipedia 2014-04-16 11:27:17 <-- Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 11:28:29 --> Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has joined #pikipedia 2014-04-16 11:28:49 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-16 11:35:22 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-16 11:35:22 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-16 14:45:06 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-16 14:45:06 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-16 14:45:06 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-16 14:45:06 -- Channel #pikipedia: 10 nicks (2 ops, 0 voices, 8 normals) 2014-04-16 14:45:06 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-16 14:45:06 -- Mode #pikipedia [+o J] by ChanServ 2014-04-16 14:45:07 -- Mode #pikipedia [+nt] 2014-04-16 14:45:07 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-16 14:45:28 @J okay, when did I leave this time? 2014-04-16 14:45:49 @J (also, I'm away-ish for a week or so, probably won't be around much) 2014-04-16 14:51:40 @Espyo hm, all right 2014-04-16 14:51:48 @Espyo uh, 12:40, ping timeout (245 sec) 2014-04-16 14:52:48 @J strange 2014-04-16 15:37:06 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 16:01:46 Testyo [Pikipedia RC] Toady Bloyster by Pikmin Derp (+7 m) http://www.pikminwiki.com/index.php?title=Toady_Bloyster&curid=1552&diff=79496&oldid=78306 2014-04-16 16:06:50 Testyo [Pikipedia RC] Frosty Bauble by Pikmin Derp (+20 m) http://www.pikminwiki.com/index.php?title=Frosty_Bauble&curid=586&diff=79497&oldid=78115 2014-04-16 16:06:50 Testyo [Pikipedia RC] Frosty Bauble by Pikmin Derp (-20) http://www.pikminwiki.com/index.php?title=Frosty_Bauble&curid=586&diff=79498&oldid=79497 2014-04-16 16:07:40 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-16 16:07:40 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-16 16:07:48 @PikFan . 2014-04-16 16:07:54 @PikFan ok so 2014-04-16 16:08:40 @PikFan on [[Carrying#Paths]], it says "In addition, some paths are bidirectional. It is unknown why this is the case" 2014-04-16 16:08:40 Testyo "Carrying#Paths" article = http://www.pikminwiki.com/index.php?title=Carrying#Paths 2014-04-16 16:09:00 @PikFan they're bidirectional because of the Onions 2014-04-16 16:09:20 @PikFan for VoR through PP, anyway 2014-04-16 16:09:38 @PikFan I found a set of those bidirectional routes in the WW 2014-04-16 16:09:58 @PikFan it's in that arena with the two Orange Bulborbs 2014-04-16 16:10:11 @PikFan they're bidirectional there because of the two gates 2014-04-16 16:11:08 @PikFan oh, another thing 2014-04-16 16:11:29 @PikFan the oddity in the AW, with the waypoint in the middle of the bridge 2014-04-16 16:12:01 @PikFan it's actually under the bridge 2014-04-16 16:12:20 @PikFan so Pikmin can carry something that's underneath that bridge 2014-04-16 16:12:57 @PikFan ...oh, bus is almost here 2014-04-16 16:13:01 @PikFan gotta go, bye 2014-04-16 16:13:15 @Espyo oh 2014-04-16 16:13:16 @Espyo fair enough 2014-04-16 16:13:34 @Espyo ah, makes sense, but the Pikmin should slam against the bottom of the bridge then, no? 2014-04-16 16:13:40 @Espyo plus why don't other bridges have that? 2014-04-16 16:57:09 Testyo [Pikipedia RC] Seed Hive by Pikmin Derp (-11 m) http://www.pikminwiki.com/index.php?title=Seed_Hive&curid=9677&diff=79500&oldid=79499 2014-04-16 16:57:09 Testyo [Pikipedia RC] Seed Hive by Pikmin Derp (+12 m) http://www.pikminwiki.com/index.php?title=Seed_Hive&curid=9677&diff=79501&oldid=79500 2014-04-16 16:57:09 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) 2014-04-16 17:07:16 Testyo [Pikipedia RC] Wayward Moon by Pikmin Derp (+228 m) http://www.pikminwiki.com/index.php?title=Wayward_Moon&curid=9673&diff=79505&oldid=79504 2014-04-16 18:33:36 Testyo [Pikipedia RC] Dawn Pustules by Pikmin Derp (0 m) http://www.pikminwiki.com/index.php?title=Dawn_Pustules&curid=9674&diff=79506&oldid=79502 2014-04-16 18:33:36 Testyo [Pikipedia RC] Fragments by Pikmin Derp (+18 m) http://www.pikminwiki.com/index.php?title=Fragments&curid=9675&diff=79507&oldid=79479 2014-04-16 18:33:36 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) 2014-04-16 19:09:10 Testyo [Pikipedia RC] Alph by Pikmin Derp (-7 m /* Appearance */) http://www.pikminwiki.com/index.php?title=Alph&curid=8300&diff=79510&oldid=79039 2014-04-16 19:14:15 Testyo [Pikipedia RC] Alph by Pikmin Derp (+198 m) http://www.pikminwiki.com/index.php?title=Alph&curid=8300&diff=79511&oldid=79510 2014-04-16 19:14:15 Testyo [Pikipedia RC] Alph by Pikmin Derp (+9 m /* Personality */) http://www.pikminwiki.com/index.php?title=Alph&curid=8300&diff=79512&oldid=79511 2014-04-16 19:22:31 --> TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has joined #pikipedia 2014-04-16 19:24:33 <-- TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has quit (Client Quit) 2014-04-16 19:30:23 Testyo [Pikipedia RC] Dawn Pustules by Pikmin Derp (0 m) http://www.pikminwiki.com/index.php?title=Dawn_Pustules&curid=9674&diff=79513&oldid=79508 2014-04-16 20:38:09 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 21:00:58 <-- Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-16 21:03:56 --> Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has joined #pikipedia 2014-04-16 21:22:55 --> PikFan2 (Mibbit@opzq-664-097.monroe.lane.edu) has joined #pikipedia 2014-04-16 21:22:56 PikFan2 . 2014-04-16 21:23:10 PikFan2 ok, somebody try posting a YT video 2014-04-16 21:23:47 PikFan2 I want to see if it can bypass the filter 2014-04-16 21:24:52 PikFan2 ...isn't there a URL that lets you get to YouTube 2014-04-16 21:25:14 PikFan2 though I'm reluctant to use it, whatever it is, at the risk of getting in trouble 2014-04-16 21:26:15 PikFan2 well then , bell's going to ring in a moment 2014-04-16 21:26:22 PikFan2 home in about 2 hours 2014-04-16 21:26:23 PikFan2 bye 2014-04-16 21:26:26 <-- PikFan2 (Mibbit@opzq-664-097.monroe.lane.edu) has quit (Client Quit) 2014-04-16 21:36:12 Testyo [Fanon RC] User talk:Bulborb bro by New Pikminjp (+226 /* Yo */ ) http://www.pikminfanon.com/index.php?title=User_talk:Bulborb_bro&curid=6626&diff=44079&oldid=44077 2014-04-16 22:06:23 Testyo [Pikipedia RC] 2-Player Battle by Espyo (-40 m Fixed some tiny things.) http://www.pikminwiki.com/index.php?title=2-Player_Battle&curid=86&diff=79514&oldid=78795 2014-04-16 22:18:37 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-16 22:24:24 Spark soup 2014-04-16 22:24:43 @Espyo soup Spark 2014-04-16 23:34:36 @PikFan 08:13 Espyo ah, makes sense, but the Pikmin should slam against the bottom of the bridge then, no? 2014-04-16 23:34:46 @PikFan the solution to an oddity yields a new oddity... 2014-04-16 23:35:15 @Espyo heh 2014-04-16 23:35:16 @Espyo try it 2014-04-16 23:35:22 @Espyo I would, but I'm busy with a load of things 2014-04-16 23:49:42 --> ThePikminMeister (Mibbit@wekk192-665.defiant.tvcconnect.net) has joined #pikipedia 2014-04-16 23:49:53 -- ThePikminMeister is now known as TPM 2014-04-17 00:09:26 <-- TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 00:28:00 --> ThePikminMeister (Mibbit@wekk192-665.defiant.tvcconnect.net) has joined #pikipedia 2014-04-17 00:28:00 <-- ThePikminMeister (Mibbit@wekk192-665.defiant.tvcconnect.net) has quit (Client Quit) 2014-04-17 00:34:15 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 00:34:27 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-17 00:34:27 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-17 00:36:43 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: So long everyone!) 2014-04-17 00:37:40 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-17 00:45:29 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: Bye bye everyone!) 2014-04-17 00:46:52 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-17 02:02:30 Testyo [Fanon RC] User talk:New Pikminjp by Bulborb bro (+385 /* Hey */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44080&oldid=44078 2014-04-17 02:07:35 Testyo [Pikipedia RC] Carrying by Espyo (+828 Added more Pikmin 2 waypoint shenanigans, involving bridges. Also, like PikFan s...) http://www.pikminwiki.com/index.php?title=Carrying&curid=7921&diff=79515&oldid=79490 2014-04-17 02:07:50 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 02:08:02 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-04-17 04:16:08 --> Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-17 04:21:07 <-- Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 04:26:59 --> Gamefreak75 (NewYokuba@2605:e000:2e44:zsix:qtnu:rpmz:qsyl:jton) has joined #pikipedia 2014-04-17 04:31:08 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:zsnn:zhmr:jkgg:lwtq:lxrt) has joined #pikipedia 2014-04-17 04:33:57 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:zsix:qtnu:rpmz:qsyl:jton) has quit (Ping timeout: 250 seconds) 2014-04-17 04:34:09 -- Gamefreak75_ is now known as Gamefreak75 2014-04-17 05:50:54 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-17 06:08:40 --> Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-17 06:13:42 <-- Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 06:33:00 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 06:37:25 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-17 06:48:05 <-- Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 07:23:39 --> Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has joined #pikipedia 2014-04-17 07:58:40 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:tvou:pitt:jggy:uztg:yszx) has joined #pikipedia 2014-04-17 08:01:05 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:zsnn:zhmr:jkgg:lwtq:lxrt) has quit (Ping timeout: 250 seconds) 2014-04-17 08:01:09 -- Gamefreak75_ is now known as Gamefreak75 2014-04-17 08:49:11 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:tvou:pitt:jggy:uztg:yszx) has quit (Ping timeout: 250 seconds) 2014-04-17 08:52:30 <-- Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 11:14:04 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-17 11:20:51 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-17 11:20:51 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-17 12:39:41 Testyo [Pikipedia RC] User account AntoPac99 created http://www.pikminwiki.com/index.php?title=User:AntoPac99 2014-04-17 12:43:07 --> toukolise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has joined #pikipedia 2014-04-17 13:04:52 Testyo [Pikipedia RC] User:AntoPac99 by AntoPac99 (+878 N Created page with "Hi everyone, My real name is Anthony so you can I'll go by th...) http://www.pikminwiki.com/index.php?title=User:AntoPac99&curid=9678&diff=79516&oldid=0 2014-04-17 13:09:54 Testyo [Pikipedia RC] User:AntoPac99 by AntoPac99 (+1) http://www.pikminwiki.com/index.php?title=User:AntoPac99&curid=9678&diff=79517&oldid=79516 2014-04-17 13:25:02 Testyo [Pikipedia RC] Nectar by Pikmin Derp (+45 m) http://www.pikminwiki.com/index.php?title=Nectar&curid=901&diff=79518&oldid=79269 2014-04-17 14:14:23 <-- Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit (Ping timeout: 240 seconds) 2014-04-17 14:17:54 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 14:26:07 Testyo [Pikipedia RC] Alph by Pikmin Derp (+86 m) http://www.pikminwiki.com/index.php?title=Alph&curid=8300&diff=79519&oldid=79512 2014-04-17 15:17:01 Testyo [Pikipedia RC] Skeeterskate by Pikmin Derp (0 m) http://www.pikminwiki.com/index.php?title=Skeeterskate&curid=9676&diff=79520&oldid=79487 2014-04-17 15:44:41 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-17 15:44:41 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-17 15:44:49 @PikFan . 2014-04-17 15:47:31 @Espyo hey 2014-04-17 15:47:50 @PikFan might take a little longer to get to kitten managers this game 2014-04-17 15:48:02 @Espyo why? 2014-04-17 15:48:04 @PikFan not actively clicking GCs 2014-04-17 15:48:11 @PikFan because school 2014-04-17 15:48:44 @PikFan oh, and I went to a high school meeting last night 2014-04-17 15:49:36 @PikFan let's see 2014-04-17 15:49:49 @PikFan cps is 603.5 trillion 2014-04-17 15:50:19 @PikFan so cps should at least be 1.3 quad when I get kitten managers 2014-04-17 15:50:30 @PikFan alright, gotta go 2014-04-17 15:50:32 @PikFan bye 2014-04-17 15:51:43 <-- toukolise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 15:57:32 Testyo [Pikipedia RC] Desiccated skitter leaf by Pikmin Derp (+87 m) http://www.pikminwiki.com/index.php?title=Desiccated_skitter_leaf&curid=9504&diff=79521&oldid=78912 2014-04-17 16:52:28 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-04-17 17:03:45 Testyo [Pikipedia RC] Bridge by Espyo (+175 m /* Pikmin */ Added Challenge Mode locations.) http://www.pikminwiki.com/index.php?title=Bridge&curid=363&diff=79522&oldid=79128 2014-04-17 17:24:03 Testyo [Pikipedia RC] Climbing Stick by Pikmin Derp (+657) http://www.pikminwiki.com/index.php?title=Climbing_Stick&curid=1379&diff=79523&oldid=79090 2014-04-17 17:24:03 Testyo [Pikipedia RC] Climbing Stick by Pikmin Derp (-2) http://www.pikminwiki.com/index.php?title=Climbing_Stick&curid=1379&diff=79524&oldid=79523 2014-04-17 17:24:03 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-17 17:29:06 Testyo [Pikipedia RC] Carrying/Oversights by Espyo (+6052 N Created page with "{{game icons|p1=y|p2=y}} {{image}} Due to the way '''[[carr...) http://www.pikminwiki.com/index.php?title=Carrying/Oversights&curid=9679&diff=79526&oldid=0 2014-04-17 17:29:06 Testyo [Pikipedia RC] Carrying by Espyo (-2023 Moved the info over into [[Carrying/Oversights]].) http://www.pikminwiki.com/index.php?title=Carrying&curid=7921&diff=79527&oldid=79515 2014-04-17 17:29:06 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-17 17:34:11 Testyo [Pikipedia RC] Creeping Chrysanthemum by Pikmin Derp (+4 m) http://www.pikminwiki.com/index.php?title=Creeping_Chrysanthemum&curid=490&diff=79529&oldid=78318 2014-04-17 17:34:12 Testyo [Fanon RC] User talk:New Pikminjp by Bulborb bro (+218 /* Hey */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44084&oldid=44080 2014-04-17 17:39:15 Testyo [Pikipedia RC] Glitches in Pikmin 2 by Espyo (-318 Added a neat spinning glitch.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_2&curid=8423&diff=79531&oldid=79483 2014-04-17 17:39:15 Testyo [Pikipedia RC] File:VoR paths.png by Espyo (+121 m Precision disclaimer.) http://www.pikminwiki.com/index.php?title=File:VoR_paths.png&curid=9669&diff=79532&oldid=79472 2014-04-17 17:39:15 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-17 17:49:23 Testyo [Pikipedia RC] Pikipedia:Featured articl... by Espyo (+412 New nominee.) http://www.pikminwiki.com/index.php?title=Pikipedia:Featured_articles/nominations&curid=1767&diff=79536&oldid=72059 2014-04-17 17:50:55 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: Bye bye everyone!) 2014-04-17 17:51:14 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-17 18:06:28 Testyo [Fanon RC] Hazard by Espyo (+21 N Redirected page to [[Hazards]]) http://www.pikminfanon.com/index.php?title=Hazard&curid=8738&diff=44085&oldid=0 2014-04-17 18:21:40 Testyo [Fanon RC] User:KirbyKrafter by 75.178.27.144 (-312) http://www.pikminfanon.com/index.php?title=User:KirbyKrafter&curid=7616&diff=44086&oldid=44073 2014-04-17 19:07:13 Testyo [Fanon RC] User talk:KirbyKrafter by Peach Bulborb (+277 /* Hello Again! */ ) http://www.pikminfanon.com/index.php?title=User_talk:KirbyKrafter&curid=7615&diff=44087&oldid=40933 2014-04-17 19:07:13 Testyo [Fanon RC] User talk:KirbyKrafter by Peach Bulborb (-53 m /* Hello Again! */ whoops) http://www.pikminfanon.com/index.php?title=User_talk:KirbyKrafter&curid=7615&diff=44088&oldid=44087 2014-04-17 19:17:24 Testyo [Pikipedia RC] Bulblax Kingdom by Pikmin Derp (-45 m) http://www.pikminwiki.com/index.php?title=Bulblax_Kingdom&curid=61&diff=79537&oldid=77634 2014-04-17 20:22:04 --> Gamefreak75 (NewYokuba@2605:e000:2e44:hrgt:ktnx:wvs:tooz:uxlo) has joined #pikipedia 2014-04-17 20:25:17 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-17 20:35:49 --> TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has joined #pikipedia 2014-04-17 20:35:50 <-- TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has quit (Client Quit) 2014-04-17 20:36:35 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:oltk:hspi:hqxu:gskv:vljs) has joined #pikipedia 2014-04-17 20:38:59 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:hrgt:ktnx:wvs:tooz:uxlo) has quit (Ping timeout: 250 seconds) 2014-04-17 20:39:04 -- Gamefreak75_ is now known as Gamefreak75 2014-04-17 20:54:41 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:pnsx:twks:jthh:pgxq:zvuj) has joined #pikipedia 2014-04-17 20:57:11 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:oltk:hspi:hqxu:gskv:vljs) has quit (Ping timeout: 250 seconds) 2014-04-17 20:57:24 -- Gamefreak75_ is now known as Gamefreak75 2014-04-17 21:12:58 --> PikFan2 (Mibbit@opzq-664-097.monroe.lane.edu) has joined #pikipedia 2014-04-17 21:13:00 PikFan2 . 2014-04-17 21:13:13 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:pnsx:twks:jthh:pgxq:zvuj) has quit (Ping timeout: 250 seconds) 2014-04-17 21:17:26 PikFan2 mm, Carrying could use more images imo 2014-04-17 21:17:57 PikFan2 but otherwise good 2014-04-17 21:18:45 PikFan2 ...wait Espyo, you made a whole page for carrying oversights? 2014-04-17 21:21:16 PikFan2 oh, there's a carrying oversight I found in P3 2014-04-17 21:21:27 PikFan2 let's see... Distant Tundra 2014-04-17 21:21:34 PikFan2 uh 2014-04-17 21:21:45 PikFan2 ok, here's what happened 2014-04-17 21:22:10 PikFan2 some Pikmin were carrying dead Dessicated Skitter Leaves across Bloominous Stemples 2014-04-17 21:22:34 PikFan2 then they fell in between one of them 2014-04-17 21:23:13 PikFan2 there is a wall in front of them, but they keep carrying 2014-04-17 21:23:22 PikFan2 and eventually carry up the wall 2014-04-17 21:23:47 PikFan2 hmm, there is an interesting development going on 2014-04-17 21:23:54 PikFan2 home in 3 hours 2014-04-17 21:23:55 PikFan2 bye 2014-04-17 21:23:56 <-- PikFan2 (Mibbit@opzq-664-097.monroe.lane.edu) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 21:25:42 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 240 seconds) 2014-04-17 21:29:07 Testyo [Fanon RC] User:KirbyKrafter by 75.178.27.144 (+2) http://www.pikminfanon.com/index.php?title=User:KirbyKrafter&curid=7616&diff=44089&oldid=44086 2014-04-17 22:14:39 Testyo [Pikipedia RC] Calcified Crushblat by Pikmin Derp (+1 m) http://www.pikminwiki.com/index.php?title=Calcified_Crushblat&curid=9075&diff=79538&oldid=77290 2014-04-17 22:23:32 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-17 22:29:05 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-17 23:25:07 Testyo [Pikipedia RC] Category:Brittany's notes by Espyo (+109 N Created page with "The following is a list of [[fruit]] notes by [[Brittany]], i...) http://www.pikminwiki.com/index.php?title=Category:Brittany's_notes&curid=9680&diff=79539&oldid=0 2014-04-17 23:25:08 Testyo [Pikipedia RC] Category:Pikmin 2 notes by Espyo (+4 m Italicized.) http://www.pikminwiki.com/index.php?title=Category:Pikmin_2_notes&curid=2004&diff=79540&oldid=25960 2014-04-17 23:25:08 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-17 23:27:55 --> TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has joined #pikipedia 2014-04-17 23:28:22 <-- TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has quit (Client Quit) 2014-04-17 23:28:46 --> TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has joined #pikipedia 2014-04-17 23:29:30 <-- TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has quit (Client Quit) 2014-04-17 23:29:53 --> ThePikminMeister (Mibbit@wekk192-665.defiant.tvcconnect.net) has joined #pikipedia 2014-04-17 23:29:59 @Espyo PikFan: http://www.pikminwiki.com/Desiccated_Skitter_Leaf http://www.pikminwiki.com/Desiccated_skitter_leaf 2014-04-17 23:30:09 Testyo [Pikipedia RC] Category:Koppai by Espyo (+122 N Created page with "A category with subjects related to '''[[Koppai]]''', the lea...) http://www.pikminwiki.com/index.php?title=Category:Koppai&curid=9682&diff=79543&oldid=0 2014-04-17 23:30:09 Testyo [Pikipedia RC] Calcified Crushblat by Espyo (-7 m If it's unknown, don't add anything.) http://www.pikminwiki.com/index.php?title=Calcified_Crushblat&curid=9075&diff=79544&oldid=79538 2014-04-17 23:30:20 -- ThePikminMeister is now known as TPM 2014-04-17 23:35:13 Testyo [Pikipedia RC] Scale Blocks by Espyo (+8 m Fixed redir.) http://www.pikminwiki.com/index.php?title=Scale_Blocks&curid=1134&diff=79549&oldid=13535 2014-04-17 23:35:13 Testyo [Pikipedia RC] Stone Block by Espyo (+8 m Fixed redir.) http://www.pikminwiki.com/index.php?title=Stone_Block&curid=1572&diff=79550&oldid=20093 2014-04-17 23:35:13 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-17 23:36:35 <-- TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-17 23:40:15 Testyo [Pikipedia RC] Challenge Mode (Pikmin) by Espyo (+45 m Italicized title.) http://www.pikminwiki.com/index.php?title=Challenge_Mode_(Pikmin)&curid=297&diff=79554&oldid=77818 2014-04-17 23:40:15 Testyo [Pikipedia RC] Challenge Mode (Pikmin 2) by Espyo (+47 m Italicized title.) http://www.pikminwiki.com/index.php?title=Challenge_Mode_(Pikmin_2)&curid=58&diff=79555&oldid=77188 2014-04-17 23:40:15 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-17 23:45:17 Testyo [Pikipedia RC] Pikmin Dance by Espyo (+34 m Italicized title.) http://www.pikminwiki.com/index.php?title=Pikmin_Dance&curid=1282&diff=79559&oldid=73254 2014-04-17 23:53:14 <-- Nepeta (Mibbit@72-20-20-82.lightspeed.rcsntx.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-18 00:01:42 @Espyo also PikFan, you have GCN P, right? 2014-04-18 00:05:24 Testyo [Pikipedia RC] Day by Espyo (+120 m Added cutscene skipping trivia.) http://www.pikminwiki.com/index.php?title=Day&curid=8607&diff=79560&oldid=79138 2014-04-18 00:10:26 Testyo [Fanon RC] User talk:Bulborb bro by New Pikminjp (+88 /* Yo */ ) http://www.pikminfanon.com/index.php?title=User_talk:Bulborb_bro&curid=6626&diff=44090&oldid=44083 2014-04-18 00:15:36 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 240 seconds) 2014-04-18 00:20:32 Testyo [Pikipedia RC] Cutscenes by Espyo (+254 Heh.) http://www.pikminwiki.com/index.php?title=Cutscenes&curid=7441&diff=79561&oldid=78766 2014-04-18 00:20:32 Testyo [Pikipedia RC] Olimar as Pikmin by Espyo (+30 m I just checked, no body.) http://www.pikminwiki.com/index.php?title=Olimar_as_Pikmin&curid=1415&diff=79562&oldid=78748 2014-04-18 00:30:38 Testyo [Fanon RC] Plan sheet for Pikminjp a... by New Pikminjp (+1054 /* Update Vr 0.01 */ ) http://www.pikminfanon.com/index.php?title=Plan_sheet_for_Pikminjp_and_Bulborb_bro's_game&curid=8732&diff=44091&oldid=44082 2014-04-18 00:37:28 @Espyo PikFan? 2014-04-18 00:51:30 @Espyo PikFan, you there? need to go to bed, and I kinda wanted replies on those questions 2014-04-18 00:56:00 Testyo [Pikipedia RC] Arachnode by 72.206.99.86 (+18) http://www.pikminwiki.com/index.php?title=Arachnode&curid=9259&diff=79563&oldid=77522 2014-04-18 01:04:05 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-18 01:04:11 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-04-18 02:07:37 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-18 07:33:24 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-18 09:27:06 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Read error: Connection reset by peer) 2014-04-18 11:29:37 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-18 11:32:58 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-18 11:32:58 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-18 12:23:23 --> Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has joined #pikipedia 2014-04-18 13:00:41 --> TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has joined #pikipedia 2014-04-18 13:01:17 <-- TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has quit (Client Quit) 2014-04-18 13:02:04 --> ThePikminMeister (Mibbit@wekk192-665.defiant.tvcconnect.net) has joined #pikipedia 2014-04-18 13:02:14 -- ThePikminMeister is now known as TPM 2014-04-18 13:06:19 <-- TPM (Mibbit@wekk192-665.defiant.tvcconnect.net) has quit (Client Quit) 2014-04-18 15:01:55 Testyo [Pikipedia RC] Cupid's Grenade by Pikmin Derp (+233 m) http://www.pikminwiki.com/index.php?title=Cupid's_Grenade&curid=640&diff=79574&oldid=79265 2014-04-18 15:50:16 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-18 15:50:16 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-18 16:12:52 Testyo [Fanon RC] User:New Pikminjp by New Pikminjp (+55) http://www.pikminfanon.com/index.php?title=User:New_Pikminjp&curid=8252&diff=44096&oldid=44094 2014-04-18 16:13:00 <-- Elise (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has left #pikipedia 2014-04-18 16:14:00 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-18 16:27:58 Testyo [Fanon RC] Pikmin:Adventure Saga Cri... by New Pikminjp (+581 N Created page with " == '''Pikmin Adventure Saga Critter Trouble''' == Plot The...) http://www.pikminfanon.com/index.php?title=Pikmin:Adventure_Saga_Critter_Trouble&curid=8739&diff=44097&oldid=0 2014-04-18 16:27:58 Testyo [Fanon RC] Pikmin:Adventure Saga Cri... by New Pikminjp (+6 /* Pikmin Adventure Saga Critter Trouble */ ) http://www.pikminfanon.com/index.php?title=Pikmin:Adventure_Saga_Critter_Trouble&curid=8739&diff=44098&oldid=44097 2014-04-18 16:27:59 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-18 16:38:09 Testyo [Fanon RC] User:New Pikminjp by New Pikminjp (-395) http://www.pikminfanon.com/index.php?title=User:New_Pikminjp&curid=8252&diff=44100&oldid=44099 2014-04-18 16:43:13 Testyo [Pikipedia RC] Glitches in Pikmin 2 by 76.182.110.212 (+2 /* Main */) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_2&curid=8423&diff=79575&oldid=79531 2014-04-18 16:43:15 Testyo [Fanon RC] User:New Pikminjp by New Pikminjp (+15 /* battle enemies */ ) http://www.pikminfanon.com/index.php?title=User:New_Pikminjp&curid=8252&diff=44101&oldid=44100 2014-04-18 16:48:18 Testyo [Fanon RC] User:New Pikminjp by New Pikminjp (+24 /* Battle Bosses */ ) http://www.pikminfanon.com/index.php?title=User:New_Pikminjp&curid=8252&diff=44102&oldid=44101 2014-04-18 17:28:36 Testyo [Pikipedia RC] Day by Pikmin Derp (+5 m) http://www.pikminwiki.com/index.php?title=Day&curid=8607&diff=79576&oldid=79560 2014-04-18 18:03:49 Testyo [Pikipedia RC] Day by Espyo (-5 m Undo revision 79576 by [[Special:Contributions/Pikmin Derp|Pikmin Derp]] ([[User...) http://www.pikminwiki.com/index.php?title=Day&curid=8607&diff=79577&oldid=79576 2014-04-19 01:02:03 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-19 01:02:04 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-19 01:02:40 @PikFan . 2014-04-19 01:02:49 @PikFan Espyo: what was it you wanted to ask me last night? 2014-04-19 01:10:49 --> Gamefreak75 (NewYokuba@2605:e000:2e44:jvop:uljy:nshz:slsx:xnyg) has joined #pikipedia 2014-04-19 01:16:34 @Espyo uh, lemme check the logs 2014-04-19 01:16:57 @Espyo I remember one of them: can you double-check that you cannot skip the sunset cutscenes in NTSC GCN P? 2014-04-19 01:17:36 @PikFan yeah, you can't 2014-04-19 01:18:34 @Espyo ok, great 2014-04-19 01:18:38 @Espyo 'cause you can in the PAL version 2014-04-19 01:18:51 @Espyo and I was wondering if it was just an emulation problem 2014-04-19 01:18:55 @PikFan what 2014-04-19 01:18:56 @PikFan . 2014-04-19 01:19:07 @PikFan ...unfair 2014-04-19 01:19:09 @Espyo hehe 2014-04-19 01:19:13 @Espyo check the recent changes 2014-04-19 01:19:14 @Espyo I added that 2014-04-19 01:19:21 @Espyo also some P3 articles that need patrolling 2014-04-19 01:20:26 @PikFan right, brb 2014-04-19 01:22:35 @PikFan back 2014-04-19 01:22:42 @Espyo guess the 2nd thing wasn't a question 2014-04-19 01:22:44 @Espyo but yeah: http://www.pikminwiki.com/Desiccated_Skitter_Leaf http://www.pikminwiki.com/Desiccated_skitter_leaf 2014-04-19 01:27:32 @PikFan "In pikmin 3 the non-explosive grenade" 2014-04-19 01:27:44 @PikFan ...non-explosive grenade? whaaat 2014-04-19 01:28:08 @Espyo no idea 2014-04-19 01:28:41 @PikFan this is stupid http://www.pikminwiki.com/index.php?title=Forum:Jellyfloat_glitch%3F&curid=3899&diff=79495&oldid=35627 2014-04-19 01:29:05 @PikFan who replies to conversations that were made 3 1/2 years ago 2014-04-19 01:30:10 @PikFan ...oh 2014-04-19 01:30:16 @PikFan that raises a good point 2014-04-19 01:30:58 @PikFan yeah, I would get sucked into the GSJ, freeze it 2014-04-19 01:31:22 @Espyo yeah, but it's kinda moot 2014-04-19 01:33:01 @PikFan then circle the stick around 2014-04-19 01:33:05 @PikFan and it'd break apart 2014-04-19 01:33:12 @PikFan i.e. explode 2014-04-19 01:33:15 @Espyo before I continue, let me know what you think: https://dl.dropboxusercontent.com/u/47921869/P1%20ship%20part%20icons.zip 2014-04-19 01:34:10 @PikFan eeh 2014-04-19 01:34:16 @PikFan quality could be better 2014-04-19 01:34:42 @PikFan it's really... scratchy 2014-04-19 01:34:57 @PikFan *they're 2014-04-19 01:35:46 @Espyo http://www.pikminwiki.com/images/e/e6/Ship_parts.jpg 2014-04-19 01:35:49 @Espyo they're from this screen 2014-04-19 01:35:53 @Espyo these are the in-game textures 2014-04-19 01:35:56 @Espyo they're REALLY ugly 2014-04-19 01:36:05 @PikFan oh 2014-04-19 01:36:07 @Espyo I tried softening it with the outlines, but... 2014-04-19 01:36:20 @PikFan play around with them 2014-04-19 01:36:26 @Espyo I tried 2014-04-19 01:36:32 @Espyo solid outline = nope 2014-04-19 01:36:41 @Espyo smoothing the image also failed 2014-04-19 01:36:51 @PikFan hmmmmm 2014-04-19 01:37:23 @PikFan maybe you could try reconstructing them 2014-04-19 01:37:44 @PikFan like what you did with the hazard icons 2014-04-19 01:37:52 @Espyo they're too detailed 2014-04-19 01:38:35 @PikFan ugh 2014-04-19 01:38:49 @PikFan did you consult J 2014-04-19 01:39:56 @Espyo he's away for a while 2014-04-19 01:39:59 @Espyo a week or so 2014-04-19 01:40:04 @Espyo awayISH 2014-04-19 01:40:37 @Espyo >(also, I'm away-ish for a week or so, probably won't be around much) 2014-04-19 01:40:48 @PikFan mm 2014-04-19 01:41:21 @PikFan 1 more day to the Easter update 2014-04-19 01:42:07 @Espyo could be anything 2014-04-19 01:42:11 @Espyo probably chocolate bunnies 2014-04-19 01:42:26 @PikFan I hope there are new upgrades 2014-04-19 01:42:47 @PikFan but I'll keel over if there is a new building 2014-04-19 01:43:46 @PikFan anyway, going outside now 2014-04-19 01:44:00 @PikFan you'll probably be asleep when I get back, so good night 2014-04-19 01:44:12 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-19 01:45:35 @Espyo https://dl.dropboxusercontent.com/u/47921869/P1%20ship%20part%20icons%20no%20outline.zip 2014-04-19 01:45:40 @Espyo night 2014-04-19 01:45:47 @Espyo let me know what you think of these ones in a memo 2014-04-19 01:47:57 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-19 01:49:04 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-04-19 02:02:35 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:noum:vzmg:lhpz:xunh:ivwi) has joined #pikipedia 2014-04-19 02:03:42 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:jvop:uljy:nshz:slsx:xnyg) has quit (Killed (NickServ (GHOST command used by Gamefreak75_!NewYokuba@2605:e000:2e44:noum:vzmg:lhpz:xunh:ivwi))) 2014-04-19 02:03:44 -- Gamefreak75_ is now known as Gamefreak75 2014-04-19 02:57:01 --> Gamefreak75_ (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has joined #pikipedia 2014-04-19 02:59:51 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:noum:vzmg:lhpz:xunh:ivwi) has quit (Ping timeout: 250 seconds) 2014-04-19 03:00:05 -- Gamefreak75_ is now known as Gamefreak75 2014-04-19 09:00:51 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2014-04-19 09:14:47 <-- Gamefreak75 (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has quit (Ping timeout: 256 seconds) 2014-04-19 10:24:47 <-- Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit 2014-04-19 10:31:21 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-04-19 11:09:13 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-19 11:20:43 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-19 11:20:50 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-19 11:20:50 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-19 14:41:07 Testyo [Fanon RC] Plan sheet for Pikminjp a... by Bulborb bro (+192 /* Update Vr 0.01 */ ) http://www.pikminfanon.com/index.php?title=Plan_sheet_for_Pikminjp_and_Bulborb_bro's_game&curid=8732&diff=44103&oldid=44091 2014-04-19 16:21:38 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (+5805 N Created page with "==Story== It has been 3 years since the evolutionary changin...) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters&curid=8740&diff=44104&oldid=0 2014-04-19 17:11:52 Testyo [Fanon RC] User talk:New Pikminjp by Bulborb bro (+130 /* Hey */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44105&oldid=44095 2014-04-19 17:15:51 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-19 17:15:51 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-19 17:16:13 @PikFan . 2014-04-19 17:23:45 @Espyo hey 2014-04-19 17:24:06 @Espyo so what do you think of the second set of icons? 2014-04-19 17:25:21 @PikFan oh 2014-04-19 17:25:35 @PikFan they look worse 2014-04-19 17:25:44 @PikFan try a thin outline 2014-04-19 17:26:19 @Espyo will do, but in a few hours 2014-04-19 17:26:21 @Espyo got plans for now 2014-04-19 17:28:11 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-19 17:29:05 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-19 17:29:05 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-19 18:42:24 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (0 /* Pikmin */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters&curid=8740&diff=44106&oldid=44104 2014-04-19 19:07:32 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (+1229 N Created page with "==Grub-dogs on planet Pikmin== [[Red Bulborb]] [[Orange Bul...) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44107&oldid=0 2014-04-19 19:07:32 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (+1 /* Grub-dogs on planet Mechna */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44108&oldid=44107 2014-04-19 19:07:32 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-19 20:20:09 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-19 20:34:58 @Espyo PikFan: what was your suggestion, then? 2014-04-19 20:35:10 @PikFan 09:25 PikFan try a thin outline 2014-04-19 20:35:44 @Espyo on which? 2014-04-19 20:35:55 @Espyo the originals or the smoothened originals 2014-04-19 20:36:10 @Espyo ..."smoothed" 2014-04-19 20:36:34 @PikFan ...both? not sure what you mean 2014-04-19 20:36:46 @Espyo the originals end with rough edges 2014-04-19 20:36:52 @Espyo the smooth ones don't 2014-04-19 20:36:59 @Espyo you can tell easily with the ADF 2014-04-19 20:37:06 @Espyo ...*EFD 2014-04-19 20:37:11 @Espyo not the Anti-Dioxin Filter 2014-04-19 20:38:07 @PikFan ...I' 2014-04-19 20:38:12 @PikFan m still confused 2014-04-19 20:38:25 @PikFan because you gave me one set with an outline, and another without 2014-04-19 20:38:34 @Espyo oh, drat 2014-04-19 20:38:41 @Espyo all right, never mind 2014-04-19 20:42:36 @Espyo https://dl.dropboxusercontent.com/u/47921869/EFD.zip 2014-04-19 20:42:39 @Espyo what do you think of these? 2014-04-19 20:43:29 @Espyo brb, dinner 2014-04-19 20:44:39 @PikFan hmm, I like the 1 outline, smooth A one 2014-04-19 21:27:18 @Espyo like as in "like more than the others", or as in "like as opposed to dislike"? 2014-04-19 21:30:59 @PikFan former 2014-04-19 21:31:06 @Espyo right 2014-04-19 21:31:11 @Espyo I wanted to have icons 2014-04-19 21:31:16 @Espyo to tie in with the treasure and fruit icons 2014-04-19 21:31:29 @PikFan yes 2014-04-19 21:31:30 @Espyo also to make a map-navbox for P1 areas 2014-04-19 21:31:40 @Espyo but it's hard to make these crappy icons look good... 2014-04-19 21:31:51 @Espyo oh, I thought of something yesterday 2014-04-19 21:31:56 @PikFan ...don't we have a map navbox already? 2014-04-19 21:32:03 @Espyo nope 2014-04-19 21:32:11 @Espyo that's wikia 2014-04-19 21:32:12 @PikFan http://www.pikminwiki.com/Template:Areas 2014-04-19 21:32:17 @Espyo oh, not like that 2014-04-19 21:32:17 @Espyo per-map 2014-04-19 21:32:22 @PikFan ...oh 2014-04-19 21:32:22 @Espyo per-area, I mean 2014-04-19 21:32:32 @PikFan oh, I get what you're saying 2014-04-19 21:32:36 @Espyo anyway, I thought of grabbing the 3D model images we have on the part articles 2014-04-19 21:32:42 @Espyo and make icons out of those 2014-04-19 21:32:44 @Espyo gotta give it a shot 2014-04-19 21:33:01 @PikFan that's what I was saying last night 2014-04-19 21:33:11 @Espyo I don't recall you ever saying it :| 2014-04-19 21:33:21 @PikFan ... 2014-04-19 21:33:38 @Espyo |: 2014-04-19 21:33:40 @Espyo I'll try tomorrow 2014-04-19 21:33:42 @Espyo got plans now 2014-04-19 21:33:51 @Espyo but while I wait for my slow friends to join Brawl... 2014-04-19 21:33:56 @Espyo there's something I wanna discuss 2014-04-19 21:34:08 @Espyo I've been thinking, I'll start "advertising" the engine in places, soon 2014-04-19 21:34:25 @Espyo and... well, I'll bring people to Fanon and hopefully Pikipedia 2014-04-19 21:34:33 @PikFan I see 2014-04-19 21:34:34 @Espyo but the way Fanon is right now... it'll drive people away 2014-04-19 21:34:44 @PikFan yeah 2014-04-19 21:35:00 @PikFan it'd take massive agreement and cooperation to fix all of Fanon 2014-04-19 21:35:08 @Espyo instead of looking like an encyclopedia of fan ideas, it looks like a pile of quick sketches tossed at random 2014-04-19 21:35:32 @PikFan there are some diamonds in the rough, though 2014-04-19 21:36:13 @Espyo I mean... wow http://www.pikminfanon.com/Orange_Pikmin 2014-04-19 21:36:15 @Espyo there are, yes 2014-04-19 21:36:16 @PikFan 01:39:21: maybe you could try reconstructing them 2014-04-19 21:36:30 @Espyo oh, that's not what I thought you meant 2014-04-19 21:36:38 @Espyo I thought you meant like making them by eye in Inkscape 2014-04-19 21:36:54 @Espyo now, I was thinking grabbing the actual infobox pic, scaling it to icon size, and adding a border 2014-04-19 21:37:04 @PikFan mm 2014-04-19 21:39:22 @PikFan I... suppose you could try that 2014-04-19 21:39:46 @PikFan it'd look better than those horrid textures, at least 2014-04-19 21:40:40 @Espyo yeah, hopefully 2014-04-19 21:40:48 @Espyo also I'm not quite sure how to add borders that aren't rough 2014-04-19 21:40:50 @Espyo need J for this 2014-04-19 21:41:42 @Espyo all right, I have some ideas 2014-04-19 21:41:45 @Espyo they're pretty obvious 2014-04-19 21:41:51 @Espyo infoboxes, organized 2014-04-19 21:41:59 @Espyo consistent sections 2014-04-19 21:42:01 @Espyo consistent articles 2014-04-19 21:42:03 @Espyo categories 2014-04-19 21:42:53 @Espyo we should have like a forum post for a major overhaul 2014-04-19 21:43:00 @Espyo I'd be willing to help a bit 2014-04-19 21:43:03 @Espyo move stuff about, categorize 2014-04-19 21:43:14 @PikFan also, might want to read this, even though it was from 3 years ago http://www.pikminfanon.com/index.php?title=Topic:Thoughts_on_wiki_structure&t=20121126000956 2014-04-19 21:44:07 @Espyo hmmm 2014-04-19 21:44:14 @Espyo ok, articles should be minimized 2014-04-19 21:44:20 @Espyo if you only have ideas for a game, only have an article about it 2014-04-19 21:44:30 @PikFan right 2014-04-19 21:44:31 @Espyo but if you have detailed ideas for enemies and such, you should make an article about the enemy list 2014-04-19 21:44:42 @Espyo as for canon content, 99% of it should be Pikipedia-exclusive 2014-04-19 21:44:44 @PikFan we also need to get rid of all the disambig pages out there 2014-04-19 21:44:55 @Espyo "please read the page on Pikipedia for canon info" should be more than enough 2014-04-19 21:44:59 @Espyo hm, yeah 2014-04-19 21:45:13 @Espyo as for ownership, people own ideas, not articles 2014-04-19 21:45:14 @PikFan yeah, we have a template [[F:Template:Canon]] 2014-04-19 21:45:14 Testyo "Template:Canon" article = http://www.pikminfanon.com/index.php?title=Template:Canon 2014-04-19 21:45:18 @Espyo yeah, you do 2014-04-19 21:45:22 @Espyo but it should replace canon info 2014-04-19 21:45:30 @Espyo instead, there's the template AND c+p canon info 2014-04-19 21:45:31 @PikFan err 2014-04-19 21:45:40 @PikFan [[F:Template:Pikipedia]] 2014-04-19 21:45:40 Testyo "Template:Pikipedia" article = http://www.pikminfanon.com/index.php?title=Template:Pikipedia 2014-04-19 21:45:53 Spark is it possible to have interwiki redirects because that might be a good idea or something idk 2014-04-19 21:45:59 @PikFan yeah 2014-04-19 21:46:09 @PikFan about that 2014-04-19 21:46:22 @PikFan in the infoboxes there were a TON of yellow canon links 2014-04-19 21:46:34 @PikFan so I redirected them to Pikipedia 2014-04-19 21:48:06 @Espyo it is, I think 2014-04-19 21:48:10 @Espyo yep 2014-04-19 21:48:21 @Espyo signing articles = no 2014-04-19 21:48:24 @PikFan also I suggested this a while back http://www.pikminfanon.com/Topic:Spelling/Grammar/Syntax_Rules 2014-04-19 21:48:34 @Espyo user prioritization = poop 2014-04-19 21:48:46 @PikFan there was this too http://www.pikminfanon.com/PikminFanon:Formatting_Policy 2014-04-19 21:49:04 @Espyo agree, there should be proper grammar and such 2014-04-19 22:45:12 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-19 22:45:26 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-19 22:45:26 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-19 23:50:09 Testyo [Fanon RC] User talk:Bulborb bro by New Pikminjp (+226 /* So it begins */ ) http://www.pikminfanon.com/index.php?title=User_talk:Bulborb_bro&curid=6626&diff=44110&oldid=44093 2014-04-19 23:55:11 Testyo [Fanon RC] User talk:Bulborb bro by New Pikminjp (+337 /* So it begins */ ) http://www.pikminfanon.com/index.php?title=User_talk:Bulborb_bro&curid=6626&diff=44111&oldid=44110 2014-04-20 00:00:12 Testyo [Fanon RC] User talk:Bulborb bro by New Pikminjp (+191 /* So it begins */ ) http://www.pikminfanon.com/index.php?title=User_talk:Bulborb_bro&curid=6626&diff=44112&oldid=44111 2014-04-20 00:14:23 @PikFan ...where does Orteil live, again 2014-04-20 00:14:26 @PikFan France? 2014-04-20 00:14:52 @Espyo Germany, I think 2014-04-20 00:14:59 @PikFan oh 2014-04-20 00:15:20 @PikFan he should've updated by now 2014-04-20 00:15:48 @PikFan when does he usually update? 2014-04-20 00:16:07 @Espyo dunno 2014-04-20 00:19:32 @PikFan maybe he's not doing an update for Easter :s 2014-04-20 00:21:02 @PikFan well, 362 quintillion cookies and counting are ready if there is one 2014-04-20 00:23:09 @Espyo he could not 2014-04-20 00:28:02 @PikFan we never know 2014-04-20 00:45:23 Testyo [Fanon RC] User talk:New Pikminjp by ThePikminMeister (+113 m /* Re: I believe I've got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44113&oldid=44105 2014-04-20 00:50:23 Testyo [Pikipedia RC] Wayward Moon by Pikmin Derp (-2 m) http://www.pikminwiki.com/index.php?title=Wayward_Moon&curid=9673&diff=79580&oldid=79579 2014-04-20 00:51:07 @Espyo Pikmin Derp sure loves making tiny edits 2014-04-20 00:51:17 @Espyo you ARE fixing his poor edits, right? not just patrolling them 2014-04-20 00:51:45 @Espyo it's just that all the edits I see from him in non-P3 things are so poor and fix-worthy 2014-04-20 00:51:52 @Espyo and I rarely see post-edits from you 2014-04-20 00:59:47 @PikFan hmm? 2014-04-20 00:59:54 @PikFan oh 2014-04-20 01:00:09 @PikFan yeah, I'll get around to fixing his edits 2014-04-20 01:00:15 @PikFan amongst other users' 2014-04-20 01:00:31 @Espyo well, don't take too long 2014-04-20 01:00:37 @Espyo or else they'll get lost in a see of crap 2014-04-20 01:00:48 @PikFan *sea 2014-04-20 01:00:53 @Espyo ...that 2014-04-20 01:02:55 @PikFan right now I'm reviewing the articles he made 2014-04-20 01:03:46 @Espyo mhm 2014-04-20 01:20:31 Testyo [Pikipedia RC] Wayward Moon by PikFan23 (+53 improvement, expansion) http://www.pikminwiki.com/index.php?title=Wayward_Moon&curid=9673&diff=79581&oldid=79580 2014-04-20 01:37:25 @PikFan ok seriously, where is the update 2014-04-20 01:37:35 @PikFan why is Orteil not updating 2014-04-20 01:37:48 @PikFan maybe Orteil doesn't celebrate Easter 2014-04-20 01:40:36 Testyo [Pikipedia RC] Wayward Moon by PikFan23 (-2 m oops) http://www.pikminwiki.com/index.php?title=Wayward_Moon&curid=9673&diff=79582&oldid=79581 2014-04-20 01:47:46 @Espyo maybe he's with his family 2014-04-20 01:47:59 @PikFan maybe 2014-04-20 01:48:04 @PikFan also going outside now 2014-04-20 01:48:08 @PikFan bye 2014-04-20 01:48:56 @Espyo bye 2014-04-20 02:02:37 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-20 02:05:59 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: sleep) 2014-04-20 02:06:16 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: sleep) 2014-04-20 02:08:39 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-20 08:20:33 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-20 08:40:44 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2014-04-20 11:11:29 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-20 11:22:33 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-20 11:22:33 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-20 15:24:20 Testyo [Fanon RC] User:Pikberry149 by Pikberry149 (+14 m) http://www.pikminfanon.com/index.php?title=User:Pikberry149&curid=8705&diff=44117&oldid=44005 2014-04-20 16:02:38 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-20 16:02:50 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-20 16:02:50 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-20 17:35:26 Testyo [Fanon RC] User talk:ThePikminMeiste... by New Pikminjp (+71 /* I believe I got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44118&oldid=44076 2014-04-20 18:21:08 Testyo [Fanon RC] User talk:New Pikminjp by ThePikminMeister (+11 /* Re: I believe I've got a new rank */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44119&oldid=44113 2014-04-20 18:26:14 Testyo [Fanon RC] Insanipikquarium by ThePikminMeister (+45) http://www.pikminfanon.com/index.php?title=Insanipikquarium&curid=8604&diff=44120&oldid=43587 2014-04-20 18:26:14 Testyo [Fanon RC] Insanipikquarium/Tank1 by ThePikminMeister (+45) http://www.pikminfanon.com/index.php?title=Insanipikquarium/Tank1&curid=8605&diff=44121&oldid=43586 2014-04-20 18:26:14 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-20 18:47:44 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-20 18:47:44 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-20 18:48:00 @PikFan I know why Orteil didn't update 2014-04-20 18:48:03 @PikFan he's sick 2014-04-20 18:48:13 @PikFan also hi 2014-04-20 18:53:00 @Espyo oh 2014-04-20 18:53:01 @Espyo hi 2014-04-20 18:53:13 @Espyo so, I finally made good icons 2014-04-20 18:53:21 @PikFan yay 2014-04-20 18:53:29 @PikFan also fixing up Clipboard atm 2014-04-20 18:53:34 @Espyo mhm 2014-04-20 18:54:15 @Espyo https://dl.dropboxusercontent.com/u/47921869/P1%20final.zip 2014-04-20 19:00:01 @PikFan ok, so remember yesterday how we were talking about area maps? 2014-04-20 19:00:40 @Espyo yeah? 2014-04-20 19:00:55 @PikFan this is a map from the Prima Guide http://img2.wikia.nocookie.net/__cb20130814190042/pikmin/images/a/a3/Garden_of_Hope.png 2014-04-20 19:01:02 @PikFan for the Garden of Hope 2014-04-20 19:01:10 @PikFan imo it looks confusing 2014-04-20 19:01:38 Testyo [Pikipedia RC] Clipboard by PikFan23 (+133 improvement, expansion) http://www.pikminwiki.com/index.php?title=Clipboard&curid=9683&diff=79585&oldid=79584 2014-04-20 19:01:44 @Espyo hm, looks simple to me 2014-04-20 19:02:03 @PikFan what I could try doing is making a map 2014-04-20 19:02:14 @PikFan similar to what I did with the Silver Lake 2014-04-20 19:02:23 @Espyo ah yes 2014-04-20 19:02:30 @PikFan though that'd take an extremely long time 2014-04-20 19:02:38 @Espyo is it that big? 2014-04-20 19:03:00 @PikFan http://img2.wikia.nocookie.net/__cb20130814190042/pikmin/images/a/a3/Garden_of_Hope.png http://www.pikminwiki.com/images/6/64/Silver_Lake_treasures_map.png 2014-04-20 19:03:31 @PikFan also not sure what I should do about obstacles 2014-04-20 19:03:51 @PikFan should I have them appear destroyed or not? 2014-04-20 19:03:52 @Espyo hm, good point... 2014-04-20 19:04:01 @Espyo you should try having them up 2014-04-20 19:04:05 @PikFan alright 2014-04-20 19:04:32 @PikFan also, about the ship part icons 2014-04-20 19:04:35 @PikFan they look good 2014-04-20 19:04:46 @PikFan somewhat nostalgic though 2014-04-20 19:04:59 @PikFan er 2014-04-20 19:05:01 @PikFan familiar 2014-04-20 19:05:09 @Espyo heh 2014-04-20 19:05:12 @Espyo they look Pikmin 2-ish 2014-04-20 19:05:24 @PikFan oh, that's why 2014-04-20 19:05:51 @PikFan ...like the Piklopedia icons 2014-04-20 19:06:09 @PikFan anyway 2014-04-20 19:06:49 @Espyo also I made a navbox map for the AW already 2014-04-20 19:06:58 @PikFan ooh 2014-04-20 19:07:29 @Espyo https://dl.dropboxusercontent.com/u/47921869/AW%20map.zip 2014-04-20 19:09:31 @PikFan hmm, might want to fix the pair of BWs 2014-04-20 19:09:38 @PikFan *BSs 2014-04-20 19:10:00 @PikFan the one on the top is covering the bottom one 2014-04-20 19:11:31 @Espyo hm, guess it doesn't really make sense, huh 2014-04-20 19:14:58 @Espyo about fanon 2014-04-20 19:15:08 @Espyo the only way it'll progress is if we put our foot down 2014-04-20 19:15:18 @Espyo we can't just go "let's discuss some rules somewhere" 2014-04-20 19:15:31 @Espyo and then for weeks on end we don't even have a single forum post 2014-04-20 19:15:36 @Espyo we gotta act, and we gotta act now 2014-04-20 19:16:02 @PikFan I agree 2014-04-20 19:16:12 @PikFan this has been going on for far too long 2014-04-20 19:16:37 @PikFan ever since I made an account—no, before then, even, people would make low quality articles 2014-04-20 19:17:03 @Espyo hm, yeah 2014-04-20 19:17:11 @Espyo all right, here's my idea: 2014-04-20 19:17:15 @Espyo we discuss a few rules real quick 2014-04-20 19:17:23 @Espyo using your old topic you linked to yesterday 2014-04-20 19:17:28 @PikFan which one? 2014-04-20 19:17:29 @Espyo then put a forum post with them 2014-04-20 19:17:35 @Espyo the one with those bullet points 2014-04-20 19:17:43 @PikFan the long one? 2014-04-20 19:17:46 @Espyo yep 2014-04-20 19:17:49 @Espyo then, we give people one week to give feedback 2014-04-20 19:17:58 @Espyo after one week, we'll start implementing the rules and such 2014-04-20 19:18:09 @Espyo and in the meantime, edit the news bar to highlight this discussion 2014-04-20 19:18:15 @PikFan right 2014-04-20 19:18:48 @Espyo I can't find your post 2014-04-20 19:18:50 @Espyo can you link me to it? 2014-04-20 19:18:52 @PikFan also, if a person creates a low quality article, we give them a notice 2014-04-20 19:18:57 @Espyo mhm 2014-04-20 19:19:07 @PikFan saying to fix it in 3 days 2014-04-20 19:19:15 @PikFan if they don't, it gets deleted 2014-04-20 19:19:19 @Espyo well, not necessarily so harshly 2014-04-20 19:19:27 @Espyo because I think making pages ownerless would be for the best 2014-04-20 19:19:38 @Espyo imagine there's like a foreign fan that has loads of ideas 2014-04-20 19:19:43 @Espyo but their grammar is bad here and there 2014-04-20 19:19:50 @Espyo well, we can't really go hard on them, just have somebody fix it up a bit 2014-04-20 19:20:09 @Espyo now, if they complain that their article is being edited, they receive five across the face 2014-04-20 19:20:48 @Espyo while you fetch me the link again... PFE news: for some reason, Olimar is animated while using a spray, but not while dismissing 2014-04-20 19:20:59 @Espyo even though the code is exactly the same in both, and exactly the same animation 2014-04-20 19:21:06 @PikFan hmm 2014-04-20 19:21:20 @PikFan http://www.pikminfanon.com/index.php?title=Topic:Thoughts_on_wiki_structure&t=20121126000956 2014-04-20 19:21:28 @Espyo there we go 2014-04-20 19:21:39 @Espyo let me take a stab at compiling a short list of points 2014-04-20 19:21:56 @Espyo oh, I see what's happening 2014-04-20 19:22:06 @Espyo the code never runs because I tell it to leave, in case I have no Pikmin 2014-04-20 19:22:09 @Espyo and I have no Pikmin 2014-04-20 19:22:26 @PikFan heh 2014-04-20 19:22:35 @PikFan you sabotaged your own code 2014-04-20 19:25:44 @Espyo all right, can you explain to me, in brief, what the guild system is? 2014-04-20 19:25:56 @PikFan ok so 2014-04-20 19:26:34 @PikFan the guild system is made of the Red Bulborb, Hairy Bulborb, Orange Bulborb, and Spotty Bulbear 2014-04-20 19:26:42 @PikFan each has a specific role 2014-04-20 19:26:57 Testyo [Fanon RC] (log) Insanipikquarium/Tank1 by PikFan23 (0 Author request: content was: "{{delete|The user doesn't want it anymore}} Tank ...) http://www.pikminfanon.com/index.php?title=Insanipikquarium/Tank1&curid=0&diff=0&oldid=0 2014-04-20 19:26:58 Testyo [Fanon RC] (log) Insanipikquarium by PikFan23 (0 Author request: content was: "{{delete|The user doesn't want it anymore}} Insan...) http://www.pikminfanon.com/index.php?title=Insanipikquarium&curid=0&diff=0&oldid=0 2014-04-20 19:26:58 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-20 19:27:11 @PikFan (for some reason Hairy Bulborb is called Snow Bulborb) 2014-04-20 19:27:16 @Espyo heh 2014-04-20 19:27:16 @PikFan http://www.pikminfanon.com/PikminFanon:Guild_of_Bulborbs 2014-04-20 19:28:06 @PikFan Snow Bulborbs help users get used to the wiki 2014-04-20 19:28:17 @PikFan Red Bulborbs fix up articles 2014-04-20 19:28:38 @PikFan Orange Bulborbs watch for vandalism/spam/etc 2014-04-20 19:28:56 @PikFan Spotty Bulbear takes care of the administrative stuff 2014-04-20 19:29:29 @Espyo hm 2014-04-20 19:29:44 @PikFan personally Red Bulborbs need reworking 2014-04-20 19:29:56 @PikFan because the people who are Red Bulborbs 2014-04-20 19:30:04 @PikFan don't even adhere to grammar rules 2014-04-20 19:33:09 @Espyo bleh 2014-04-20 19:33:47 @PikFan also, remember how we were talking about no ownership? 2014-04-20 19:33:55 @PikFan what about games and stuff? 2014-04-20 19:34:32 @PikFan I don't want some person just waltzing in and putting in ideas into my game 2014-04-20 19:36:38 @Espyo yeah, I tweaked that a bit 2014-04-20 19:36:41 @Espyo you own your ideas 2014-04-20 19:36:46 @Espyo you don't own your articles 2014-04-20 19:36:49 @Espyo but it's more like 2014-04-20 19:37:16 @Espyo you what ideas are put on the wiki, from your content, but not the way they're put 2014-04-20 19:37:23 @Espyo I'm typing it all down 2014-04-20 19:39:00 @PikFan then you might want to see this http://www.pikminfanon.com/Help:Adopting_A_Game 2014-04-20 19:39:36 @Espyo hmm 2014-04-20 19:45:37 @PikFan time to reset 2014-04-20 19:45:47 @Espyo hmmmmm 2014-04-20 19:45:53 @PikFan cookies baked this game: 3.873 sextillion 2014-04-20 19:46:37 @Espyo woah 2014-04-20 19:46:44 @Espyo I'm at like 300 quint 2014-04-20 19:46:57 @Espyo I want to reset, but I want to reach 150 prisms first... 2014-04-20 19:47:09 @PikFan oh boy 2014-04-20 19:47:15 @Espyo if I pop my Wrinklers now, I should have like 60 something quint 2014-04-20 19:47:16 Testyo [Fanon RC] User talk:New Pikminjp by Bulborb bro (+182 /* Hey */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44123&oldid=44119 2014-04-20 19:47:20 @PikFan you're not even halfway there 2014-04-20 19:47:20 @Espyo the next prism is 70 quint 2014-04-20 19:47:22 @Espyo and I need two more 2014-04-20 19:47:24 @Espyo yeah... 2014-04-20 19:47:41 @Espyo beh, maybe I should reset 2014-04-20 19:47:47 @Espyo screw them, I'll get them next game 2014-04-20 19:47:53 @Espyo where stuff will be 300 times faster 2014-04-20 19:48:15 @PikFan how many cookies baked all time? 2014-04-20 19:48:35 @Espyo 376 quint 2014-04-20 19:48:41 @Espyo also, let me know what you think https://dl.dropboxusercontent.com/u/47921869/fanon.txt 2014-04-20 19:49:04 @PikFan you should gain 23k HCs 2014-04-20 19:49:05 Testyo 23 K = -250.15 °C / -418.27 °F 2014-04-20 19:49:21 @Espyo ...20 times faster? 2014-04-20 19:49:22 @Espyo bah 2014-04-20 19:49:29 @Espyo I have 4k now 2014-04-20 19:49:30 Testyo 4 K = -269.15 °C / -452.47 °F 2014-04-20 19:49:34 @Espyo not even 20 2014-04-20 19:49:46 @PikFan what 2014-04-20 19:49:56 @PikFan oh, not even 20 times faster 2014-04-20 19:50:19 @PikFan don't go for 150 until you have 50k 2014-04-20 19:50:19 Testyo 50 K = -223.15 °C / -369.67 °F 2014-04-20 19:51:26 @Espyo I'll never get there 2014-04-20 19:51:39 @PikFan don't say that 2014-04-20 19:51:44 @Espyo are there achievements for 200 cursors, grannies, etc.? 2014-04-20 19:51:49 @PikFan yes 2014-04-20 19:51:54 @Espyo 'cause if there are, I'll spend my probably 60 quint cookies on that 2014-04-20 19:52:05 @Espyo ...I CAN reach something that way, right? 2014-04-20 19:52:12 @PikFan yeah 2014-04-20 19:52:16 @Espyo phew 2014-04-20 19:52:25 @PikFan there's also an achievement for 250 grandmas 2014-04-20 19:52:39 @Espyo ah 2014-04-20 19:52:50 @PikFan have you also gotten any bake x cookies with y building 2014-04-20 19:52:54 @PikFan achievemnts 2014-04-20 19:52:58 @PikFan *achievements 2014-04-20 19:53:33 @Espyo not yet 2014-04-20 19:53:40 @PikFan hm 2014-04-20 19:53:41 @Espyo not that I know of, at least 2014-04-20 19:57:54 @Espyo anyway, thoughts? 2014-04-20 19:58:31 @PikFan looks good 2014-04-20 19:59:45 @Espyo I'm writing some page examples atm 2014-04-20 20:05:55 @PikFan ok these kids want me to go out 2014-04-20 20:05:58 @PikFan so I will 2014-04-20 20:06:02 @PikFan back later 2014-04-20 20:07:33 @Espyo heh 2014-04-20 20:22:58 Testyo [Fanon RC] User:Peach Bulborb by Peach Bulborb (+240 Changed "a must read" to "something to think about") http://www.pikminfanon.com/index.php?title=User:Peach_Bulborb&curid=6237&diff=44124&oldid=44062 2014-04-20 20:26:09 @Espyo https://dl.dropboxusercontent.com/u/47921869/fanon.txt 2014-04-20 20:26:21 @Espyo preview that and let me know what you think 2014-04-20 20:53:49 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-20 20:54:00 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-04-20 21:05:15 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-20 21:15:32 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Read error: Connection reset by peer) 2014-04-20 21:32:47 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-20 21:37:40 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-20 21:58:07 Testyo [Pikipedia RC] Glitches in Pikmin 3 by 70.58.217.185 (+621 Added new glitch to list of glitches.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_3&curid=8429&diff=79586&oldid=76991 2014-04-20 21:59:05 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-20 21:59:05 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-20 22:31:54 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-20 22:32:16 Meisterbot yo wats up 2014-04-20 22:32:48 @Espyo sup 2014-04-20 22:32:58 Meisterbot 102 quadrillion now 2014-04-20 22:33:00 Meisterbot im happy 2014-04-20 22:33:08 Meisterbot EASTER 2014-04-20 22:34:02 @Espyo oh, did it update? 2014-04-20 22:34:16 Meisterbot wut 2014-04-20 22:34:45 Meisterbot there's a new update 2014-04-20 22:35:11 @Espyo nope... 2014-04-20 22:35:14 @Espyo no Easter update 2014-04-20 22:35:16 Meisterbot uh 2014-04-20 22:35:32 Meisterbot then why did you say "oh, did it update?"? 2014-04-20 22:35:43 @Espyo you shouted EASTER 2014-04-20 22:35:49 Meisterbot ik 2014-04-20 22:36:12 Meisterbot because today is easter 2014-04-20 22:36:54 Meisterbot i saw disney's frozen last night 2014-04-20 22:38:25 Meisterbot ...and now i'm listening to #selfie by the chainsmokers 2014-04-20 22:39:38 Meisterbot *shudders* 2014-04-20 22:42:16 Meisterbot do you wanna build a snowman 2014-04-20 22:42:23 Meisterbot it doesnt have to be a snowman 2014-04-20 22:42:48 Meisterbot wait no 2014-04-20 22:42:59 Meisterbot do you wanna pluck a pikmin 2014-04-20 22:43:06 Meisterbot it doesnt have to be a pikmin 2014-04-20 23:29:44 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-20 23:29:44 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-21 00:33:08 @PikFan ...that can't be right 2014-04-21 00:33:19 @PikFan I've played for only 120 days? nonsense 2014-04-21 00:33:29 @PikFan started in October >_> 2014-04-21 00:33:44 @Espyo heh 2014-04-21 00:33:46 @PikFan maybe time is slow 2014-04-21 00:34:58 @Espyo https://dl.dropboxusercontent.com/u/47921869/fanon.txt 2014-04-21 00:35:50 Spark fangames seem so pointless to me 2014-04-21 00:36:07 Spark its like fanfiction but less plot based which makes no sense 2014-04-21 00:36:13 Spark (says a former admin on fantendo) 2014-04-21 00:37:18 @Espyo heh 2014-04-21 00:38:28 @PikFan hmm 2014-04-21 00:40:46 @PikFan is my game detailed enough? [[f:Pikmin: Connection of the Worlds]] 2014-04-21 00:40:47 Testyo "Pikmin:_Connection_of_the_Worlds" article = http://www.pikminfanon.com/index.php?title=Pikmin:_Connection_of_the_Worlds 2014-04-21 00:41:53 Spark yeah 2014-04-21 00:42:23 @Espyo well some things are highly detailed, others not so much 2014-04-21 00:42:33 @PikFan such as...? 2014-04-21 00:42:37 Spark i mean i dont have a problem with fangames it just seems a bit odd to make a fictional video game 2014-04-21 00:42:46 Spark cuz you cant play it 2014-04-21 00:42:56 @PikFan that's why Espyo's making the engine 2014-04-21 00:43:07 Spark yep 2014-04-21 00:43:10 Spark tis a noble goal 2014-04-21 00:43:13 @Espyo it just stretches the imagination 2014-04-21 00:43:15 @Espyo it's healthy 2014-04-21 00:43:30 @PikFan Espyo: what parts could I improve upon? 2014-04-21 00:43:32 @Espyo PikFan: err, never mind 2014-04-21 00:43:41 @Espyo I read the links to other pages as "just names" 2014-04-21 00:43:48 @Espyo but of course, you have more info on those things than "just names" 2014-04-21 00:44:04 @PikFan I'm confused 2014-04-21 00:44:25 @PikFan wait, never mind 2014-04-21 00:44:35 @PikFan yeah, I need to work on the gameplay modes 2014-04-21 00:44:40 @PikFan those are really lacking 2014-04-21 00:45:00 @PikFan I had a document on the desktop, and it had challenge mode names 2014-04-21 00:45:20 @Espyo hm 2014-04-21 00:45:47 @Espyo speaking of documents, I'm currently drawing a map for my fan game 2014-04-21 00:45:53 @PikFan oh come on, reindeer had to appear JUST AFTER elder frenzy?! 2014-04-21 00:45:55 @Espyo I'm really liking how it's turning out... 2014-04-21 00:45:58 @Espyo hehehe, troll 2014-04-21 00:46:13 @PikFan indeed 2014-04-21 00:46:46 @PikFan was going to make this a while ago but never got to it http://www.pikminfanon.com/Pikmin:_Connection_of_the_Worlds/Cave_Creator 2014-04-21 00:46:59 @PikFan it'd probably work similar to P2 caves 2014-04-21 00:47:08 @PikFan oh! 2014-04-21 00:47:09 @Espyo I'll try doing something of the sort for the enigne 2014-04-21 00:47:11 @Espyo *engine 2014-04-21 00:47:20 @PikFan maybe you could help me with that 2014-04-21 00:47:36 @Espyo /that/? 2014-04-21 00:47:42 @PikFan and I could add technical stuff to cave pages 2014-04-21 00:48:14 @PikFan the text files would be in English, of course... 2014-04-21 00:48:43 @Espyo I'm not following 2014-04-21 00:48:53 @PikFan actually no, that wouldn't work 2014-04-21 00:49:11 @PikFan since sublevels aren't randomly generated 2014-04-21 00:49:27 @PikFan bleh 2014-04-21 00:50:15 @Espyo I still have no idea what we're talking about 2014-04-21 00:50:28 @PikFan ok 2014-04-21 00:50:38 @PikFan so you know the sublevel technical template on Pikipedia? 2014-04-21 00:50:42 @Espyo mhm? 2014-04-21 00:50:54 @PikFan well I was thinking of adapting that to my game 2014-04-21 00:51:10 @PikFan then I remembered that all sublevels in my game aren't randomly generated 2014-04-21 00:51:18 @Espyo heh 2014-04-21 00:51:19 @PikFan so it'd be pointless 2014-04-21 00:51:21 @Espyo right 2014-04-21 00:51:34 @PikFan I mean, it might be useful for Cave Creator 2014-04-21 00:51:46 @PikFan if you wanted to make simple, P2-style caves 2014-04-21 00:51:47 @Espyo but remember, Cave Creator won't be a thing 2014-04-21 00:51:59 @Espyo it'll be a thing players can do using the engine's internal tools 2014-04-21 00:52:16 @Espyo I can't spend my time redoing the engine's editor mode copy-pasted in-game 2014-04-21 00:52:55 @PikFan right, but this is assuming that it was actually develope 2014-04-21 00:52:58 @PikFan *developed 2014-04-21 00:53:02 @PikFan on a console 2014-04-21 00:53:07 @PikFan ...which it will never be 2014-04-21 00:53:20 @PikFan (unless I somehow gain a team of developers) 2014-04-21 00:53:29 @Espyo of course 2014-04-21 00:53:34 @Espyo you could be hired by Nintendo 2014-04-21 00:53:35 @Espyo never say never 2014-04-21 00:54:05 @PikFan hah, highly doubtful that they'd just give me some devs and make a Pikmin game 2014-04-21 01:01:30 @Espyo but yeah, that text file 2014-04-21 01:01:36 @Espyo should we make a forum post with that? 2014-04-21 01:10:23 Meisterbot do you wanna pluck a pikmin 2014-04-21 01:10:25 Meisterbot it doesnt have to be a pikmin 2014-04-21 01:10:55 @Espyo heh 2014-04-21 01:12:02 @PikFan tomorrow 2014-04-21 01:12:20 @PikFan gonna be rainy tomorrow, and it's sunny today 2014-04-21 01:12:42 @PikFan so 2014-04-21 01:12:47 @PikFan going out now 2014-04-21 01:12:48 @PikFan bye 2014-04-21 01:13:25 @Espyo bye 2014-04-21 01:14:05 Testyo [Fanon RC] Pikmin: Treto's Adventure by Kidsy128 (+161 N Created page with "'''Pikmin: [[Treto]]'s Adventure''' is a game made by [[Emera...) http://www.pikminfanon.com/index.php?title=Pikmin:_Treto's_Adventure&curid=8744&diff=44125&oldid=0 2014-04-21 01:34:50 <-- Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit (Read error: Connection reset by peer) 2014-04-21 01:36:00 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-04-21 02:00:30 @Espyo PikFan: http://tcrf.net/Pikmin_3 2014-04-21 02:47:05 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has quit 2014-04-21 02:49:29 Testyo [Pikipedia RC] Swarming Sheargrub by 72.206.99.86 (+58) http://www.pikminwiki.com/index.php?title=Swarming_Sheargrub&curid=8674&diff=79587&oldid=79573 2014-04-21 02:54:30 Testyo [Pikipedia RC] Desiccated Skitter Leaf by 72.206.99.86 (+105) http://www.pikminwiki.com/index.php?title=Desiccated_Skitter_Leaf&curid=9564&diff=79588&oldid=79064 2014-04-21 02:56:40 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-21 02:57:46 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-21 02:57:54 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-04-21 03:46:50 --> Gamefreak75 (NewYokuba@2605:e000:2e44:vkrg:xnwq:vngt:ghqq:shwu) has joined #pikipedia 2014-04-21 04:54:26 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:tvop:uhzl:ljqw:hlox:tzjg) has joined #pikipedia 2014-04-21 04:56:47 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:vkrg:xnwq:vngt:ghqq:shwu) has quit (Ping timeout: 250 seconds) 2014-04-21 04:56:56 -- Gamefreak75_ is now known as Gamefreak75 2014-04-21 05:05:03 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 240 seconds) 2014-04-21 06:01:09 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-21 06:58:13 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:mmvj:otuq:timr:tnzq:vylz) has joined #pikipedia 2014-04-21 07:00:43 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:tvop:uhzl:ljqw:hlox:tzjg) has quit (Ping timeout: 250 seconds) 2014-04-21 07:00:49 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-21 07:02:53 <-- Gamefreak75_ (NewYokuba@2605:e000:2e44:mmvj:otuq:timr:tnzq:vylz) has quit (Ping timeout: 250 seconds) 2014-04-21 09:21:27 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2014-04-21 11:24:53 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-21 11:27:38 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-21 11:27:38 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-21 13:10:42 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (+2 /* Grub-dogs on planet Aridia */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44126&oldid=44109 2014-04-21 14:21:44 Testyo [Pikipedia RC] Pocked Airhead by Pikmin Derp (+177 N Created page with "===Pocked Airhead=== The Pocked Airhead is a Tangelo found tw...) http://www.pikminwiki.com/index.php?title=Pocked_Airhead&curid=9685&diff=79592&oldid=0 2014-04-21 15:12:35 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (+648) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44127&oldid=44126 2014-04-21 15:27:51 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (+785) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44128&oldid=44127 2014-04-21 15:32:56 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (-1) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44129&oldid=44128 2014-04-21 15:32:56 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (-1 /* Mandiblards on planet Aquard */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44130&oldid=44129 2014-04-21 16:31:56 -- irc: disconnected from server 2014-04-21 16:32:08 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-21 16:32:08 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-21 16:32:08 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-21 16:32:08 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-04-21 16:32:08 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-21 16:32:08 -- Mode #pikipedia [+o J] by ChanServ 2014-04-21 16:32:10 -- Mode #pikipedia [+nt] 2014-04-21 16:32:10 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-21 17:50:04 Testyo [Fanon RC] User talk:New Pikminjp by Bulborb bro (+46 /* Hey */ ) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44132&oldid=44123 2014-04-21 18:25:38 Testyo [Pikipedia RC] Purple Pikmin by Pikmin Derp (+164 m /* Trivia */) http://www.pikminwiki.com/index.php?title=Purple_Pikmin&curid=1101&diff=79593&oldid=79494 2014-04-21 18:25:38 Testyo [Pikipedia RC] Purple Pikmin by Pikmin Derp (0 m /* Trivia */) http://www.pikminwiki.com/index.php?title=Purple_Pikmin&curid=1101&diff=79594&oldid=79593 2014-04-21 18:51:01 Testyo [Pikipedia RC] Scornet by Pikmin Derp (+753 N Created page with "===Scornet=== The Scornet is a cone shaped bee like creature ...) http://www.pikminwiki.com/index.php?title=Scornet&curid=9686&diff=79595&oldid=0 2014-04-21 18:56:07 Testyo [Pikipedia RC] Scornet by Pikmin Derp (+2 m) http://www.pikminwiki.com/index.php?title=Scornet&curid=9686&diff=79596&oldid=79595 2014-04-21 19:21:37 Testyo [Pikipedia RC] Talk:Greater Spotted Jell... by Pikmin Derp (+65 m /* what happens if it sucks up both pilots? */) http://www.pikminwiki.com/index.php?title=Talk:Greater_Spotted_Jellyfloat&curid=4218&diff=79597&oldid=40237 2014-04-21 19:31:46 Testyo [Pikipedia RC] Talk:Greater Spotted Jell... by Espyo (+37 m Signed...) http://www.pikminwiki.com/index.php?title=Talk:Greater_Spotted_Jellyfloat&curid=4218&diff=79598&oldid=79597 2014-04-21 19:51:28 -- irc: disconnected from server 2014-04-21 19:51:40 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-21 19:51:40 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-21 19:51:40 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-21 19:51:40 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-04-21 19:51:41 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-21 19:51:41 -- Mode #pikipedia [+o J] by ChanServ 2014-04-21 19:51:41 -- Mode #pikipedia [+nt] 2014-04-21 19:51:42 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-21 20:20:27 -- irc: disconnected from server 2014-04-21 20:20:39 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-21 20:20:39 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-21 20:20:39 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-21 20:20:39 -- Channel #pikipedia: 8 nicks (2 ops, 0 voices, 6 normals) 2014-04-21 20:20:39 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-21 20:20:39 -- Mode #pikipedia [+o J] by ChanServ 2014-04-21 20:20:40 -- Mode #pikipedia [+nt] 2014-04-21 20:20:40 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-21 20:21:59 UltraMario hi 2014-04-21 20:25:02 @Espyo yeah 2014-04-21 20:25:04 @Espyo better late than never 2014-04-21 21:38:06 Testyo [Pikipedia RC] Zest Bomb by Pikmin Derp (+471 N Created page with "===Zest Bomb=== The Zest Bomb is a fruit in [[Pikmin 3]], it ...) http://www.pikminwiki.com/index.php?title=Zest_Bomb&curid=9687&diff=79600&oldid=0 2014-04-21 21:38:06 Testyo [Pikipedia RC] Zest Bomb by Pikmin Derp (0 m /* Zest Bomb */) http://www.pikminwiki.com/index.php?title=Zest_Bomb&curid=9687&diff=79601&oldid=79600 2014-04-21 21:58:13 Testyo [Pikipedia RC] Unused content by Pikmin Derp (+208) http://www.pikminwiki.com/index.php?title=Unused_content&curid=7305&diff=79602&oldid=79468 2014-04-21 21:59:01 <-- UltraMario (UltraMario@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Ping timeout: 250 seconds) 2014-04-21 22:08:17 Testyo [Pikipedia RC] Unused content by Espyo (+44 m Fixed.) http://www.pikminwiki.com/index.php?title=Unused_content&curid=7305&diff=79603&oldid=79602 2014-04-21 22:12:06 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-21 22:12:09 Meisterbot Welp 2014-04-21 22:12:14 Meisterbot I reset my Cookie CLicker 2014-04-21 22:12:18 Meisterbot It got hacked 2014-04-21 22:13:18 Testyo [Pikipedia RC] Tropical Wilds by Pikmin Derp (+37) http://www.pikminwiki.com/index.php?title=Tropical_Wilds&curid=9465&diff=79604&oldid=78591 2014-04-21 22:14:44 @Espyo wha? 2014-04-21 22:14:44 @Espyo how? 2014-04-21 22:14:48 Meisterbot idk 2014-04-21 22:15:00 Meisterbot i had it open 2014-04-21 22:15:11 Meisterbot i went to answer a skype call from my friend 2014-04-21 22:15:17 Meisterbot i come back 2014-04-21 22:15:21 Meisterbot and have infinity cookies 2014-04-21 22:16:36 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: Bye everyone!) 2014-04-21 22:23:05 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-21 22:29:27 @Espyo ._. 2014-04-21 23:28:59 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has quit 2014-04-22 01:26:41 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-22 01:27:38 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-04-22 01:45:23 --> Gamefreak75 (NewYokuba@2605:e000:2e44:znxn:hikg:kjxv:xswx:lmmn) has joined #pikipedia 2014-04-22 04:05:09 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:tgyp:sry:omrv:xwop:ixwq) has joined #pikipedia 2014-04-22 04:08:13 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:znxn:hikg:kjxv:xswx:lmmn) has quit (Ping timeout: 250 seconds) 2014-04-22 04:08:22 -- Gamefreak75_ is now known as Gamefreak75 2014-04-22 04:13:06 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:xjkh:jwj:wzww:hzm:wrwg) has joined #pikipedia 2014-04-22 04:16:27 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:tgyp:sry:omrv:xwop:ixwq) has quit (Ping timeout: 250 seconds) 2014-04-22 04:16:38 -- Gamefreak75_ is now known as Gamefreak75 2014-04-22 07:08:08 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:stkm:xmps:lqsi:ourv:ihrj) has joined #pikipedia 2014-04-22 07:11:57 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:xjkh:jwj:wzww:hzm:wrwg) has quit (Ping timeout: 250 seconds) 2014-04-22 07:12:06 -- Gamefreak75_ is now known as Gamefreak75 2014-04-22 09:02:27 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:stkm:xmps:lqsi:ourv:ihrj) has quit (Ping timeout: 250 seconds) 2014-04-22 11:13:45 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-22 11:20:58 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-22 11:20:58 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-22 18:42:51 -- irc: disconnected from server 2014-04-22 18:43:05 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-22 18:43:05 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-22 18:43:05 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-22 18:43:05 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-04-22 18:43:06 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-22 18:43:06 -- Mode #pikipedia [+o J] by ChanServ 2014-04-22 18:43:07 -- Mode #pikipedia [+nt] 2014-04-22 18:43:07 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-22 19:01:10 -- irc: disconnected from server 2014-04-22 19:01:22 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-22 19:01:22 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-22 19:01:22 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-22 19:01:22 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-04-22 19:01:22 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-22 19:01:22 -- Mode #pikipedia [+o J] by ChanServ 2014-04-22 19:01:24 -- Mode #pikipedia [+nt] 2014-04-22 19:01:25 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-22 20:12:29 -- irc: disconnected from server 2014-04-22 20:12:41 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-22 20:12:41 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-22 20:12:41 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-22 20:12:41 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-04-22 20:12:41 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-22 20:12:41 -- Mode #pikipedia [+o J] by ChanServ 2014-04-22 20:12:43 -- Mode #pikipedia [+nt] 2014-04-22 20:12:43 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-22 21:20:26 Testyo [Pikipedia RC] User account White pikmin lord created http://www.pikminwiki.com/index.php?title=User:White_pikmin_lord 2014-04-22 21:25:27 Testyo [Pikipedia RC] Pikipedia:Current project... by White pikmin lord (-295 /* Pikmin "colors" */) http://www.pikminwiki.com/index.php?title=Pikipedia:Current_projects&curid=1777&diff=79607&oldid=79438 2014-04-22 21:40:31 Testyo [Pikipedia RC] Rubble by Pikmin Derp (+357 m) http://www.pikminwiki.com/index.php?title=Rubble&curid=1203&diff=79608&oldid=77111 2014-04-22 21:40:31 Testyo [Pikipedia RC] Rubble by Pikmin Derp (-57 m /* Pikmin */) http://www.pikminwiki.com/index.php?title=Rubble&curid=1203&diff=79609&oldid=79608 2014-04-22 23:54:44 --> Gamefreak75 (NewYokuba@2605:e000:2e44:xjpr:jggs:mmri:kpos:zmhk) has joined #pikipedia 2014-04-23 00:50:56 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-23 00:50:56 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-23 00:51:03 @PikFan . 2014-04-23 00:54:15 @Espyo hey 2014-04-23 00:54:20 @Espyo dammit, I needed J, but he's not around 2014-04-23 00:54:28 @Espyo also it's Ludum Dare this weekend 2014-04-23 00:54:29 @PikFan what for? 2014-04-23 00:54:34 @Espyo so me and him are probably participating 2014-04-23 00:54:46 @Espyo the engine has a massive framerate leak 2014-04-23 00:54:49 @Espyo ...for no apparent reason 2014-04-23 00:54:49 @PikFan Ludum Dare... isn't that a game you and J play 2014-04-23 00:54:56 @PikFan ...uh-oh 2014-04-23 00:54:57 @Espyo not a game, a competition to MAKE a game 2014-04-23 00:55:02 @PikFan oh 2014-04-23 00:55:11 @Espyo it's so weird 2014-04-23 00:55:13 @PikFan ...but in that sense, it could be considered a game 2014-04-23 00:55:22 @Espyo I pin-pointed that the problem is 2014-04-23 00:55:37 @Espyo there's a line that sets a Pikmin's animation to the idle animation 2014-04-23 00:55:46 @Espyo if I remove that line, there is no framerate drop 2014-04-23 00:56:31 @Espyo that line changes the animation IF the animation isn't already the idle one 2014-04-23 00:56:48 @Espyo so if the Pikmin are already on that idle animation, the function does nothing 2014-04-23 00:56:54 @Espyo and that's exactly what it does: nothing 2014-04-23 00:56:59 @Espyo because the Pikmin are always in that idle animation 2014-04-23 00:57:14 @Espyo and that nothingness causes a framerate drop from ~120 to ~25 2014-04-23 00:57:34 @Espyo needed him for ideas on what the problem could be 2014-04-23 01:16:24 Testyo [Pikipedia RC] Pikipedia:Current project... by PikFan23 (+295 Undo revision 79607 by [[Special:Contributions/White pikmin lord|White pikmin lo...) http://www.pikminwiki.com/index.php?title=Pikipedia:Current_projects&curid=1777&diff=79610&oldid=79607 2014-04-23 01:20:17 --> mommmmmmmmmmmm (Mibbit@otkp-97-124-21-070.lsanca.dsl-w.verizon.net) has joined #pikipedia 2014-04-23 01:20:21 @Espyo :| 2014-04-23 01:20:32 <-- mommmmmmmmmmmm (Mibbit@otkp-97-124-21-070.lsanca.dsl-w.verizon.net) has quit (Client Quit) 2014-04-23 01:20:37 @PikFan ... 2014-04-23 01:20:52 @Espyo what in the world 2014-04-23 01:21:02 @PikFan no clue 2014-04-23 01:28:39 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: sleep) 2014-04-23 01:28:46 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: sleep) 2014-04-23 01:34:50 --> Gamefreak75_ (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has joined #pikipedia 2014-04-23 01:37:49 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:xjpr:jggs:mmri:kpos:zmhk) has quit (Ping timeout: 250 seconds) 2014-04-23 01:37:56 -- Gamefreak75_ is now known as Gamefreak75 2014-04-23 06:11:16 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-23 11:08:47 --> Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-23 11:20:35 --> Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has joined #pikipedia 2014-04-23 11:20:35 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-23 11:33:51 <-- Gamefreak75 (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has quit (Read error: Connection reset by peer) 2014-04-23 11:53:32 -- irc: disconnected from server 2014-04-23 11:53:43 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-23 11:53:44 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-23 11:53:44 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-23 11:53:44 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-04-23 11:53:44 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-23 11:53:44 -- Mode #pikipedia [+o J] by ChanServ 2014-04-23 11:53:45 -- Mode #pikipedia [+nt] 2014-04-23 11:53:45 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-23 19:23:01 Testyo [Fanon RC] Vicious V-Bug by Kidsy128 (+8 m) http://www.pikminfanon.com/index.php?title=Vicious_V-Bug&curid=401&diff=44134&oldid=22984 2014-04-23 19:34:01 @Espyo Testyo: memo J oh, and now it was a Read error: Operation timed out, at 11:39 2014-04-23 19:34:02 Testyo Done, I saved a memo for J saying: oh, and now it was a Read error: Operation timed out, at 11:39. 2014-04-23 19:37:41 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Ping timeout: 250 seconds) 2014-04-23 21:05:10 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-04-23 22:04:02 @Espyo Miles: can you explain? http://i.4cdn.org/v/1398284777414.webm 2014-04-23 22:20:21 Testyo [Pikipedia RC] File:Navbox map AW.png uploaded by Espyo (Map of the [[Awakening Wood]] with icons overlaid, used for the [[Template:Awake...) http://www.pikminwiki.com/index.php?title=File:Navbox_map_AW.png 2014-04-23 22:32:59 @Espyo hm, it's this thing http://www.metroid-database.com/mp/glitches.php#targetingreticle 2014-04-23 22:33:05 @Espyo except no matter how hard I try, I can't do it at all 2014-04-23 22:33:07 @Espyo NTSC only? 2014-04-23 22:45:31 @Espyo the webm 404'd now 2014-04-23 22:50:31 Testyo [Pikipedia RC] Template:Awakening Wood by Espyo (+1061 N Created page with " File:Navbox map AW.png rect 28 59 52 88 [[Air ...) http://www.pikminwiki.com/index.php?title=Template:Awakening_Wood&curid=9689&diff=79612&oldid=0 2014-04-23 22:54:41 Spark GOD i cant tell if im an asshole or if i just have shitty friends 2014-04-23 22:56:09 @Espyo or both or neither 2014-04-23 22:56:37 Spark probably both 2014-04-23 22:56:53 Spark being friends with a schizophrenic is incredibly draining 2014-04-23 22:57:11 Spark and since i barely express myself IRL im just a raging fucking mess on the internet 2014-04-23 22:57:55 @Espyo ouch 2014-04-23 23:11:08 @Espyo Testyo: memo PikFan has science gone too far? https://dl.dropboxusercontent.com/u/47921869/Dolphin%202014-04-23%2023-10-14-24.png 2014-04-23 23:11:08 Testyo Done, I saved a memo for PikFan saying: has science gone too far? https://dl.dropboxusercontent.com/u/47921869/Dolphin%202014-04-23%2023-10-14-24.png. 2014-04-24 00:02:27 Miles [17:33:08] <@Espyo> NTSC only? 2014-04-24 00:02:29 Miles Probably 2014-04-24 00:11:56 @Espyo drat 2014-04-24 00:20:55 Testyo [Pikipedia RC] Skitter Leaf by 72.206.99.86 (0) http://www.pikminwiki.com/index.php?title=Skitter_Leaf&curid=1378&diff=79613&oldid=79141 2014-04-24 00:20:55 Testyo [Pikipedia RC] Desiccated Skitter Leaf by 72.206.99.86 (+20) http://www.pikminwiki.com/index.php?title=Desiccated_Skitter_Leaf&curid=9564&diff=79614&oldid=79589 2014-04-24 00:27:40 --> Gamefreak75 (NewYokuba@2605:e000:2e44:jgjk:jgxt:siqy:xthx:sihg) has joined #pikipedia 2014-04-24 00:36:01 Testyo [Pikipedia RC] Bug-eyed Crawmad by 72.206.99.86 (+316) http://www.pikminwiki.com/index.php?title=Bug-eyed_Crawmad&curid=9502&diff=79615&oldid=79372 2014-04-24 00:36:01 Testyo [Pikipedia RC] Areas by Espyo (+154 m Added trivia.) http://www.pikminwiki.com/index.php?title=Areas&curid=277&diff=79616&oldid=78652 2014-04-24 00:41:02 Testyo [Pikipedia RC] Bug-eyed Crawmad by 72.206.99.86 (+23) http://www.pikminwiki.com/index.php?title=Bug-eyed_Crawmad&curid=9502&diff=79617&oldid=79615 2014-04-24 00:46:03 Testyo [Pikipedia RC] Bug-eyed Crawmad by 72.206.99.86 (-9) http://www.pikminwiki.com/index.php?title=Bug-eyed_Crawmad&curid=9502&diff=79618&oldid=79617 2014-04-24 00:56:07 Testyo [Pikipedia RC] Pocked Airhead by 72.206.99.86 (+228) http://www.pikminwiki.com/index.php?title=Pocked_Airhead&curid=9685&diff=79619&oldid=79592 2014-04-24 00:56:07 Testyo [Pikipedia RC] Pocked Airhead by 72.206.99.86 (+5) http://www.pikminwiki.com/index.php?title=Pocked_Airhead&curid=9685&diff=79620&oldid=79619 2014-04-24 01:03:39 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:kins:mghn:qths:wlxm:wtjm) has joined #pikipedia 2014-04-24 01:06:35 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:jgjk:jgxt:siqy:xthx:sihg) has quit (Ping timeout: 250 seconds) 2014-04-24 01:06:39 -- Gamefreak75_ is now known as Gamefreak75 2014-04-24 01:11:11 Testyo [Pikipedia RC] Cupid's Grenade by 72.206.99.86 (+302) http://www.pikminwiki.com/index.php?title=Cupid's_Grenade&curid=640&diff=79621&oldid=79574 2014-04-24 01:11:11 Testyo [Pikipedia RC] Wayward Moon by 72.206.99.86 (+21) http://www.pikminwiki.com/index.php?title=Wayward_Moon&curid=9673&diff=79622&oldid=79582 2014-04-24 01:16:13 Testyo [Pikipedia RC] Wayward Moon by 72.206.99.86 (0) http://www.pikminwiki.com/index.php?title=Wayward_Moon&curid=9673&diff=79623&oldid=79622 2014-04-24 01:16:13 Testyo [Pikipedia RC] Pocked Airhead by 72.206.99.86 (+38) http://www.pikminwiki.com/index.php?title=Pocked_Airhead&curid=9685&diff=79624&oldid=79620 2014-04-24 01:26:00 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-24 01:26:09 Meisterbot well, i restarted my cookie clicker 2014-04-24 01:26:19 Testyo [Pikipedia RC] Obstacle by 72.206.99.86 (0 /* Types of obstacles */) http://www.pikminwiki.com/index.php?title=Obstacle&curid=9484&diff=79625&oldid=79238 2014-04-24 01:26:41 @Espyo hmm? 2014-04-24 01:27:15 Meisterbot yesterday i said i reset it because it went to infinity cookies or something 2014-04-24 01:27:20 Meisterbot so i restarted 2014-04-24 01:27:48 @Espyo right 2014-04-24 01:27:50 Meisterbot 100 cursors, 40 grandmas and farms, 20 of other things, and 2 time machines 2014-04-24 01:27:58 Meisterbot as of right now 2014-04-24 01:28:31 @Espyo not bad 2014-04-24 01:28:39 Meisterbot and i started 5 hours ago 2014-04-24 01:28:46 Meisterbot so yay 2014-04-24 01:37:08 <-- Espyo (Mibbit@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-24 01:37:11 <-- Testyo (Testyo@t67-932-59-77.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-04-24 01:51:39 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:kins:mghn:qths:wlxm:wtjm) has quit (Ping timeout: 250 seconds) 2014-04-24 03:32:57 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has quit 2014-04-24 04:51:48 Spark c( ʘ̃ ͜.ʘ̃ )ᴐ 2014-04-24 06:40:44 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-24 06:50:40 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2014-04-24 07:04:50 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-24 07:35:52 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-04-24 10:38:09 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit (Ping timeout: 250 seconds) 2014-04-24 10:45:19 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-04-24 11:05:09 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Read error: Connection reset by peer) 2014-04-24 11:24:22 --> Testyo (Testyo@u31-005-35-35.cpe.netcabo.pt) has joined #pikipedia 2014-04-24 11:26:55 <-- Testyo (Testyo@u31-005-35-35.cpe.netcabo.pt) has quit (Client Quit) 2014-04-24 11:30:23 --> Testyo (Testyo@u31-005-35-35.cpe.netcabo.pt) has joined #pikipedia 2014-04-24 11:35:11 --> Espyo (Mibbit@u31-005-35-35.cpe.netcabo.pt) has joined #pikipedia 2014-04-24 11:35:11 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-24 18:18:35 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit (Ping timeout: 240 seconds) 2014-04-24 18:46:44 @J . 2014-04-24 18:47:57 @J hmm, since when has Portal 2 had proper support for offline splitscreen co-op? 2014-04-24 18:49:48 @J ...but only with 2 controllers? 2014-04-24 18:58:55 @Espyo hey 2014-04-24 18:58:57 @Espyo you're finally here 2014-04-24 18:59:00 @Espyo you missed out on quite a bit 2014-04-24 18:59:09 @Espyo and it's had it for at least a few months 2014-04-24 18:59:30 @Espyo I suppose one player being K+M and another being a joystick would be unfair 2014-04-24 19:19:33 @J but it's co-op 2014-04-24 19:19:48 @Espyo ...right 2014-04-24 19:20:29 @Espyo are you joining this weekend's LD? 2014-04-24 19:20:33 @Espyo speaking of which, I have to vote today 2014-04-24 19:23:25 @J and yeah, I've been around a few days already, but didn't say anything 2014-04-24 19:23:27 @J hmm, not sure 2014-04-24 19:23:49 @J I kind of want to focus on stuff I've already started rather than start another new game 2014-04-24 19:27:37 @Espyo it's just a little thing 2014-04-24 19:27:43 @Espyo only for competition's sake 2014-04-24 19:27:47 @Espyo I never did anything with my Caverns 2014-04-24 19:27:50 @Espyo don't really plan to 2014-04-24 19:28:14 @J I know, but if I make a game and I like it, I will want to continue it 2014-04-24 19:28:45 @J also, what's with this role reversal? 2014-04-24 19:29:03 @Espyo you being away must've messed something 2014-04-24 19:29:15 @Espyo and now the ecosystem of #pikipedia's users is compromised 2014-04-24 19:31:27 @Espyo let's see, what else did you miss... 2014-04-24 19:31:30 @Espyo or presumably missed 2014-04-24 19:31:38 @Espyo uh, there was a performance problem on the engine 2014-04-24 19:31:43 @Espyo I needed you to try to brainstorm 2014-04-24 19:31:46 @Espyo but I eventually figured it out 2014-04-24 19:32:10 @Espyo protip for the future, don't access associative array elements 360 times per second, when the key is a string 2014-04-24 19:32:20 @Espyo at least in C++ 2014-04-24 19:32:27 @J doesn't sound like it should be too bad 2014-04-24 19:32:32 @Espyo it doesn't, does it? 2014-04-24 19:32:34 @Espyo but I made a test 2014-04-24 19:32:41 @J you should be able to do it millions of times 2014-04-24 19:32:46 @J guess it depends how it's implemented 2014-04-24 19:33:04 @Espyo accessing the tenth element of a vector took 1. something seconds, with 1M iterations 2014-04-24 19:33:05 Testyo 1 m = 1.0936 yd / 3.2808 ft / 52.6316 Olimar-heights / 166.666 TRY-heights 2014-04-24 19:33:13 @Espyo if it's not 1M, it's 10M or something 2014-04-24 19:33:13 Testyo 1 m = 1.0936 yd / 3.2808 ft / 52.6316 Olimar-heights / 166.666 TRY-heights 2014-04-24 19:33:16 @Espyo can't be bothered to check 2014-04-24 19:33:27 @J yeah, well that's going to be faster, since it's just a memory lookup in an already-known position 2014-04-24 19:33:36 @Espyo accessing the element with the key "10", in an AA with "1", "2", etc... 2014-04-24 19:33:40 @Espyo took 130+ seconds 2014-04-24 19:34:02 @Espyo when the strings are keys, it has to allocate memory for the string, dealocate, check each character... 2014-04-24 19:34:09 @Espyo so I guess it makes sense that it's slow 2014-04-24 19:34:09 @J I just accessed an associative array key 100M times, took 2.8s in Python 3 2014-04-24 19:34:10 @Espyo but yikes 2014-04-24 19:34:10 Testyo 100 m = 109.36 yd / 328.08 ft / 5263.16 Olimar-heights / 16666.6 TRY-heights 2014-04-24 19:34:17 @Espyo what about a regular vector? 2014-04-24 19:36:28 @J well, the standard equivalent in Python seems to actually be slower 2014-04-24 19:36:34 @J but that's a linked list or something 2014-04-24 19:38:32 @J hmm, an array is also slower 2014-04-24 19:39:41 @J hmm, a bytearray seems to be much faster 2014-04-24 19:39:52 @J oh, never mind, I did it wrong 2014-04-24 19:41:12 @J so yeah, associative arrays faster 2014-04-24 19:41:13 @J fun 2014-04-24 19:41:53 @Espyo how weird 2014-04-24 19:42:02 @J speed depends on the type of key, though 2014-04-24 19:42:12 @Espyo it should 2014-04-24 19:42:27 @J numbers are faster than strings, strings are faster than functions 2014-04-24 19:43:03 @J bytestrings are faster than unicode strings 2014-04-24 19:43:12 @J anyway, 360/s shouldn't be slow at all 2014-04-24 19:49:00 @J okay, and for comparison, my Raspberry Pi can do 10M in 20s (almost 100x slower) 2014-04-24 19:49:00 Testyo 10 m = 10.936 yd / 32.808 ft / 526.316 Olimar-heights / 1666.66 TRY-heights 2014-04-24 20:00:45 @Espyo yeah, it shouldn't 2014-04-24 20:00:50 @Espyo C++ just isn't good with strings 2014-04-24 20:01:03 @Espyo every time you add or remove a character, it destroys the string and recreates it 2014-04-24 20:01:12 @Espyo there might be some leeway, like only every 5 characters, but overall, that's it 2014-04-24 20:01:31 @Espyo anyway, I kinda needed strings because the animations and frames are referred to by name 2014-04-24 20:01:51 @Espyo like the animation "get_up" has the frame "half_lying" and the frame "idle" 2014-04-24 20:02:07 @Espyo luckily, I can just make it so that after the animation is loaded, it fetches the necessary frames once, and saves a pointer 2014-04-24 20:02:09 @Espyo done, fast again 2014-04-24 20:19:47 @Espyo another thing you missed: some weeks ago, some guy posted a huge dump of AR codes on his (?) forum 2014-04-24 20:19:52 @Espyo including some P1 and P2 codes 2014-04-24 20:20:05 @Espyo there are a few that activate new debug features 2014-04-24 20:20:14 @Espyo still needs investigation, but I played around a bit 2014-04-24 20:20:32 @Espyo other codes do stuff like this: https://dl.dropboxusercontent.com/u/47921869/Dolphin%202014-04-23%2023-10-14-24.png https://dl.dropboxusercontent.com/u/47921869/Dolphin%202014-04-23%2023-06-54-32.png 2014-04-24 20:25:42 @J [20:01:03] @Espyo every time you add or remove a character, it destroys the string and recreates it 2014-04-24 20:25:49 @J but you still have C strings if you want, I guess 2014-04-24 20:26:09 @J but yeah, Python strings are immutable anyway 2014-04-24 20:26:26 @J in fact, if you create two strings with the same thing in them, they point to the same location in memory 2014-04-24 20:26:55 @J hmm, sometimes, anyway 2014-04-24 20:26:57 @Espyo ...C strings 2014-04-24 20:26:58 @Espyo you're kidding 2014-04-24 20:27:13 @Espyo instead of developing the engine in two years or so, I would die of old age before finishing it 2014-04-24 20:27:25 @Espyo plus I just can't make heads or toes about C strings 2014-04-24 20:27:33 @J that's probably true 2014-04-24 20:27:38 @Espyo "sometimes" should be right 2014-04-24 20:27:44 @Espyo @Python string thing 2014-04-24 20:28:21 @J multiple Olimars looks like platypi for some reason 2014-04-24 20:28:29 @Espyo yeah 2014-04-24 20:32:18 @Espyo another thing: https://dl.dropboxusercontent.com/u/47921869/P1%20final.zip 2014-04-24 20:44:59 @J where did they come from? 2014-04-24 20:45:12 @J I ask because I saw the previous versions, and they looked much worse 2014-04-24 20:46:20 @Espyo the official renders we have on the infoboes 2014-04-24 20:46:22 @Espyo *infoboxes 2014-04-24 20:46:36 @J you have much larger versions, then? 2014-04-24 20:46:41 @Espyo just resized them, cut them with the path tool, and added a border 2014-04-24 20:46:54 @Espyo no, I only added the borders after they were 30 something by 30 something 2014-04-24 20:47:02 @Espyo don't know any other way 2014-04-24 20:47:07 @Espyo even the borders aren't that great 2014-04-24 20:47:10 @Espyo how do YOU do it? 2014-04-24 20:47:15 @Espyo I just can't figure out a good way at all 2014-04-24 20:48:20 @J I told you a few times 2014-04-24 20:48:36 @J how did you add a border here, then? 2014-04-24 20:49:20 @J in GIMP, you just do layer/alpha to selection, then selection/grow by however many px you want, then fill 2014-04-24 20:49:47 @J possibly feather before filling, depending on how the edges look 2014-04-24 20:50:21 @J when you say 'cut them', you mean they had a white background or something? 2014-04-24 20:51:07 @Espyo exactly what I did 2014-04-24 20:51:12 @Espyo white background, yep 2014-04-24 20:51:26 @Espyo well, I suppose I have more control over my border when I do it on the tiny icon 2014-04-24 20:51:35 @Espyo because I want it to be 1px 2014-04-24 20:51:58 @Espyo and I don't want to calculate what size to grow the selection by to make the final border be 1px, after resizing 2014-04-24 20:55:00 @J hmm 2014-04-24 20:55:22 @J when I did it, I wasn't aiming for a final border size, I was aiming for a size that looked good in relation the the full-sized icon 2014-04-24 20:55:31 @J you don't necessarily need a 1px final border 2014-04-24 20:59:47 @Espyo hmm 2014-04-24 20:59:52 @Espyo yeah, but I wanted to make it consistent 2014-04-24 21:02:34 @Espyo also: https://dl.dropboxusercontent.com/u/47921869/AW%20map.zip 2014-04-24 21:02:36 @Espyo and dinner now 2014-04-24 21:06:26 @J hmm 2014-04-24 21:06:39 @J I don't know, seems a little cluttered 2014-04-24 21:06:49 @J maybe the icons could be smaller (or the map bigger) 2014-04-24 21:08:13 @J have you considered having a map where you can select a number of filters to turn icons on/off by type? eg. enemies, treasures... 2014-04-24 21:25:56 @Espyo probably too complex 2014-04-24 21:26:03 @Espyo and cluttered — that's the size of the map we have 2014-04-24 21:32:58 @J just make it bigger 2014-04-24 21:42:23 @Espyo blurry, probably poop 2014-04-24 21:54:46 @J meh, you're not even meant to focus on the background anyway 2014-04-24 21:56:10 @Espyo true 2014-04-24 21:56:25 @Espyo you've seen the Pikmin 2 path images, right? 2014-04-24 21:56:31 @Espyo [[Carrying/Paths]] 2014-04-24 21:56:31 Testyo "Carrying/Paths" article = http://www.pikminwiki.com/index.php?title=Carrying/Paths 2014-04-24 21:59:31 @J yeah, I did 2014-04-24 21:59:38 @J * [[Carrying#Paths]] 2014-04-24 21:59:38 Testyo "Carrying#Paths" article = http://www.pikminwiki.com/index.php?title=Carrying#Paths 2014-04-24 22:02:12 @Espyo all right 2014-04-24 22:02:17 @Espyo now, I'm working on kind of a big project 2014-04-24 22:03:12 @Espyo Dolphin + free cam + screenshots + GIMP + Hugin = https://dl.dropboxusercontent.com/u/47921869/TIS%20final.png 2014-04-24 22:10:47 @Espyo wow, I just cannot get TFN to work 2014-04-24 22:20:11 @Espyo ugh, I'll try TFN again later 2014-04-24 22:36:53 @J hugin? 2014-04-24 22:38:57 @Espyo mhm 2014-04-24 22:39:06 @Espyo panorama creator program 2014-04-24 22:45:06 @J how did you remove the objects? 2014-04-24 22:46:36 @Espyo it's automatically done 2014-04-24 22:46:39 @Espyo I just had to stay away 2014-04-24 22:46:52 @Espyo [[Glitches in Pikmin#Off-camera limbo]] 2014-04-24 22:46:52 Testyo "Glitches_in_Pikmin#Off-camera_limbo" article = http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin#Off-camera_limbo 2014-04-24 22:47:06 @Espyo that "glitch" needs a major rewrite 2014-04-24 22:47:11 @J oh, free look actually moves the in-game concept of the camera? 2014-04-24 22:48:47 @J hmm, I guess it's feasible that render distance is based on the actual camera position rather than where the game thinks it chose to place the camera 2014-04-24 22:49:02 @J I can't see how that would work with more recent OpenGL, though 2014-04-24 22:49:26 @Espyo yep 2014-04-24 22:52:30 @Espyo TFN is just filled with problems though 2014-04-24 22:52:42 @Espyo the top of the map, the beach area, and the BLL arena all load individually 2014-04-24 22:53:03 @Espyo so I have to get close enough to load the area, but far away enough for the HUD to not show 2014-04-24 22:53:12 @Espyo luckily the HUD is HALF a world object 2014-04-24 22:53:19 @Espyo so if I move the camera away, the HUD goes with 2014-04-24 22:53:31 @Espyo unfortunately, for every 10 units I move, the HUD moves 5 2014-04-24 22:53:42 @Espyo *10 units I move the camera 2014-04-24 22:53:48 @Espyo so I need to have the camera really far 2014-04-24 22:54:01 @J that almost made some sense 2014-04-24 22:54:08 @Espyo it's Pikmin 2014-04-24 22:54:16 @Espyo turns out that, like Pikmin 2, it doesn't like to make sense 2014-04-24 22:54:29 @Espyo and all those weird things must've messed with the angles or something, because Hugin had a hard time doing the image 2014-04-24 22:54:34 @Espyo plus another problem: lighting 2014-04-24 22:54:49 @Espyo TFN is really dark, except for the bit where you're at 2014-04-24 22:54:52 @Espyo also except for the starting area 2014-04-24 22:55:06 @Espyo I was thinking of relighting the darker bits a bit, after the final image is done 2014-04-24 22:55:11 @Espyo but what if that doesn't work well at all? 2014-04-24 22:55:49 @Espyo https://dl.dropboxusercontent.com/u/47921869/TFN.png this was my last attempt 2014-04-24 23:02:32 @J hmm, yeah 2014-04-24 23:03:11 @J maybe there's just a file somewhere with the lighting values in nice plain obvious text... 2014-04-24 23:07:11 @Espyo I think there is... /something/ 2014-04-24 23:07:27 @Espyo but anyway, after that horrible waste of time, I did TDS... 2014-04-24 23:07:32 @Espyo which is a lot larger and more complex 2014-04-24 23:07:36 @Espyo and it came out perfect the first time 2014-04-24 23:07:47 @Espyo well, some tiny bits OoB look slightly wonky, but I'm cropping those anyway 2014-04-24 23:10:05 @Espyo http://pastebin.com/kJviFNVa well 2014-04-24 23:11:05 @J hey look 2014-04-24 23:11:32 @Espyo I only caught your sarcasm afterwards 2014-04-24 23:17:27 @Espyo >crop TDS 2014-04-24 23:17:30 @Espyo >click copy 2014-04-24 23:17:33 @Espyo >click paste in new image 2014-04-24 23:17:36 @Espyo >TFH pops up 2014-04-24 23:17:38 @Espyo ...wait what 2014-04-24 23:17:49 @Espyo I'm pretty sure I copy+pasted trillions of things in the meantime 2014-04-24 23:18:04 @J turns out they're the same place and no-one ever noticed 2014-04-24 23:19:10 @Espyo so TFN, TDS, AW and PP 2014-04-24 23:19:12 @Espyo Nintendo's slacking 2014-04-24 23:20:45 @Espyo I wanted to make the edges of the TDS map fade into black 2014-04-24 23:20:50 @Espyo any way to do so in GIMP? 2014-04-24 23:24:20 @J select the rough region, grow, feather, invert, fill black in a lower layer 2014-04-24 23:25:06 @Espyo I searched around for feather, but couldn't find it 2014-04-24 23:25:31 @Espyo oh drat 2014-04-24 23:25:33 @Espyo it's in Portuguese 2014-04-24 23:25:34 @Espyo found it now 2014-04-24 23:25:57 @J wouldn't've helped, but more programs need searchable menus 2014-04-24 23:26:04 @J and searchable settings 2014-04-24 23:26:04 @Espyo hehe 2014-04-24 23:26:10 @Espyo VLC has searchable settings 2014-04-24 23:26:14 @J it does? 2014-04-24 23:26:17 @Espyo yeah 2014-04-24 23:26:26 @Espyo speaking of VLC, that's how I watch YT videos now 2014-04-24 23:26:27 @J ah, so it does 2014-04-24 23:26:27 @Espyo I can't go back 2014-04-24 23:26:39 @J by downloading them first? 2014-04-24 23:26:57 @Espyo nope, you can feed it the URL of the video directly 2014-04-24 23:27:03 @J oh, yeah, that 2014-04-24 23:28:05 @J I think you can even just give it YouTube video IDs 2014-04-24 23:28:55 @J only problem is you can't say which quality you want (I don't think), so I use 'youtube-dl -g', which generates a URL with the quality settings you specify 2014-04-24 23:29:02 @J and pass that into VLC 2014-04-24 23:30:32 @J I've been meaning to switch to mplayer at some point, anyway, just can't be bothered to actually do it 2014-04-24 23:31:01 @Espyo there's a setting on VLC that allows you to pick the quality the videos are loaded at 2014-04-24 23:32:35 @J hmm, can't seem to find it 2014-04-24 23:32:50 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (+2967) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44135&oldid=44133 2014-04-24 23:32:55 @J hey, I never noticed that before: ctrl-v on VLC plays from what you have copied 2014-04-24 23:33:00 @Espyo yeah 2014-04-24 23:33:09 @Espyo it's pretty amazing 2014-04-24 23:34:04 @Espyo https://dl.dropboxusercontent.com/u/47921869/TDS%20final.png I feel like there's something painfully wrong with this, but I can't tell what 2014-04-24 23:35:58 @J nothing looks wrong to me 2014-04-24 23:36:04 @J maybe more feathering on the borders? 2014-04-24 23:36:41 @J and maybe try increasing the overall brightness? 2014-04-24 23:36:55 @J but nothing stands out as wrong 2014-04-24 23:37:17 @J why did the bridge remain, but not the gates? 2014-04-24 23:37:28 @Espyo very good question, I have no idea 2014-04-24 23:37:32 Spark its beautiful 2014-04-24 23:37:33 @Espyo but it happens on all stages 2014-04-24 23:37:35 @Espyo thanks 2014-04-24 23:37:40 @J all bridges? 2014-04-24 23:37:47 @Espyo I think so, yeah 2014-04-24 23:37:57 @Espyo which means I'll have to open the TFT ones for the sake of consistency 2014-04-24 23:38:03 @Espyo this save doesn't have them opened, I don't think 2014-04-24 23:38:41 @J open = built? 2014-04-24 23:38:56 @J because I see one built here, one not 2014-04-24 23:39:20 @J oh, is that one partially built? 2014-04-24 23:39:25 @J ...and open = not built? 2014-04-24 23:39:33 @Espyo built, eah 2014-04-24 23:39:34 @Espyo *yeah 2014-04-24 23:39:37 @Espyo one not? 2014-04-24 23:39:52 @J near the bones or whatever they were 2014-04-24 23:40:12 @Espyo ...crud 2014-04-24 23:40:16 @Espyo they are unbuilt 2014-04-24 23:40:21 @Espyo .......... 2014-04-24 23:40:54 @J also, maybe play with some other background colours 2014-04-24 23:40:55 @Espyo what now 2014-04-24 23:41:02 @Espyo besides black? 2014-04-24 23:41:05 @J yeah 2014-04-24 23:41:26 @J maybe even one matching the overall area's hue, just much lighter or darker, and less saturated 2014-04-24 23:41:32 @J or just transparency 2014-04-24 23:42:46 @J and I wouldn't worry about the bridges 2014-04-24 23:42:53 @J could even try removing them altogether 2014-04-24 23:42:55 @Espyo but lack of detaaaaaaail... 2014-04-24 23:43:32 @Espyo I'm not feeling the transparency or fade to blue 2014-04-24 23:43:49 @Espyo I mean, the fade to this blue looks kind of ok, but all other images have a black background... 2014-04-24 23:47:09 @J white? 2014-04-24 23:48:17 @Espyo oh, I forgot to send it to Dropbox 2014-04-24 23:48:52 @Espyo https://dl.dropboxusercontent.com/u/47921869/Sem%20t%C3%ADtulo.png 2014-04-24 23:48:55 @Espyo white looks ok 2014-04-24 23:50:04 @Espyo https://dl.dropboxusercontent.com/u/47921869/white.png 2014-04-24 23:56:04 @J well, I wouldn't say you went 'much lighter or darker' with that greeny one, but I can see what you're saying 2014-04-24 23:56:16 @J yeah, I guess the black works best 2014-04-24 23:56:28 @J makes the whole thing look quite dark, though 2014-04-24 23:56:32 @J anyway, I should go 2014-04-24 23:56:44 @J bye 2014-04-24 23:56:48 @Espyo bye 2014-04-24 23:57:03 @Espyo I'll try lightening it up tomorrow 2014-04-24 23:57:08 @J 'kay 2014-04-25 00:28:10 Testyo [Fanon RC] Treto by Kidsy128 (-2 m) http://www.pikminfanon.com/index.php?title=Treto&curid=8742&diff=44136&oldid=44116 2014-04-25 00:28:10 Testyo [Fanon RC] File:Tretosid.png uploaded by Kidsy128 http://www.pikminfanon.com/index.php?title=File:Tretosid.png 2014-04-25 01:15:39 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-04-25 02:01:42 --> Gamefreak75 (NewYokuba@2605:e000:2e44:whlo:ulss:lyik:jwmj:lrpn) has joined #pikipedia 2014-04-25 02:03:06 <-- Espyo (Mibbit@u31-005-35-35.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-25 02:03:15 <-- Testyo (Testyo@u31-005-35-35.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-04-25 02:10:28 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:vkml:ljin:mqvj:inzm:qkjy) has joined #pikipedia 2014-04-25 02:12:51 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:whlo:ulss:lyik:jwmj:lrpn) has quit (Ping timeout: 250 seconds) 2014-04-25 02:12:58 -- Gamefreak75_ is now known as Gamefreak75 2014-04-25 02:22:59 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-25 02:22:59 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-25 05:06:05 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-25 05:14:28 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has left #pikipedia 2014-04-25 05:19:18 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:rrlj:puns:yxok:ogwn:vukh) has joined #pikipedia 2014-04-25 05:21:47 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:vkml:ljin:mqvj:inzm:qkjy) has quit (Ping timeout: 250 seconds) 2014-04-25 05:21:50 -- Gamefreak75_ is now known as Gamefreak75 2014-04-25 05:27:31 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit (Ping timeout: 256 seconds) 2014-04-25 05:31:13 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-04-25 05:50:07 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:xjpr:yltw:hgwl:wvpk:ypul) has joined #pikipedia 2014-04-25 05:51:41 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:rrlj:puns:yxok:ogwn:vukh) has quit (Ping timeout: 250 seconds) 2014-04-25 05:51:54 -- Gamefreak75_ is now known as Gamefreak75 2014-04-25 05:54:40 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:lzwq:zwlh:oouo:rwhr:zulq) has joined #pikipedia 2014-04-25 05:55:09 <-- Gamefreak75_ (NewYokuba@2605:e000:2e44:lzwq:zwlh:oouo:rwhr:zulq) has quit (Client Quit) 2014-04-25 05:57:45 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:xjpr:yltw:hgwl:wvpk:ypul) has quit (Ping timeout: 250 seconds) 2014-04-25 07:01:08 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-25 07:01:41 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-25 07:01:41 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-25 08:01:16 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-25 10:33:10 --> Moonscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-04-25 10:33:13 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Killed (NickServ (GHOST command used by Moonscreen))) 2014-04-25 10:33:15 -- Moonscreen is now known as Sunscreen 2014-04-25 10:33:50 --> Miles_ (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-04-25 10:35:13 <-- Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit (Ping timeout: 256 seconds) 2014-04-25 10:51:17 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2014-04-25 11:15:54 --> Testyo (Testyo@f81-501-58-27.cpe.netcabo.pt) has joined #pikipedia 2014-04-25 11:20:56 --> Espyo (Mibbit@f81-501-58-27.cpe.netcabo.pt) has joined #pikipedia 2014-04-25 11:20:56 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-25 15:00:37 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Ping timeout: 240 seconds) 2014-04-25 15:05:32 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-04-25 16:48:33 Testyo [Pikipedia RC] Pocked Airhead by Pikmin Derp (+136 m) http://www.pikminwiki.com/index.php?title=Pocked_Airhead&curid=9685&diff=79629&oldid=79624 2014-04-25 17:28:44 Testyo [Pikipedia RC] Challenge Mode (Pikmin 2) by Espyo (+296 Oh wow.) http://www.pikminwiki.com/index.php?title=Challenge_Mode_(Pikmin_2)&curid=58&diff=79630&oldid=79555 2014-04-25 17:28:44 Testyo [Pikipedia RC] Challenge Mode (Pikmin 2) by Espyo (0 m Hm.) http://www.pikminwiki.com/index.php?title=Challenge_Mode_(Pikmin_2)&curid=58&diff=79631&oldid=79630 2014-04-25 18:34:23 Testyo [Pikipedia RC] File:Pikmin 2 pikpikmin.png uploaded by Espyo (By editing the game files, it's possible to have [[pikpik carrot]]s in your part...) http://www.pikminwiki.com/index.php?title=File:Pikmin_2_pikpikmin.png 2014-04-25 18:39:25 Testyo [Pikipedia RC] Pikpik carrot by Espyo (+1297 Adding info on pikpik carrot Pikmin.) http://www.pikminwiki.com/index.php?title=Pikpik_carrot&curid=1169&diff=79633&oldid=73263 2014-04-25 18:39:25 Testyo [Pikipedia RC] Pikmin family by Espyo (+31 m /* See also */) http://www.pikminwiki.com/index.php?title=Pikmin_family&curid=1253&diff=79634&oldid=79290 2014-04-25 18:39:25 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-25 19:40:29 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-04-25 19:45:05 -- UltraMario is now known as ProjectUM 2014-04-25 19:55:35 Testyo [Pikipedia RC] Template:Did you know by Espyo (-757 Taking the SmashWiki approach.) http://www.pikminwiki.com/index.php?title=Template:Did_you_know&curid=1832&diff=79636&oldid=79055 2014-04-25 20:00:39 Testyo [Pikipedia RC] Main Page by Espyo (+91 m) http://www.pikminwiki.com/index.php?title=Main_Page&curid=1&diff=79637&oldid=79239 2014-04-25 20:00:40 Testyo [Pikipedia RC] Template:Did you know by Espyo (-2 m Fine.) http://www.pikminwiki.com/index.php?title=Template:Did_you_know&curid=1832&diff=79638&oldid=79636 2014-04-25 20:00:40 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-25 20:34:22 <-- ProjectUM (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-25 20:37:03 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-04-25 21:00:01 -- UltraMario is now known as ProjectUM 2014-04-25 21:29:33 -- ProjectUM is now known as UltraMarioBrosCrossover 2014-04-25 22:16:14 <-- Espyo (Mibbit@f81-501-58-27.cpe.netcabo.pt) has quit (Ping timeout: 240 seconds) 2014-04-25 22:22:14 --> Espyo (Mibbit@f81-501-58-27.cpe.netcabo.pt) has joined #pikipedia 2014-04-25 22:22:15 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-25 23:04:48 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (*.net *.split) 2014-04-25 23:07:00 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-25 23:45:06 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-25 23:45:06 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-25 23:46:31 @Espyo oh, here you area 2014-04-25 23:46:35 @Espyo ...*are 2014-04-25 23:46:36 @Espyo pfft 2014-04-25 23:46:36 @PikFan ...area 2014-04-25 23:46:46 @PikFan and I am currently shocked 2014-04-25 23:47:04 @PikFan because I just got 500 quintillion cookies from wrinklers 2014-04-25 23:47:17 @Espyo wow 2014-04-25 23:47:23 @PikFan also that image was hilarious 2014-04-25 23:47:32 @Espyo it's a code 2014-04-25 23:47:39 @Espyo speaking of codes, did you check the wiki recently? 2014-04-25 23:47:45 @Espyo I've spent the last two days tinkering with P1 and P2 stuff 2014-04-25 23:47:46 @Espyo and... 2014-04-25 23:47:56 @Espyo well, there's THAT amazing thing on the wiki 2014-04-25 23:47:57 @PikFan I looked at the AW navbox 2014-04-25 23:47:59 @PikFan looks good 2014-04-25 23:48:06 @Espyo an I'm currently working on another amazing thing 2014-04-25 23:48:10 @Espyo no, I didn't mean the AW navbox, but thanks 2014-04-25 23:48:17 @Espyo I might make it bigger, as per J's suggestions 2014-04-25 23:48:24 Spark im still struggling to get to the quintillions :( 2014-04-25 23:48:28 @PikFan wait, what amazing thing 2014-04-25 23:48:33 @PikFan *things 2014-04-25 23:48:40 @PikFan Spark: :( 2014-04-25 23:48:40 @Espyo [[Pikpik carrot#As "Pikmin"] 2014-04-25 23:48:43 @Espyo [[Pikpik carrot#As "Pikmin"]] 2014-04-25 23:48:44 Testyo "Pikpik_carrot#As_"Pikmin"" article = http://www.pikminwiki.com/index.php?title=Pikpik_carrot#As_"Pikmin" 2014-04-25 23:48:53 @Espyo err... [[Pikpik carrot]] 2014-04-25 23:48:53 Testyo "Pikpik_carrot" article = http://www.pikminwiki.com/index.php?title=Pikpik_carrot 2014-04-25 23:48:53 @Espyo yeah 2014-04-25 23:49:15 @PikFan lol what 2014-04-25 23:49:40 @Espyo when I was documenting the Pikmin numbers and such for the CM levels 2014-04-25 23:49:53 @Espyo I noticed a setting for the starting number of Pikmin type "6" 2014-04-25 23:50:04 @Espyo 0 is blue, 1 is red, 2 is yellow 2014-04-25 23:50:06 @Espyo or something of the sort 2014-04-25 23:50:16 @Espyo 5 is Bulbmin, and 6 is...? we didn't know 2014-04-25 23:50:18 @PikFan so on to 5, which is Bulbming 2014-04-25 23:50:19 @Espyo all CM levels had 0 2014-04-25 23:50:21 @PikFan *Bulbmin 2014-04-25 23:50:33 @Espyo so I made a stage start with 25 "6"s 2014-04-25 23:50:40 @Espyo and got disappointed because I still started with Red Pikmin 2014-04-25 23:50:46 @Espyo but wait, I have 75 now, not 5 2014-04-25 23:50:47 @Espyo *50 2014-04-25 23:50:50 @Espyo did it really add them...? 2014-04-25 23:50:58 @Espyo what if they're different, actually? let me dismiss 2014-04-25 23:51:04 @PikFan so technically there are now 9 Pikmin species 2014-04-25 23:51:04 @Espyo wait a second, those aren't Reds, those are... 2014-04-25 23:51:07 @Espyo /what/ 2014-04-25 23:51:10 @Espyo yeah 2014-04-25 23:51:19 @Espyo but the carrots aren't really canon, just a by-product of the Piklopedia 2014-04-25 23:51:25 @PikFan right 2014-04-25 23:51:32 @Espyo anyway, second awesome thing 2014-04-25 23:51:40 @Espyo https://dl.dropboxusercontent.com/u/47921869/TFN%20final.png boom 2014-04-25 23:51:53 @PikFan hmm... 2014-04-25 23:52:13 @PikFan isn't Pikpik carrot supposed to be a proper noun? 2014-04-25 23:52:28 @PikFan /WHAT/ 2014-04-25 23:52:41 @PikFan ok, HOW did you make that 2014-04-25 23:52:45 @Espyo :D 2014-04-25 23:52:48 @Espyo a lot of hard work 2014-04-25 23:52:54 @PikFan that is 2014-04-25 23:52:55 @Espyo you know how Dolphin allows you to freely move the camera? 2014-04-25 23:52:56 @PikFan literally 2014-04-25 23:53:01 @PikFan the most amazing thing 2014-04-25 23:53:05 @PikFan I've ever seen 2014-04-25 23:53:10 @Espyo why thank you 2014-04-25 23:53:13 @PikFan well, one of the most amazing 2014-04-25 23:53:18 @Espyo TFN was by far the hardest one 2014-04-25 23:53:21 @Espyo it kept working wrong 2014-04-25 23:53:23 Spark dude what happened to "a good programmer doesnt make a good artist" xP 2014-04-25 23:53:31 Spark thats ffing beautiful 2014-04-25 23:53:33 @Espyo but I didn't draw it, I just took screenshots 2014-04-25 23:53:37 @Espyo using the free cam 2014-04-25 23:53:44 @Espyo then a program stitched them together 2014-04-25 23:53:45 @PikFan ok wikia is going to be super jealous 2014-04-25 23:53:52 @Espyo hopefully 2014-04-25 23:53:58 @Espyo or rather, hopefully they won't notice 2014-04-25 23:54:00 @Espyo or else stealy stealy 2014-04-25 23:54:13 Spark photography is art ;) 2014-04-25 23:54:14 @Espyo for TFN, I also had to hack the game to remove the lighting 2014-04-25 23:54:20 @Espyo hehe, I suppose 2014-04-25 23:54:29 @PikFan one thing though 2014-04-25 23:54:35 @PikFan why are some things missing 2014-04-25 23:54:47 @PikFan like the two gates next to the BBL's arena 2014-04-25 23:54:51 @PikFan *BLL 2014-04-25 23:55:33 @Espyo there should be no gates to begin with 2014-04-25 23:55:39 @Espyo another problem with TFN: it loads in chunks 2014-04-25 23:55:46 @Espyo the beach, the top and the BLL arena are all different bits 2014-04-25 23:55:48 @Espyo and I have to get close 2014-04-25 23:55:57 @PikFan ...should be no gates to begin with? 2014-04-25 23:55:58 @Espyo unfortunately, getting close also means the gates and such are rendered 2014-04-25 23:56:01 @PikFan what do you mean? 2014-04-25 23:56:08 @Espyo gates are objects 2014-04-25 23:56:08 @PikFan ...oh, I see what you mean 2014-04-25 23:56:12 @Espyo not object geometry 2014-04-25 23:56:18 @PikFan they shouldn't be there 2014-04-25 23:56:22 @Espyo although, cardboard boxes and bridges are objects as well 2014-04-25 23:56:24 @Espyo but those are always visible 2014-04-25 23:56:30 @PikFan imo they look good there 2014-04-25 23:56:31 @Espyo you know how stuff goes invisible and inactive when you're far away? 2014-04-25 23:56:38 @Espyo everything except boxes and bridges, I suppose 2014-04-25 23:56:39 @PikFan yeah? 2014-04-25 23:56:43 @Espyo they do, but it's inconsistent 2014-04-25 23:56:49 @Espyo so I'll remove them with GIMP, if I can 2014-04-25 23:57:00 @Espyo if not, I seriously cannot be bothered to try again 2014-04-25 23:57:01 @PikFan inconsistent how 2014-04-25 23:57:09 @Espyo because in the other areas, they don't exist either 2014-04-25 23:57:19 @J if you try that, best way is probably to install the resynthesize plugin 2014-04-25 23:57:24 @J then do enhance/heal 2014-04-25 23:57:27 @PikFan ...oh, duh 2014-04-25 23:57:32 @J with the thing selected 2014-04-25 23:57:34 @Espyo plus I'm pretty sure there might be one or two gates on that TFN one missing 2014-04-25 23:57:38 @Espyo hmm, thanks for the tip 2014-04-25 23:57:40 @Espyo I was wondering 2014-04-25 23:57:49 @Espyo also, off-topic, but I won't join LD 2014-04-25 23:57:55 @Espyo too busy with this, plus the engine and all 2014-04-26 00:16:53 -- UltraMarioBrosCrossover is now known as UltraMario|Gmod 2014-04-26 00:17:45 @PikFan "I think we need a brief explanation of how to reset. Apparently it's obvious to everybody else, but I don't see a button for it; and I don't think it's the same as reloading the page in the browser, because that doesn't affect my "Cookies baked (this game)."" 2014-04-26 00:17:49 @PikFan bah 2014-04-26 00:18:01 @Espyo eesh 2014-04-26 00:18:16 @PikFan typical of the wikian's idiocy 2014-04-26 00:18:50 @PikFan continued quote: "Maybe what we need is a wiki page called "Reset" that we can link to from this page and from "Should I Reset?", and the new "Reset" page would tell how to reset; probably including a section on the how-to and the consequences of both soft and hard resets." 2014-04-26 00:20:37 @Espyo hm 2014-04-26 00:32:23 @Espyo all right, how would I lighten up the areas shaded by the leaves? 2014-04-26 00:42:56 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (+2939) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44138&oldid=44135 2014-04-26 00:42:56 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (0 /* Jellyfloats on planet Pikmin */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44139&oldid=44138 2014-04-26 00:42:57 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-26 00:47:58 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (0 /* Jellyfloats on planet Lordane */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters_Piklopedia&curid=8741&diff=44143&oldid=44142 2014-04-26 01:25:23 @Espyo phew, done 2014-04-26 01:32:14 @Espyo https://dl.dropboxusercontent.com/u/47921869/P1%20maps.7z 20 MB... 2014-04-26 01:48:04 <-- Testyo (Testyo@f81-501-58-27.cpe.netcabo.pt) has quit (Quit: Later everyone!) 2014-04-26 01:48:09 <-- Espyo (Mibbit@f81-501-58-27.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-26 02:10:11 --> Gamefreak75 (NewYokuba@2605:e000:2e44:uinn:wmjl:igsg:yyjx:qipz) has joined #pikipedia 2014-04-26 02:20:10 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:guml:srtv:nytx:ismx:zowl) has joined #pikipedia 2014-04-26 02:23:13 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:uinn:wmjl:igsg:yyjx:qipz) has quit (Ping timeout: 250 seconds) 2014-04-26 02:23:19 -- Gamefreak75_ is now known as Gamefreak75 2014-04-26 03:20:54 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:kiix:wvni:nqpp:tygt:lzty) has joined #pikipedia 2014-04-26 03:24:19 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:guml:srtv:nytx:ismx:zowl) has quit (Ping timeout: 250 seconds) 2014-04-26 03:24:25 -- Gamefreak75_ is now known as Gamefreak75 2014-04-26 04:03:30 <-- UltraMario|Gmod (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-26 04:50:47 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:uxxn:wvxp:rypl:ytzy:tksm) has joined #pikipedia 2014-04-26 04:50:54 <-- Gamefreak75_ (NewYokuba@2605:e000:2e44:uxxn:wvxp:rypl:ytzy:tksm) has quit (Client Quit) 2014-04-26 04:54:01 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:kiix:wvni:nqpp:tygt:lzty) has quit (Ping timeout: 250 seconds) 2014-04-26 08:08:10 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-26 11:11:22 --> Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-26 11:14:13 --> Espyo (Mibbit@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-26 11:14:13 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-26 15:48:34 --> LOL_Shelby (Mibbit@96.234.jlj.hgs) has joined #pikipedia 2014-04-26 15:48:45 LOL_Shelby Sup Sup dood 2014-04-26 15:49:47 LOL_Shelby My brother hates meh ._. 2014-04-26 15:58:00 Testyo [Fanon RC] User:PurplePikminPower by PurplePikminPower (+55) http://www.pikminfanon.com/index.php?title=User:PurplePikminPower&curid=8217&diff=44144&oldid=43761 2014-04-26 15:58:24 LOL_Shelby .... 2014-04-26 16:02:11 LOL_Shelby Hmmm jokes... 2014-04-26 16:08:04 Testyo [Fanon RC] User talk:Bioman223 by PurplePikminPower (+101 /* Hey Bioman! */ new section) http://www.pikminfanon.com/index.php?title=User_talk:Bioman223&curid=8701&diff=44145&oldid=43894 2014-04-26 16:09:03 LOL_Shelby JOKEZ 2014-04-26 16:13:06 Testyo [Fanon RC] User talk:Peach Bulborb by PurplePikminPower (+54 /* Hey */ new section) http://www.pikminfanon.com/index.php?title=User_talk:Peach_Bulborb&curid=6232&diff=44146&oldid=44075 2014-04-26 16:13:58 LOL_Shelby I LIKE JOKEZ SND PRANKS 2014-04-26 16:14:11 LOL_Shelby IM JUST PLAIN WEIRD 2014-04-26 16:14:54 @Espyo spam some more 2014-04-26 16:14:57 @Espyo you might warrant a ban that way 2014-04-26 16:15:46 <-- LOL_Shelby (Mibbit@96.234.jlj.hgs) has left #pikipedia 2014-04-26 16:16:16 @Espyo good 2014-04-26 16:33:17 Testyo [Fanon RC] Pikmin: The Mystery Potio... by PurplePikminPower (+12 /* Granite Outpost */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_The_Mystery_Potion&curid=8581&diff=44147&oldid=43262 2014-04-26 16:38:20 Testyo [Fanon RC] Rocky Road by PurplePikminPower (+227 N Created page with "A cave in the [[Granite Outpost]], it is home to the [[Terrif...) http://www.pikminfanon.com/index.php?title=Rocky_Road&curid=8746&diff=44148&oldid=0 2014-04-26 16:53:30 Testyo [Fanon RC] File:Angry Scissoni.jpeg uploaded by PurplePikminPower http://www.pikminfanon.com/index.php?title=File:Angry_Scissoni.jpeg 2014-04-26 17:03:35 Testyo [Pikipedia RC] File:The Impact Site HD.jpg uploaded by Espyo (High Definition map of [[The Impact Site]]. This was made by taking screenshots...) http://www.pikminwiki.com/index.php?title=File:The_Impact_Site_HD.jpg 2014-04-26 17:03:36 Testyo [Fanon RC] Angry Scissoni by PurplePikminPower (+362 N Created page with "{{infobox enemy |image= Angry Sci...) http://www.pikminfanon.com/index.php?title=Angry_Scissoni&curid=8748&diff=44150&oldid=0 2014-04-26 17:03:36 Testyo [Fanon RC] Angry Scissoni by PurplePikminPower (0) http://www.pikminfanon.com/index.php?title=Angry_Scissoni&curid=8748&diff=44151&oldid=44150 2014-04-26 17:08:37 Testyo [Pikipedia RC] The Impact Site by Espyo (+55 Adding map.) http://www.pikminwiki.com/index.php?title=The_Impact_Site&curid=1496&diff=79641&oldid=74639 2014-04-26 17:08:37 Testyo [Pikipedia RC] File:The Forest of Hope HD.jpg uploaded by Espyo (High Definition map of [[The Forest of Hope]]. This was made by taking screensh...) http://www.pikminwiki.com/index.php?title=File:The_Forest_of_Hope_HD.jpg 2014-04-26 17:08:37 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-26 17:13:38 Testyo [Pikipedia RC] File:The Forest Navel HD.... by Espyo (+82 m) http://www.pikminwiki.com/index.php?title=File:The_Forest_Navel_HD.jpg&curid=9693&diff=79646&oldid=79644 2014-04-26 17:13:38 Testyo [Pikipedia RC] File:The Distant Spring HD.jpg uploaded by Espyo (High Definition map of [[The Distant Spring]]. This was made by taking screensh...) http://www.pikminwiki.com/index.php?title=File:The_Distant_Spring_HD.jpg 2014-04-26 17:13:39 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-26 17:18:40 Testyo [Pikipedia RC] File:Play 3 HD.jpg uploaded by Espyo (High Definition map of [[play_3]]. This was made by taking screenshots using Do...) http://www.pikminwiki.com/index.php?title=File:Play_3_HD.jpg 2014-04-26 17:23:42 Testyo [Fanon RC] Pikmin: The Mystery Potio... by PurplePikminPower (+103 /* Granite Outpost */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_The_Mystery_Potion&curid=8581&diff=44152&oldid=44147 2014-04-26 17:28:43 Testyo [Pikipedia RC] The Distant Spring by Espyo (+50 m Just noticed this.) http://www.pikminwiki.com/index.php?title=The_Distant_Spring&curid=1584&diff=79652&oldid=79648 2014-04-26 17:58:51 Testyo [Pikipedia RC] File:Play 3 HD.jpg uploaded by Espyo (Consistency.) http://www.pikminwiki.com/index.php?title=File:Play_3_HD.jpg 2014-04-26 17:58:51 Testyo [Pikipedia RC] E3play 3 by Espyo (+248 Fixed everything.) http://www.pikminwiki.com/index.php?title=E3play_3&curid=7307&diff=79655&oldid=77814 2014-04-26 18:18:34 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-04-26 18:18:35 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-04-26 18:18:35 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-04-26 18:18:35 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-04-26 18:18:35 -- URL for #pikipedia: http://www.pikminwiki.com 2014-04-26 18:18:35 -- Mode #pikipedia [+o J] by ChanServ 2014-04-26 18:18:36 -- Mode #pikipedia [+nt] 2014-04-26 18:18:36 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-04-26 18:59:24 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-26 18:59:24 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-26 18:59:46 @PikFan . 2014-04-26 19:04:14 @PikFan patrolled the edits 2014-04-26 19:06:12 @J hey 2014-04-26 19:06:18 @PikFan hi 2014-04-26 19:10:23 @J what's another name for 'input', in the computer sense? 2014-04-26 19:10:48 @PikFan x? 2014-04-26 19:12:03 @J mm, doesn't really work 2014-04-26 19:12:23 @PikFan no clue then 2014-04-26 19:13:00 @Espyo hmm 2014-04-26 19:13:02 @J well, I'll probably end up using input, but there are reasons I shouldn't 2014-04-26 19:13:07 @Espyo user-defined? 2014-04-26 19:13:17 @Espyo also hi 2014-04-26 19:13:20 @J hey 2014-04-26 19:13:28 @PikFan hi 2014-04-26 19:13:35 @J you're asking if this means user-defined input? 2014-04-26 19:14:42 @Espyo nope, that was a suggestion 2014-04-26 19:15:00 @J oh 2014-04-26 19:15:07 @J ...maybe I should explain what I'm doing 2014-04-26 19:15:32 @J it's for a general input/event system, specifically for games 2014-04-26 19:15:59 @J an input might be a hardware input, or it might be virtual (triggered from code), or it might be a combination of other inputs 2014-04-26 19:16:16 @Espyo you probably want "event" then 2014-04-26 19:16:21 @Espyo or "trigger" 2014-04-26 19:16:30 @J hmm 2014-04-26 19:16:43 @J event feels like the output part 2014-04-26 19:17:01 @J the inputs do trigger what I would call events (in the form of function calls) 2014-04-26 19:17:26 @J also, yeah, I know I already wrote an input system, but there are problems and I think I can do better 2014-04-26 19:17:43 @Espyo event doesn't really feel outputy 2014-04-26 19:18:29 @J hmm, I guess I could use event, if you think it makes sense 2014-04-26 19:19:52 @Espyo it should 2014-04-26 19:20:09 @Espyo on key down, on my_function call, on timer 2014-04-26 19:20:49 @J okay then 2014-04-26 19:23:30 @J one thing I'm planning: provide a class which acts to 'fill out' a type of event, so it's easy to produce multiple implementations with a full interface 2014-04-26 19:24:09 @J eg. for a button, you define up/down triggers, then mix in the Button class, and it gives you a held state, timed repetition, double-click, etc. 2014-04-26 19:24:17 @Espyo ah, yes 2014-04-26 19:24:20 @Espyo good thinking 2014-04-26 19:26:12 @J also, the thing that manages events doesn't actually do anything, but you can add sources of input, eg. make a source that links up Pygame events to my events 2014-04-26 19:26:44 @Espyo I think Allegro kind of works the same way 2014-04-26 19:27:54 @J hmm, I would've thought that since it also provides an actual hardware interface, it would just use that one 2014-04-26 19:28:39 @Espyo huh? 2014-04-26 19:31:31 @J I mean, it lets you get keyboard, etc. events, right? So I would've expected it to just allow triggering events from those ones implemented by Allegro, rather than allowing you to define your own sources of events 2014-04-26 19:34:07 @Espyo it does both 2014-04-26 19:34:26 @Espyo you register a source of an event as the keyboard, mouse, a specific timer, a specific window, or you can register your own sources and events 2014-04-26 20:18:20 @J ...okay, how is it suddenly gone 8pm? 2014-04-26 20:18:24 @J I thought it was 5 or so 2014-04-26 20:29:29 @Espyo ikr 2014-04-26 20:29:58 @Espyo in other news, I swear Hugin is not working on purpose https://dl.dropboxusercontent.com/u/47921869/testmap.png 2014-04-26 20:30:20 @Espyo everything perfect, and then those edges at the bottom part all messed up 2014-04-26 20:50:45 Testyo [Pikipedia RC] Mock Bottom by Captainmarlio360 (+442 N Created page with "{{infobox fruit |juice = 2 |icon = Fruit File Mock Bottom.png...) http://www.pikminwiki.com/index.php?title=Mock_Bottom&curid=9698&diff=79656&oldid=0 2014-04-26 20:51:18 @PikFan ...! 2014-04-26 20:51:39 @PikFan well, at least I know what I'm forgetting now 2014-04-26 20:53:47 @J I can't even tell what's wrong with that 2014-04-26 20:55:48 Testyo [Pikipedia RC] Crimson Banquet by PikFan23 (+22 m notes) http://www.pikminwiki.com/index.php?title=Crimson_Banquet&curid=9667&diff=79657&oldid=79462 2014-04-26 20:56:33 @Espyo what 2014-04-26 20:58:13 @J well, I thought everything looked crazy, then you said it's perfect except for the bottom, and I can't tell if you're being sarcastic 2014-04-26 20:58:45 @J looks like a pretty hard image-set to stitch together, anyway 2014-04-26 21:04:25 @Espyo not being sarcastic 2014-04-26 21:04:33 @Espyo the edge lines near the bottom, at the left and right 2014-04-26 21:04:34 @Espyo they break 2014-04-26 21:10:50 @J right 2014-04-26 21:21:03 Testyo [Pikipedia RC] Cupid's Grenade by PikFan23 (+786 expanded P3 info) http://www.pikminwiki.com/index.php?title=Cupid's_Grenade&curid=640&diff=79658&oldid=79628 2014-04-26 21:41:09 Testyo [Pikipedia RC] Talk:Shaggy Long Legs by 50.46.119.51 (+110 N Created page with "Is the Shaggy Long Legs really a kiwi? I have played through ...) http://www.pikminwiki.com/index.php?title=Talk:Shaggy_Long_Legs&curid=9699&diff=79659&oldid=0 2014-04-26 22:06:24 Testyo [Pikipedia RC] File:Testmap HD.jpg uploaded by Espyo (High Definition map of [[testmap]]. This was made by taking screenshots using D...) http://www.pikminwiki.com/index.php?title=File:Testmap_HD.jpg 2014-04-26 22:21:35 Testyo [Pikipedia RC] File:Pikmin vase.jpg uploaded by Espyo (A screenshot of the unused vase-like object, found in [[testmap]]. [[Category:P...) http://www.pikminwiki.com/index.php?title=File:Pikmin_vase.jpg 2014-04-26 22:21:35 Testyo [Pikipedia RC] Testmap by Espyo (+508 Expanded.) http://www.pikminwiki.com/index.php?title=Testmap&curid=8011&diff=79662&oldid=72642 2014-04-26 23:11:52 Testyo [Pikipedia RC] Bug-eyed Crawmad by 72.206.99.86 (+16) http://www.pikminwiki.com/index.php?title=Bug-eyed_Crawmad&curid=9502&diff=79663&oldid=79618 2014-04-26 23:11:53 Testyo [Fanon RC] User talk:PurplePikminPow... by Peach Bulborb (+64 /* Re: I'm Back! */ new section) http://www.pikminfanon.com/index.php?title=User_talk:PurplePikminPower&curid=8218&diff=44153&oldid=43879 2014-04-26 23:16:54 Testyo [Pikipedia RC] Bug-eyed Crawmad by 72.206.99.86 (+132) http://www.pikminwiki.com/index.php?title=Bug-eyed_Crawmad&curid=9502&diff=79664&oldid=79663 2014-04-26 23:21:55 Testyo [Pikipedia RC] Peckish Aristocrab by 72.206.99.86 (+23 /* Locations */) http://www.pikminwiki.com/index.php?title=Peckish_Aristocrab&curid=8618&diff=79665&oldid=79569 2014-04-26 23:21:56 Testyo [Pikipedia RC] Peckish Aristocrab by 72.206.99.86 (+1) http://www.pikminwiki.com/index.php?title=Peckish_Aristocrab&curid=8618&diff=79666&oldid=79665 2014-04-26 23:26:42 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-04-26 23:36:59 Testyo [Pikipedia RC] Scornet by 72.206.99.86 (+147 /* Scornet */) http://www.pikminwiki.com/index.php?title=Scornet&curid=9686&diff=79667&oldid=79596 2014-04-26 23:39:29 -- UltraMario is now known as ProjectUM 2014-04-26 23:42:01 Testyo [Pikipedia RC] Scornet by 72.206.99.86 (+28) http://www.pikminwiki.com/index.php?title=Scornet&curid=9686&diff=79668&oldid=79667 2014-04-26 23:42:01 Testyo [Pikipedia RC] Scornet by 72.206.99.86 (+1) http://www.pikminwiki.com/index.php?title=Scornet&curid=9686&diff=79669&oldid=79668 2014-04-26 23:43:15 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-04-26 23:47:02 Testyo [Pikipedia RC] Skeeterskate by 72.206.99.86 (+83) http://www.pikminwiki.com/index.php?title=Skeeterskate&curid=9676&diff=79670&oldid=79520 2014-04-27 01:20:13 --> Gamefreak75 (NewYokuba@2605:e000:2e44:olou:tovs:sxmi:oijy:goir) has joined #pikipedia 2014-04-27 01:22:39 Testyo [Pikipedia RC] Snagret Hole by 24.240.34.186 (+5 /* Sublevel 4 */) http://www.pikminwiki.com/index.php?title=Snagret_Hole&curid=1680&diff=79671&oldid=78552 2014-04-27 01:25:43 -- ProjectUM is now known as UltraMarioBrosCrossover 2014-04-27 02:24:12 <-- Espyo (Mibbit@z36-006-53-867.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-27 02:24:21 <-- Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-04-27 03:41:01 <-- UltraMarioBrosCrossover (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-27 04:26:21 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-27 04:28:52 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-27 05:17:57 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:mhlo:sorn:tvww:lmul:vzrv) has joined #pikipedia 2014-04-27 05:20:51 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:olou:tovs:sxmi:oijy:goir) has quit (Ping timeout: 250 seconds) 2014-04-27 05:21:00 -- Gamefreak75_ is now known as Gamefreak75 2014-04-27 05:21:39 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-27 05:27:21 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:jvtz:hphg:snwk:xpgy:pzmw) has joined #pikipedia 2014-04-27 05:30:49 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:mhlo:sorn:tvww:lmul:vzrv) has quit (Ping timeout: 250 seconds) 2014-04-27 05:30:52 -- Gamefreak75_ is now known as Gamefreak75 2014-04-27 07:04:25 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:jvtz:hphg:snwk:xpgy:pzmw) has quit (Ping timeout: 250 seconds) 2014-04-27 11:08:27 --> Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-27 11:12:32 --> Espyo (Mibbit@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-27 11:12:32 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-27 11:33:26 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit 2014-04-27 13:01:55 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Ping timeout: 250 seconds) 2014-04-27 13:04:10 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-04-27 13:34:01 Testyo [Fanon RC] Pikmin extinction by 90.214.18.25 (+204 /* pikmin types */ ) http://www.pikminfanon.com/index.php?title=Pikmin_extinction&curid=7128&diff=44154&oldid=43499 2014-04-27 13:34:01 Testyo [Fanon RC] Pikmin extinction by 90.214.18.25 (-49 /* captains */ ) http://www.pikminfanon.com/index.php?title=Pikmin_extinction&curid=7128&diff=44155&oldid=44154 2014-04-27 13:54:08 Testyo [Fanon RC] The abyss by Pikmin mania (-6) http://www.pikminfanon.com/index.php?title=The_abyss&curid=7317&diff=44156&oldid=37863 2014-04-27 13:54:10 Testyo [Fanon RC] The abyss by Pikmin mania (0) http://www.pikminfanon.com/index.php?title=The_abyss&curid=7317&diff=44157&oldid=44156 2014-04-27 13:54:11 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-27 14:04:14 Testyo [Fanon RC] Glitter Bulborb by 90.214.18.25 (+140 /* How to Defeat */ ) http://www.pikminfanon.com/index.php?title=Glitter_Bulborb&curid=419&diff=44160&oldid=38937 2014-04-27 14:07:04 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-04-27 14:41:43 @J so, API design question 2014-04-27 14:41:59 @J some events can contain other events, and when you add one you need to map 'component' of the child to the parent 2014-04-27 14:42:17 @Espyo not really seeing how events can contain others 2014-04-27 14:42:27 @J for example, you might want to map a button to the 'left' component of an axis, or map the left of an axis to the right of another axis 2014-04-27 14:42:44 @J so that you can combine events, or treat them like something else 2014-04-27 14:43:08 @Espyo still don't really see how that's... 2014-04-27 14:43:10 @J treat 4 keyboard keys like an analogue stick by mapping them to a 2D axis 2014-04-27 14:43:19 @Espyo you mean event = input, in this case? 2014-04-27 14:43:29 @Espyo either way, I can only really see one event anyway 2014-04-27 14:43:32 @J hey, you told me to call them events 2014-04-27 14:43:36 @Espyo on axis 1 right 2014-04-27 14:43:40 @Espyo on axis 1 up 2014-04-27 14:43:59 @Espyo regardless of you pressing a key, mouse button, or move an analog stick, it triggers only axis 1 right, or left, or whatever 2014-04-27 14:44:03 @J yes, but 'axis 1 right' is now triggered by you D key 2014-04-27 14:44:04 @Espyo unless you mean like 2014-04-27 14:44:06 @J *your 2014-04-27 14:44:25 @Espyo pressing numpad9 to do an axis 1 right and an axis 1 up events 2014-04-27 14:44:27 @Espyo at the same time 2014-04-27 14:44:44 @J well, that would be possible, but not the most obvious use case 2014-04-27 14:45:01 @J it's more like, both D and the right arrow key would do axis 1 right 2014-04-27 14:45:05 @Espyo right 2014-04-27 14:45:10 @J and also a gamepad's A-stick 2014-04-27 14:45:16 @Espyo right 2014-04-27 14:45:41 @J anyway, so like I said, you can map components between them 2014-04-27 14:46:19 @J the mouse position has 4 components already (left, right, up, down), but maybe you only want to use 2 of them to track the horizontal axis 2014-04-27 14:46:46 @J in that case, you map (left, right) to (left, right), ignoring up and down 2014-04-27 14:47:05 @J I'm thinking of doing it like this: parent.add(child[child_components][parent_components]) 2014-04-27 14:47:24 @J like parent.add(child1, child2[0], child3[1:3], child4[:][0,2]), etc. 2014-04-27 14:47:39 @J where the [] are Python's slice notation, which specifies which elements of something to extract 2014-04-27 14:48:04 @J does that sound like it would make sense? The part I'm not sure about is treating the parent components like they're a part of the child 2014-04-27 14:48:43 @Espyo I'm not following at all 2014-04-27 14:48:47 @Espyo like, the parents and childs 2014-04-27 14:48:51 @Espyo I have no idea what even 2014-04-27 14:48:58 @Espyo I get the Python things, though 2014-04-27 14:49:02 @J you add an event to another 2014-04-27 14:49:11 @J the one you add is the child, and you add it to the parent 2014-04-27 14:49:22 @J a parent has any number of children 2014-04-27 14:49:34 @Espyo so... let me get this straight 2014-04-27 14:49:39 @J in the mouse example, the mouse is the child and the axis is the parent 2014-04-27 14:49:40 @Espyo the parent is the axis 1 right 2014-04-27 14:49:48 @J yes 2014-04-27 14:49:54 @Espyo and the children are D, right arrow, and the analog stick 2014-04-27 14:49:57 @Espyo from the example from before 2014-04-27 14:49:57 @J yes 2014-04-27 14:50:03 @Espyo all right, it's all coming together now 2014-04-27 14:50:05 @Espyo but the names... 2014-04-27 14:50:15 @J parent and child is pretty standard, isn't it? 2014-04-27 14:50:20 @Espyo I would rather call the axis 1 right the event, and the physical keys the triggers 2014-04-27 14:50:27 @Espyo like, one is what the game knows 2014-04-27 14:50:35 @Espyo the game knows axis 1 right makes the character go right 2014-04-27 14:50:47 @Espyo it doesn't care how you get the "axis 1 right happened" event to pull off 2014-04-27 14:50:48 @J could do, except that an event is also a trigger 2014-04-27 14:50:54 @Espyo and the others are physical keys, they all act differently 2014-04-27 14:50:57 @J you can add it to other events as if it's a trigger 2014-04-27 14:51:23 @Espyo like when the axis 1 right event is triggered, also trigger on_walk event? 2014-04-27 14:51:39 @J not really 2014-04-27 14:51:53 @J I can't really think of a sensible use case, just that it's possible 2014-04-27 14:53:30 @Espyo but without one, I can't really understand 2014-04-27 14:53:37 @Espyo but either way, with what I know so far 2014-04-27 14:53:43 @Espyo the names should really be kinda different 2014-04-27 14:53:50 @Espyo like, it's fine events can have child events 2014-04-27 14:53:54 @Espyo however you're thinking of them 2014-04-27 14:53:55 @J these aren't code names, they're explanation names 2014-04-27 14:54:10 @Espyo but at the very least, the physical D key, the physical analog stick, the physical mouse movements 2014-04-27 14:54:13 @Espyo those should be triggers 2014-04-27 14:54:23 @Espyo because you cannot, EVER, trigger a D key "event" 2014-04-27 14:54:31 @Espyo your D key isn't gonna push itself before your very eyes 2014-04-27 14:55:16 @J simulation? Testing? 2014-04-27 14:55:51 @J either way, I would like to go back to the other day, when you said I should call inputs events 2014-04-27 14:56:19 @Espyo that was just yesterday 2014-04-27 14:56:23 @Espyo probably less than a day even 2014-04-27 14:56:30 @J yesterday is the other day 2014-04-27 14:56:32 @Espyo but hey, I had no idea how it worked back then 2014-04-27 14:56:46 @Espyo you're the one who gave the greenlight 2014-04-27 14:56:49 @Espyo no blaming me 2014-04-27 14:56:59 @Espyo plus you'd have to blame Testyo first, he's my secretary 2014-04-27 14:57:23 @J anyway, it's too late, everything is an event 2014-04-27 14:58:26 @J I guess you can call the child a trigger, even though it might not be directly related to hardware inputs 2014-04-27 14:58:42 @J an event is also a trigger, in that it can 'happen' 2014-04-27 15:00:23 @Espyo right 2014-04-27 15:01:01 @J [14:48:04] @J does that sound like it would make sense? The part I'm not sure about is treating the parent components 2014-04-27 15:01:01 @J like they're a part of the child 2014-04-27 15:01:05 @J does that make sense yet? 2014-04-27 15:01:30 @J uh...I mean, does the question as to whether it would make sense make sense? 2014-04-27 15:01:35 @Espyo well, yeah, kinda 2014-04-27 15:01:38 @J okay, now I'm a little confused 2014-04-27 15:01:42 @Espyo hm, wait 2014-04-27 15:01:49 @Espyo you mean parents OWN the children? 2014-04-27 15:01:54 @J yes 2014-04-27 15:01:55 @Espyo like the children only exist inside the parents? 2014-04-27 15:02:02 @Espyo and not, you know, as a thing that can be linked? 2014-04-27 15:02:11 @J in fact, Event is a subclass of Owned, which is a thing that can be owned 2014-04-27 15:02:22 @J linked? 2014-04-27 15:02:46 @Espyo all right, we'll get nowhere without me understanding a concrete example of this parenting thing 2014-04-27 15:02:52 @Espyo you sure you're not overcomplicating this? 2014-04-27 15:02:54 @J heh 2014-04-27 15:02:58 @J okay, I should write one 2014-04-27 15:03:05 @Espyo all right, thanks 2014-04-27 15:07:28 @J http://sprunge.us/LOPN?py 2014-04-27 15:08:12 @J a little bit dumbed-down/simplified 2014-04-27 15:08:17 @Espyo hmmmmm 2014-04-27 15:08:35 @Espyo see, but that's the whole thing, making wasd and such an "event"... 2014-04-27 15:08:39 @Espyo the problem might just be a misnomer 2014-04-27 15:08:43 @Espyo now I get why you wanted input 2014-04-27 15:08:51 @Espyo but I don't think there's really a word 2014-04-27 15:08:55 @Espyo they're just... different things 2014-04-27 15:09:03 @Espyo even though I do see how they connect 2014-04-27 15:09:07 @Espyo they just can't really be called the same 2014-04-27 15:09:10 @Espyo but hey, you know what 2014-04-27 15:09:16 @Espyo in cases like these, just use the catch-all term: 2014-04-27 15:09:16 @Espyo node 2014-04-27 15:09:43 @J but here's the thing: crazier_button = Button(components=2).add(crazy_axis[LEFT, RIGHT]) 2014-04-27 15:10:48 @J but anyway, forget what they're called - event is just a name, and none of that code uses the word 'event' 2014-04-27 15:11:40 @J BTW, [:] means get everything 2014-04-27 15:12:20 @Espyo right, right 2014-04-27 15:12:32 @Espyo hm, I see what you mean now 2014-04-27 15:12:58 @Espyo all right, so the question again? 2014-04-27 15:14:12 @J does that seems like a sensible way to do the component mapping? 2014-04-27 15:14:31 Testyo [Fanon RC] Glitter Bulborb by 90.214.18.25 (+39) http://www.pikminfanon.com/index.php?title=Glitter_Bulborb&curid=419&diff=44161&oldid=44160 2014-04-27 15:14:35 @J I'm not really sure about how it makes it look like the parent components are an aspect of the child 2014-04-27 15:14:46 @J 'the event components are an aspect of the trigger' 2014-04-27 15:14:57 @J really, they're an aspect of _adding_ the child to the parent 2014-04-27 15:15:01 @J not the child itself 2014-04-27 15:15:43 @J also, I should probably know better by now, but I honestly thought this idea wouldn't take long to communicate 2014-04-27 15:18:26 @Espyo yeah, exactly... 2014-04-27 15:18:30 @Espyo a component of adding 2014-04-27 15:18:52 @Espyo that's what happens when you call a rabbit a Smeerp 2014-04-27 15:19:15 @J wha 2014-04-27 15:20:11 @Espyo yes 2014-04-27 15:20:27 @Espyo the names we picked 2014-04-27 15:20:28 @Espyo confusing 2014-04-27 15:20:40 @J s/we/you/ 2014-04-27 15:28:58 <-- Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has quit (Ping timeout: 240 seconds) 2014-04-27 15:30:53 <-- Espyo (Mibbit@z36-006-53-867.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-27 15:35:56 --> Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-27 15:41:18 <-- Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has quit (Quit: So long everyone!) 2014-04-27 15:41:25 --> Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-27 15:42:08 <-- Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has quit (Client Quit) 2014-04-27 15:42:14 --> Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-27 15:42:53 -- Spark is now known as Sick01 2014-04-27 15:44:28 <-- Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has quit (Client Quit) 2014-04-27 15:54:23 --> Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-27 15:54:27 --> Espyo (Mibbit@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-27 15:54:28 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-27 15:56:31 @Espyo port forwarding 2014-04-27 15:56:33 @Espyo is impossibly hard 2014-04-27 15:59:04 Sick01 ikr 2014-04-27 15:59:15 Sick01 especially when you live with your dad and cant find the router 2014-04-27 15:59:57 @Espyo plus it just makes it worse that I have to connect via Ethernet to change my router settings 2014-04-27 16:00:01 @Espyo sitting on the cold hard ground 2014-04-27 16:00:08 @Espyo disconnecting 2014-04-27 16:00:11 @Espyo eesh 2014-04-27 16:03:08 @J I hear chairs are all the rage nowadays 2014-04-27 16:07:13 @Espyo mhm 2014-04-27 16:08:14 @Espyo bliss! I get to go and reconfigure again, because it's not working! 2014-04-27 16:10:48 <-- Espyo (Mibbit@z36-006-53-867.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-27 16:16:16 <-- Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-04-27 16:16:21 --> Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-27 16:17:22 --> Espyo (Mibbit@z36-006-53-867.cpe.netcabo.pt) has joined #pikipedia 2014-04-27 16:17:22 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-27 16:35:17 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit 2014-04-27 16:55:22 --> LOL_Shelby (Mibbit@96.234.jlj.hgs) has joined #pikipedia 2014-04-27 16:55:36 LOL_Shelby Hi 2014-04-27 17:00:17 @Espyo hey 2014-04-27 17:01:05 LOL_Shelby Sup Sup 2014-04-27 17:04:10 LOL_Shelby Its not funny if ur brother is dancing 2 wrecking ball unless he trips over the dog 2014-04-27 17:06:11 LOL_Shelby :D 2014-04-27 17:11:30 Testyo [Pikipedia RC] File:Map 06 HD.jpg uploaded by Espyo (High Definition map of [[map_06]]. This was made by taking screenshots using Do...) http://www.pikminwiki.com/index.php?title=File:Map_06_HD.jpg 2014-04-27 17:20:21 <-- LOL_Shelby (Mibbit@96.234.jlj.hgs) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-27 17:21:32 Testyo [Pikipedia RC] Map 06 by Espyo (+51 Expanded.) http://www.pikminwiki.com/index.php?title=Map_06&curid=7300&diff=79679&oldid=77813 2014-04-27 17:23:51 @Espyo http://tcrf.net/Pikmin Ctrl+A, Cltr+C 2014-04-27 17:23:53 @Espyo http://pikmin.wikia.com/wiki/Pikmin_Beta_Elements Ctrl+V 2014-04-27 17:23:58 @Espyo sons of bitches 2014-04-27 17:25:55 @Espyo Testyo: memo PikFan http://tcrf.net/Pikmin Ctrl+C, http://pikmin.wikia.com/wiki/Pikmin_Beta_Elements Ctrl+V 2014-04-27 17:25:55 Testyo Done, I saved a memo for PikFan saying: http://tcrf.net/Pikmin Ctrl+C, http://pikmin.wikia.com/wiki/Pikmin_Beta_Elements Ctrl+V. 2014-04-27 17:51:25 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-27 17:51:25 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-27 17:52:01 @PikFan . 2014-04-27 17:53:12 @Espyo hey 2014-04-27 17:53:56 @PikFan ... 2014-04-27 17:54:00 @PikFan wikia is evil 2014-04-27 17:54:37 @PikFan they plagiarized TCRF 2014-04-27 18:00:19 <-- Sick01 (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-27 18:00:30 @PikFan what will we do if they take stuff from us 2014-04-27 18:01:09 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-27 18:01:09 @PikFan ...oh wow 2014-04-27 18:01:39 @PikFan can wikians get any more horrid? "Nice copy+paste from TCRF http://tcrf.net/Pikmin " 2014-04-27 18:08:57 @Espyo why's that in quotes? 2014-04-27 18:09:04 @Espyo we can't do anything, the information is free 2014-04-27 18:09:17 @Espyo but on the other hand, if somebody needs proof on our hatred for wikia 2014-04-27 18:09:18 @Espyo we got this 2014-04-27 18:09:39 @PikFan it was a comment 2014-04-27 18:09:48 @Espyo where? 2014-04-27 18:10:03 @PikFan on the copy/pasted page 2014-04-27 18:11:47 @Espyo oh, hah! 2014-04-27 18:11:50 @Espyo it was Einstein95 2014-04-27 18:11:52 @Espyo he's a TCRFer 2014-04-27 18:12:10 @PikFan ...oh 2014-04-27 18:12:17 @PikFan heh 2014-04-27 18:12:30 @Espyo he added it just now it seems 2014-04-27 18:17:48 @Espyo well, they DO mention TCRF at the top 2014-04-27 18:17:52 @Espyo but even still it's just C+P 2014-04-27 18:17:58 @Espyo and they don't even say the info comes straight from TCRF 2014-04-27 18:18:11 @PikFan right 2014-04-27 18:18:18 @PikFan they're not attributing it 2014-04-27 18:18:31 @Espyo and even if they were, it's just pure laziness 2014-04-27 18:53:20 @PikFan oh my gosh Orteil, what are you sick with http://orteil42.tumblr.com/ 2014-04-27 18:53:42 @PikFan well now I 2014-04-27 18:53:58 @PikFan *I'm doubting the release of the Easter update in April 2014-04-27 18:54:38 @Espyo lol 2014-04-27 18:55:59 @PikFan 10:09 Espyo we got this 2014-04-27 18:56:10 @PikFan got what 2014-04-27 18:56:18 @PikFan their C+P? 2014-04-27 18:56:18 @Espyo this: the copied wikia article 2014-04-27 18:59:43 @PikFan yay, F+CF 2014-04-27 18:59:59 @PikFan though I missed about 50 quintillion cookies because my stupid mouse :| 2014-04-27 19:03:38 @PikFan ...oh, heh 2014-04-27 19:03:49 @PikFan I've clicked exactly 10,000 golden cookies 2014-04-27 19:10:34 @Espyo yay 2014-04-27 19:22:07 Testyo [Pikipedia RC] Map 06 by Espyo (-1 m Consistency.) http://www.pikminwiki.com/index.php?title=Map_06&curid=7300&diff=79680&oldid=79679 2014-04-27 19:22:29 @Espyo so PikFan, shall we create a forum post? 2014-04-27 19:22:32 @Espyo we can't delay any longer 2014-04-27 19:22:49 @PikFan yes, let's 2014-04-27 19:23:36 @PikFan but remind me of the things we discussed; it's been a few days 2014-04-27 19:23:50 @PikFan do you still have that document? 2014-04-27 19:23:56 @Espyo https://dl.dropboxusercontent.com/u/47921869/fanon.txt 2014-04-27 19:24:01 @Espyo judging by the filename, it should be that 2014-04-27 19:24:48 @PikFan what should I title the post? 2014-04-27 19:26:45 @Espyo Big changes 2014-04-27 19:26:48 @Espyo ominous 2014-04-27 19:27:08 Testyo [Pikipedia RC] Shapetest by Espyo (+22 N Redir.) http://www.pikminwiki.com/index.php?title=Shapetest&curid=9706&diff=79681&oldid=0 2014-04-27 19:32:31 @PikFan " As you are all aware, Pikmin Fanon, in general, a low-quality wiki. We do have our quality pages, but low-quality far outnumber these pages. In the past, we have tried to initiate changes to the wiki, but the lack of users here have impeded those campaigns. Espyo and I have talked on the chatroom about Pikmin Fanon's messiness. We must converge and improve 2014-04-27 19:32:48 @PikFan the wiki in any way, be it simply fixing an article to creating an advanced Help Page. We cannot put this off any longer: it is time to revive Pikmin Fanon, and make it better than ever before. Below are the ideas that Espyo came up with: " 2014-04-27 19:33:28 @PikFan err, I meant "is a low-quality wiki" 2014-04-27 19:33:37 @J converge? 2014-04-27 19:33:40 @Espyo *Pikmin Fanon is, in general 2014-04-27 19:33:40 @J you and Espyo? 2014-04-27 19:34:01 @PikFan no, all the users on Fanon 2014-04-27 19:34:08 @Espyo oh, you corrected 2014-04-27 19:34:14 @PikFan maybe "we all" 2014-04-27 19:34:14 @J ...converge on what? 2014-04-27 19:34:21 @Espyo yeah, not sure "converge" is the word 2014-04-27 19:34:24 @Espyo we're not a function 2014-04-27 19:34:32 @PikFan come together? 2014-04-27 19:34:39 @Espyo that's probably the best 2014-04-27 19:34:55 @Espyo maybe you should point out that this is for the sake of Fanon, Pikipedia, the engine, and Pikmin fandom as a whole 2014-04-27 19:36:53 @PikFan not sure how this will effect the entirety of Pikmin fandom 2014-04-27 19:40:39 @Espyo more fans will come about 2014-04-27 19:40:42 @Espyo that was half of the whole point 2014-04-27 19:40:50 @Espyo making Fanon a better place to be so that newcomers can at least exist 2014-04-27 19:41:08 @Espyo instead of going "man, I should make a game for that engin— never mind, I want to get away as possible from that horrible wiki" 2014-04-27 19:41:41 @PikFan the problem is, there will always be those users who make an account and never use it 2014-04-27 19:41:49 @Espyo maybe because of that 2014-04-27 19:41:54 @Espyo at the surface, they want to be here 2014-04-27 19:41:58 @Espyo so they create an account 2014-04-27 19:42:02 @Espyo but once they see around, they think again 2014-04-27 19:45:05 @PikFan gaaaah, where is that topic 2014-04-27 19:45:36 @PikFan ...err, nevermind, found it 2014-04-27 19:47:21 @PikFan ok, so I've included links to three other pages: [[f:PikminFanon:Formatting Policy]], [[f:PikminFanon:Formatting Policy/vote]], and [[f:Topic:Thoughts on wiki structure]] 2014-04-27 19:47:22 Testyo "PikminFanon:Formatting_Policy" article = http://www.pikminfanon.com/index.php?title=PikminFanon:Formatting_Policy 2014-04-27 19:47:33 @PikFan ... 2014-04-27 19:47:39 @PikFan [[fikminFanon:Formatting Policy/vote]] 2014-04-27 19:47:40 Testyo "fikminFanon:Formatting_Policy/vote" article = http://www.pikminwiki.com/index.php?title=fikminFanon:Formatting_Policy/vote 2014-04-27 19:47:42 @Espyo those are a bit old, though 2014-04-27 19:47:44 @PikFan GAH 2014-04-27 19:47:55 @PikFan right, but they're relevant 2014-04-27 19:48:19 @Espyo hm, yeah 2014-04-27 19:48:41 @Espyo >All bullet lists should be in alphebetical order and paragraph lists should be in alphebetical order or another organized and specific order. 2014-04-27 19:48:44 @Espyo huge asterisk 2014-04-27 19:48:54 @Espyo there are a lot of lists that make no sense to be alphabetized 2014-04-27 19:48:59 @Espyo also alphabetical 2014-04-27 19:50:04 @PikFan but yeah, I put those links down at the bottom 2014-04-27 19:50:23 @PikFan put in two header one's 2014-04-27 19:50:33 @PikFan (ones? ones'? idk) 2014-04-27 19:50:57 @PikFan brb 2014-04-27 19:51:51 @Espyo mhm 2014-04-27 20:26:57 @PikFan back 2014-04-27 20:27:06 @PikFan ready to submit it 2014-04-27 20:27:49 @Espyo mhm 2014-04-27 20:27:58 @Espyo remember 2014-04-27 20:28:07 @Espyo point out that in one week, new guidelines will take place 2014-04-27 20:28:17 @Espyo we're just giving the people a week to come up with suggestions 2014-04-27 20:28:22 @PikFan ... 2014-04-27 20:28:29 @PikFan I thought you told me to save it 2014-04-27 20:28:32 @PikFan and I just did 2014-04-27 20:28:46 @PikFan oh well 2014-04-27 20:29:50 @Espyo "save"? 2014-04-27 20:30:36 @PikFan never mind 2014-04-27 20:30:50 @PikFan what will happen to those who don't adhere to the changes? 2014-04-27 20:31:05 @Espyo well, as for users, they get the treatment they would in any other wiki 2014-04-27 20:31:08 @Espyo warnings on talk pages 2014-04-27 20:31:16 @Espyo and if they keep going at it, a temporary ban 2014-04-27 20:31:25 @Espyo and if they persist, permanent ban 2014-04-27 20:31:37 @Espyo although a bit less strict 2014-04-27 20:31:51 @Espyo as for pages, old pages have to be cleaned up, new pages have to adhere, or else what I said before 2014-04-27 20:32:07 @PikFan "IMPORTANT: We are giving the community one week to discuss the changes. After one week has passed, we will begin implementing these changes. Those who do not follow will receive warnings on their talk pages." 2014-04-27 20:32:13 @PikFan how's that? 2014-04-27 20:32:34 Testyo [Fanon RC] Topic:Big changes by PikFan23 (+6640 N Big changes.) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44165&oldid=0 2014-04-27 20:33:11 @Espyo implementing THE changes 2014-04-27 20:33:20 @Espyo if good suggestions come about, it won't be THESE changes any more 2014-04-27 20:33:45 @PikFan hm, true 2014-04-27 20:34:04 @PikFan ...uh 2014-04-27 20:34:11 @PikFan what's the code for font size 2014-04-27 20:34:29 @PikFan asdqweqweqwe 2014-04-27 20:34:54 @Espyo scratch the "probably" 2014-04-27 20:34:59 @Espyo oh, one thing 2014-04-27 20:35:08 @Espyo I made the page not include a TOC because it'd break my page examples 2014-04-27 20:35:16 @Espyo so add links to the comments and other links sections 2014-04-27 20:35:18 @PikFan mm 2014-04-27 20:35:23 @Espyo at the top 2014-04-27 20:39:13 @PikFan hmm, I can try making a fake TOC 2014-04-27 20:39:37 @Espyo yeah 2014-04-27 20:47:37 Testyo [Pikipedia RC] File:Shapetst HD.jpg uploaded by Espyo (High Definition map of [[shapetst]]. This was made by taking screenshots using ...) http://www.pikminwiki.com/index.php?title=File:Shapetst_HD.jpg 2014-04-27 20:51:00 @PikFan problems 2014-04-27 20:51:13 @PikFan I'm trying to indent it, but it doesn't want to indent 2014-04-27 20:51:16 @Espyo : 2014-04-27 20:51:23 @PikFan tried that too 2014-04-27 20:51:39 @PikFan maybe tab will work 2014-04-27 20:51:45 @Espyo tab won't work 2014-04-27 20:51:49 @Espyo you might have to use a div 2014-04-27 20:52:18 @Espyo
qweqeqweqwe
2014-04-27 20:52:19 @Espyo try it 2014-04-27 20:52:38 Testyo [Pikipedia RC] Shapetst by Espyo (+478 Expanded.) http://www.pikminwiki.com/index.php?title=Shapetst&curid=8007&diff=79683&oldid=72641 2014-04-27 20:52:46 @PikFan yay 2014-04-27 20:58:17 @PikFan uh oh 2014-04-27 20:58:20 @PikFan things broke 2014-04-27 20:58:27 @PikFan i.e. the page 2014-04-27 20:58:53 @PikFan the tabs, the sidebar, and personal buttons are smaller, and my edit box is invisible 2014-04-27 21:02:15 @PikFan alright maybe the "TOC" is doing something 2014-04-27 21:03:16 @Espyo ... 2014-04-27 21:03:23 @Espyo just create something simple 2014-04-27 21:03:35 @Espyo *'''[[#Comments|Comments section]]''' 2014-04-27 21:03:35 Testyo "#Comments|Comments_section" article = http://www.pikminwiki.com/index.php?title=#Comments|Comments_section 2014-04-27 21:03:41 @Espyo same for the other links 2014-04-27 21:18:17 @PikFan http://www.pikminfanon.com/Topic:Big_changes 2014-04-27 21:18:29 @PikFan ok, can someone look at it and see why it breaks things 2014-04-27 21:22:46 Testyo [Fanon RC] Topic:Big changes by PikFan23 (+1830 couple of things (let's see if this fake TOC works)) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44166&oldid=44165 2014-04-27 21:26:41 @J you missed 2 s 2014-04-27 21:26:55 @PikFan ...oh 2014-04-27 21:27:47 Testyo [Fanon RC] Topic:Big changes by PikFan23 (+12 m fixed) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44167&oldid=44166 2014-04-27 21:27:55 @PikFan oh wow 2014-04-27 21:43:06 @Espyo uh... 2014-04-27 21:43:20 @Espyo you kind of ruined the whole purpose of there not being a TOC 2014-04-27 21:43:38 @Espyo the TOC wasn't meant to exist because it thought that the sections on my example pages were meant to exist 2014-04-27 21:43:39 @Espyo they weren't 2014-04-27 21:46:04 @Espyo hey, edit the top bar 2014-04-27 21:46:09 @Espyo with the notifications 2014-04-27 22:03:02 Testyo [Fanon RC] Treto by Kidsy128 (+110 m) http://www.pikminfanon.com/index.php?title=Treto&curid=8742&diff=44168&oldid=44136 2014-04-27 22:03:39 @PikFan oh, sorry 2014-04-27 22:04:30 @PikFan I thought you wanted me to link to each of the sections 2014-04-27 22:04:56 @Espyo each of the off-example sections 2014-04-27 22:13:04 Testyo [Fanon RC] Topic:Big changes by PikFan23 (-1112 m getting rid of example links, as per Espyo) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44169&oldid=44167 2014-04-27 22:14:35 @Espyo yeah, that's good 2014-04-27 22:14:40 @Espyo now the top bar notification area side thing 2014-04-27 22:21:26 @PikFan "On May 4th, we will begin implementing new changes in an effort to improve the wiki. Until then, you have the opportunity to voice your opinion, so don't miss out!" 2014-04-27 22:21:52 @PikFan "new changes" links to the topic 2014-04-27 22:23:34 @PikFan brb 2014-04-27 22:27:54 @Espyo sweet 2014-04-27 22:37:45 @PikFan back 2014-04-27 22:37:58 @PikFan submit? 2014-04-27 22:42:46 @Espyo mhm 2014-04-27 22:43:14 Testyo [Pikipedia RC] Peckish Aristocrab by Spark (+2) http://www.pikminwiki.com/index.php?title=Peckish_Aristocrab&curid=8618&diff=79684&oldid=79666 2014-04-27 22:43:14 Testyo [Fanon RC] Hocotate by Kidsy128 (-80) http://www.pikminfanon.com/index.php?title=Hocotate&curid=1435&diff=44170&oldid=43823 2014-04-27 22:43:15 Testyo [Fanon RC] MediaWiki:Sitenotice by PikFan23 (+198 so everybody knows) http://www.pikminfanon.com/index.php?title=MediaWiki:Sitenotice&curid=29&diff=44171&oldid=43466 2014-04-27 22:44:21 @Espyo you have some edits to patrol on Pikipedia 2014-04-27 22:45:01 Spark hey espy in C++ is there a way to name a variable the contents of another variable? 2014-04-27 22:46:29 Spark for example: char * x ="name" and i want to name another variable "name", how could i do that 2014-04-27 22:49:36 @Espyo you can't 2014-04-27 22:49:48 @Espyo there are a few ways to do what you want, though 2014-04-27 22:49:49 @Espyo kinda 2014-04-27 22:49:59 @Espyo if you can give me a better example... 2014-04-27 22:50:11 @Espyo also call my full nick next time so that I get a beep notification 2014-04-27 22:50:18 Spark oh okay 2014-04-27 22:50:27 Spark and what do you mean? that example pretty much explains what i want to do 2014-04-27 22:50:53 Spark im getting a string from irc for my bot 2014-04-27 22:51:08 @Espyo still too vague 2014-04-27 22:51:10 Spark and i want it to store a variable under someone's name 2014-04-27 22:51:30 Spark like uhh 2014-04-27 22:52:38 Spark http://mibpaste.com/glv0RP 2014-04-27 22:53:12 Spark except it would use espyo.money, or spark.money instead of nick.money 2014-04-27 22:54:04 @Espyo hmmm 2014-04-27 22:54:19 @Espyo so if I say "!points", it outputs espyo.points? 2014-04-27 22:54:27 @Espyo oh wait 2014-04-27 22:54:28 Spark yeah 2014-04-27 22:54:31 @Espyo didn't read your last one 2014-04-27 22:54:37 @Espyo hm, you probably want to save the nicknames in a map 2014-04-27 22:54:42 @Espyo do #include at the top 2014-04-27 22:54:59 Spark is there no way to do it from scratch? 2014-04-27 22:55:02 @Espyo a map is like a vector, but you can access stuff by name 2014-04-27 22:55:14 @Espyo nope 2014-04-27 22:55:30 Spark damn 2014-04-27 22:58:25 Testyo [Pikipedia RC] File:Tuto1 HD.jpg uploaded by Espyo (High Definition map of [[tuto1]]. This was made by taking screenshots using Dol...) http://www.pikminwiki.com/index.php?title=File:Tuto1_HD.jpg 2014-04-27 23:03:26 Testyo [Pikipedia RC] Tuto1 by Espyo (+548 Expanded.) http://www.pikminwiki.com/index.php?title=Tuto1&curid=8012&diff=79686&oldid=72659 2014-04-27 23:03:45 Spark oh hm i thought of something 2014-04-27 23:04:02 Spark in theory wouldnt it work to use a pointer 2014-04-27 23:04:38 @Espyo err... 2014-04-27 23:04:39 @Espyo no? 2014-04-27 23:05:10 Spark maybe im overthinking it then >.< 2014-04-27 23:05:18 @Espyo yeah 2014-04-27 23:06:19 Spark but there must be some internal code in maps that does what i want to do 2014-04-27 23:09:37 Spark i mean inside of map.h it must be basically doing what i want to do 2014-04-27 23:10:25 @Espyo J: your thing doesn't work :| 2014-04-27 23:10:38 @Espyo Spark: I doubt it... 2014-04-27 23:12:07 Spark oh wait i just figured out how to do it 2014-04-27 23:12:12 Spark now my ocd will let me use maps 2014-04-27 23:14:14 @Espyo err, I guess it's not your thing's fault 2014-04-27 23:18:29 Testyo [Pikipedia RC] Tuto2 by Espyo (+76 m I can't check this one, there's no code...) http://www.pikminwiki.com/index.php?title=Tuto2&curid=8013&diff=79687&oldid=72657 2014-04-27 23:39:15 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-04-27 23:51:03 Spark using maps, how do i test for if a specific element exists 2014-04-27 23:51:33 Spark like, i thought it would be if (players["Spark"].empty()) 2014-04-27 23:52:01 Spark but that doesnt seem to work for specific elements, just the container 2014-04-27 23:53:32 @Espyo if (players.find("Spark") != players.end()) 2014-04-27 23:53:47 Spark oh okay thnaks 2014-04-27 23:53:47 @Espyo the seconds you type players["Spark"], regardless of what you do with it 2014-04-27 23:53:53 @Espyo the "Spark" entry on the map gets created 2014-04-27 23:54:01 @Espyo *the second 2014-04-28 00:03:44 Testyo [Pikipedia RC] E3play 3 by Espyo (+116 m) http://www.pikminwiki.com/index.php?title=E3play_3&curid=7307&diff=79688&oldid=79655 2014-04-28 00:03:44 Testyo [Pikipedia RC] E3play 3 by Espyo (+4 m Bah.) http://www.pikminwiki.com/index.php?title=E3play_3&curid=7307&diff=79689&oldid=79688 2014-04-28 00:03:44 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-28 00:18:55 Testyo [Fanon RC] Topic:Big changes by Peach Bulborb (+157 /* Comments */ ) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44172&oldid=44169 2014-04-28 00:19:03 @Espyo oh, PB 2014-04-28 00:19:43 @PikFan what about him? 2014-04-28 00:25:19 @Espyo nothing, just saying he posted 2014-04-28 00:25:29 @Espyo will you reply, or shall I? 2014-04-28 00:25:33 @Espyo /rhyme 2014-04-28 00:29:07 @PikFan you 2014-04-28 00:29:29 @PikFan you're the most knowledgeable of your changes 2014-04-28 00:30:44 @Espyo hm 2014-04-28 00:39:03 Testyo [Fanon RC] Topic:Big changes by Espyo (+997) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44173&oldid=44172 2014-04-28 00:42:30 @PikFan yeah, my enemies are pretty detailed, so I make pages for them 2014-04-28 00:44:03 Testyo [Pikipedia RC] File:Tuto2 HD.jpg uploaded by Espyo (High Definition map of [[tuto2]]. This was made by taking screenshots using Dol...) http://www.pikminwiki.com/index.php?title=File:Tuto2_HD.jpg 2014-04-28 00:44:48 @Espyo right 2014-04-28 00:50:18 @PikFan I... think that [[f:Dwarf Purple Bulborb]] was one of the first enemies I made 2014-04-28 00:50:19 Testyo "Dwarf_Purple_Bulborb" article = http://www.pikminfanon.com/index.php?title=Dwarf_Purple_Bulborb 2014-04-28 00:52:47 @Espyo neat 2014-04-28 00:52:59 @Espyo his behavior is 100% doable with the scope of the engine's enemy scripting 2014-04-28 00:53:17 @PikFan yay 2014-04-28 01:04:29 Testyo [Pikipedia RC] Snagret Hole by Captainmarlio360 (-4 m) http://www.pikminwiki.com/index.php?title=Snagret_Hole&curid=1680&diff=79692&oldid=79671 2014-04-28 01:05:49 @Espyo oh, now I get it 2014-04-28 01:05:51 @Espyo pretty smart 2014-04-28 01:06:08 @Espyo if you go to The Distant Spring, and you walk about in an area with a lot of water 2014-04-28 01:06:21 @Espyo you can see the reflection of leaves in the distance, on the water 2014-04-28 01:06:29 @Espyo how they managed that is surprisingly tricky 2014-04-28 01:06:45 @Espyo the leaf shadows actually exist under the map, in this whiteish bowl 2014-04-28 01:06:53 @Espyo and the ground under the water is actually see-through 2014-04-28 01:06:56 @PikFan huh 2014-04-28 01:07:01 @PikFan interesting 2014-04-28 01:07:04 @Espyo so when you look at the water, you're not seeing a reflection of the leaves up above 2014-04-28 01:07:15 @Espyo you're actually seeing through the floor, some painted leaf shadows on an underground bowl 2014-04-28 01:07:53 @PikFan so the ground is glass, then? 2014-04-28 01:07:59 @PikFan lol 2014-04-28 01:08:59 @Espyo yup 2014-04-28 01:10:44 @Espyo ...huh 2014-04-28 01:10:53 @Espyo the Candypop Buds actually have a small stem below them 2014-04-28 01:11:02 @Espyo this one is floating in the air (don't ask), and I can see it 2014-04-28 01:13:59 @PikFan dinner, bbl 2014-04-28 01:19:24 @Espyo uh 2014-04-28 01:19:32 @Espyo "one of the stages that use it" or "one of the stages that uses it"? 2014-04-28 01:19:35 @Espyo my mind is blank now 2014-04-28 01:22:49 Spark uses 2014-04-28 01:24:16 @Espyo right, that's what I had written before now 2014-04-28 01:24:22 @Espyo I've been writing this article for a few hours 2014-04-28 01:24:25 @Espyo thanks 2014-04-28 01:29:36 Testyo [Pikipedia RC] Arachnode by Captainmarlio360 (+206) http://www.pikminwiki.com/index.php?title=Arachnode&curid=9259&diff=79693&oldid=79563 2014-04-28 01:29:36 Testyo [Pikipedia RC] Arachnode by Captainmarlio360 (+1 m) http://www.pikminwiki.com/index.php?title=Arachnode&curid=9259&diff=79694&oldid=79693 2014-04-28 01:34:38 Testyo [Pikipedia RC] Grub-dog by Espyo (-192 m Fixed some minor things.) http://www.pikminwiki.com/index.php?title=Grub-dog&curid=915&diff=79695&oldid=79059 2014-04-28 01:34:38 Testyo [Pikipedia RC] Arachnode by Captainmarlio360 (+13 m Adding the enemy list) http://www.pikminwiki.com/index.php?title=Arachnode&curid=9259&diff=79696&oldid=79694 2014-04-28 01:39:40 Testyo [Pikipedia RC] Grub-dog by Espyo (0 m Didn't notice this.) http://www.pikminwiki.com/index.php?title=Grub-dog&curid=915&diff=79697&oldid=79695 2014-04-28 01:48:23 @Espyo done 2014-04-28 01:48:33 <-- Testyo (Testyo@z36-006-53-867.cpe.netcabo.pt) has quit (Quit: So long everyone!) 2014-04-28 01:49:41 <-- Espyo (Mibbit@z36-006-53-867.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-28 01:50:23 --> Gamefreak75 (NewYokuba@2605:e000:2e44:rrgt:ink:whlj:uozv:liij) has joined #pikipedia 2014-04-28 01:58:17 --> Gamefreak75_ (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has joined #pikipedia 2014-04-28 02:01:29 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:rrgt:ink:whlj:uozv:liij) has quit (Ping timeout: 250 seconds) 2014-04-28 02:01:35 -- Gamefreak75_ is now known as Gamefreak75 2014-04-28 05:24:27 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-28 05:29:14 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-28 05:29:14 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-28 07:43:13 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-28 08:11:30 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Read error: No route to host) 2014-04-28 11:25:19 --> Testyo (Testyo@k81-500-28-272.cpe.netcabo.pt) has joined #pikipedia 2014-04-28 11:28:24 --> Espyo (Mibbit@k81-500-28-272.cpe.netcabo.pt) has joined #pikipedia 2014-04-28 11:28:24 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-28 13:36:17 Testyo [Pikipedia RC] User talk:Captainmarlio36... by Espyo (+858 N Created page with "{{SUBST:Welcome}}") http://www.pikminwiki.com/index.php?title=User_talk:Captainmarlio360&curid=9710&diff=79699&oldid=0 2014-04-28 13:46:22 Testyo [Pikipedia RC] File:Candypop Bud root.jpg uploaded by Espyo (A misplaced [[Golden Candypop Bud]] in [[tuto2#teki5|teki5]], showing the root. ...) http://www.pikminwiki.com/index.php?title=File:Candypop_Bud_root.jpg 2014-04-28 13:46:23 Testyo [Pikipedia RC] Candypop Bud by Espyo (+113 /* Trivia */ Adding image.) http://www.pikminwiki.com/index.php?title=Candypop_Bud&curid=127&diff=79701&oldid=79281 2014-04-28 13:46:23 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-28 13:51:28 Testyo [Pikipedia RC] Route by Espyo (+77 m No known code to enter this one...) http://www.pikminwiki.com/index.php?title=Route&curid=7319&diff=79704&oldid=72651 2014-04-28 13:51:28 Testyo [Pikipedia RC] Play 4 by Espyo (+77 m No known code to enter this one...) http://www.pikminwiki.com/index.php?title=Play_4&curid=8010&diff=79705&oldid=72647 2014-04-28 13:51:28 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-04-28 15:27:03 Testyo [Pikipedia RC] File:Newtest HD.jpg uploaded by Espyo (High Definition map of [[newtest]]. This was made by taking screenshots using D...) http://www.pikminwiki.com/index.php?title=File:Newtest_HD.jpg 2014-04-28 15:32:04 Testyo [Pikipedia RC] Newtest by Espyo (+494 Expanded.) http://www.pikminwiki.com/index.php?title=Newtest&curid=7671&diff=79708&oldid=72658 2014-04-28 15:45:13 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-28 15:45:13 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-28 15:45:47 @PikFan ok I don't know why Firefox likes to open up the last window I closed when I start Firefox 2014-04-28 15:46:23 @PikFan bah, technology is confusing 2014-04-28 15:47:02 @PikFan in other news 2014-04-28 15:47:08 @PikFan I have 160 prisms 2014-04-28 15:47:24 @PikFan and my cps is 2.598 quadrillion 2014-04-28 15:47:48 @PikFan now it's 2.601 quad (bought 2 ACs) 2014-04-28 15:48:19 @PikFan oh, and I tried to teach myself algebra last night 2014-04-28 15:48:42 @PikFan didn't go so great, because I was tired 2014-04-28 15:49:58 @PikFan anyway, school, home in 7 hours-ish 2014-04-28 15:59:11 @Espyo there's a setting for that 2014-04-28 15:59:13 @Espyo neat 2014-04-28 16:52:26 Testyo [Pikipedia RC] Scaly Custard by Pikmin Derp (+420 N Created page with "===Scaly Custard=== The Scaly Custard is a fruit found twice ...) http://www.pikminwiki.com/index.php?title=Scaly_Custard&curid=9713&diff=79709&oldid=0 2014-04-28 17:02:28 Testyo [Pikipedia RC] Scaly Custard by Pikmin Derp (+11) http://www.pikminwiki.com/index.php?title=Scaly_Custard&curid=9713&diff=79710&oldid=79709 2014-04-28 18:28:41 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-28 19:34:21 Testyo [Pikipedia RC] Unused content by Espyo (+331 m This is pretty much the main reason as to why this page doesn't have a load of i...) http://www.pikminwiki.com/index.php?title=Unused_content&curid=7305&diff=79711&oldid=79603 2014-04-28 19:54:39 Testyo [Pikipedia RC] Glitches in Pikmin 2 by Espyo (+553 /* Enemy-related */ Hermit Crawmads dying without being hit.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_2&curid=8423&diff=79712&oldid=79575 2014-04-28 20:02:07 @J hey, does GitHub work for you in Firefox? 2014-04-28 20:02:15 @J all the things stopped working for me recently 2014-04-28 20:02:20 @J like the user page activity indicator 2014-04-28 20:02:32 @J and the coloured bar thing you click to show language usage 2014-04-28 20:02:49 @J and changing the clone URL 2014-04-28 20:04:02 @J and if you go to a user's repositories, the filtering links at the top-right 2014-04-28 20:04:48 @Espyo should work, always did 2014-04-28 20:05:19 @Espyo user page activity indicator... now if I knew what that is for certain... 2014-04-28 20:05:29 @Espyo oh, doesn't help that I'm logged out 2014-04-28 20:06:24 @J that's the grid of green squares on a user page 2014-04-28 20:06:37 @J I see nothing in Firefox, works in Chromium and Midori 2014-04-28 20:06:38 @Espyo I see no language bar 2014-04-28 20:06:48 @Espyo oh, the one with the contributions? 2014-04-28 20:06:53 @Espyo charts commits per day and all 2014-04-28 20:06:58 @Espyo I see that just fine 2014-04-28 20:07:11 @J oh, huh 2014-04-28 20:07:19 @J it's just my Firefox profile, another works fine 2014-04-28 20:07:24 @Espyo weird 2014-04-28 20:07:26 @J I tried enabling cookies, so it's not that 2014-04-28 20:07:29 @J must be an addon? 2014-04-28 20:07:37 @Espyo adblock, stylish? 2014-04-28 20:07:46 @Espyo don't you have that addon that disables JS until you enable it? 2014-04-28 20:07:51 @Espyo or is that Flash? 2014-04-28 20:08:26 @J I have Flashblock, no JS blocking 2014-04-28 20:09:23 @J http://i.imgur.com/gxm1vtW.png 2014-04-28 20:09:45 @Espyo uh 2014-04-28 20:09:49 @Espyo there's already a setting to disable the menu bar 2014-04-28 20:09:58 @J no, this shows it again if you press alt 2014-04-28 20:09:59 @Espyo well, it's the one with the orange "Firefox" on the corner 2014-04-28 20:10:02 @Espyo might be windows only 2014-04-28 20:10:04 @Espyo that happens already 2014-04-28 20:10:08 @Espyo I just pressed Alt 2014-04-28 20:10:10 @J hmm, really? 2014-04-28 20:10:10 @Espyo it just appeared 2014-04-28 20:10:13 @Espyo mhm 2014-04-28 20:10:18 @J what does it look like while hidden? 2014-04-28 20:10:32 @Espyo ...hidden 2014-04-28 20:10:33 @Espyo :| 2014-04-28 20:10:44 @Espyo Linkification could be the problem 2014-04-28 20:11:10 @J where's the option? 2014-04-28 20:11:38 @J wow, you're right 2014-04-28 20:11:46 @J why would Linkification do that? 2014-04-28 20:12:06 @J uh...what 2014-04-28 20:12:12 @J okay, I re-enabled it and it still works 2014-04-28 20:12:25 @J well, no need to work out why... 2014-04-28 20:12:26 @Espyo which "it"? 2014-04-28 20:12:53 @J Linkification 2014-04-28 20:13:25 @Espyo all right, now define the other "it" 2014-04-28 20:13:29 @Espyo I actually wanted you to define both 2014-04-28 20:14:14 @Espyo uh, I should use Vacuum Places 2014-04-28 20:14:25 @Espyo ever had any problems with it? 2014-04-28 20:14:39 @Espyo I mean, my entire history and everything suddenly exploding really doesn't seem like a great idea 2014-04-28 20:16:46 @J GitHub still works 2014-04-28 20:16:56 @J [20:14:25] @Espyo ever had any problems with it? 2014-04-28 20:16:58 @J none at all 2014-04-28 20:17:19 @Espyo the reviews are scaring me, though 2014-04-28 20:17:29 @J I just have it set to clean every 30 restarts (which is generally every 30 days) 2014-04-28 20:17:29 @Espyo they range from "can't feel a difference" to "my everything is gone!" 2014-04-28 20:17:53 @J because the larger proportion of people for whom it worked perfectly felt no need to review it? 2014-04-28 20:18:13 @J this is also Vacuum Places Improved 2014-04-28 20:18:32 @J I assume that means there's also a (different) Vacuum Places 2014-04-28 20:18:33 @Espyo yes, I was reading the one for Improved 2014-04-28 20:18:46 @Espyo and apparently Firefox already does vacuum up your places.sqlite 2014-04-28 20:18:56 @Espyo one of the comments said so, and linked to https://bugzilla.mozilla.org/show_bug.cgi?id=512854 2014-04-28 20:19:07 @Espyo plus I searched "vacu" on about:config 2014-04-28 20:19:10 @Espyo and got pretty reassuring stuff 2014-04-28 20:19:56 @J I don't see much in the reviews about deleting stuff 2014-04-28 20:20:17 @J hmm, maybe I don't need it any more, then 2014-04-28 20:20:33 @J I installed it years ago 2014-04-28 20:20:42 @Espyo 2011 2014-04-28 20:20:51 @Espyo is when it started becoming an in-browser thing 2014-04-28 20:20:51 @Espyo meh 2014-04-28 20:21:03 @Espyo maybe that's where the Improved comes in 2014-04-28 20:21:11 @Espyo like, it adds custom intervals, reminders, etc. 2014-04-28 20:21:16 @Espyo compared to the native cleaner 2014-04-28 20:22:42 @J looked at about:config, there's a places.last_vacuum 2014-04-28 20:22:52 @J but the timestamp corresponds to 2011... 2014-04-28 20:23:55 @J wait 2014-04-28 20:23:57 @J but there's 2014-04-28 20:24:03 @J storage.vacuum.last.places.sqlite;1397152074 2014-04-28 20:24:07 @J do you have both of these? 2014-04-28 20:24:16 @J (that's more like 10th April) 2014-04-28 20:26:23 @Espyo yeah, I have both 2014-04-28 20:26:39 @Espyo places.last_vacuum = 1295645923 2014-04-28 20:27:58 @J that's almost the same as mine 2014-04-28 20:28:03 @J and the other is more recent? 2014-04-28 20:28:06 @J if so, I guess it is working 2014-04-28 20:28:30 @J I have one for Brief's database too 2014-04-28 20:32:00 @J BTW, why would you say you use Firefox? 2014-04-28 20:32:15 @J just wondering, since more people (especially developers) seem to use Chrome/Chromium now 2014-04-28 20:34:31 @Espyo uh, yeah, one for Brief as well 2014-04-28 20:34:46 @Espyo I don't do much web development, but when I do, I go back and forth between FF and Chrome 2014-04-28 20:34:53 @Espyo but overall, I just like the coziness Firefox provides 2014-04-28 20:34:58 @Espyo and the addons are more of my taste 2014-04-28 20:35:05 @Espyo like FireGestures and Adblock 2014-04-28 20:35:18 @Espyo Chrome's Adblock is all sponsored and affiliated with the NSA or something 2014-04-28 20:35:24 @J ...really? 2014-04-28 20:35:39 @Espyo and Chrome's FireGestures is less flexible, and stupidly, doesn't work on on-disk HTML pages 2014-04-28 20:35:45 @Espyo mhm 2014-04-28 20:35:49 @J I would be surprised that if that is the case, there isn't another community-developed one 2014-04-28 20:35:49 @Espyo also: Personas 2014-04-28 20:35:54 @Espyo I only use one, but I really love it 2014-04-28 20:36:03 @Espyo yeah, that's the weirdest: there isn't 2014-04-28 20:36:06 @Espyo not as far as I know, at least 2014-04-28 20:36:16 @Espyo I think the sponsored thing flies under the radar of most people 2014-04-28 20:36:22 @Espyo mind that that's just what I heard 2014-04-28 20:36:29 @Espyo afaik, it's actually like Firefox' 2014-04-28 20:36:35 @J it's not like it would even need much maintenance: the Firefox Adblock maintains an open list of blocking rules, so it could just use that 2014-04-28 20:36:40 @Espyo Firefox' does have some sponsored lists, that whitelist some websites 2014-04-28 20:36:49 @Espyo but that's 100% optional 2014-04-28 20:36:56 @Espyo both the whitelisting and forcing you to use specific lists 2014-04-28 20:37:01 @J I wouldn't call those sponsored 2014-04-28 20:37:08 @Espyo can't figure out a better name 2014-04-28 20:37:21 @J sponsored means the sites on it are paying them to be on there 2014-04-28 20:37:49 @J but they're clearly fairly small sites that have just been found by the community to have unintrusive adverts 2014-04-28 20:37:57 @J last I looked, anyway 2014-04-28 20:38:03 @Espyo sure, if you want to use the /correct/ definition of "sponsored" 2014-04-28 20:38:18 @Espyo anyway, I'm not too sure on the details 2014-04-28 20:38:35 @Espyo there was a big scandal about it some months ago, but I forgot most of it 2014-04-28 20:38:38 @J hmm, okay 2014-04-28 20:38:47 @J not really sure what you mean about 'coziness' 2014-04-28 20:39:07 @Espyo user-friendliness, and the fact that Firefox is all about browsing the web your way 2014-04-28 20:39:13 @Espyo from the expansive about:config to the addons 2014-04-28 20:39:16 @J I tried mouse guestures (not just browser-based) once, many years ago, and decided I didn't like it 2014-04-28 20:39:24 @Espyo I can't live without it 2014-04-28 20:39:30 @J but I use Firefox for the interface customisation 2014-04-28 20:39:35 @Espyo I close like 100+ tabs a day 2014-04-28 20:39:39 @J AFAICT, that's the one real thing Chrome lacks 2014-04-28 20:39:47 @Espyo and having to carefully aim at the little cross on the tab is horrible 2014-04-28 20:39:51 @Espyo I just drag the RMB down 2014-04-28 20:39:52 @Espyo done 2014-04-28 20:39:53 @J ctrl-w? 2014-04-28 20:40:03 @Espyo but my other hand is on my lap 2014-04-28 20:40:06 @Espyo under my armpit 2014-04-28 20:40:16 @Espyo or what have you 2014-04-28 20:40:16 @J when I say I don't like mouse guestures, I mean I don't like the mouse 2014-04-28 20:40:29 @J ...wait, how is your armpit near your lap? 2014-04-28 20:40:33 @Espyo I... didn't imply 2014-04-28 20:40:37 @Espyo no, those are different things 2014-04-28 20:40:42 @Espyo either armpit or lap 2014-04-28 20:40:48 @J suuure 2014-04-28 20:40:53 @Espyo hey, I could always be hunching on my bed 2014-04-28 20:40:56 @Espyo err, somehow 2014-04-28 20:41:23 @J moving on 2014-04-28 20:41:42 @Espyo oh, also, you should probably use Digest, not Brief 2014-04-28 20:43:53 @J it doesn't seem to exist 2014-04-28 20:44:41 @Espyo :| 2014-04-28 20:44:56 @Espyo https://github.com/Tanriol/digest 2014-04-28 20:45:03 @Espyo that's the link I get on about:addons 2014-04-28 20:45:13 @Espyo this one's also been abandoned 2014-04-28 20:45:22 @Espyo it's still got some tiny flaws, but it improves on Brief 2014-04-28 20:45:44 @Espyo off the top of my head: if it fetches new items while you have a Brief tab open, it no longer glitches 2014-04-28 20:45:55 @Espyo like, on Brief, if you had a tab open, and it got a new item, you couldn't mark as read any more 2014-04-28 20:46:02 @Espyo that now almost never happens with Digest 2014-04-28 20:46:09 @Espyo I think I might've seen it once or twice, but it's rare 2014-04-28 20:46:13 @Espyo it's also faster overall 2014-04-28 20:46:51 @J 'also'? 2014-04-28 20:47:07 @J never seen that happen with Brief 2014-04-28 20:47:19 @Espyo maybe you never had a tab open while it fetched 2014-04-28 20:47:23 @Espyo or maybe it was just a me thing 2014-04-28 20:47:29 @J why is it not on the Firefox addons site? 2014-04-28 20:47:34 @Espyo no idea... 2014-04-28 20:47:36 @Espyo might've been taken out 2014-04-28 20:47:43 @J yeah, I mean, if it even did happen, I never noticed 2014-04-28 20:48:03 @Espyo one annoying thing that happens on both Brief and Digest is that the fetch time kinda shifts over tie 2014-04-28 20:48:05 @Espyo *time 2014-04-28 20:48:17 @J anyway, you suggested Brief has been abandoned 2014-04-28 20:48:18 @Espyo I have it set to fetch from some of the more active feeds 3 times a day 2014-04-28 20:48:22 @Espyo err, once every 8 hours or something 2014-04-28 20:48:25 @J hmm, interesting point 2014-04-28 20:48:27 @Espyo and have the rest be fetched once a day 2014-04-28 20:48:47 @Espyo when I was starting, I set it to fetch at... uh, midday, was it? 2014-04-28 20:48:50 @J not really something I care for, but I can see why you'd want to do time-based fetching 2014-04-28 20:48:58 @Espyo after some weeks, it was fetching the daily feeds at like 7 PM 2014-04-28 20:49:05 @J I'll add it to the feature list of the feed reader I'll never make 2014-04-28 20:49:12 @Espyo mhm 2014-04-28 20:49:19 @Espyo right now, I don't really care when it fetches 2014-04-28 20:49:27 @Espyo so long as I have stuff to watch every few hours 2014-04-28 20:49:33 @Espyo VS takes ages to compile 2014-04-28 20:49:36 @Espyo so while I wait, I read my feeds 2014-04-28 20:49:43 @Espyo THAT's micromanagement 2014-04-28 20:49:50 @J why does it matter when it happens, then? 2014-04-28 20:49:57 @Espyo it used to 2014-04-28 20:49:58 @J I mean, why does it bother you that the time shifted? 2014-04-28 20:50:03 @Espyo year-ago me used to care 2014-04-28 20:50:06 @Espyo current me doesn't 2014-04-28 20:50:12 @Espyo don't ask me why, I don't know any more 2014-04-28 20:50:22 @Espyo maybe I had set it to a time where... 2014-04-28 20:50:22 @Espyo hmm 2014-04-28 20:50:35 @Espyo I think it was back when my classes weren't just all over the place 2014-04-28 20:50:41 @Espyo and I came home at like 7 2014-04-28 20:50:52 @Espyo and took care of my feeds, youtube videos, etc. 2014-04-28 20:50:54 @Espyo daily stuff 2014-04-28 20:50:55 @J but yeah, for sites that have a schedule, you could set it to fetch on Wednesdays or something 2014-04-28 20:51:04 @Espyo so I guess I used to like having it every day on the dot 2014-04-28 20:51:10 @Espyo yeah, that too 2014-04-28 20:51:13 @Espyo in fact, come to think of it 2014-04-28 20:51:25 @Espyo I used to have some fetch like once a week or so 2014-04-28 20:51:39 @Espyo (never bothered to check the exact days some sites release stuff) 2014-04-28 20:51:49 @Espyo ((uh, that sentence = schedules)) 2014-04-28 20:51:56 @Espyo but I eventually just made it search once a day 2014-04-28 20:52:11 @Espyo uh, I kinda zoned out for a bit 2014-04-28 20:52:18 @Espyo so never mind if one of the things I wrote is in Engrish 2014-04-28 20:52:28 @J I have some that I don't really expect to see anything on, but want to check just in case, so I just set it to a monthly check or something 2014-04-28 20:52:55 @Espyo right 2014-04-28 20:53:01 @Espyo I just lazied out and made everything daily 2014-04-28 20:53:07 @Espyo well, except for the stuff that updates really often 2014-04-28 22:00:58 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-28 22:29:13 @J okay, so I have another event problem 2014-04-28 22:29:19 @J may be even more confusing 2014-04-28 22:29:29 @J so, button modifiers 2014-04-28 22:29:38 @Espyo dammit windows https://www.youtube.com/watch?v=5aTCOIryS7Y 2014-04-28 22:29:50 @Espyo hmmm 2014-04-28 22:30:11 @Espyo can't really see anything wrong with modifiers 2014-04-28 22:30:49 @J that's great 2014-04-28 22:31:00 @J so, say you have just one device, let's say a keyboard 2014-04-28 22:31:35 @J say you have 3 shortcuts: A, ctrl-A and alt-A 2014-04-28 22:32:04 @J clearly, pressing ctrl-A and alt-A shouldn't trigger A 2014-04-28 22:32:10 @J but shift-A should trigger A 2014-04-28 22:32:18 @J and shift-ctrl-A should trigger ctrl-A 2014-04-28 22:32:30 @J because shift isn't used anywhere as a modifier 2014-04-28 22:33:23 @Espyo mhm 2014-04-28 22:33:32 @Espyo not normally how it works, but I see what you mean 2014-04-28 22:33:41 @J introduce another device, say a gamepad 2014-04-28 22:34:10 @Espyo yes? 2014-04-28 22:34:20 @J add the shortcuts A-button, and A-button while holding the left trigger 2014-04-28 22:34:51 @Espyo oh, "A" is ambiguous? 2014-04-28 22:35:12 @J it is while I'm talking about it, but that's not my problem 2014-04-28 22:35:31 @J now, it's clear that LT-A while holding RT should trigger LT-A but not A 2014-04-28 22:35:39 @J because RT is not a modifier 2014-04-28 22:35:56 @Espyo oh, good 2014-04-28 22:36:06 @Espyo yep 2014-04-28 22:36:14 @J but ctrl, even though it's a modifier, shouldn't interfere 2014-04-28 22:36:32 @J so, we need to only look at known modifiers for the device you're using 2014-04-28 22:36:49 @J (except you might want keyboard/mouse to mix up, like ctrl-LMB, but that's a different problem) 2014-04-28 22:36:56 @Espyo why not make anything a modifier? 2014-04-28 22:37:05 @J any button 2014-04-28 22:37:15 @J (LT can be treated as a button) 2014-04-28 22:37:34 @J now, the problem is with combinations of inputs 2014-04-28 22:37:41 @J ctrl = lctrl + rctrl 2014-04-28 22:37:48 @J for example 2014-04-28 22:38:19 @J do you treat this as a separate modifier, or do you treat it as two, for the purposes of interference with other modifiers? 2014-04-28 22:39:41 @Espyo oh 2014-04-28 22:39:42 @Espyo hmm 2014-04-28 22:40:01 @Espyo Allegro recognizes them as different keys, but treats them as the same modifier 2014-04-28 22:40:06 @Espyo you should have it be an option 2014-04-28 22:40:16 @Espyo hmm, I can think of something 2014-04-28 22:40:18 @J what do you mean? 2014-04-28 22:40:41 @Espyo when a key is pressed, you can get the key identifier and the modifiers 2014-04-28 22:41:01 @Espyo rather, the key id or the key's resulting unicode character + modifiers 2014-04-28 22:41:08 @Espyo you pick whichever you want 2014-04-28 22:41:15 @J that's a different concept, really 2014-04-28 22:41:20 @Espyo well, yeah 2014-04-28 22:41:30 @Espyo but I mean, you should make it so that you can set modifier aliases 2014-04-28 22:41:34 @J what it's doing is only considering the 'special' modifiers: ctrl, shift, alt, super 2014-04-28 22:41:39 @Espyo RCtrl and LCtrl being an alias of Ctrl 2014-04-28 22:41:50 @Espyo I once bought a GameCube controller that had two Z buttons 2014-04-28 22:41:52 @Espyo both mapped to the same 2014-04-28 22:41:56 @J that's not the issue 2014-04-28 22:42:01 @Espyo what then? 2014-04-28 22:42:19 @J it's easy to define ctrl as meaning either lctrl or rctrl is pressed 2014-04-28 22:42:34 @Espyo I was hoping it'd be 2014-04-28 22:42:41 @J but how does this work WRT the interference between mods I was describing 2014-04-28 22:42:47 @J let me try to come up with an example 2014-04-28 22:43:09 @J (forgot a ? there) 2014-04-28 22:43:59 @J okay, so, say you register shortcuts ctrl-A and lctrl-A 2014-04-28 22:44:11 @J where ctrl = lctrl | rctrl 2014-04-28 22:44:22 @J if you press lctrl-A, both get triggered 2014-04-28 22:44:32 @J if you press rctrl-A, only ctrl-A gets triggered 2014-04-28 22:44:44 @J what if you press lctrl-rctrl-A? 2014-04-28 22:44:55 @J clearly ctrl-A gets triggered, but what about lctrl-A? 2014-04-28 22:45:29 @J this probably sounds crazy, but I'm sure there are situations where it actually matters 2014-04-28 22:46:26 @J what I mean is, you're pressing a modifier key (rctrl) that is used as a modifier in another shortcut (ctrl-A) 2014-04-28 22:46:50 @J before, we decided that this would exclude lctrl-A from being activated 2014-04-28 22:46:54 @J but it seems wrong here 2014-04-28 22:47:48 @J I would say, no, lctrl-A doesn't get activated 2014-04-28 22:48:09 @J but there are even more complicated situations, where your modifier isn't a simple OR-combination of inputs 2014-04-28 22:48:24 @J it might be an inversion: this key only works when ctrl _isn't_ pressed 2014-04-28 22:48:54 @Espyo hmmm 2014-04-28 22:49:12 @J so I guess my question is: can you think of an exclusion scheme that makes sense for _any_ possible way of combining inputs into a modifier 2014-04-28 22:49:24 @Espyo yeah, it should trigger both, shouldn't it 2014-04-28 22:49:25 @J if not, I guess I should just heavily restrict the sorts of combinations you can do 2014-04-28 22:49:28 @Espyo but it contradicts 2014-04-28 22:49:59 @J maybe only allow transforms (which is just reinterpreting an input as a different type of input, eg. an axis as a button) 2014-04-28 22:50:07 @Espyo hm 2014-04-28 22:50:16 @Espyo just sounds like overcomplication 2014-04-28 22:50:20 @J uh, plus OR-combinations, I guess; that's pretty important 2014-04-28 22:50:27 @Espyo yeah 2014-04-28 22:50:29 @J it does, but I don't want to get it wrong 2014-04-28 22:50:53 @J I've tried a simple approach at this a few times, and there are always weird situations where it doesn't do what I expect 2014-04-28 22:52:23 @J in the current version of my event system, it's just restricted: the only modifiers implemented are inputs which map directly to hardware inputs (button, axis, whatever), plus the special combinations: ctrl, alt, shift, super 2014-04-28 22:52:49 @Espyo right 2014-04-28 22:52:54 @Espyo but it should be more complex 2014-04-28 22:52:59 @Espyo ...without being overcomplicated 2014-04-28 22:53:01 @J and you can tell how I thought about that by the fact that the special combinations are called '_SneakyKbdMultiKey' 2014-04-28 22:53:09 @Espyo heh 2014-04-28 22:53:20 @J by which you mean flexible but intelligent, I guess 2014-04-28 22:53:56 @J does what you want but lets you do a lot 2014-04-28 22:54:10 @Espyo more like flexible and senseful 2014-04-28 22:54:17 @J *sensible? 2014-04-28 22:56:29 @Espyo heh, I tried that 2014-04-28 22:56:35 @Espyo but I meant more like the opposite of senseless 2014-04-28 22:56:52 @J that is sensible, isn't it? 2014-04-28 22:57:50 @Espyo not really? 2014-04-28 22:58:05 @Espyo or, I guess sensible is senseful, but senseful is not sensible 2014-04-28 22:58:08 @Espyo why isn't senseful a word dammit 2014-04-28 22:58:40 @J ... 2014-04-28 22:58:47 @J anyway, if you have any ideas, let me know 2014-04-28 22:59:52 @J I'm thinking that allowing AND, OR and transforming combinations of hardware inputs should be easy enough, and you probably wouldn't want to do more than that 2014-04-28 23:00:50 @Espyo yeah, but that's just it, it's starting to overcomplicate 2014-04-28 23:01:06 @Espyo is it at least easy to use stuff without the masks and such? 2014-04-28 23:01:17 @J masks? 2014-04-28 23:02:40 @J wait, I mean, I'm already doing AND, OR, etc., I'm just talking now about allowing those to be used as modifiers 2014-04-28 23:06:04 Testyo [Fanon RC] Topic:Big changes by Peach Bulborb (+72 /* Comments */ ) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44174&oldid=44173 2014-04-28 23:09:13 @Espyo oh 2014-04-28 23:13:17 @J not sure what you mean by asking whether it's easy 2014-04-28 23:14:02 @J haven't redesigned the interfaces yet, but I guess just adding something basic would be, eg. KbdKey(pygame.K_a) 2014-04-28 23:14:50 @J with modifiers: KbdKey(pygame.K_a, mods=(ButtonsAny(KbdKey(pygame.K_LCTRL), KbdKey(pygame.K_RCTRL)))) 2014-04-28 23:15:07 @J not that you would really do it like that - I'll have a configuration file like before 2014-04-28 23:15:21 @Espyo hm, like 2014-04-28 23:15:30 @Espyo you have to go out of your way to customize modifier interactions, right? 2014-04-28 23:15:34 @J with aliases and shortcuts for commonly used things like ctrl 2014-04-28 23:15:38 @Espyo you have to specify them on purpose 2014-04-28 23:16:22 @J I wasn't really planning on making the interference behaviour customisable 2014-04-28 23:16:27 @J it should just do what you want 2014-04-28 23:16:43 @J which is why I need to come up with a good way to do it 2014-04-28 23:17:31 --> Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-28 23:17:44 <-- Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Client Quit) 2014-04-28 23:18:21 @J in most circumstances, it should be fairly obvious, and you don't really have to care about anything other than saying 'I want this event to be triggered by u, ctrl-z or shift-right-click' 2014-04-28 23:20:16 @J it's just that it would also be nice for you to not have to care about anything else in the complicated cases: 'I want this event to be triggered by double-tapping the A-stick right, holding it there, and pressing the right trigger' 2014-04-28 23:20:47 @Espyo yeah 2014-04-28 23:21:10 Testyo [Pikipedia RC] Shower Room by Tydyesk8rguy (+2) http://www.pikminwiki.com/index.php?title=Shower_Room&curid=1662&diff=79713&oldid=77673 2014-04-28 23:22:47 @Espyo ... 2014-04-28 23:25:21 @J ...well, it was an attempt 2014-04-28 23:25:32 @J I like the cleanup edits 2014-04-28 23:26:12 Testyo [Pikipedia RC] Shower Room by Tydyesk8rguy (+2) http://www.pikminwiki.com/index.php?title=Shower_Room&curid=1662&diff=79714&oldid=79713 2014-04-28 23:26:12 Testyo [Pikipedia RC] Shower Room by Tydyesk8rguy (-4) http://www.pikminwiki.com/index.php?title=Shower_Room&curid=1662&diff=79715&oldid=79714 2014-04-28 23:26:35 @J okay, and now I just realised I might actually want to provide somethings for 'common' remappings of button events: treat down as a down/up toggle, treat double-press as down, invert the button 2014-04-28 23:27:01 @Espyo invert? 2014-04-28 23:27:09 @J the 2nd one is like laptop touchpads, when you grab and drop something 2014-04-28 23:27:18 @J push the button to release it 2014-04-28 23:27:23 @Espyo ah 2014-04-28 23:27:28 @Espyo it's just the way you called it 2014-04-28 23:27:53 @J would triple-click be useful? 2014-04-28 23:28:11 --> Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-28 23:29:22 @Espyo triple-click is one of those things that's never useful 2014-04-28 23:29:25 @Espyo ...until you need it 2014-04-28 23:29:33 @Espyo oh, I know a triple click thing 2014-04-28 23:29:37 @Espyo selecting the entire sentence on a textbox 2014-04-28 23:29:51 --> FreakyWizard111 (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-28 23:30:30 @J yes 2014-04-28 23:30:45 @J or line in non-editable text 2014-04-28 23:30:52 @Espyo yep 2014-04-28 23:31:04 @J probably won't need arbitrary-click then 2014-04-28 23:31:07 @J if that makes sense 2014-04-28 23:31:11 @J quadruple, etc. 2014-04-28 23:31:39 <-- FreakyWizard111 (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Client Quit) 2014-04-28 23:31:53 @J hmm, how does triple-click even work, with respect to the time limit? Does it give you the same delay between the 2nd and 3rd clicks, or a double-click delay between the 1st and 3rd clicks? 2014-04-28 23:31:54 Testyo 1 st = 6.3503 kg / 14 lb / 224 oz 2014-04-28 23:32:17 @Espyo pretty sure it's 1st -> regular delay -> 2nd -> regular delay -> 3rd 2014-04-28 23:32:18 Testyo 1 st = 6.3503 kg / 14 lb / 224 oz 2014-04-28 23:32:19 @Espyo at least on windows 2014-04-28 23:32:33 @J I guess that would make sense 2014-04-28 23:32:34 @Espyo I mean, I remember times where I'm lazily clicking textboxes for X or Y reason 2014-04-28 23:32:42 @Espyo and it slowly toggles between selecting the word and the line 2014-04-28 23:33:33 @J what do you think about defaults for things like double-click time and button repeat intervals? 2014-04-28 23:33:56 @J I mean, does it make sense to provide a default, or to make it required if you want those things? 2014-04-28 23:34:11 @Espyo you can't get those from the OS' settings, can you? 2014-04-28 23:34:24 @Espyo there should definitely be a default 2014-04-28 23:34:26 @J and axis thresholds (the on/off points to treat it like a button) 2014-04-28 23:34:37 @J hmm 2014-04-28 23:35:30 @J may be able to get OS settings, but I generally feel that unless you're providing OS-like things (for the double-click/repeat, text editing), games shouldn't use the same defaults 2014-04-28 23:36:08 @Espyo yeah 2014-04-28 23:36:21 @J even navigating through menu items by holding an analogue stick in one direction generally just doesn't feel the same, and you want a different repeat rate 2014-04-28 23:36:35 @J it depends on your game style too 2014-04-28 23:36:37 @Espyo you're doing double-tap-hold, right? 2014-04-28 23:36:45 @J for what? 2014-04-28 23:37:51 @Espyo some games use it for running 2014-04-28 23:37:53 @Espyo hold right to walk 2014-04-28 23:37:56 @J but, anyway, I always find that I just use 0.6 0.4 for axis thresholds (60% across to turn the 'button' on, under 40% to turn it back off), so maybe those should just be defaults 2014-04-28 23:37:56 @Espyo double-tap-hold to run 2014-04-28 23:38:03 @J oh, good point 2014-04-28 23:38:11 <-- Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-28 23:38:24 @J that comes under what I said earlier, I guess: 'treat double-press as down' 2014-04-28 23:38:48 @Espyo oh, that 2014-04-28 23:38:55 @Espyo I use 1.0 on the engine 2014-04-28 23:39:07 @Espyo and I'm preeeety sure it's because my controller is weird 2014-04-28 23:39:18 @J 1.0 sounds wrong 2014-04-28 23:39:45 @J I would generally say go for halfway (.5), then make the 'on' a bit higher than the 'off' to avoid jitter around that point 2014-04-28 23:40:09 @Espyo yep 2014-04-28 23:40:19 @Espyo except it works fine with 1.0 for me 2014-04-28 23:40:23 @J deadzones? I use 0.15-0.2 as a general guideline lower cutoff, but every controller is different 2014-04-28 23:40:28 @Espyo hm, speaking of which, could you test one of these days? 2014-04-28 23:40:32 @Espyo I use 0.0 as deadzone 2014-04-28 23:40:51 @J I'm considering trying to implement automatic deadzone detection 2014-04-28 23:40:53 @J that should be fun 2014-04-28 23:41:02 @J even better if it magically works while you're playing 2014-04-28 23:41:30 @Espyo I can see that going all sorts of crazily wrong though 2014-04-28 23:41:38 @J yep 2014-04-28 23:41:45 @J but wrong in fun ways 2014-04-28 23:41:59 @J fun for your opponents, anyway 2014-04-28 23:42:05 @Espyo heh 2014-04-28 23:43:05 @J but if you look for sudden drops to 'near 0', then look for small deviations across to the other side of 0, and take a 90th percentile of that as a magnitude over time, or something... 2014-04-28 23:43:52 @J 0.0 sounds kind of wrong - if I do that with my controller, you end up with, for example, the character looking in the opposite direction when you release it 2014-04-28 23:44:15 @J and obviously constant cursor, etc. movement when it's released 2014-04-28 23:44:38 @Espyo yeah, I figured 2014-04-28 23:44:42 @Espyo my controller is really weird then 2014-04-28 23:44:47 @Espyo I think its builtin deadzone is like 50% 2014-04-28 23:44:52 @J heh 2014-04-28 23:47:30 @Espyo come to think of it, my other controller had a pretty poor deadzone as well 2014-04-28 23:49:31 @J I also need a million more things, like an interface to grab input (for rebinding controls), automatic control scheme assignment for multiplayer, input recording/playback... 2014-04-28 23:49:35 @J I'm so lazy 2014-04-28 23:49:41 @J speaking of which, I should sleep 2014-04-28 23:49:48 @Espyo hehe 2014-04-28 23:49:57 @J goodnight 2014-04-28 23:51:20 @Espyo night 2014-04-29 00:01:25 Testyo [Pikipedia RC] Shower Room by Espyo (+4 m Italicized.) http://www.pikminwiki.com/index.php?title=Shower_Room&curid=1662&diff=79716&oldid=79715 2014-04-29 00:06:56 --> Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-29 00:11:54 <-- Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-29 00:21:14 --> Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has joined #pikipedia 2014-04-29 00:26:19 <-- Tydyesk8rguy (Mibbit@ltxmfzhttvuj.lblesd.k71.or.us) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-29 01:20:17 <-- Espyo (Mibbit@k81-500-28-272.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-29 01:21:34 <-- Testyo (Testyo@k81-500-28-272.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-04-29 01:40:09 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-29 01:44:54 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-04-29 01:44:54 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-04-29 02:48:39 --> Chillv (Mibbit@a99-09-355-843.try.wideopenwest.com) has joined #pikipedia 2014-04-29 02:49:28 <-- Chillv (Mibbit@a99-09-355-843.try.wideopenwest.com) has quit (Client Quit) 2014-04-29 06:08:38 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-04-29 07:03:14 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-04-29 09:19:01 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-29 11:16:59 --> Testyo (Testyo@k81-500-28-272.cpe.netcabo.pt) has joined #pikipedia 2014-04-29 11:23:11 --> Espyo (Mibbit@k81-500-28-272.cpe.netcabo.pt) has joined #pikipedia 2014-04-29 11:23:11 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-29 12:12:09 Testyo [Fanon RC] User account Fanonrun created http://www.pikminfanon.com/index.php?title=User:Fanonrun 2014-04-29 12:32:14 Testyo [Fanon RC] User:Fanonrun by Fanonrun (+227 N Created page with "{{sprout}} Fanonrun here! I'm going to create a great pikmin...) http://www.pikminfanon.com/index.php?title=User:Fanonrun&curid=8753&diff=44179&oldid=0 2014-04-29 15:48:58 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:olou:npmj:iji:hinj:oili) has joined #pikipedia 2014-04-29 15:50:16 <-- Gamefreak75 (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has quit (Ping timeout: 245 seconds) 2014-04-29 15:50:29 -- Gamefreak75_ is now known as Gamefreak75 2014-04-29 16:45:30 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:vzwl:pxhi:xoxv:nyzo:riyh) has joined #pikipedia 2014-04-29 16:48:29 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:olou:npmj:iji:hinj:oili) has quit (Ping timeout: 250 seconds) 2014-04-29 16:48:33 -- Gamefreak75_ is now known as Gamefreak75 2014-04-29 17:33:20 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit 2014-04-29 18:00:15 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:oqyp:hynv:kosk:mxns:sgtl) has joined #pikipedia 2014-04-29 18:02:35 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:vzwl:pxhi:xoxv:nyzo:riyh) has quit (Ping timeout: 250 seconds) 2014-04-29 18:02:48 -- Gamefreak75_ is now known as Gamefreak75 2014-04-29 18:09:49 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:jvou:itri:msig:sqim:huwo) has joined #pikipedia 2014-04-29 18:12:36 --> Gamefreak75__ (NewYokuba@2605:e000:2e44:mhlj:yo:ppsj:wqls:nvmu) has joined #pikipedia 2014-04-29 18:13:25 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:oqyp:hynv:kosk:mxns:sgtl) has quit (Ping timeout: 250 seconds) 2014-04-29 18:13:27 -- Gamefreak75__ is now known as Gamefreak75 2014-04-29 18:16:27 <-- Gamefreak75_ (NewYokuba@2605:e000:2e44:jvou:itri:msig:sqim:huwo) has quit (Ping timeout: 250 seconds) 2014-04-29 18:31:44 Testyo [Fanon RC] User talk:Fanonrun by Peach Bulborb (+233 N Created page with "{{Welcome}} Welcome to the wiki! If you need anything, let m...) http://www.pikminfanon.com/index.php?title=User_talk:Fanonrun&curid=8754&diff=44180&oldid=0 2014-04-29 18:41:58 Testyo [Fanon RC] Topic:Big changes by Peach Bulborb (+747 /* Comments */ ) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44181&oldid=44175 2014-04-29 18:43:19 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:mhlj:yo:ppsj:wqls:nvmu) has quit (Ping timeout: 250 seconds) 2014-04-29 19:07:29 Testyo [Fanon RC] Topic:Big changes by Espyo (+579) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44182&oldid=44181 2014-04-29 19:07:36 @Espyo :| 2014-04-29 19:07:39 @Espyo that was instantaneous 2014-04-29 19:07:42 @Espyo the second I pressed submit 2014-04-29 19:35:33 @J Testo knows 2014-04-29 19:35:37 @J all the things 2014-04-29 19:38:20 @Espyo he's too good 2014-04-29 19:49:42 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-29 19:50:10 Meisterbot Ehm... 2014-04-29 19:50:10 Meisterbot hi 2014-04-29 19:51:44 Meisterbot guess i got a reason to join fanon back 2014-04-29 19:54:58 Meisterbot [[Topic: Big changes]] 2014-04-29 19:54:59 Testyo "Topic:_Big_changes" article = http://www.pikminwiki.com/index.php?title=Topic:_Big_changes 2014-04-29 19:55:08 Meisterbot [[f:Topic: Big changes]] 2014-04-29 19:55:09 Testyo "Topic:_Big_changes" article = http://www.pikminfanon.com/index.php?title=Topic:_Big_changes 2014-04-29 19:55:25 Meisterbot [[f:Topic:Big changes]] 2014-04-29 19:55:25 Testyo "Topic:Big_changes" article = http://www.pikminfanon.com/index.php?title=Topic:Big_changes 2014-04-29 19:55:33 Meisterbot there 2014-04-29 19:57:25 @Espyo hi 2014-04-29 19:57:27 @Espyo yep 2014-04-29 19:57:28 Meisterbot hewo 2014-04-29 19:57:37 Meisterbot so, the new fanon, eh? 2014-04-29 19:57:40 @Espyo if the engine is meant to gain popularity, Fanon has to improve 2014-04-29 19:57:45 Meisterbot true 2014-04-29 19:57:48 @Espyo and Pikipedia 2014-04-29 19:57:51 @Espyo and the Pikmin fandom 2014-04-29 19:57:56 @Espyo Fanon is an important part of the entire business 2014-04-29 19:58:02 Meisterbot somewhat 2014-04-29 19:58:07 @Espyo somewhat, yeah 2014-04-29 19:58:13 Meisterbot i havent been on in so long 2014-04-29 19:58:53 Testyo [Fanon RC] User:ThePikminMeister by ThePikminMeister (+370 /* Status Update */ ) http://www.pikminfanon.com/index.php?title=User:ThePikminMeister&curid=8101&diff=44183&oldid=44051 2014-04-29 19:58:53 Testyo [Fanon RC] User:ThePikminMeister by ThePikminMeister (-22 /* My Games/Stories */ ) http://www.pikminfanon.com/index.php?title=User:ThePikminMeister&curid=8101&diff=44184&oldid=44183 2014-04-29 19:59:13 Meisterbot and now i have to improve [[f:Pikmin: The Return of the Puffmin]] 2014-04-29 19:59:13 Testyo "Pikmin:_The_Return_of_the_Puffmin" article = http://www.pikminfanon.com/index.php?title=Pikmin:_The_Return_of_the_Puffmin 2014-04-29 19:59:21 @Espyo yeah 2014-04-29 19:59:26 @Espyo but anyway, what do you think of the changes? 2014-04-29 19:59:27 @Espyo any comments? 2014-04-29 19:59:31 Meisterbot hm 2014-04-29 19:59:40 Meisterbot i kinda just glanced at it 2014-04-29 19:59:45 Meisterbot ill read the whole thing 2014-04-29 19:59:57 @Espyo meh, reading diagonally is good enough 2014-04-29 20:00:25 Meisterbot 1st bullet seems good 2014-04-29 20:00:26 Testyo 1 st = 6.3503 kg / 14 lb / 224 oz 2014-04-29 20:00:39 Meisterbot 2nd i dont understand 2014-04-29 20:00:42 Meisterbot wait no i do 2014-04-29 20:00:52 Meisterbot that makes a lot of sense 2014-04-29 20:00:59 Meisterbot its fanon, not really canon 2014-04-29 20:01:02 @Espyo yeah 2014-04-29 20:01:08 @Espyo it's good to have info on like Red Bulborbs 2014-04-29 20:01:19 @Espyo because some fan games use Red Bulborbs exactly as they are in canon 2014-04-29 20:01:23 @Espyo but no need to get into detail 2014-04-29 20:01:35 @Espyo that's just duplication of information, waste of space, waste of time, waste of effort, and stupid 2014-04-29 20:01:44 Meisterbot 3rd bullet I... 2014-04-29 20:01:50 Meisterbot *skype message from friend* 2014-04-29 20:02:00 Meisterbot 3rd bullet ive known forever 2014-04-29 20:02:23 @Espyo sadly, a few people don't 2014-04-29 20:02:27 Meisterbot i know 2014-04-29 20:02:36 Meisterbot i never really understood 2014-04-29 20:02:41 Meisterbot somewhat 2014-04-29 20:02:49 Meisterbot guild of bulborbs confused me 2014-04-29 20:03:11 Meisterbot i thought since i wasnt red bulborb, i couldnt improve 2014-04-29 20:03:25 Meisterbot lol 2014-04-29 20:03:54 Meisterbot 3.1: understand 2014-04-29 20:03:56 Testyo [Fanon RC] Pikmin: The Return of the... by ThePikminMeister (+39 Lol I failed) http://www.pikminfanon.com/index.php?title=Pikmin:_The_Return_of_the_Puffmin&curid=8104&diff=44185&oldid=43588 2014-04-29 20:04:03 Meisterbot 3.2: scribbled napkins 2014-04-29 20:04:10 Meisterbot 3.3: Portal-Kombat 2014-04-29 20:05:21 Meisterbot 4.2 makes sense 2014-04-29 20:06:05 Meisterbot 4.1... meh 2014-04-29 20:06:32 Meisterbot ok i read the whole thing 2014-04-29 20:07:16 @Espyo 4.1 is up for debate 2014-04-29 20:07:20 Meisterbot ok 2014-04-29 20:07:28 @Espyo that's just an overly scary and elaborate way of saying: "Don't create articles with 10 words." 2014-04-29 20:07:40 Meisterbot oh 2014-04-29 20:07:45 Meisterbot well then i understand it all 2014-04-29 20:09:11 @Espyo all right, great 2014-04-29 20:17:56 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has quit 2014-04-29 21:17:30 @J finally found the time to try Vimperator 2014-04-29 21:17:48 @J it has ctrl-x/ctrl-a to decrement/increment the last number in the URL 2014-04-29 21:17:52 @J that's wonderful 2014-04-29 21:18:08 @J also gu/gU to go up a URL component/to the domain 2014-04-29 21:18:49 @Espyo neat 2014-04-29 21:18:57 @Espyo though what IS Vimperator? 2014-04-29 21:19:55 @J Vim-like navigation for Fierfox 2014-04-29 21:19:58 @J *Firefox 2014-04-29 21:22:43 @J it's going to take a while to retrain some things, like ctrl-f -> / 2014-04-29 21:23:30 @Espyo ah, neat 2014-04-29 21:23:41 @Espyo I use Firegestures to increase/decrease the number, and go up, though 2014-04-29 21:23:43 @Espyo also dinner, brb 2014-04-29 21:35:44 @Espyo back 2014-04-29 21:53:17 Testyo ok.... *shrug* 2014-04-29 21:54:50 @Espyo WHY ARE YOU UNSERIOUS HERE 2014-04-29 21:54:53 @Espyo Testyo: serious #Pikipedia 2014-04-29 21:54:54 Testyo Very well. I am now in "serious" mode on #Pikipedia. 2014-04-29 21:59:31 Miles_ ... 2014-04-29 21:59:40 @Espyo I swear he makes no sense 2014-04-29 22:00:22 @J why would you say that about Miles? 2014-04-29 22:02:49 @Espyo nah, Miles is only ellipsical 2014-04-29 22:02:55 @Espyo Testyo is the one that's senseless 2014-04-29 22:10:58 @J okay, I guess the thing I like most is that everything is searchable 2014-04-29 22:11:11 @J menu items, links on the page, closed tabs 2014-04-29 22:19:22 @Espyo nice 2014-04-29 22:24:38 @J you can set a number of temporary 'marks', which store scroll position in a certain tab, and revisit them by label during the session 2014-04-29 22:24:45 @J should be useful for long pages 2014-04-29 22:25:09 @Espyo yeah 2014-04-29 22:25:10 @Espyo that's great 2014-04-29 22:26:28 @J and obviously there's pretty much programming in there 2014-04-29 22:26:43 @J but that will have to wait until later... 2014-04-29 22:26:58 @J running a command in each tab looks simple and useful-ish 2014-04-29 22:27:12 @J like, easily bookmark all tabs (though there's probably a shortcut for that anyway) 2014-04-29 22:27:32 @Espyo hm, yeah 2014-04-29 22:29:23 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-29 22:50:27 Testyo [Fanon RC] User account Tritrium created http://www.pikminfanon.com/index.php?title=User:Tritrium 2014-04-29 23:00:30 Testyo [Fanon RC] Topic:Big changes by PurplePikminPower (+146 /* Comments */ ) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44186&oldid=44182 2014-04-29 23:00:30 Testyo [Fanon RC] Topic:Big changes by PurplePikminPower (+1 /* Comments */ ) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44187&oldid=44186 2014-04-29 23:05:32 Testyo [Fanon RC] Angry Scissoni by PurplePikminPower (+67) http://www.pikminfanon.com/index.php?title=Angry_Scissoni&curid=8748&diff=44188&oldid=44151 2014-04-29 23:05:32 Testyo [Fanon RC] Angry Scissoni by PurplePikminPower (+6) http://www.pikminfanon.com/index.php?title=Angry_Scissoni&curid=8748&diff=44189&oldid=44188 2014-04-29 23:05:32 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-29 23:20:37 Testyo [Fanon RC] File:TerryifyingScissoni.jpeg uploaded by PurplePikminPower http://www.pikminfanon.com/index.php?title=File:TerryifyingScissoni.jpeg 2014-04-29 23:37:07 @Espyo all right, every time I think I understand transformations 2014-04-29 23:37:10 @Espyo they stop working like they should 2014-04-29 23:38:55 @Espyo I have a transformation to transform from screen coordinates to world coordinates 2014-04-29 23:38:58 @Espyo on the animation editor 2014-04-29 23:39:21 @Espyo I want to draw a horizontal line at world X 0, and the center of the screen 2014-04-29 23:39:28 @Espyo so I transform from the center of the screen to world coordinates 2014-04-29 23:39:46 @Espyo aaaand the resulting coordinate is like half of the distance between the center and Y = 0 2014-04-29 23:39:47 @Espyo what 2014-04-29 23:50:45 Testyo [Fanon RC] Terrifying Scissoni by PurplePikminPower (+493 N Created page with "{{infobox enemy |image=Terrifying...) http://www.pikminfanon.com/index.php?title=Terrifying_Scissoni&curid=8756&diff=44193&oldid=0 2014-04-29 23:50:45 Testyo [Fanon RC] Terrifying Scissoni by PurplePikminPower (+1) http://www.pikminfanon.com/index.php?title=Terrifying_Scissoni&curid=8756&diff=44194&oldid=44193 2014-04-30 00:17:45 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-30 00:18:56 Meisterbot lol 2014-04-30 00:35:59 Testyo [Fanon RC] Pikmin: The Return. by ThePikminMeister (-47 m Realized I still needed to do that.) http://www.pikminfanon.com/index.php?title=Pikmin:_The_Return.&curid=8224&diff=44195&oldid=42371 2014-04-30 00:35:59 Testyo [Fanon RC] Pikmin: The Return. by ThePikminMeister (-34 m Also that...) http://www.pikminfanon.com/index.php?title=Pikmin:_The_Return.&curid=8224&diff=44196&oldid=44195 2014-04-30 00:35:59 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-30 00:37:57 Meisterbot and there i am editing 2014-04-30 00:41:40 Meisterbot "they see me editing, they hating" 2014-04-30 00:41:45 Meisterbot lolwut 2014-04-30 00:41:55 Meisterbot feeling so weird right now 2014-04-30 00:43:45 @Espyo .-. 2014-04-30 00:43:58 Meisterbot ._. 2014-04-30 00:44:12 Meisterbot _|-|_ 2014-04-30 00:46:02 Testyo [Fanon RC] User talk:ThePikminMeiste... by PurplePikminPower (+68 /* IM BAAAACK */ new section) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44198&oldid=44118 2014-04-30 00:46:07 Meisterbot uh 2014-04-30 00:46:09 Meisterbot then that 2014-04-30 00:51:04 Testyo [Fanon RC] User talk:PurplePikminPow... by ThePikminMeister (+124 /* Re:IM BAAAACK */ new section) http://www.pikminfanon.com/index.php?title=User_talk:PurplePikminPower&curid=8218&diff=44199&oldid=44153 2014-04-30 00:51:04 Testyo [Fanon RC] User talk:ThePikminMeiste... by PurplePikminPower (+110 /* IM BAAAACK */ ) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44200&oldid=44198 2014-04-30 00:51:04 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-30 00:56:06 Testyo [Fanon RC] User talk:ThePikminMeiste... by PurplePikminPower (+110 /* IM BAAAACK */ ) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44202&oldid=44200 2014-04-30 00:56:06 Testyo [Fanon RC] User talk:PurplePikminPow... by ThePikminMeister (+7 /* Re:IM BAAAACK */ ) http://www.pikminfanon.com/index.php?title=User_talk:PurplePikminPower&curid=8218&diff=44203&oldid=44201 2014-04-30 00:56:06 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-30 00:57:27 @Espyo so many edits... 2014-04-30 00:59:22 Meisterbot i know lol 2014-04-30 01:00:20 Meisterbot you cant stop PPP when he'd back 2014-04-30 01:00:24 Meisterbot he's 2014-04-30 01:01:07 Testyo [Fanon RC] Magma Amgam by PurplePikminPower (+480 N Created page with "{{infobox enemy |image=MagmaAmgam...) http://www.pikminfanon.com/index.php?title=Magma_Amgam&curid=8758&diff=44205&oldid=0 2014-04-30 01:01:29 Meisterbot and... another one 2014-04-30 01:22:04 @Espyo heh, yeah, he PMS people of you PM him, at random 2014-04-30 01:22:06 @Espyo he shouldn't 2014-04-30 01:26:18 Testyo [Fanon RC] User talk:Tritrium by Peach Bulborb (+109 N Created page with "{{Welcome}} If you need anything, please [[User talk:Peach B...) http://www.pikminfanon.com/index.php?title=User_talk:Tritrium&curid=8759&diff=44206&oldid=0 2014-04-30 01:29:50 Meisterbot lol 2014-04-30 01:41:26 Testyo [Fanon RC] Magma Spring by PurplePikminPower (+422 N Created page with "The second area in [[Pikmin: The Mystery Potion]], and is cov...) http://www.pikminfanon.com/index.php?title=Magma_Spring&curid=8760&diff=44207&oldid=0 2014-04-30 01:42:50 @Espyo he's on a roll... 2014-04-30 01:42:53 Meisterbot ikr 2014-04-30 01:46:31 Testyo [Fanon RC] Scarlet Pikmin by PurplePikminPower (+187 N Created page with "A scarlet colored Pikmin, it has orange eyes, scarlet skin, a...) http://www.pikminfanon.com/index.php?title=Scarlet_Pikmin&curid=8761&diff=44208&oldid=0 2014-04-30 02:01:39 <-- Espyo (Mibbit@k81-500-28-272.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-30 02:01:43 <-- Testyo (Testyo@k81-500-28-272.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-04-30 02:05:29 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has quit 2014-04-30 06:11:31 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Ping timeout: 245 seconds) 2014-04-30 06:40:15 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-30 11:13:24 --> Testyo (Testyo@h67-986-62-5.cpe.netcabo.pt) has joined #pikipedia 2014-04-30 11:16:40 --> Espyo (Mibbit@h67-986-62-5.cpe.netcabo.pt) has joined #pikipedia 2014-04-30 11:16:40 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-04-30 11:33:26 Testyo [Fanon RC] User:Fanonrun by Fanonrun (+18) http://www.pikminfanon.com/index.php?title=User:Fanonrun&curid=8753&diff=44209&oldid=44179 2014-04-30 11:38:27 Testyo [Fanon RC] User:Fanonrun by Fanonrun (0) http://www.pikminfanon.com/index.php?title=User:Fanonrun&curid=8753&diff=44210&oldid=44209 2014-04-30 11:53:30 Testyo [Fanon RC] List:Pikmin by Fanonrun (+48) http://www.pikminfanon.com/index.php?title=List:Pikmin&curid=1349&diff=44211&oldid=40550 2014-04-30 11:53:30 Testyo [Fanon RC] List:Pikmin by Fanonrun (-20) http://www.pikminfanon.com/index.php?title=List:Pikmin&curid=1349&diff=44212&oldid=44211 2014-04-30 14:16:32 --> Spark02 (Mibbit@268-76-402-985-kmjvaga.hfc.comcastbusiness.net) has joined #pikipedia 2014-04-30 14:53:30 <-- Spark02 (Mibbit@268-76-402-985-kmjvaga.hfc.comcastbusiness.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-30 15:17:17 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-04-30 15:25:39 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-04-30 20:35:00 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-04-30 21:06:55 -- UltraMario is now known as UltraWolfODonnel 2014-04-30 21:46:15 -- UltraWolfODonnel is now known as UltraBass 2014-04-30 22:13:29 --> Gamefreak75 (NewYokuba@2605:e000:2e44:stkh:ynkt:vixu:wzgk:gztt) has joined #pikipedia 2014-04-30 22:24:21 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-04-30 22:33:42 Testyo [Fanon RC] Pikmin: The Mystery Potio... by PurplePikminPower (+80) http://www.pikminfanon.com/index.php?title=Pikmin:_The_Mystery_Potion&curid=8581&diff=44213&oldid=44152 2014-04-30 22:33:42 Testyo [Fanon RC] Rocky Road by PurplePikminPower (+75) http://www.pikminfanon.com/index.php?title=Rocky_Road&curid=8746&diff=44214&oldid=44191 2014-04-30 22:38:44 Testyo [Fanon RC] Pikmin: The Mystery Potio... by PurplePikminPower (+24 /* Granite Outpost */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_The_Mystery_Potion&curid=8581&diff=44215&oldid=44213 2014-04-30 22:43:45 Testyo [Fanon RC] Scorching Sea by PurplePikminPower (+244 N Created page with "A fiery cave, bring a well-sized army of Red Pikmin and Scarl...) http://www.pikminfanon.com/index.php?title=Scorching_Sea&curid=8762&diff=44216&oldid=0 2014-04-30 22:43:45 Testyo [Fanon RC] Scorching Sea by PurplePikminPower (0) http://www.pikminfanon.com/index.php?title=Scorching_Sea&curid=8762&diff=44217&oldid=44216 2014-04-30 22:43:45 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-04-30 23:26:04 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has quit 2014-05-01 00:16:11 -- UltraBass is now known as UltraMario 2014-05-01 00:25:11 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:stkh:ynkt:vixu:wzgk:gztt) has quit (Ping timeout: 250 seconds) 2014-05-01 01:10:00 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-05-01 01:23:04 <-- Espyo (Mibbit@h67-986-62-5.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-01 01:23:11 <-- Testyo (Testyo@h67-986-62-5.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-05-01 02:50:18 <-- Miles_ (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit (Read error: Connection reset by peer) 2014-05-01 02:52:09 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-05-01 04:53:50 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-01 05:31:38 --> Gamefreak75 (NewYokuba@2605:e000:2e44:gurg:horn:krko:zwn:jwgn) has joined #pikipedia 2014-05-01 06:19:50 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:olop:xqpg:hkls:sggn:lusz) has joined #pikipedia 2014-05-01 06:22:41 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:gurg:horn:krko:zwn:jwgn) has quit (Ping timeout: 250 seconds) 2014-05-01 06:22:54 -- Gamefreak75_ is now known as Gamefreak75 2014-05-01 06:30:29 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:olop:xqpg:hkls:sggn:lusz) has quit (Ping timeout: 250 seconds) 2014-05-01 10:53:22 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 240 seconds) 2014-05-01 11:15:43 --> Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-01 11:21:43 --> Espyo (Mibbit@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-01 11:21:43 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-01 11:40:53 Testyo [Fanon RC] Topic:Big changes by ThePikminMeister (+96 /* Comments */ ) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44221&oldid=44220 2014-05-01 13:41:27 Testyo [Fanon RC] Dirt Den by PurplePikminPower (+416 N Created page with "A cave in the [[Granite Outpost]]. A very "Dirt"y cave, BADUM...) http://www.pikminfanon.com/index.php?title=Dirt_Den&curid=8763&diff=44222&oldid=0 2014-05-01 13:51:38 Testyo [Fanon RC] File:Dirtrud.jpeg uploaded by PurplePikminPower http://www.pikminfanon.com/index.php?title=File:Dirtrud.jpeg 2014-05-01 13:51:38 Testyo [Fanon RC] Dirtrud by PurplePikminPower (+223 N Created page with "{{infobox enemy |image= Dirtrud....) http://www.pikminfanon.com/index.php?title=Dirtrud&curid=8765&diff=44224&oldid=0 2014-05-01 20:17:21 <-- Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has quit (Quit: Bye everyone!) 2014-05-01 20:17:47 --> Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-01 20:56:53 <-- Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has quit (Ping timeout: 240 seconds) 2014-05-01 20:57:53 <-- Espyo (Mibbit@k24-294-23-313.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-01 20:57:59 --> Espyo (Mibbit@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-01 20:57:59 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-01 20:59:29 --> Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-01 22:12:44 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-05-01 22:15:20 Testyo [Fanon RC] Dirtrud by PurplePikminPower (+319) http://www.pikminfanon.com/index.php?title=Dirtrud&curid=8765&diff=44225&oldid=44224 2014-05-02 01:18:46 <-- Espyo (Mibbit@k24-294-23-313.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-02 01:18:59 <-- Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-05-02 03:56:24 -- Spark is now known as Pigweb 2014-05-02 03:57:05 --> travisisanerd (Mibbit@gujp25rk7uqr.residence-rooms.uiowa.edu) has joined #pikipedia 2014-05-02 03:57:14 travisisanerd hi 2014-05-02 03:57:20 travisisanerd no one is here 2014-05-02 03:57:23 travisisanerd duh 2014-05-02 03:57:28 Pigweb travis is a nerd? 2014-05-02 03:57:34 travisisanerd because this is a chatroom about pikmin 2014-05-02 03:57:35 travisisanerd ... 2014-05-02 03:57:40 travisisanerd HI 2014-05-02 03:57:46 travisisanerd yes 2014-05-02 03:57:47 travisisanerd yes he is 2014-05-02 03:58:06 Pigweb who's travis 2014-05-02 03:58:23 travisisanerd The nerdiest nerd you'll ever hear of 2014-05-02 03:58:31 Pigweb oh okay 2014-05-02 03:58:37 travisisanerd It's also his birthday today 2014-05-02 03:58:43 travisisanerd *nerday 2014-05-02 03:58:47 travisisanerd bye 2014-05-02 03:58:49 <-- travisisanerd (Mibbit@gujp25rk7uqr.residence-rooms.uiowa.edu) has quit (Client Quit) 2014-05-02 06:07:55 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 240 seconds) 2014-05-02 11:22:57 --> Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-02 11:26:51 --> Espyo (Mibbit@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-02 11:26:51 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-02 11:52:57 Testyo [Fanon RC] Topic:Pikmin Engine by Es... by Fanonrun (+195 /* Pikmin run game */ new section) http://www.pikminfanon.com/index.php?title=Topic:Pikmin_Engine_by_Espyo&curid=7853&diff=44244&oldid=43915 2014-05-02 11:52:57 Testyo [Fanon RC] Topic:Pikmin Engine by Es... by Fanonrun (+2) http://www.pikminfanon.com/index.php?title=Topic:Pikmin_Engine_by_Espyo&curid=7853&diff=44245&oldid=44244 2014-05-02 11:57:58 Testyo [Fanon RC] Topic:Pikmin Engine by Es... by Fanonrun (+48) http://www.pikminfanon.com/index.php?title=Topic:Pikmin_Engine_by_Espyo&curid=7853&diff=44246&oldid=44245 2014-05-02 11:57:58 Testyo [Fanon RC] Topic:Pikmin Engine by Es... by Espyo (+278) http://www.pikminfanon.com/index.php?title=Topic:Pikmin_Engine_by_Espyo&curid=7853&diff=44247&oldid=44246 2014-05-02 12:08:00 Testyo [Fanon RC] PikminFanon:Ranks by Fanonrun (+9 It sounds like you need exactly 4 talk page sections to get the bud.) http://www.pikminfanon.com/index.php?title=PikminFanon:Ranks&curid=213&diff=44248&oldid=44039 2014-05-02 18:11:49 <-- Pigweb (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-02 18:19:33 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit 2014-05-02 19:13:19 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-02 20:19:32 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-02 21:32:15 Testyo [Fanon RC] User talk:PurplePikminPow... by New Pikminjp (+566 /* Re:IM BAAAACK */ ) http://www.pikminfanon.com/index.php?title=User_talk:PurplePikminPower&curid=8218&diff=44249&oldid=44203 2014-05-02 21:37:19 Testyo [Fanon RC] User talk:ThePikminMeiste... by New Pikminjp (+189 /* Sorry */ new section) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44250&oldid=44202 2014-05-02 21:37:19 Testyo [Fanon RC] User talk:ThePikminMeiste... by New Pikminjp (+23 /* Sorry */ ) http://www.pikminfanon.com/index.php?title=User_talk:ThePikminMeister&curid=8112&diff=44251&oldid=44250 2014-05-02 21:37:19 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-02 21:38:19 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-02 21:39:48 -- UltraMario is now known as UltraFoxMcCloud 2014-05-02 21:42:21 Testyo [Fanon RC] User:New Pikminjp by New Pikminjp (+7 /* Check list */ ) http://www.pikminfanon.com/index.php?title=User:New_Pikminjp&curid=8252&diff=44253&oldid=44102 2014-05-02 22:12:29 Testyo [Fanon RC] Topic:Big changes by New Pikminjp (+1757 /* Comments */ ) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44254&oldid=44221 2014-05-02 22:31:32 -- irc: disconnected from server 2014-05-02 22:31:45 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-02 22:31:45 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-05-02 22:31:45 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-05-02 22:31:45 -- Channel #pikipedia: 8 nicks (2 ops, 0 voices, 6 normals) 2014-05-02 22:31:45 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-02 22:31:45 -- Mode #pikipedia [+o J] by ChanServ 2014-05-02 22:31:48 -- Mode #pikipedia [+nt] 2014-05-02 22:31:48 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-02 22:48:12 -- UltraFoxMcCloud is now known as UltraBillRizer 2014-05-02 23:08:01 Testyo [Fanon RC] User account AdalberDowie created http://www.pikminfanon.com/index.php?title=User:AdalberDowie 2014-05-02 23:08:01 Testyo [Fanon RC] User:AdalberDowie by AdalberDowie (+167 N Created page with "I am Adalberto from Aldborough. I love to play Dobro. Other h...) http://www.pikminfanon.com/index.php?title=User:AdalberDowie&curid=8769&diff=44255&oldid=0 2014-05-02 23:08:01 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-02 23:13:02 Testyo [Fanon RC] (log) User:AdalberDowie by Espyo (0 Spamming links to external sites: Spambot.) http://www.pikminfanon.com/index.php?title=User:AdalberDowie&curid=8769&diff=0&oldid=0 2014-05-02 23:13:41 @Espyo Jaaaaaaaaayyyyy 2014-05-02 23:13:47 @Espyo the engine had major performance issues 2014-05-02 23:13:51 @Espyo and now my motivation to continue is 0 2014-05-02 23:30:06 <-- UltraBillRizer (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-03 00:16:49 Spark it took me like five minutes to realize that J = Jay 2014-05-03 00:18:54 @Espyo yep 2014-05-03 00:23:24 Testyo [Fanon RC] User account TristanSchnaars created http://www.pikminfanon.com/index.php?title=User:TristanSchnaars 2014-05-03 00:23:25 Testyo [Fanon RC] User:TristanSchnaars by TristanSchnaars (+319 N Created page with "I'm Tristan (29) from Pittsburgh, United States.
I'm lear...) http://www.pikminfanon.com/index.php?title=User:TristanSchnaars&curid=8771&diff=44257&oldid=0 2014-05-03 00:25:25 @Espyo ... 2014-05-03 00:28:26 Testyo [Fanon RC] (log) User:TristanSchnaars by Espyo (0 Spamming links to external sites: Spambot #2.) http://www.pikminfanon.com/index.php?title=User:TristanSchnaars&curid=8771&diff=0&oldid=0 2014-05-03 00:47:58 <-- Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has quit (Quit: Bye bye everyone!) 2014-05-03 00:48:51 <-- Espyo (Mibbit@k24-294-23-313.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-03 00:57:56 --> New_Pikminjp (Mibbit@84-92-874-18.lightspeed.milwwi.sbcglobal.net) has joined #pikipedia 2014-05-03 01:02:54 <-- New_Pikminjp (Mibbit@84-92-874-18.lightspeed.milwwi.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-03 01:11:56 --> Gamefreak75 (NewYokuba@2605:e000:2e44:yqjz:gjho:pgwo:ziow:jyi) has joined #pikipedia 2014-05-03 01:31:23 --> New_Pikminjp (Mibbit@84-92-874-18.lightspeed.milwwi.sbcglobal.net) has joined #pikipedia 2014-05-03 01:31:51 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:kinn:iqjs:yjqq:vrwy:mosg) has joined #pikipedia 2014-05-03 01:34:53 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:yqjz:gjho:pgwo:ziow:jyi) has quit (Ping timeout: 250 seconds) 2014-05-03 01:34:53 -- Gamefreak75_ is now known as Gamefreak75 2014-05-03 01:36:25 <-- New_Pikminjp (Mibbit@84-92-874-18.lightspeed.milwwi.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-03 01:40:57 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:kinn:iqjs:yjqq:vrwy:mosg) has quit (Ping timeout: 250 seconds) 2014-05-03 05:17:12 --> chair (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-03 05:17:16 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Killed (NickServ (GHOST command used by chair))) 2014-05-03 05:17:17 -- chair is now known as Sunscreen 2014-05-03 06:48:12 -- Sunscreen is now known as Moonscreen 2014-05-03 06:48:18 -- Moonscreen is now known as Sunscreen 2014-05-03 11:10:40 --> Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-03 11:16:05 --> Espyo (Mibbit@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-03 11:16:05 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-03 11:45:51 Testyo [Fanon RC] User account CatalinCarvosso created http://www.pikminfanon.com/index.php?title=User:CatalinCarvosso 2014-05-03 11:45:51 Testyo [Fanon RC] User:CatalinCarvosso by CatalinCarvosso (+338 N Created page with "Isiah is what's published on my delivery certification but yo...) http://www.pikminfanon.com/index.php?title=User:CatalinCarvosso&curid=8783&diff=44271&oldid=0 2014-05-03 11:45:51 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-03 12:00:55 Testyo [Fanon RC] (log) User:BryanZ93zwzkxqf by Espyo (0 Spamming links to external sites: Spambot #5.) http://www.pikminfanon.com/index.php?title=User:BryanZ93zwzkxqf&curid=8775&diff=0&oldid=0 2014-05-03 12:00:56 Testyo [Fanon RC] (log) User:ModestaBirdsall by Espyo (0 Spamming links to external sites: Spambot #6.) http://www.pikminfanon.com/index.php?title=User:ModestaBirdsall&curid=8777&diff=0&oldid=0 2014-05-03 12:00:56 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-03 12:27:53 -- irc: disconnected from server 2014-05-03 12:28:06 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-03 12:28:06 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-05-03 12:28:06 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-05-03 12:28:06 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-03 12:28:07 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-03 12:28:07 -- Mode #pikipedia [+o J] by ChanServ 2014-05-03 12:28:07 -- Mode #pikipedia [+nt] 2014-05-03 12:28:08 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-03 12:51:13 Testyo [Fanon RC] User account JacklynBurfitt created http://www.pikminfanon.com/index.php?title=User:JacklynBurfitt 2014-05-03 12:51:13 Testyo [Fanon RC] User:JacklynBurfitt by JacklynBurfitt (+227 N Created page with "Hi, I am Malorie Rawlings. To engage in domino is what I do e...) http://www.pikminfanon.com/index.php?title=User:JacklynBurfitt&curid=8785&diff=44273&oldid=0 2014-05-03 12:56:14 Testyo [Fanon RC] (log) User:JacklynBurfitt by Espyo (0 Spamming links to external sites: Spambot #10.) http://www.pikminfanon.com/index.php?title=User:JacklynBurfitt&curid=8785&diff=0&oldid=0 2014-05-03 13:16:25 Testyo [Fanon RC] User account Phyllis5752 created http://www.pikminfanon.com/index.php?title=User:Phyllis5752 2014-05-03 13:16:25 Testyo [Fanon RC] User account LeonoreLuffman created http://www.pikminfanon.com/index.php?title=User:LeonoreLuffman 2014-05-03 13:16:25 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-03 13:21:26 Testyo [Fanon RC] (log) User:LeonoreLuffman by Espyo (0 Spamming links to external sites: Spambot #11.) http://www.pikminfanon.com/index.php?title=User:LeonoreLuffman&curid=8786&diff=0&oldid=0 2014-05-03 13:21:26 Testyo [Fanon RC] (log) User:Phyllis5752 by Espyo (0 Spamming links to external sites: Spambot #12.) http://www.pikminfanon.com/index.php?title=User:Phyllis5752&curid=8788&diff=0&oldid=0 2014-05-03 13:21:27 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-03 13:24:29 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-03 13:36:31 Testyo [Fanon RC] User talk:Porplemontage by Porplemontage (+163 /* Spambot outbreak */ ) http://www.pikminfanon.com/index.php?title=User_talk:Porplemontage&curid=11&diff=44278&oldid=44277 2014-05-03 13:41:33 Testyo [Fanon RC] User talk:Porplemontage by Espyo (+162 m /* Spambot outbreak */ ) http://www.pikminfanon.com/index.php?title=User_talk:Porplemontage&curid=11&diff=44279&oldid=44278 2014-05-03 14:36:54 Testyo [Fanon RC] User:ThePikminMeister by ThePikminMeister (+19 m /* Status Update */ ) http://www.pikminfanon.com/index.php?title=User:ThePikminMeister&curid=8101&diff=44280&oldid=44197 2014-05-03 14:40:57 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-05-03 14:41:08 TPM THOSE SPAMBOTS 2014-05-03 14:41:16 TPM THOSE F***ING SPAMBOTS 2014-05-03 14:41:28 TPM I CANT TAKE THIS ANYMORE 2014-05-03 14:42:22 @Espyo it's fixed 2014-05-03 14:42:24 @Espyo Porple blocked them 2014-05-03 14:42:30 @Espyo now we wait for PikFan to delete their pages 2014-05-03 14:42:31 TPM Yay 2014-05-03 14:42:34 TPM Ok 2014-05-03 14:42:35 @Espyo and before you know it, everything's back to normal 2014-05-03 14:42:42 TPM Hooray 2014-05-03 14:42:50 TPM I got on this morning and checked recent changes 2014-05-03 14:42:57 TPM And I'm like "What the..." 2014-05-03 14:43:21 @Espyo it's pretty devastating, yes 2014-05-03 14:43:39 @Espyo anyway, tomorrow the big changes will be committed 2014-05-03 14:43:44 TPM Oh yeah 2014-05-03 14:43:50 TPM Ooh question 2014-05-03 14:43:59 TPM I read the page 2014-05-03 14:44:06 TPM But what actual changes will there be? 2014-05-03 14:45:15 TPM Meh, I'll see when it happens 2014-05-03 14:45:27 @Espyo mostly changes in the guidelines 2014-05-03 14:45:34 @Espyo new users must create pages with these guidelines 2014-05-03 14:45:34 TPM Lol 2014-05-03 14:45:37 @Espyo and old pages must be updated 2014-05-03 14:45:50 TPM Ok 2014-05-03 14:47:01 TPM I need to begin updated my P:RotP pages 2014-05-03 14:49:50 TPM I said I would, but I have been neglecting it 2014-05-03 14:56:07 @J was it just fanon that got spammed? 2014-05-03 14:56:31 @J (also hi) 2014-05-03 14:57:32 @Espyo just fanon 2014-05-03 14:57:33 @Espyo hi 2014-05-03 15:28:05 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-03 15:41:28 --> TPM (Mibbit@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-05-03 15:41:31 <-- TPM (Mibbit@fig-396bj638.dyn.optonline.net) has quit (Client Quit) 2014-05-03 15:59:30 -- irc: disconnected from server 2014-05-03 15:59:42 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-03 15:59:42 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-05-03 15:59:42 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-05-03 15:59:42 -- Channel #pikipedia: 6 nicks (2 ops, 0 voices, 4 normals) 2014-05-03 15:59:42 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-03 15:59:42 -- Mode #pikipedia [+o J] by ChanServ 2014-05-03 15:59:44 -- Mode #pikipedia [+nt] 2014-05-03 15:59:44 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-03 16:20:37 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-03 17:12:44 -- irc: disconnected from server 2014-05-03 17:12:56 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-03 17:12:56 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-05-03 17:12:56 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-05-03 17:12:56 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-03 17:12:56 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-03 17:12:56 -- Mode #pikipedia [+o J] by ChanServ 2014-05-03 17:12:58 -- Mode #pikipedia [+nt] 2014-05-03 17:12:58 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-03 17:56:03 -- irc: disconnected from server 2014-05-03 17:56:15 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-03 17:56:15 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-05-03 17:56:15 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-05-03 17:56:15 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-03 17:56:15 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-03 17:56:15 -- Mode #pikipedia [+o J] by ChanServ 2014-05-03 17:56:16 -- Mode #pikipedia [+nt] 2014-05-03 17:56:16 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-03 18:17:50 -- irc: disconnected from server 2014-05-03 18:18:02 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-03 18:18:02 -- Topic for #pikipedia is "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" 2014-05-03 18:18:02 -- Topic set by J on Sun, 16 Oct 2011 13:57:57 2014-05-03 18:18:02 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-03 18:18:02 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-03 18:18:02 -- Mode #pikipedia [+o J] by ChanServ 2014-05-03 18:18:03 -- Mode #pikipedia [+nt] 2014-05-03 18:18:03 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-03 18:30:11 Testyo [Fanon RC] (log) Fisher Price Learning Hou... by Peach Bulborb (0 Spambot creation and nothing to do with Pikmin) http://www.pikminfanon.com/index.php?title=Fisher_Price_Learning_Household&curid=0&diff=0&oldid=0 2014-05-03 18:30:11 Testyo [Fanon RC] (log) Clear- Cut -Lösungen fü... by Peach Bulborb (0 Spambot creation and nothing to do with Pikmin) http://www.pikminfanon.com/index.php?title=Clear-_Cut_-Lösungen_für_Kindergeburtstag_Mannheim_-_Aktualisiert&curid=0&diff=0&oldid=0 2014-05-03 18:30:11 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-03 18:35:16 Testyo [Fanon RC] (log) AMINO ACIDS and BCAAS by Peach Bulborb (0 cleaning up spambot rampage) http://www.pikminfanon.com/index.php?title=AMINO_ACIDS_and_BCAAS&curid=0&diff=0&oldid=0 2014-05-03 18:40:22 Testyo [Fanon RC] User account Peach Bulborb created http://www.pikminfanon.com/index.php?title=User:Phyllis5752 2014-05-03 18:40:22 Testyo [Fanon RC] User account Peach Bulborb created http://www.pikminfanon.com/index.php?title=User:LeonoreLuffman 2014-05-03 18:40:23 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-03 18:45:31 Testyo [Fanon RC] User account Peach Bulborb created http://www.pikminfanon.com/index.php?title=User:JHABiancabbz 2014-05-03 18:45:31 Testyo [Fanon RC] User account Peach Bulborb created http://www.pikminfanon.com/index.php?title=User:Della58Jsjnm 2014-05-03 18:45:31 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-03 19:04:32 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-03 19:04:33 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-03 19:04:40 @PikFan . 2014-05-03 19:06:11 @Espyo hey 2014-05-03 19:06:22 @Espyo ugh, good timing 2014-05-03 19:06:28 @Espyo visual studio is apparently frozen in time and space 2014-05-03 19:06:37 @PikFan ...ok what happened at Fanon 2014-05-03 19:06:39 @Espyo so I'm glad there's somebody to chat with 2014-05-03 19:06:41 @Espyo spambot outbreak 2014-05-03 19:06:42 @PikFan spam wave? 2014-05-03 19:06:45 @Espyo one register per hour 2014-05-03 19:06:50 @Espyo Porple changed the captcha system 2014-05-03 19:06:51 @PikFan ugh 2014-05-03 19:06:54 @Espyo now they've stopped 2014-05-03 19:07:02 @Espyo PB deleted the pages 2014-05-03 19:07:04 @Espyo everything's back to normal 2014-05-03 19:07:13 @Espyo apart from that large tumor in the recent changes, but yeah 2014-05-03 19:07:14 @PikFan good 2014-05-03 19:07:20 @PikFan heh, yeah 2014-05-03 19:07:26 @Espyo oh, finally, only took it two minutes to find "chomp_hitboxes" 2014-05-03 19:08:19 @Espyo hmmm 2014-05-03 19:08:21 @Espyo hey J 2014-05-03 19:08:27 @Espyo think we should have actual URLS on the topic? 2014-05-03 19:08:44 @PikFan also might want to read New Pikminjp's post http://www.pikminfanon.com/Topic:Big_changes 2014-05-03 19:08:59 @PikFan honestly I'm not sure how to respond to him 2014-05-03 19:09:17 @Espyo same... 2014-05-03 19:10:21 @PikFan what I'm getting though is that his excuse to not write good articles is that " I honestly have put days into the project" 2014-05-03 19:10:33 @Espyo that can all be resolved lter 2014-05-03 19:10:34 @Espyo *later 2014-05-03 19:10:36 @PikFan well of course it takes days 2014-05-03 19:11:09 @PikFan did you read my post? 2014-05-03 19:11:22 @PikFan uh... 2014-05-03 19:11:28 @PikFan what's a common fanon enemy 2014-05-03 19:12:19 @J [19:08:27] @Espyo think we should have actual URLS on the topic? 2014-05-03 19:12:22 @J what? 2014-05-03 19:14:07 @Espyo we have "pikminwiki.com" 2014-05-03 19:14:14 @Espyo why not "http://pikminwiki.com"? 2014-05-03 19:14:19 @Espyo so it's clickable? 2014-05-03 19:14:29 @Espyo a common enemy... dunno 2014-05-03 19:14:33 @Espyo but a common Pikmin has to be Cyan 2014-05-03 19:14:40 @J oh, IRC topic 2014-05-03 19:14:42 @J could do 2014-05-03 19:14:49 @J can't you change that? 2014-05-03 19:15:35 @Espyo I can, I was just asking for opinion 2014-05-03 19:15:46 @J yeah, no reason not to 2014-05-03 19:15:48 @Espyo as far as I know, it's the way it is so that spambots don't click it 2014-05-03 19:15:51 @Espyo by channel topic sniffing 2014-05-03 19:16:00 @J not really 2014-05-03 19:16:18 @J even if they did, the most likely way for them to find it is by starting at the site 2014-05-03 19:16:34 @Espyo yeah 2014-05-03 19:16:48 @Espyo also 2014-05-03 19:16:52 @Espyo "the Pikipedia" 2014-05-03 19:16:56 @Espyo eugh, sounds awkward 2014-05-03 19:17:08 @Espyo you wouldn't say the Wikipedia 2014-05-03 19:17:35 @Espyo we should probably also link to the rules 2014-05-03 19:17:56 @J sure 2014-05-03 19:18:09 @J don't think we had rules last we changed it 2014-05-03 19:18:58 @Espyo they're on Pikipedia 2014-05-03 19:19:03 @Espyo uh... [[Help:Chatroom]]? 2014-05-03 19:19:03 Testyo "Help:Chatroom" article = http://www.pikminwiki.com/index.php?title=Help:Chatroom 2014-05-03 19:20:22 -- Espyo has changed topic for #pikipedia from "Welcome to the chatroom of the Pikipedia, pikminwiki.com, and Pikmin Fanon, pikminfanon.com" to "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com // Rules: http://pikminwiki.com/Help:Chat" 2014-05-03 19:20:36 @Espyo the article on fanon is just copy-paste of that 2014-05-03 19:21:05 @Espyo uh, visual studio just froze 2014-05-03 19:21:17 @Espyo that's a new one 2014-05-03 19:21:23 @Espyo oh, forcing it to close unfroze it 2014-05-03 19:21:27 @J not sure I'm happy with how you commented out the rules part 2014-05-03 19:21:28 @Espyo wonder if it'll close now 2014-05-03 19:21:38 @Espyo the rules are just a comment 2014-05-03 19:21:48 @Espyo comment = extra curricular info 2014-05-03 19:21:55 @J but it makes me ignore it 2014-05-03 19:22:27 @Espyo you already know the rules 2014-05-03 19:22:45 -- Espyo has changed topic for #pikipedia from "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com // Rules: http://pikminwiki.com/Help:Chat" to "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com " 2014-05-03 19:22:48 @Espyo does that help? 2014-05-03 19:23:04 @J the rules must be so sad 2014-05-03 19:23:33 @Espyo is there any language that has "||" as a comment symbol? 2014-05-03 19:23:38 -- Espyo has changed topic for #pikipedia from "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com " to "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com || Rules: http://pikminwiki.com/Help:Chat" 2014-05-03 19:23:44 @Espyo hmm 2014-05-03 19:23:47 -- Espyo has changed topic for #pikipedia from "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com || Rules: http://pikminwiki.com/Help:Chat" to "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com -- Rules: http://pikminwiki.com/Help:Chat" 2014-05-03 19:23:55 @Espyo // is the way to go 2014-05-03 19:25:48 @J I think -- is a Haskell comment 2014-05-03 19:26:37 @Espyo it's a comment on something, that I remember 2014-05-03 19:26:43 @Espyo ' is a comment on Basic 2014-05-03 19:26:51 -- Espyo has changed topic for #pikipedia from "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com -- Rules: http://pikminwiki.com/Help:Chat" to "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com \\ Rules: http://pikminwiki.com/Help:Chat" 2014-05-03 19:26:58 @Espyo that just looks wrong 2014-05-03 19:27:08 @J -- was fine 2014-05-03 19:27:21 -- Espyo has changed topic for #pikipedia from "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com \\ Rules: http://pikminwiki.com/Help:Chat" to "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com ¿¿ Rules: http://pikminwiki.com/Help:Chat" 2014-05-03 19:28:02 -- Espyo has changed topic for #pikipedia from "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com ¿¿ Rules: http://pikminwiki.com/Help:Chat" to "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com — Rules: http://pikminwiki.com/Help:Chat" 2014-05-03 19:28:12 @Espyo hm, that seems good 2014-05-03 19:36:01 @J ... 2014-05-03 19:36:43 @PikFan a pipe usually separates subjects 2014-05-03 19:37:00 -- PikFan has changed topic for #pikipedia from "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com — Rules: http://pikminwiki.com/Help:Chat" to "Welcome to the chatroom of Pikipedia http://pikminwiki.com and Pikmin Fanon http://pikminfanon.com | Rules: http://pikminwiki.com/Help:Chat" 2014-05-03 19:37:22 --> UltraFalcoLombardi (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-03 19:41:17 @Espyo I like | 2014-05-03 19:41:21 UltraFalcoLombardi ? 2014-05-03 19:41:27 @Espyo UltraFalcoLombardi: topic 2014-05-03 19:42:02 UltraFalcoLombardi oh 2014-05-03 19:42:16 UltraFalcoLombardi don't you have to type /topicappend or something 2014-05-03 19:42:46 @Espyo not necessarily 2014-05-03 19:42:52 @Espyo we just wrote it from scratch 2014-05-03 19:47:39 @Espyo all right, so for tomorrow's Fanon thing, here's what I propose 2014-05-03 19:47:59 @Espyo we make a template 2014-05-03 19:48:02 @Espyo that shows a box on the page 2014-05-03 19:48:31 @Espyo "This page does not follow the guidelines set on XX May 2014. It may be lacking in quality as a result." 2014-05-03 19:48:34 @Espyo or something of the sort 2014-05-03 19:49:40 @Espyo and categorizes the page on Category:Outdated pages, or something 2014-05-03 19:49:47 @Espyo that way we can keep track of everything 2014-05-03 19:51:41 @PikFan mm 2014-05-03 19:53:20 @PikFan there was something similar when the Formatting Policy was made http://www.pikminfanon.com/Template:Oldformat 2014-05-03 19:53:40 @Espyo ah 2014-05-03 19:53:42 @Espyo hmm 2014-05-03 20:06:54 UltraFalcoLombardi hey espyo, since your named espyo, do you like the sonic series? (should be a little obvious but just curious. :P) 2014-05-03 20:07:30 @Espyo I do, but I'm not 100% sure it's related 2014-05-03 20:07:40 @Espyo I've had this nickname for as far as I can remember, and I'm not sure if it comes from Espio or not 2014-05-03 20:18:12 UltraFalcoLombardi how long? o_O 2014-05-03 20:18:48 UltraFalcoLombardi does it date back to before, idk, 1995? 2014-05-03 20:19:17 UltraFalcoLombardi or 2005 2014-05-03 20:22:01 @Espyo 2006 or so 2014-05-03 20:22:36 Testyo [Fanon RC] User:Xtarhaven by Xtarhaven (+574 N Created page with "Hello everybody! I am Starhaven spelled with an X. I am here...) http://www.pikminfanon.com/index.php?title=User:Xtarhaven&curid=8789&diff=44281&oldid=0 2014-05-03 20:27:40 Testyo [Fanon RC] User talk:Xtarhaven by Xtarhaven (+26 N Created page with "Ask or tell me stuff here!") http://www.pikminfanon.com/index.php?title=User_talk:Xtarhaven&curid=8790&diff=44282&oldid=0 2014-05-03 21:43:16 -- irc: disconnected from server 2014-05-03 21:43:28 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-03 21:43:28 -- 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" 2014-05-03 21:43:28 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-03 21:43:28 -- Channel #pikipedia: 9 nicks (3 ops, 0 voices, 6 normals) 2014-05-03 21:43:28 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-03 21:43:28 -- Mode #pikipedia [+o J] by ChanServ 2014-05-03 21:43:29 -- Mode #pikipedia [+nt] 2014-05-03 21:43:29 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-03 21:58:10 @PikFan ...oh wow 2014-05-03 21:58:31 @PikFan 1.005 sextillion cookies have been hand made 2014-05-03 21:59:20 @PikFan so ~13.65% of cookies baked in this game are hand made 2014-05-03 22:00:12 -- UltraFalcoLombardi is now known as UltraRyuHayabusa 2014-05-03 22:00:36 @Espyo wow 2014-05-03 22:19:17 Testyo [Pikipedia RC] Brittany by 71.72.35.40 (+4 /* Personality */) http://www.pikminwiki.com/index.php?title=Brittany&curid=8301&diff=79718&oldid=78835 2014-05-03 22:19:17 Testyo [Pikipedia RC] Brittany by 71.72.35.40 (+15 /* Personality */) http://www.pikminwiki.com/index.php?title=Brittany&curid=8301&diff=79719&oldid=79718 2014-05-03 22:29:19 Testyo [Pikipedia RC] Brittany by 71.72.35.40 (+292 Trivia) http://www.pikminwiki.com/index.php?title=Brittany&curid=8301&diff=79720&oldid=79719 2014-05-03 22:29:20 Testyo [Pikipedia RC] User account Blueagle1123 created http://www.pikminwiki.com/index.php?title=User:Blueagle1123 2014-05-03 22:38:24 @PikFan ok I reset about 10 minutes ago 2014-05-03 22:38:33 @PikFan I have 220,007 HCs 2014-05-03 22:39:17 @Espyo woah 2014-05-03 22:39:23 Testyo [Pikipedia RC] Alph by Blueagle1123 (+133) http://www.pikminwiki.com/index.php?title=Alph&curid=8300&diff=79721&oldid=79519 2014-05-03 22:39:43 @PikFan so I've forfeited what, 24.2 sextillion cookies 2014-05-03 22:43:12 @PikFan hmm 2014-05-03 22:43:26 @PikFan maybe in a few weeks I'll be able to get 200 ACs 2014-05-03 22:58:16 -- UltraRyuHayabusa is now known as UltraMario 2014-05-03 23:19:34 Testyo [Fanon RC] Impaling Droneule by Bioman223 (+589 N Created page with "{{Infobox enemy |image= |size= |name=Petra Fucus |family=Dro...) http://www.pikminfanon.com/index.php?title=Impaling_Droneule&curid=8792&diff=44284&oldid=0 2014-05-03 23:19:34 Testyo [Fanon RC] Impaling Droneule by Bioman223 (+58) http://www.pikminfanon.com/index.php?title=Impaling_Droneule&curid=8792&diff=44285&oldid=44284 2014-05-03 23:24:36 Testyo [Fanon RC] Impaling Droneule by Bioman223 (+83) http://www.pikminfanon.com/index.php?title=Impaling_Droneule&curid=8792&diff=44286&oldid=44285 2014-05-03 23:29:37 Testyo [Fanon RC] Impaling Droneule by Bioman223 (+21 m) http://www.pikminfanon.com/index.php?title=Impaling_Droneule&curid=8792&diff=44287&oldid=44286 2014-05-04 00:04:53 Testyo [Fanon RC] Impaling Droneule by Bioman223 (+701) http://www.pikminfanon.com/index.php?title=Impaling_Droneule&curid=8792&diff=44288&oldid=44287 2014-05-04 00:55:12 Testyo [Fanon RC] Impaling Droneule by Bioman223 (+9 m) http://www.pikminfanon.com/index.php?title=Impaling_Droneule&curid=8792&diff=44289&oldid=44288 2014-05-04 01:00:16 Testyo [Fanon RC] Impaling Droneule by Bioman223 (+53 m) http://www.pikminfanon.com/index.php?title=Impaling_Droneule&curid=8792&diff=44290&oldid=44289 2014-05-04 01:00:45 @Espyo so many edits on that article 2014-05-04 01:12:26 --> Gamefreak75 (NewYokuba@2605:e000:2e44:tvtk:syzh:qqnl:xlng:osim) has joined #pikipedia 2014-05-04 01:15:26 Testyo [Fanon RC] User:Bioman223 by Bioman223 (+18 N Created page with "[[Category:Users]]") http://www.pikminfanon.com/index.php?title=User:Bioman223&curid=8793&diff=44291&oldid=0 2014-05-04 01:25:34 Testyo [Fanon RC] Soilder Droneule by Bioman223 (+432 N Created page with "{{Infobox enemy |image= |size= |name=Colossus Petra Fucus |fa...) http://www.pikminfanon.com/index.php?title=Soilder_Droneule&curid=8794&diff=44292&oldid=0 2014-05-04 01:30:38 Testyo [Fanon RC] User:PurplePikminPower by PurplePikminPower (+34 /* POWER TO THE PURPLE */ ) http://www.pikminfanon.com/index.php?title=User:PurplePikminPower&curid=8217&diff=44293&oldid=44144 2014-05-04 01:35:43 Testyo [Fanon RC] Soilder Droneule by Bioman223 (+1041) http://www.pikminfanon.com/index.php?title=Soilder_Droneule&curid=8794&diff=44294&oldid=44292 2014-05-04 01:45:49 Testyo [Fanon RC] Soilder Droneule by Bioman223 (+51 m) http://www.pikminfanon.com/index.php?title=Soilder_Droneule&curid=8794&diff=44295&oldid=44294 2014-05-04 01:55:19 <-- Espyo (Mibbit@k24-294-23-313.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-04 01:55:30 <-- Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-05-04 02:07:11 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:kxsx:jzpp:ptq:zozq:ywnn) has joined #pikipedia 2014-05-04 02:09:31 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:tvtk:syzh:qqnl:xlng:osim) has quit (Ping timeout: 250 seconds) 2014-05-04 02:09:41 -- Gamefreak75_ is now known as Gamefreak75 2014-05-04 02:16:02 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:hrlo:jkwp:qmgh:vyvl:qnkl) has joined #pikipedia 2014-05-04 02:19:29 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:kxsx:jzpp:ptq:zozq:ywnn) has quit (Ping timeout: 250 seconds) 2014-05-04 02:19:32 -- Gamefreak75_ is now known as Gamefreak75 2014-05-04 02:28:27 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:uxxn:mlqi:jkkw:usyg:tktj) has joined #pikipedia 2014-05-04 02:31:37 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:hrlo:jkwp:qmgh:vyvl:qnkl) has quit (Ping timeout: 250 seconds) 2014-05-04 02:31:45 -- Gamefreak75_ is now known as Gamefreak75 2014-05-04 02:36:07 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-04 02:36:31 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-04 02:57:37 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:uxxn:mlqi:jkkw:usyg:tktj) has quit (Ping timeout: 250 seconds) 2014-05-04 03:25:36 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-04 03:38:35 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-04 08:38:11 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-04 11:17:46 -- irc: disconnected from server 2014-05-04 11:17:59 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-04 11:17:59 -- 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" 2014-05-04 11:17:59 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-04 11:17:59 -- Channel #pikipedia: 4 nicks (1 op, 0 voices, 3 normals) 2014-05-04 11:17:59 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-04 11:17:59 -- Mode #pikipedia [+o J] by ChanServ 2014-05-04 11:18:00 -- Mode #pikipedia [+nt] 2014-05-04 11:18:00 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-04 11:18:40 --> Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-04 11:22:23 --> Espyo (Mibbit@k24-294-23-313.cpe.netcabo.pt) has joined #pikipedia 2014-05-04 11:22:24 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-04 13:24:19 Testyo [Pikipedia RC] Glitches in Pikmin 2 by Espyo (+54 m Added secondary demonstration of the crushing glitch.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_2&curid=8423&diff=79722&oldid=79712 2014-05-04 13:29:20 Testyo [Pikipedia RC] Template:Glitch by Espyo (+157 m Adding field for secondary demonstrations.) http://www.pikminwiki.com/index.php?title=Template:Glitch&curid=8671&diff=79723&oldid=79484 2014-05-04 13:29:20 Testyo [Pikipedia RC] Glitches in Pikmin 2 by Espyo (+37 m /* Crushing glitch */ Forgot caption.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_2&curid=8423&diff=79724&oldid=79722 2014-05-04 13:34:25 Testyo [Pikipedia RC] Pikipedia:Glitch notes by Espyo (+145 m Adding info about the alternate demonstrations.) http://www.pikminwiki.com/index.php?title=Pikipedia:Glitch_notes&curid=8390&diff=79725&oldid=79488 2014-05-04 16:14:29 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-04 16:14:44 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Client Quit) 2014-05-04 17:34:47 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-05-04 17:34:57 Meisterbot new changes today\ 2014-05-04 17:52:11 <-- Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit (*.net *.split) 2014-05-04 17:52:20 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-05-04 17:53:57 @Espyo yep 2014-05-04 17:54:00 @Espyo at 8PM 2014-05-04 17:54:01 @Espyo in 2 hours 2014-05-04 18:06:10 Meisterbot k 2014-05-04 18:06:25 Meisterbot 3PM for me 2014-05-04 19:49:06 -- irc: disconnected from server 2014-05-04 19:49:17 --> J (J@w-113.cust-16545.ip.static.uno.uk.net) has joined #pikipedia 2014-05-04 19:49:17 -- 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" 2014-05-04 19:49:17 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-04 19:49:17 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-04 19:49:17 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-04 19:49:17 -- Mode #pikipedia [+o J] by ChanServ 2014-05-04 19:49:18 -- Mode #pikipedia [+nt] 2014-05-04 19:49:18 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-04 20:00:05 Meisterbot so now? 2014-05-04 20:01:15 @Espyo yep 2014-05-04 20:01:19 @Espyo when PikFan comes 2014-05-04 20:18:21 -- irc: disconnected from server 2014-05-04 20:18:38 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-04 20:18:38 -- 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" 2014-05-04 20:18:38 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-04 20:18:38 -- Channel #pikipedia: 8 nicks (2 ops, 0 voices, 6 normals) 2014-05-04 20:18:38 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-04 20:18:38 -- Mode #pikipedia [+o J] by ChanServ 2014-05-04 20:18:39 -- Mode #pikipedia [+nt] 2014-05-04 20:18:39 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-04 20:35:48 -- irc: disconnected from server 2014-05-04 20:36:02 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-04 20:36:02 -- 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" 2014-05-04 20:36:02 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-04 20:36:02 -- Channel #pikipedia: 8 nicks (2 ops, 0 voices, 6 normals) 2014-05-04 20:36:03 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-04 20:36:03 -- Mode #pikipedia [+o J] by ChanServ 2014-05-04 20:36:03 -- Mode #pikipedia [+nt] 2014-05-04 20:36:03 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-04 20:43:12 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-04 20:56:51 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-04 20:56:51 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-04 20:56:55 Meisterbot . 2014-05-04 20:57:00 @PikFan . 2014-05-04 20:57:03 Meisterbot i ein 2014-05-04 20:57:05 Meisterbot win 2014-05-04 20:57:23 @PikFan today is the day of great change 2014-05-04 20:57:26 Meisterbot ik 2014-05-04 20:57:53 Meisterbot my body is ready 2014-05-04 20:58:06 Meisterbot lol even though im not actually doing anything 2014-05-04 20:58:59 @Espyo hey 2014-05-04 20:59:07 @Espyo yes, let's take care of it 2014-05-04 20:59:11 @Espyo ...though I got dinner in a few 2014-05-04 20:59:40 Meisterbot i will sit and watch... 2014-05-04 20:59:42 Meisterbot something 2014-05-04 21:01:57 @PikFan all righty, time to write a policy 2014-05-04 21:02:17 Meisterbot k 2014-05-04 21:02:36 Meisterbot ok i need to be quiet 2014-05-04 21:02:45 @Espyo yeah 2014-05-04 21:03:09 @Espyo dinner now 2014-05-04 21:04:20 Meisterbot well then 2014-05-04 21:04:24 Meisterbot im your replacement 2014-05-04 21:04:33 Meisterbot hehehehehe 2014-05-04 21:04:34 Meisterbot no 2014-05-04 21:04:36 @PikFan oh why internet do you have to act up now 2014-05-04 21:04:49 @PikFan nvm 2014-05-04 21:08:35 Testyo [Fanon RC] Topic:Big changes by PikFan23 (-56 It is time.) http://www.pikminfanon.com/index.php?title=Topic:Big_changes&curid=8749&diff=44300&oldid=44254 2014-05-04 21:08:57 Meisterbot pffty 2014-05-04 21:08:59 Meisterbot pfft 2014-05-04 21:09:04 Meisterbot new pikminjp's comment 2014-05-04 21:09:13 @PikFan yeah 2014-05-04 21:09:18 @PikFan I was confused by that 2014-05-04 21:09:22 Meisterbot lol 2014-05-04 21:09:25 @PikFan Espyo and I, really 2014-05-04 21:09:31 Meisterbot he says "but it not spelling" 2014-05-04 21:09:39 Meisterbot yet he mispells pratically everything 2014-05-04 21:09:39 @PikFan /irony 2014-05-04 21:09:50 @PikFan *misspells 2014-05-04 21:10:02 Meisterbot whoops 2014-05-04 21:10:17 Meisterbot i even misspelled misspell 2014-05-04 21:10:28 @PikFan hypocrite 2014-05-04 21:10:30 @PikFan jk 2014-05-04 21:10:32 Meisterbot lol 2014-05-04 21:10:42 Meisterbot i just noticed another comment 2014-05-04 21:10:44 Meisterbot that i made 2014-05-04 21:10:49 @PikFan ...uh 2014-05-04 21:11:00 @PikFan ok I don't know what I should name this policy 2014-05-04 21:11:05 Meisterbot hm 2014-05-04 21:11:18 -- UltraPopo is now known as UltraMario 2014-05-04 21:11:23 Meisterbot idk what it is about 2014-05-04 21:11:32 @PikFan these changes 2014-05-04 21:11:41 Meisterbot hm 2014-05-04 21:12:05 Meisterbot hmmmmm 2014-05-04 21:14:17 @PikFan uh 2014-05-04 21:14:25 @PikFan Organization Policy? 2014-05-04 21:14:37 Meisterbot hm 2014-05-04 21:14:41 Meisterbot ok 2014-05-04 21:14:53 @PikFan well I need Espyo's and J's input 2014-05-04 21:15:40 Meisterbot k 2014-05-04 21:23:51 Testyo [Fanon RC] PikminFanon:Signature Pol... by PikFan23 (+320 thought of something) http://www.pikminfanon.com/index.php?title=PikminFanon:Signature_Policy&curid=5294&diff=44301&oldid=41372 2014-05-04 21:27:47 @Espyo back 2014-05-04 21:28:04 @PikFan . 2014-05-04 21:28:52 Meisterbot pikfan, pikfan, pikfan 2014-05-04 21:28:56 Testyo [Fanon RC] MediaWiki:Sitenotice by PikFan23 (+9) http://www.pikminfanon.com/index.php?title=MediaWiki:Sitenotice&curid=29&diff=44302&oldid=44171 2014-05-04 21:28:57 Meisterbot always with those dots 2014-05-04 21:28:59 @Espyo all right, do you have anything? 2014-05-04 21:29:32 @PikFan I don't know what to call the policy though 2014-05-04 21:29:53 @PikFan I thought of "Organization Policy", but I'm not sure 2014-05-04 21:29:57 @Espyo 2014 Policy 2014-05-04 21:30:13 @PikFan eeeh... 2014-05-04 21:35:24 Meisterbot SPAMBOT ALERT 2014-05-04 21:35:30 Meisterbot i am now a spambot 2014-05-04 21:35:38 Meisterbot i will haunt everyone 2014-05-04 21:35:39 @PikFan ... 2014-05-04 21:35:45 Meisterbot MWAUHHUHUHUH KN FKMNDH, Pikmin Fanon has established a new article policy. This is an attempt to improve the overall quality of the wiki. The following points should be taken into consideration regarding content articles:" 2014-05-04 22:27:03 @Espyo and then c+p 2014-05-04 22:27:26 @PikFan meh 2014-05-04 22:27:50 @PikFan don't like the first sentence 2014-05-04 22:28:51 @Espyo well, get rid of it 2014-05-04 22:29:07 @PikFan "The Organization Policy regards how articles should be written." 2014-05-04 22:30:28 @PikFan actually, no 2014-05-04 22:30:59 @PikFan "When users write articles, they must follow certain standards and guidelines." 2014-05-04 22:31:08 @PikFan mmm 2014-05-04 22:31:55 @Espyo why not Article Policy? 2014-05-04 22:32:03 @Espyo also I like the 2nd better 2014-05-04 22:32:17 @PikFan ooh, Article Policy 2014-05-04 22:32:20 @PikFan sounds great 2014-05-04 22:34:06 @PikFan (verifying; by 2nd, you meant the 2nd of my sentences?) 2014-05-04 22:37:09 @PikFan also do you want __NOTOC__? 2014-05-04 22:38:06 @PikFan another thing 2014-05-04 22:38:16 @PikFan I feel like there's something... missing 2014-05-04 22:38:44 @PikFan because this policy only covers part of it 2014-05-04 22:38:57 @Espyo (2nd of your sentences) 2014-05-04 22:39:03 @Espyo well, add the rest, of course 2014-05-04 22:39:09 @Espyo my things were just changes 2014-05-04 22:39:20 @Espyo and... maybe add the article examples into subpages? 2014-05-04 22:39:27 @Espyo or maybe shorten them up, I just wrote them as concrete examples 2014-05-04 22:41:59 @PikFan also, I never really got the example infobox thingy 2014-05-04 22:42:21 @PikFan doesn't look like an infobox to me 2014-05-04 22:44:09 @Espyo what infobox? 2014-05-04 22:44:13 @Espyo I never wrote any infobox 2014-05-04 22:44:27 @PikFan the last section, "Example of a game infobox" 2014-05-04 22:45:00 @PikFan [[f:Topic:Big changes#Example of a game infobox]] 2014-05-04 22:45:00 Testyo "Topic:Big_changes#Example_of_a_game_infobox" article = http://www.pikminfanon.com/index.php?title=Topic:Big_changes#Example_of_a_game_infobox 2014-05-04 22:45:18 @Espyo ...oops 2014-05-04 22:45:26 @Espyo that's most definitely NOT an "infobox" 2014-05-04 22:45:34 @PikFan :| 2014-05-04 22:46:34 @PikFan were you meaning something like this? [[Template:PCW]] 2014-05-04 22:46:35 Testyo "Template:PCW" article = http://www.pikminwiki.com/index.php?title=Template:PCW 2014-05-04 22:47:45 @PikFan brb 2014-05-04 22:48:09 @Espyo yeah, like that 2014-05-04 22:48:15 @Espyo but less customized, and less intrusive 2014-05-04 22:48:41 @PikFan mm 2014-05-04 22:48:56 @PikFan random space, okay 2014-05-04 22:50:21 @PikFan [[f:PikminFanon:Article Policy]] how's that? 2014-05-04 22:50:21 Testyo "PikminFanon:Article_Policy" article = http://www.pikminfanon.com/index.php?title=PikminFanon:Article_Policy 2014-05-04 22:50:59 @PikFan will probably be expanding on it 2014-05-04 22:51:44 @Espyo woah, we need to remove the "you"s 2014-05-04 22:55:15 Testyo [Fanon RC] PikminFanon:Article Polic... by PikFan23 (+6053 N this is the start of the Article Policy) http://www.pikminfanon.com/index.php?title=PikminFanon:Article_Policy&curid=8797&diff=44306&oldid=0 2014-05-04 22:56:38 @PikFan it's fine 2014-05-04 22:59:41 @Espyo it has to be in a neutral POV 2014-05-04 23:00:17 Testyo [Fanon RC] PikminFanon:Policy by PikFan23 (+83 add Article Policy) http://www.pikminfanon.com/index.php?title=PikminFanon:Policy&curid=5300&diff=44307&oldid=39390 2014-05-04 23:08:40 @PikFan true 2014-05-04 23:09:47 -- UltraMario is now known as UltraSOPHIAIII 2014-05-04 23:37:44 @PikFan brb 2014-05-04 23:37:47 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-04 23:37:58 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-04 23:37:58 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-04 23:40:27 Testyo [Fanon RC] Template:PCC by Bioman223 (+432 N Created page with "{|style="padding: 8px; background-color: #FF0000; border: 1px...) http://www.pikminfanon.com/index.php?title=Template:PCC&curid=8798&diff=44308&oldid=0 2014-05-04 23:40:27 Testyo [Fanon RC] Template:PCC by Bioman223 (+35) http://www.pikminfanon.com/index.php?title=Template:PCC&curid=8798&diff=44309&oldid=44308 2014-05-04 23:40:27 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-04 23:42:55 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-05-04 23:45:29 Testyo [Fanon RC] Soilder Droneule by Bioman223 (+59 m) http://www.pikminfanon.com/index.php?title=Soilder_Droneule&curid=8794&diff=44311&oldid=44295 2014-05-04 23:45:29 Testyo [Fanon RC] Corrosive Droneule by Bioman223 (+67) http://www.pikminfanon.com/index.php?title=Corrosive_Droneule&curid=8795&diff=44312&oldid=44296 2014-05-04 23:45:29 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-04 23:48:01 @Espyo ...just as we were creating a catch-all box... 2014-05-04 23:48:11 Meisterbot what 2014-05-04 23:48:39 @Espyo one of the things in the new policy is to have just one box that means that the content is from a certain game 2014-05-04 23:48:47 @Espyo to avoid, amongst other things, having so many boxes for that 2014-05-04 23:48:50 Meisterbot ok 2014-05-04 23:48:54 @Espyo and Bioman223 created one just now 2014-05-04 23:49:02 Meisterbot yeah 2014-05-04 23:49:05 Meisterbot so? 2014-05-04 23:49:26 @Espyo so, it's pointless 2014-05-04 23:49:30 @Espyo we'll only use the global box 2014-05-04 23:49:32 @Espyo not these custom boxes 2014-05-04 23:49:32 Meisterbot ok 2014-05-04 23:49:55 Meisterbot wait, where is the global box? 2014-05-04 23:50:30 Testyo [Fanon RC] Pikmin: Corporate Combat by Bioman223 (+8 m) http://www.pikminfanon.com/index.php?title=Pikmin:_Corporate_Combat&curid=8796&diff=44314&oldid=44313 2014-05-04 23:50:30 Testyo [Fanon RC] Template:PCC by Bioman223 (-35) http://www.pikminfanon.com/index.php?title=Template:PCC&curid=8798&diff=44315&oldid=44309 2014-05-04 23:50:49 @Espyo not made yet 2014-05-04 23:50:51 Meisterbot k 2014-05-05 00:47:50 -- UltraSOPHIAIII is now known as UltraMario 2014-05-05 01:05:54 Testyo [Fanon RC] Impaling Droneule by Bioman223 (-8) http://www.pikminfanon.com/index.php?title=Impaling_Droneule&curid=8792&diff=44316&oldid=44310 2014-05-05 01:05:55 Testyo [Fanon RC] Template:PCC by Bioman223 (+58) http://www.pikminfanon.com/index.php?title=Template:PCC&curid=8798&diff=44317&oldid=44315 2014-05-05 01:10:56 Testyo [Fanon RC] Corrosive Droneule by Bioman223 (-8 m) http://www.pikminfanon.com/index.php?title=Corrosive_Droneule&curid=8795&diff=44318&oldid=44312 2014-05-05 01:10:57 Testyo [Fanon RC] Impaling Droneule by Bioman223 (+8) http://www.pikminfanon.com/index.php?title=Impaling_Droneule&curid=8792&diff=44319&oldid=44316 2014-05-05 01:10:57 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-05 02:26:23 Testyo [Fanon RC] Template:PCC by Bioman223 (0 m) http://www.pikminfanon.com/index.php?title=Template:PCC&curid=8798&diff=44321&oldid=44317 2014-05-05 02:35:25 <-- Espyo (Mibbit@k24-294-23-313.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-05 02:35:32 <-- Testyo (Testyo@k24-294-23-313.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-05-05 03:01:09 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has quit 2014-05-05 03:46:19 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-05 04:32:39 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-05 06:51:02 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2014-05-05 07:43:11 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Ping timeout: 245 seconds) 2014-05-05 11:15:30 --> Espyo (Mibbit@d50-124-46-625.cpe.netcabo.pt) has joined #pikipedia 2014-05-05 11:15:30 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-05 11:34:42 --> Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has joined #pikipedia 2014-05-05 11:44:45 Testyo [Fanon RC] Greeting Hole by Bioman223 (+368 N Created page with "{{PCC}} {{Infobox Cave |location=Calm Plains |sublevels=3 |tr...) http://www.pikminfanon.com/index.php?title=Greeting_Hole&curid=8801&diff=44326&oldid=0 2014-05-05 11:44:46 Testyo [Fanon RC] Greeting Hole by Bioman223 (+94 m) http://www.pikminfanon.com/index.php?title=Greeting_Hole&curid=8801&diff=44327&oldid=44326 2014-05-05 11:54:51 Testyo [Fanon RC] Greeting Hole by Bioman223 (+198 m) http://www.pikminfanon.com/index.php?title=Greeting_Hole&curid=8801&diff=44328&oldid=44327 2014-05-05 11:54:51 Testyo [Fanon RC] User:Xtarhaven by Xtarhaven (+52 m) http://www.pikminfanon.com/index.php?title=User:Xtarhaven&curid=8789&diff=44329&oldid=44281 2014-05-05 12:05:01 Testyo [Fanon RC] Beast Cave by Bioman223 (+736 N Created page with "{{PCC}} {{Infobox Cave |location=Calm Plains |sublevels=5 |tr...) http://www.pikminfanon.com/index.php?title=Beast_Cave&curid=8802&diff=44330&oldid=0 2014-05-05 12:20:10 Testyo [Fanon RC] Aroma Arena by Bioman223 (+803 N Created page with "{{PCC}} {{Infobox Cave |location=Calm Plains |sublevels=7 |tr...) http://www.pikminfanon.com/index.php?title=Aroma_Arena&curid=8803&diff=44331&oldid=0 2014-05-05 12:25:13 Testyo [Fanon RC] Aroma Arena by Bioman223 (+86 m) http://www.pikminfanon.com/index.php?title=Aroma_Arena&curid=8803&diff=44332&oldid=44331 2014-05-05 15:01:40 Testyo [Fanon RC] User talk:Xtarhaven by Peach Bulborb (+62) http://www.pikminfanon.com/index.php?title=User_talk:Xtarhaven&curid=8790&diff=44333&oldid=44282 2014-05-05 15:01:40 Testyo [Fanon RC] User talk:Xtarhaven by Peach Bulborb (+73 m changed wording slightly (I really gotta use the preview...)) http://www.pikminfanon.com/index.php?title=User_talk:Xtarhaven&curid=8790&diff=44334&oldid=44333 2014-05-05 16:32:28 Testyo [Fanon RC] User:Xtarhaven by Xtarhaven (+223) http://www.pikminfanon.com/index.php?title=User:Xtarhaven&curid=8789&diff=44335&oldid=44329 2014-05-05 18:01:54 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-05 18:33:20 -- irc: disconnected from server 2014-05-05 18:33:32 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-05 18:33:32 -- 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" 2014-05-05 18:33:32 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-05 18:33:32 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-05 18:33:32 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-05 18:33:32 -- Mode #pikipedia [+o J] by ChanServ 2014-05-05 18:33:33 -- Mode #pikipedia [+nt] 2014-05-05 18:33:33 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-05 20:02:03 @J x 2014-05-05 20:02:10 @J ...ignore that 2014-05-05 20:03:42 @Espyo I'm used to it by now 2014-05-05 20:03:47 @Espyo and my suggestion totally worked ever since 2014-05-05 20:03:55 @Espyo also, what's with the 40 ping timeouts per day? 2014-05-05 20:18:50 --> Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has joined #pikipedia 2014-05-05 20:50:49 Testyo [Fanon RC] User:Bioman223 by Bioman223 (+57) http://www.pikminfanon.com/index.php?title=User:Bioman223&curid=8793&diff=44336&oldid=44299 2014-05-05 21:12:18 @J [20:03:55] @Espyo also, what's with the 40 ping timeouts per day? 2014-05-05 21:12:20 @J no idea 2014-05-05 21:12:32 @Espyo that's reassuring 2014-05-05 21:51:15 Testyo [Fanon RC] Maggot Whiskerpillar by Bioman223 (+1196 N Created page with "{{PCC}} {{Infobox enemy |image= |size= |name=Esurientes uteru...) http://www.pikminfanon.com/index.php?title=Maggot_Whiskerpillar&curid=8804&diff=44337&oldid=0 2014-05-05 22:26:29 Testyo [Fanon RC] Drone Colony by Bioman223 (+798 N Created page with "{{PCC}} {{Infobox Cave |location=Calm Plains |sublevels=7 |tr...) http://www.pikminfanon.com/index.php?title=Drone_Colony&curid=8805&diff=44338&oldid=0 2014-05-05 22:36:32 Testyo [Pikipedia RC] User talk:Blueagle1123 by Los Plagas (+883 N Created page with "{{subst:welcome}} -~~~") http://www.pikminwiki.com/index.php?title=User_talk:Blueagle1123&curid=9714&diff=79727&oldid=0 2014-05-05 22:41:34 Testyo [Fanon RC] Flaming Droneule by Bioman223 (+858 N Created page with "{{Infobox enemy |image= |size= |name= Flamma Fucus |family=Dr...) http://www.pikminfanon.com/index.php?title=Flaming_Droneule&curid=8806&diff=44339&oldid=0 2014-05-05 22:46:36 Testyo [Fanon RC] Flaming Droneule by Bioman223 (+46) http://www.pikminfanon.com/index.php?title=Flaming_Droneule&curid=8806&diff=44340&oldid=44339 2014-05-05 22:46:36 Testyo [Fanon RC] Flaming Droneule by Bioman223 (+8) http://www.pikminfanon.com/index.php?title=Flaming_Droneule&curid=8806&diff=44341&oldid=44340 2014-05-05 22:56:24 <-- Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has quit (Quit: Bye everyone!) 2014-05-05 23:01:12 --> Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has joined #pikipedia 2014-05-05 23:09:42 <-- Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has quit (Quit: Bye bye everyone!) 2014-05-05 23:10:10 --> Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has joined #pikipedia 2014-05-05 23:13:41 <-- Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has quit (Client Quit) 2014-05-05 23:13:53 --> Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has joined #pikipedia 2014-05-05 23:15:23 <-- Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has quit (Read error: Connection reset by peer) 2014-05-05 23:17:12 --> Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has joined #pikipedia 2014-05-05 23:23:53 <-- Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has quit (Quit: So long everyone!) 2014-05-05 23:24:18 --> Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has joined #pikipedia 2014-05-05 23:30:00 <-- Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has quit (Quit: Later everyone!) 2014-05-05 23:32:16 @J https://www.youtube.com/watch?v=_WYs3Xxh3XE 2014-05-05 23:33:43 <-- Meisterbot (Meisterbot@fig-396bj638.dyn.optonline.net) has quit 2014-05-05 23:35:12 @Espyo oh yeah, that one 2014-05-05 23:35:14 @Espyo it's amazing 2014-05-05 23:35:28 @Espyo looked like they overcomplicated it though 2014-05-05 23:35:31 @Espyo not the game, the players 2014-05-05 23:41:45 @J http://pmpygame.com/ 2014-05-05 23:41:48 @J what is that 2014-05-05 23:44:55 @Espyo what in the actual... 2014-05-05 23:46:43 @Espyo I'm so hyped for this monstrosity 2014-05-05 23:51:11 @J and with that, I should go 2014-05-05 23:51:13 @J bye 2014-05-05 23:51:29 @Espyo bye 2014-05-05 23:55:28 --> Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has joined #pikipedia 2014-05-06 01:16:08 Testyo [Fanon RC] Lord Droneule by Bioman223 (+190) http://www.pikminfanon.com/index.php?title=Lord_Droneule&curid=8808&diff=44345&oldid=44344 2014-05-06 01:16:09 Testyo [Fanon RC] Lord Droneule by Bioman223 (+1) http://www.pikminfanon.com/index.php?title=Lord_Droneule&curid=8808&diff=44346&oldid=44345 2014-05-06 01:20:56 <-- Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit (Ping timeout: 240 seconds) 2014-05-06 01:21:11 Testyo [Fanon RC] Category:Droneoids by Bioman223 (+35 N Created page with "This family includes the Droneules.") http://www.pikminfanon.com/index.php?title=Category:Droneoids&curid=8809&diff=44347&oldid=0 2014-05-06 01:24:10 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-05-06 01:41:23 Testyo [Fanon RC] Flying Droneule by Bioman223 (+1183 N Created page with "{{PCC}} {{Infobox enemy |image= |size= |name=Quodcumque Fucus...) http://www.pikminfanon.com/index.php?title=Flying_Droneule&curid=8810&diff=44348&oldid=0 2014-05-06 01:41:23 Testyo [Fanon RC] Sneezing Mukal by Bioman223 (+30) http://www.pikminfanon.com/index.php?title=Sneezing_Mukal&curid=8800&diff=44349&oldid=44324 2014-05-06 02:01:33 Testyo [Fanon RC] Camouflaged Droneule by Bioman223 (+1376 N Created page with "{{PCC}} {{Infobox enemy |image= |size= |name=Occultus fucus |...) http://www.pikminfanon.com/index.php?title=Camouflaged_Droneule&curid=8811&diff=44350&oldid=0 2014-05-06 02:03:52 <-- Testyo (Testyo@d50-124-46-625.cpe.netcabo.pt) has quit (Quit: Bye bye everyone!) 2014-05-06 02:14:59 <-- Espyo (Mibbit@d50-124-46-625.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-06 04:58:30 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-06 11:16:58 --> Espyo (Mibbit@f00-124-36-37.cpe.netcabo.pt) has joined #pikipedia 2014-05-06 11:16:58 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-06 11:30:06 --> Testyo (Testyo@f00-124-36-37.cpe.netcabo.pt) has joined #pikipedia 2014-05-06 14:00:35 <-- Testyo (Testyo@f00-124-36-37.cpe.netcabo.pt) has quit (Quit: So long everyone!) 2014-05-06 15:15:41 --> Testyo (Testyo@f00-124-36-37.cpe.netcabo.pt) has joined #pikipedia 2014-05-06 16:31:23 Testyo [Fanon RC] Pikmin 4: Curse of Astrom... by Xtarhaven (+78 /* Areas */ ) http://www.pikminfanon.com/index.php?title=Pikmin_4:_Curse_of_Astromountain&curid=8791&diff=44361&oldid=44283 2014-05-06 18:09:01 Testyo [Fanon RC] List:Pikmin by Kidsy128 (+1) http://www.pikminfanon.com/index.php?title=List:Pikmin&curid=1349&diff=44362&oldid=44212 2014-05-06 18:29:25 Testyo [Fanon RC] User:Kidsy128 by Kidsy128 (+90 N Created page with "{{Sprout}} Hello! I am kidsy128 and I am proud to say that I ...) http://www.pikminfanon.com/index.php?title=User:Kidsy128&curid=8817&diff=44363&oldid=0 2014-05-06 18:32:57 --> Kidsy128 (Mibbit@b-19-70-803-68.hsd0.ma.comcast.net) has joined #pikipedia 2014-05-06 18:33:37 Kidsy128 Anyone want to chat? 2014-05-06 18:34:39 Kidsy128 Wait a minute, someone IS chatting! 2014-05-06 18:37:34 @Espyo hey 2014-05-06 18:37:40 @Espyo I noticed you created an account on Fanon just now 2014-05-06 18:37:41 @Espyo welcome 2014-05-06 18:38:08 @Espyo Testyo isn't really chatting, he's just a bot 2014-05-06 18:38:13 <-- Kidsy128 (Mibbit@b-19-70-803-68.hsd0.ma.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-06 18:38:32 @Espyo ok then 2014-05-06 18:44:48 Testyo [Fanon RC] Pikmin 4: Curse of Astrom... by Xtarhaven (+218 /* Areas */ ) http://www.pikminfanon.com/index.php?title=Pikmin_4:_Curse_of_Astromountain&curid=8791&diff=44364&oldid=44361 2014-05-06 19:40:55 Testyo [Fanon RC] Pikmin 4: Curse of Astrom... by Xtarhaven (+27 m) http://www.pikminfanon.com/index.php?title=Pikmin_4:_Curse_of_Astromountain&curid=8791&diff=44365&oldid=44364 2014-05-06 21:12:14 Testyo [Pikipedia RC] File:Pikmin water reflection.jpg uploaded by Espyo (By using Dolphin's free look mode in ''[[Pikmin (game)|Pikmin]]'', it is possibl...) http://www.pikminwiki.com/index.php?title=File:Pikmin_water_reflection.jpg 2014-05-06 21:17:17 Testyo [Pikipedia RC] Hazard by Espyo (+624 Added fun fact about the water.) http://www.pikminwiki.com/index.php?title=Hazard&curid=911&diff=79729&oldid=79270 2014-05-06 21:22:22 Testyo [Pikipedia RC] Template:Did you know by Espyo (+237 New fact, and made all of them bold the relevant article.) http://www.pikminwiki.com/index.php?title=Template:Did_you_know&curid=1832&diff=79730&oldid=79703 2014-05-06 22:14:32 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-06 22:15:25 Spark there's a bj command? 2014-05-06 22:15:29 Spark that sounds... unfortunate 2014-05-06 22:15:44 @Espyo hehehehe 2014-05-06 22:16:43 @Espyo not my fault that abbreviation is taken 2014-05-06 22:18:06 Testyo [Fanon RC] Frosting Forest by Bioman223 (+567 N Created page with "The Frosting Forest is an area in [[Pikmin: Corporate Combat]...) http://www.pikminfanon.com/index.php?title=Frosting_Forest&curid=8818&diff=44366&oldid=0 2014-05-06 22:23:07 Testyo [Fanon RC] File:Elecric Bloyster.jpg uploaded by Bioman223 http://www.pikminfanon.com/index.php?title=File:Elecric_Bloyster.jpg 2014-05-06 22:33:10 Testyo [Pikipedia RC] Super Smash Bros. 4 by Espyo (+2313 N Created page with "{{Infobox game |name=Super Smash Bros. 4 |image=Smash 4 logo....) http://www.pikminwiki.com/index.php?title=Super_Smash_Bros._4&curid=9716&diff=79731&oldid=0 2014-05-06 22:38:12 Testyo [Pikipedia RC] Super Smash Bros. 4 by Espyo (0 m Oops.) http://www.pikminwiki.com/index.php?title=Super_Smash_Bros._4&curid=9716&diff=79732&oldid=79731 2014-05-06 22:38:12 Testyo [Pikipedia RC] File:Smash 4 logo.png uploaded by Espyo (Official logos for ''[[Super Smash Bros. 4]]''. [[Category:Logos]]) http://www.pikminwiki.com/index.php?title=File:Smash_4_logo.png 2014-05-06 22:38:13 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-06 22:38:13 Testyo [Fanon RC] Electric Bloyster by Bioman223 (+950 N Created page with "{{PCC}} {{Infobox enemy |image=[[File:Elecric Bloyster.jpg]] ...) http://www.pikminfanon.com/index.php?title=Electric_Bloyster&curid=8820&diff=44368&oldid=0 2014-05-06 22:43:14 Testyo [Pikipedia RC] Template:Infobox game by Espyo (+151 Italicized game name, made the Japanese name optional, and added an optional sec...) http://www.pikminwiki.com/index.php?title=Template:Infobox_game&curid=7191&diff=79735&oldid=77030 2014-05-06 22:43:14 Testyo [Pikipedia RC] Template:Infobox game by Espyo (-1 m Hm.) http://www.pikminwiki.com/index.php?title=Template:Infobox_game&curid=7191&diff=79736&oldid=79735 2014-05-06 22:43:14 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-07 00:49:41 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-07 01:06:57 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-07 01:08:36 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-07 01:08:36 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-07 01:08:43 @PikFan . 2014-05-07 01:08:57 @PikFan so I'm going to have to start giving out reminders 2014-05-07 01:09:33 @Espyo hey 2014-05-07 01:09:44 @PikFan http://www.pikminfanon.com/Carbon_Cavern 2014-05-07 01:12:07 @Espyo that could be worse 2014-05-07 01:12:13 @Espyo anyway, the "old policy" template 2014-05-07 01:12:16 @Espyo is that gonna be made? 2014-05-07 01:12:17 @Espyo it should 2014-05-07 02:12:04 <-- Espyo (Mibbit@f00-124-36-37.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-07 02:12:27 <-- Testyo (Testyo@f00-124-36-37.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-05-07 07:29:35 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-07 11:12:22 --> Testyo (Testyo@m48-312-12-12.cpe.netcabo.pt) has joined #pikipedia 2014-05-07 11:16:29 <-- Testyo (Testyo@m48-312-12-12.cpe.netcabo.pt) has quit (Ping timeout: 240 seconds) 2014-05-07 11:17:16 --> Espyo (Mibbit@m48-312-12-12.cpe.netcabo.pt) has joined #pikipedia 2014-05-07 11:17:16 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-07 11:19:14 --> Testyo (Testyo@m48-312-12-12.cpe.netcabo.pt) has joined #pikipedia 2014-05-07 11:19:14 <-- Testyo (Testyo@m48-312-12-12.cpe.netcabo.pt) has quit (Client Quit) 2014-05-07 11:20:23 --> Testyo (Testyo@m48-312-12-12.cpe.netcabo.pt) has joined #pikipedia 2014-05-07 12:51:03 Testyo [Fanon RC] User:Xtarhaven by Xtarhaven (+171 /* Creature ideas */ ) http://www.pikminfanon.com/index.php?title=User:Xtarhaven&curid=8789&diff=44370&oldid=44335 2014-05-07 12:57:23 --> Xtarhaven (Mibbit@qi.JB-SPortlandHS.msln.net) has joined #pikipedia 2014-05-07 12:57:36 <-- Xtarhaven (Mibbit@qi.JB-SPortlandHS.msln.net) has quit (Client Quit) 2014-05-07 13:06:08 Testyo [Pikipedia RC] Super Smash Bros. Brawl by Espyo (+54 m Linked to the sequel.) http://www.pikminwiki.com/index.php?title=Super_Smash_Bros._Brawl&curid=1615&diff=79738&oldid=78671 2014-05-07 13:36:36 Testyo [Pikipedia RC] Super Smash Bros. Brawl by Espyo (+250 m Tiny things.) http://www.pikminwiki.com/index.php?title=Super_Smash_Bros._Brawl&curid=1615&diff=79739&oldid=79738 2014-05-07 13:44:05 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-07 13:46:45 Testyo [Fanon RC] User account Incredibledude2000 created http://www.pikminfanon.com/index.php?title=User:Incredibledude2000 2014-05-07 13:56:06 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Ping timeout: 245 seconds) 2014-05-07 13:56:40 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-07 14:32:41 Testyo [Fanon RC] Pikmin 4: Curse of Astrom... by Xtarhaven (+222) http://www.pikminfanon.com/index.php?title=Pikmin_4:_Curse_of_Astromountain&curid=8791&diff=44371&oldid=44365 2014-05-07 16:04:15 Testyo [Fanon RC] User talk:Incredibledude2... by Peach Bulborb (+74 N Created page with "{{Welcome}} If you need anything, let me know! {{User:Peach ...) http://www.pikminfanon.com/index.php?title=User_talk:Incredibledude2000&curid=8821&diff=44372&oldid=0 2014-05-07 16:09:21 Testyo [Fanon RC] Template:GuildNotice by Peach Bulborb (-33 big changes!) http://www.pikminfanon.com/index.php?title=Template:GuildNotice&curid=7726&diff=44373&oldid=43652 2014-05-07 16:19:28 Testyo [Fanon RC] (log) Lint of Gold by Peach Bulborb (0 Author request: As the big changes are being implemented, I have decided to move...) http://www.pikminfanon.com/index.php?title=Lint_of_Gold&curid=0&diff=0&oldid=0 2014-05-07 16:19:28 Testyo [Fanon RC] (log) Memorial of Fate by Peach Bulborb (0 Author request) http://www.pikminfanon.com/index.php?title=Memorial_of_Fate&curid=0&diff=0&oldid=0 2014-05-07 16:24:33 Testyo [Fanon RC] (log) Professional's Likeness by Peach Bulborb (0 Author request) http://www.pikminfanon.com/index.php?title=Professional's_Likeness&curid=0&diff=0&oldid=0 2014-05-07 16:24:34 Testyo [Fanon RC] (log) Vat of Love by Peach Bulborb (0 Author request) http://www.pikminfanon.com/index.php?title=Vat_of_Love&curid=0&diff=0&oldid=0 2014-05-07 16:24:34 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-07 16:29:35 Testyo [Fanon RC] (log) Slab of Secrets by Peach Bulborb (0 Author request) http://www.pikminfanon.com/index.php?title=Slab_of_Secrets&curid=0&diff=0&oldid=0 2014-05-07 16:29:35 Testyo [Fanon RC] Site of Redemption by Peach Bulborb (+18 removed treasure links) http://www.pikminfanon.com/index.php?title=Site_of_Redemption&curid=6565&diff=44374&oldid=38715 2014-05-07 16:29:35 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-07 16:38:01 --> kronus (Mibbit@w-52-716-84-44.hsd5.co.comcast.net) has joined #pikipedia 2014-05-07 16:38:10 kronus well hi 2014-05-07 16:39:05 <-- kronus (Mibbit@w-52-716-84-44.hsd5.co.comcast.net) has quit (Client Quit) 2014-05-07 19:49:57 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-07 19:50:54 -- UltraMario is now known as UltraMariomework 2014-05-07 20:01:46 -- UltraMariomework is now known as UltraMario 2014-05-07 20:13:24 -- UltraMario is now known as UltraZelda 2014-05-07 20:25:38 @J so, a while back I mentioned SpaceFM, which is the file manager I switched to, and all the crazy stuff you can do 2014-05-07 20:25:46 @J I just discovered 'action context' 2014-05-07 20:26:04 @J for any menu item, you can specify the contexts for which it exists/is enabled 2014-05-07 20:26:14 @J and there are so many options 2014-05-07 20:26:57 @J http://i.imgur.com/DLhDrID.jpg 2014-05-07 20:27:34 @J not sure if I mentioned before, you can edit any menu item, add your own, reorder them, export/import, etc. 2014-05-07 20:27:50 @J set keyboard shortcuts, icons, hotkeys... 2014-05-07 20:27:58 @Espyo wow that's great 2014-05-07 20:28:08 @Espyo but I'm not quite sure about the action context 2014-05-07 20:28:16 @Espyo you mean a context menu for folders and files? 2014-05-07 20:28:19 @Espyo or for menu items? 2014-05-07 20:28:38 @J for menu items, whether they're visible in the context menu 2014-05-07 20:28:43 @J or visible but disabled 2014-05-07 20:28:48 @Espyo ah, right 2014-05-07 20:29:04 @Espyo pretty darn amazing 2014-05-07 20:31:42 @J oh, and I bought/played Antichamber this weekend 2014-05-07 20:32:24 @Espyo Antichamber... 2014-05-07 20:32:28 @Espyo I know I know what it is... 2014-05-07 20:32:33 @Espyo isn't that the one with the mindfuck puzzles? 2014-05-07 20:32:39 @Espyo it's on my Steam wishlist, IIRC 2014-05-07 20:32:49 @J yeah, that's generally how it's described 2014-05-07 20:33:00 @Espyo awesome 2014-05-07 20:33:03 @Espyo any good? 2014-05-07 20:33:31 @J I've played games with better puzzles, but as a whole, it's very good 2014-05-07 20:33:47 @J certainly something everyone should give a go, though there are plenty of people who won't enjoy it 2014-05-07 20:34:04 @Espyo hm, I'd imagine so 2014-05-07 20:34:06 @J it has more lateral-thinking puzzles than I would like (that, is, more than none) 2014-05-07 20:34:56 @J and the whole spatial stuff isn't really as big as people make it sound like it is, or at least it seems that way to me 2014-05-07 20:35:24 @J there's a much more solid/logical puzzle mechanic to do with manipulating small cubes, and that's the part of the game I liked, gameplay-wise 2014-05-07 20:36:30 @J though it's actually quite nice that it has, in a sense, two types of gameplay 2014-05-07 20:36:37 @J keeps it refreshing, or something 2014-05-07 20:38:34 @Espyo can't really remember when was the last time I played a lateral-thinking puzzle 2014-05-07 20:38:44 @Espyo but yeah, it seems fairly decent 2014-05-07 20:38:52 @Espyo now I just need money and time 2014-05-07 20:38:56 @Espyo did you complete it already? 2014-05-07 20:39:04 @J there are a few of the logical puzzles I didn't like because you could solve them by just spending a lot of time doing something simple, which isn't the intended solution 2014-05-07 20:39:11 @J I finished it, but not 100% 2014-05-07 20:39:34 @J you can finish it quite a way before 100%, but I think I did most of it before finishing 2014-05-07 20:39:40 @Espyo oh 2014-05-07 20:41:28 @J it's also fairly non-linear, and it doesn't tell you which rooms you can get past yet and which you can't, which some people like and some people don't 2014-05-07 20:41:46 @Espyo I really like non-linearty in games 2014-05-07 20:41:52 @J when I say lateral-thinking, I just mean anything to which logic doesn't really apply 2014-05-07 20:41:57 @Espyo except when it just gets painfully confusing 2014-05-07 20:42:03 @Espyo oh 2014-05-07 20:42:11 @Espyo I thought you meant like having to keep track of two things at once 2014-05-07 20:42:21 @J like in most adventure games, you end up just clicking everything and trying to combine everything 2014-05-07 20:42:31 @J the solution probably makes sense, but it's mostly trial-and-error 2014-05-07 20:42:43 @Espyo right 2014-05-07 20:42:50 @J okay, I have no idea what you're thinking 2014-05-07 20:43:00 @J not sure if there's a word for that? 2014-05-07 20:43:05 @J multi-tasking, if any 2014-05-07 20:43:20 @Espyo multi-tasking, definitely 2014-05-07 20:43:24 @J hmm 2014-05-07 20:43:28 @Espyo hey, you know, lateral 2014-05-07 20:43:30 @Espyo side-by-side 2014-05-07 20:43:34 @J yeah 2014-05-07 20:43:35 @Espyo mult 2014-05-07 20:43:35 @Espyo *multi 2014-05-07 20:43:53 @J I think the game it most reminds me of is Corrypt, which is free 2014-05-07 20:44:00 @J also Fez 2014-05-07 20:44:23 @J same sort of detached atmosphere, mix of logical and lateral puzzles, non-linear, encouraging exploration 2014-05-07 20:44:43 @J you should probably play Corrypt, though it's a fair amount harder than Antichamber 2014-05-07 20:45:19 @Espyo oh, Corrypt 2014-05-07 20:45:24 @Espyo pretty sure I played this before 2014-05-07 20:45:29 @Espyo or if not, I watched a video 2014-05-07 20:45:54 @Espyo you might've linked me to it after some Ludum Dare 2014-05-07 20:46:31 @J I don't think it's a LD game 2014-05-07 20:48:36 @J wait, looking at his games, I think I met this guy 2014-05-07 20:48:56 @Espyo that'd be pretty nice 2014-05-07 20:53:41 @J ...also one of his games is called O, which I seem to have played before, and one of my games, released in the same month, is called o 2014-05-07 20:54:39 @Espyo hah 2014-05-07 20:54:49 @Espyo yours was about a tiny resolution, wasn't it? 2014-05-07 20:55:03 @J yeahw 2014-05-07 20:55:05 @J ... 2014-05-07 20:55:07 @J *yeah 2014-05-07 20:55:10 @J well, yes and no 2014-05-07 20:55:11 @J but yes 2014-05-07 20:55:13 @J I guess 2014-05-07 20:56:29 @Espyo yeah, just kind of 2014-05-07 21:45:12 -- UltraZelda is now known as UltraMarioBrosCrossover 2014-05-07 22:02:07 Testyo [Fanon RC] User:Xtarhaven by Xtarhaven (+1 m) http://www.pikminfanon.com/index.php?title=User:Xtarhaven&curid=8789&diff=44376&oldid=44370 2014-05-07 22:34:44 <-- Testyo (Testyo@m48-312-12-12.cpe.netcabo.pt) has quit (Quit: Bye everyone!) 2014-05-07 22:35:36 --> Testyo (Testyo@m48-312-12-12.cpe.netcabo.pt) has joined #pikipedia 2014-05-07 22:37:02 <-- Testyo (Testyo@m48-312-12-12.cpe.netcabo.pt) has quit (Client Quit) 2014-05-07 22:37:21 --> Testyo (Testyo@m48-312-12-12.cpe.netcabo.pt) has joined #pikipedia 2014-05-07 23:15:22 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-07 23:21:46 -- UltraMarioBrosCrossover is now known as UltraMario 2014-05-07 23:33:21 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-05-07 23:33:23 --> Ringtailed-Fox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-05-07 23:33:40 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Client Quit) 2014-05-07 23:50:20 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-08 01:40:16 <-- Espyo (Mibbit@m48-312-12-12.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-08 01:40:20 <-- Testyo (Testyo@m48-312-12-12.cpe.netcabo.pt) has quit (Quit: I'm going as well) 2014-05-08 01:49:53 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-08 01:49:53 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-08 03:20:12 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-08 05:30:46 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-05-08 05:30:56 <-- Ringtailed-Fox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2014-05-08 05:31:44 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Client Quit) 2014-05-08 07:11:11 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-08 11:15:36 --> Testyo (Testyo@g22-915-52-986.cpe.netcabo.pt) has joined #pikipedia 2014-05-08 11:44:12 --> Espyo (Mibbit@g22-915-52-986.cpe.netcabo.pt) has joined #pikipedia 2014-05-08 11:44:12 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-08 13:41:59 Testyo [Fanon RC] Pikmin 4: Curse of Astrom... by Xtarhaven (+255 Added a game box) http://www.pikminfanon.com/index.php?title=Pikmin_4:_Curse_of_Astromountain&curid=8791&diff=44384&oldid=44371 2014-05-08 14:32:27 Testyo [Fanon RC] Cherry by Kidsy128 (+289 N Created page with "[[File:cherryfront1.png]]'''Cherry''' is a character in the [...) http://www.pikminfanon.com/index.php?title=Cherry&curid=8824&diff=44385&oldid=0 2014-05-08 14:38:06 Testyo [Fanon RC] Cherry by Kidsy128 (+1 m) http://www.pikminfanon.com/index.php?title=Cherry&curid=8824&diff=44386&oldid=44385 2014-05-08 14:48:12 Testyo [Fanon RC] Cherry by Kidsy128 (+389) http://www.pikminfanon.com/index.php?title=Cherry&curid=8824&diff=44387&oldid=44386 2014-05-08 19:56:49 Testyo [Fanon RC] User talk:PikFan23 by Peach Bulborb (+64 /* Thanks! */ new section) http://www.pikminfanon.com/index.php?title=User_talk:PikFan23&curid=4203&diff=44388&oldid=44065 2014-05-08 19:56:49 Testyo [Fanon RC] (log) List of Pikmin: Invasion ... by Peach Bulborb (0 moving to subpage) http://www.pikminfanon.com/index.php?title=List_of_Pikmin:_Invasion_of_the_Giants_Enemies&curid=0&diff=0&oldid=0 2014-05-08 20:01:51 Testyo [Fanon RC] (log) Pikmin: Invasion of the G... by Peach Bulborb (0 turning to subpage) http://www.pikminfanon.com/index.php?title=Pikmin:_Invasion_of_the_Giants_Unused_Content&curid=0&diff=0&oldid=0 2014-05-08 20:01:51 Testyo [Fanon RC] Pikmin: Invasion of the G... by Peach Bulborb (-8 m /* See Also */ changing to link to actual pages, not redirects) http://www.pikminfanon.com/index.php?title=Pikmin:_Invasion_of_the_Giants&curid=6238&diff=44391&oldid=41373 2014-05-08 20:06:52 Testyo [Fanon RC] Acid Guard by Peach Bulborb (+30) http://www.pikminfanon.com/index.php?title=Acid_Guard&curid=7104&diff=44392&oldid=41159 2014-05-08 20:06:53 Testyo [Fanon RC] Pikmin: Invasion of the G... by Peach Bulborb (-64 /* Pikmin: Invasion of the Giants */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_Invasion_of_the_Giants&curid=6238&diff=44393&oldid=44391 2014-05-08 20:11:54 Testyo [Fanon RC] Talk:Pikmin: Invasion of ... by Peach Bulborb (-14 /* Checklist */ things) http://www.pikminfanon.com/index.php?title=Talk:Pikmin:_Invasion_of_the_Giants&curid=7092&diff=44394&oldid=41275 2014-05-08 20:16:56 Testyo [Fanon RC] Template:Arsonist by Peach Bulborb (0 m) http://www.pikminfanon.com/index.php?title=Template:Arsonist&curid=7227&diff=44395&oldid=36677 2014-05-08 20:16:56 Testyo [Fanon RC] Template:A Cry for Help by Peach Bulborb (+1 m typo) http://www.pikminfanon.com/index.php?title=Template:A_Cry_for_Help&curid=1113&diff=44396&oldid=6508 2014-05-08 22:16:07 -- irc: disconnected from server 2014-05-08 22:16:19 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-08 22:16:19 -- 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" 2014-05-08 22:16:20 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-08 22:16:20 -- Channel #pikipedia: 6 nicks (2 ops, 0 voices, 4 normals) 2014-05-08 22:16:20 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-08 22:16:20 -- Mode #pikipedia [+o J] by ChanServ 2014-05-08 22:16:21 -- Mode #pikipedia [+nt] 2014-05-08 22:16:21 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-08 22:54:10 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-08 23:15:06 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-08 23:20:11 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-08 23:25:10 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-08 23:28:40 Testyo [Fanon RC] Pikmin: Planetary Encount... by Bulborb bro (+4 /* Planets */ ) http://www.pikminfanon.com/index.php?title=Pikmin:_Planetary_Encounters&curid=8740&diff=44397&oldid=44383 2014-05-09 00:42:20 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-09 00:54:57 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-09 00:54:57 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-09 00:55:21 @PikFan ok something happened to my wrinklers 2014-05-09 00:55:45 @PikFan I've been letting these wrinklers suck for a while now, should release 85 quint each 2014-05-09 00:56:00 @PikFan ...instead they will release 5 quad 2014-05-09 00:56:56 @PikFan and I didn't even touch them or anything 2014-05-09 00:57:15 @PikFan gaaaaaaaah 2014-05-09 00:57:42 @PikFan I never remember popping them 2014-05-09 00:57:49 @PikFan so why did they reset 2014-05-09 00:58:08 @PikFan well 850 quintillion cookies just vanished 2014-05-09 00:58:21 @PikFan now I'm frustrated 2014-05-09 01:18:43 @Espyo whaaaa 2014-05-09 01:18:50 @Espyo well, simple 2014-05-09 01:18:58 @Espyo Ctrl + Shift + K 2014-05-09 01:19:09 @Espyo Game.Earn(8500000000(...)000); 2014-05-09 01:19:16 @Espyo can't be bothered to count the 0s 2014-05-09 01:19:19 @PikFan ...are you implying I should cheat them back in 2014-05-09 01:19:28 @Espyo it's not cheating if you deserve it 2014-05-09 01:19:35 @Espyo just make 100% sure you didn't pop them on accident 2014-05-09 01:19:46 @PikFan yeah, I didn't pop them 2014-05-09 01:19:49 @Espyo and make 100% sure they really are releasing 5 quad 2014-05-09 01:19:58 @Espyo and not 4 sex or something 2014-05-09 01:20:09 @Espyo but yeah, cheating is gaining an unfair advantage 2014-05-09 01:20:10 @Espyo that's the definition 2014-05-09 01:20:23 @PikFan well, it was 5 quad when I was going to check them 2014-05-09 01:20:29 @Espyo it's not an unfair advantage, you did your rightful job by farming them, legitimately 2014-05-09 01:20:31 @PikFan now I've just left them 2014-05-09 01:20:45 @Espyo you can pop them after the game saves and close the tab before the game saves again 2014-05-09 01:20:49 @Espyo just to check 2014-05-09 01:20:50 @PikFan and they give 5.58 quint now 2014-05-09 01:20:56 @Espyo or create a backup save 2014-05-09 01:21:01 @Espyo you sure it's not just one troublemaker? 2014-05-09 01:21:12 @PikFan this is how I check: 2014-05-09 01:21:21 @PikFan save, refresh, pop a wrinkler, refresh 2014-05-09 01:21:34 @Espyo yeah, that works 2014-05-09 01:21:44 @PikFan I've been doing that, and cookies haven't been disappearing 2014-05-09 01:21:54 @PikFan and then I checked them again, but they vanished 2014-05-09 01:22:39 @PikFan welp 2014-05-09 01:22:50 @PikFan guess I'll add those cookies then 2014-05-09 01:22:54 @Espyo mhm 2014-05-09 01:23:05 @Espyo back before I reset, my computer crashed a couple of times 2014-05-09 01:23:08 @Espyo and I lost my wrinklers 2014-05-09 01:23:14 @Espyo so I just cheated like 5 quint 2014-05-09 01:23:18 @Espyo which is pretty much what I lost 2014-05-09 01:23:46 @PikFan ok, put in 800 quint, just to be safe 2014-05-09 01:24:36 @Espyo before I go to bed 2014-05-09 01:24:51 @Espyo 'cause I want to see if I can have more energy tomorrow 2014-05-09 01:24:56 @Espyo (energy = more motivation to work on the engine) 2014-05-09 01:24:59 @Espyo I have two things to say 2014-05-09 01:25:03 @Espyo first, I'm writing [[HUD]] 2014-05-09 01:25:03 Testyo "HUD" article = http://www.pikminwiki.com/index.php?title=HUD 2014-05-09 01:25:13 @Espyo I'll need your help to fill in some Pikmin 3 details after 2014-05-09 01:25:22 @PikFan mhm 2014-05-09 01:25:33 @Espyo second 2014-05-09 01:25:42 @Espyo today I finished something on the engine 2014-05-09 01:25:48 @Espyo the areas are made of polygons 2014-05-09 01:25:56 @Espyo and to draw them, I have to separate them in triangles 2014-05-09 01:26:03 @Espyo and to do that, I have to do complex math 2014-05-09 01:26:10 @Espyo I took info from a lot of sites, mashed everything together 2014-05-09 01:26:14 @PikFan what do you mean, 'areas are made of polygons'? 2014-05-09 01:26:26 @Espyo a big, complicated process, prone with human error 2014-05-09 01:26:45 @Espyo just filled with loads of tiny details that I could only imagine would cause infinite headaches and make me really unmotivated over everything crashing 2014-05-09 01:26:52 @Espyo I finally finished assembling everything together 2014-05-09 01:26:53 @PikFan hm 2014-05-09 01:26:54 @Espyo I go to test it 2014-05-09 01:26:55 @Espyo and... 2014-05-09 01:27:01 @Espyo it works perfectly the first time 2014-05-09 01:27:07 @Espyo that is down-right impossible 2014-05-09 01:27:17 @Espyo I've written single lines of stupidly simple code that caused problems 2014-05-09 01:27:29 @Espyo and suddenly I write this complex behemoth and it works fine at first try? 2014-05-09 01:27:31 @Espyo miracle 2014-05-09 01:27:40 @PikFan heh 2014-05-09 01:27:53 @PikFan pure luck 2014-05-09 01:28:00 @Espyo had to be 2014-05-09 01:28:03 @PikFan well, let's try not to jinx it 2014-05-09 01:28:13 @Espyo yeah 2014-05-09 01:28:21 @Espyo so yeah, motivation was meh these past few days 2014-05-09 01:28:24 @Espyo now it's back up 2014-05-09 01:28:27 @Espyo it's like a rollercoaster 2014-05-09 01:28:28 @PikFan mm 2014-05-09 01:28:32 @Espyo the biggest dip happened when I had performance issues 2014-05-09 01:28:40 @Espyo and I'm still /very/ scared about them 2014-05-09 01:28:51 @PikFan I see 2014-05-09 01:28:55 @Espyo but anyway, areas being polygons is more areas being MADE OF polygons 2014-05-09 01:29:11 @Espyo like the tree trunk in TIS is just one 20-sided polygon 2014-05-09 01:29:13 @PikFan yeah 2014-05-09 01:30:39 @Espyo night 2014-05-09 01:30:49 @Espyo (also when I said 20, I meant 20-ish 2014-05-09 01:30:51 @Espyo *) 2014-05-09 01:30:57 @Espyo (probably more like 30 or so) 2014-05-09 01:31:00 @PikFan night 2014-05-09 01:31:01 <-- Espyo (Mibbit@g22-915-52-986.cpe.netcabo.pt) has quit (Quit: sleep) 2014-05-09 01:31:36 Testyo Espyo: uh, just got Gushing grannies by clicking a GC before closing Firefox 2014-05-09 01:31:51 @PikFan oh 2014-05-09 01:31:56 @PikFan nice 2014-05-09 01:32:08 @PikFan how many cookies made with cursors? 2014-05-09 01:32:31 Testyo Espyo: not sure, can't check now anyway 2014-05-09 01:32:33 @PikFan should be at about half of grandmas 2014-05-09 01:32:34 <-- Testyo (Testyo@g22-915-52-986.cpe.netcabo.pt) has quit (Quit: sleep) 2014-05-09 01:45:42 --> Gamefreak75 (NewYokuba@2605:e000:2e44:pnsi:oris:vrui:oqiz:rxuo) has joined #pikipedia 2014-05-09 03:00:26 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-09 03:12:56 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:uinn:tkv:utkz:htkv:knwo) has joined #pikipedia 2014-05-09 03:15:39 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:pnsi:oris:vrui:oqiz:rxuo) has quit (Ping timeout: 250 seconds) 2014-05-09 03:15:39 -- Gamefreak75_ is now known as Gamefreak75 2014-05-09 03:15:45 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-09 03:20:43 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-09 03:25:11 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:njpr:pssz:uinl:qtok:llwl) has joined #pikipedia 2014-05-09 03:28:39 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:uinn:tkv:utkz:htkv:knwo) has quit (Ping timeout: 250 seconds) 2014-05-09 03:28:43 -- Gamefreak75_ is now known as Gamefreak75 2014-05-09 03:30:04 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-09 04:07:58 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:kxxs:nhiv:nsqh:qhjh:vriv) has joined #pikipedia 2014-05-09 04:10:41 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:njpr:pssz:uinl:qtok:llwl) has quit (Ping timeout: 250 seconds) 2014-05-09 04:10:45 -- Gamefreak75_ is now known as Gamefreak75 2014-05-09 04:28:27 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:kxxs:nhiv:nsqh:qhjh:vriv) has quit (Ping timeout: 250 seconds) 2014-05-09 05:05:26 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-09 05:18:39 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-05-09 05:24:11 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-09 05:41:27 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-09 06:02:16 --> Gamefreak75 (NewYokuba@2605:e000:2e44:rrgt:izzp:ws:xorg:xwwv) has joined #pikipedia 2014-05-09 06:41:03 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:rrgt:izzp:ws:xorg:xwwv) has quit (Ping timeout: 250 seconds) 2014-05-09 07:17:08 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-09 08:38:31 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-05-09 08:42:23 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Client Quit) 2014-05-09 11:19:36 --> Testyo (Testyo@d93-368-83-655.cpe.netcabo.pt) has joined #pikipedia 2014-05-09 11:24:12 --> Espyo (Mibbit@d93-368-83-655.cpe.netcabo.pt) has joined #pikipedia 2014-05-09 11:24:12 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-09 14:50:41 Testyo [Pikipedia RC] 2-Player Battle by Espyo (+183 Added a note about the fact that the four queued SPINS is actually correct.) http://www.pikminwiki.com/index.php?title=2-Player_Battle&curid=86&diff=79753&oldid=79514 2014-05-09 15:10:45 Testyo [Pikipedia RC] 2-Player Battle by Espyo (+120 m) http://www.pikminwiki.com/index.php?title=2-Player_Battle&curid=86&diff=79754&oldid=79753 2014-05-09 15:36:02 Testyo [Pikipedia RC] Favorite Gyro Block by Bambifan101 (-7) http://www.pikminwiki.com/index.php?title=Favorite_Gyro_Block&curid=395&diff=79759&oldid=78105 2014-05-09 15:36:02 Testyo [Pikipedia RC] Forum:Index by Bambifan101 (+5) http://www.pikminwiki.com/index.php?title=Forum:Index&curid=3896&diff=79760&oldid=63612 2014-05-09 15:36:02 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-09 15:41:03 Testyo [Pikipedia RC] (log) User:Bambifan101 by Espyo (0 Inserting nonsense/gibberish into pages) http://www.pikminwiki.com/index.php?title=User:Bambifan101&curid=9718&diff=0&oldid=0 2014-05-09 15:41:03 Testyo [Pikipedia RC] Breadbug family by Espyo (+570 m Reverted edits by [[Special:Contributions/Bambifan101|Bambifan101]] ([[User talk...) http://www.pikminwiki.com/index.php?title=Breadbug_family&curid=28&diff=79765&oldid=79757 2014-05-09 15:41:04 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-09 15:58:35 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit 2014-05-09 16:36:22 Testyo [Pikipedia RC] Pikmin (game) by Espyo (+184 m Lol.) http://www.pikminwiki.com/index.php?title=Pikmin_(game)&curid=1223&diff=79769&oldid=79558 2014-05-09 16:36:23 Testyo [Pikipedia RC] Template:Did you know by Espyo (+122 m Adding previous lol.) http://www.pikminwiki.com/index.php?title=Template:Did_you_know&curid=1832&diff=79770&oldid=79730 2014-05-09 16:41:24 Testyo [Pikipedia RC] Pikmin extinction by Espyo (+1883 m It's not referred to with an uppercase E anywhere.) http://www.pikminwiki.com/index.php?title=Pikmin_extinction&curid=1305&diff=79771&oldid=16655 2014-05-09 16:41:24 Testyo [Pikipedia RC] Pikmin Extinction by Espyo (-1875 m Redir.) http://www.pikminwiki.com/index.php?title=Pikmin_Extinction&curid=1131&diff=79772&oldid=77297 2014-05-09 17:06:30 Testyo [Pikipedia RC] Nintendo Land by Espyo (+35 m Italicized title.) http://www.pikminwiki.com/index.php?title=Nintendo_Land&curid=7957&diff=79773&oldid=79111 2014-05-09 17:11:32 Testyo [Pikipedia RC] Stage Debut by Espyo (+33 m Italicized title.) http://www.pikminwiki.com/index.php?title=Stage_Debut&curid=1612&diff=79776&oldid=74245 2014-05-09 17:11:32 Testyo [Pikipedia RC] Stage Debut by Espyo (+12 m More italicizations.) http://www.pikminwiki.com/index.php?title=Stage_Debut&curid=1612&diff=79777&oldid=79776 2014-05-09 17:11:32 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-09 17:16:33 Testyo [Pikipedia RC] Talk:Stage Debut by Espyo (+232 m) http://www.pikminwiki.com/index.php?title=Talk:Stage_Debut&curid=4491&diff=79781&oldid=44084 2014-05-09 17:26:36 Testyo [Pikipedia RC] Carrying by Espyo (+229 m /* Speed */ Hm.) http://www.pikminwiki.com/index.php?title=Carrying&curid=7921&diff=79782&oldid=79527 2014-05-09 17:28:36 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-09 18:16:49 Testyo [Pikipedia RC] HUD by Espyo (+16300 N Created page with "{{game icons|p=y|p2=y|p3=y}} {{image}} {{stub|We need NPC!P...) http://www.pikminwiki.com/index.php?title=HUD&curid=9724&diff=79783&oldid=0 2014-05-09 19:47:31 Testyo [Pikipedia RC] Olimar's Voyage Log by Espyo (+4 m Linked to [[HUD]].) http://www.pikminwiki.com/index.php?title=Olimar's_Voyage_Log&curid=1128&diff=79784&oldid=74099 2014-05-09 19:47:31 Testyo [Pikipedia RC] Pikpik carrot by Espyo (+4 m Linked to [[HUD]].) http://www.pikminwiki.com/index.php?title=Pikpik_carrot&curid=1169&diff=79785&oldid=79639 2014-05-09 19:47:31 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-09 19:52:34 Testyo [Pikipedia RC] Glitches in Pikmin 2 by Espyo (+4 m Linked to [[HUD]].) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_2&curid=8423&diff=79787&oldid=79724 2014-05-09 19:52:34 Testyo [Pikipedia RC] Prototype information by Espyo (+4 m Linked to [[HUD]].) http://www.pikminwiki.com/index.php?title=Prototype_information&curid=7523&diff=79788&oldid=73881 2014-05-09 19:52:34 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-09 19:57:35 Testyo [Pikipedia RC] Prototype Detector by Espyo (-251 m That info was moved to [[HUD]].) http://www.pikminwiki.com/index.php?title=Prototype_Detector&curid=1233&diff=79790&oldid=78200 2014-05-09 19:57:35 Testyo [Pikipedia RC] Prototype Detector by Espyo (+11 m Should probably have a clear there...) http://www.pikminwiki.com/index.php?title=Prototype_Detector&curid=1233&diff=79791&oldid=79790 2014-05-09 19:57:36 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-09 20:02:37 Testyo [Pikipedia RC] Health by Espyo (-1035 m That info was moved to [[HUD]].) http://www.pikminwiki.com/index.php?title=Health&curid=8773&diff=79793&oldid=78635 2014-05-09 20:02:37 Testyo [Pikipedia RC] Radar by Espyo (+47 m Err...) http://www.pikminwiki.com/index.php?title=Radar&curid=8451&diff=79794&oldid=79125 2014-05-09 20:07:15 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-09 20:07:40 Testyo [Pikipedia RC] Challenge Mode (Pikmin 2) by Espyo (+201 m Noted that sprays are shared.) http://www.pikminwiki.com/index.php?title=Challenge_Mode_(Pikmin_2)&curid=58&diff=79795&oldid=79631 2014-05-09 20:14:59 -- UltraMario is now known as UltraLink 2014-05-09 21:35:24 --> SDS2002 (chatzilla@17-37-05-224.dhcp.stls.mo.charter.com) has joined #pikipedia 2014-05-09 21:50:09 -- UltraLink is now known as UltraMarioBrosCrossover 2014-05-09 22:54:53 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-09 22:55:45 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-09 23:10:52 -- UltraMarioBrosCrossover is now known as UltraMario 2014-05-09 23:24:36 -- SDS2002 is now known as Mario 2014-05-09 23:24:52 -- Mario is now known as TVTrash 2014-05-09 23:52:55 Testyo [Pikipedia RC] Bulborb by 173.189.36.146 (+136) http://www.pikminwiki.com/index.php?title=Bulborb&curid=280&diff=79796&oldid=72518 2014-05-09 23:54:55 @Espyo >Bulbasaur 2014-05-09 23:54:58 @Espyo holy hell my sides 2014-05-10 00:00:53 Miles ......lol 2014-05-10 00:02:57 Testyo [Pikipedia RC] Bulborb by Espyo (-136 m Undo revision 79796: This isn't really the right place for it. Also, Bulbasaur i...) http://www.pikminwiki.com/index.php?title=Bulborb&curid=280&diff=79797&oldid=79796 2014-05-10 00:33:11 Testyo [Pikipedia RC] User account Duckman created http://www.pikminwiki.com/index.php?title=User:Duckman 2014-05-10 00:33:11 Testyo [Pikipedia RC] User:Duckman by Duckman (+50 N Created page with "My password is "duckmaniscool"! Seriously, try it!") http://www.pikminwiki.com/index.php?title=User:Duckman&curid=9725&diff=79798&oldid=0 2014-05-10 00:33:11 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-10 00:38:15 Testyo [Pikipedia RC] Super Hitler Bros. Brawl by Duckman (+50 N Created page with "My password is "duckmaniscool"! Seriously, try it!") http://www.pikminwiki.com/index.php?title=Super_Hitler_Bros._Brawl&curid=9728&diff=79808&oldid=0 2014-05-10 00:38:15 Testyo [Pikipedia RC] Icon of Progress by Duckman (-227) http://www.pikminwiki.com/index.php?title=Icon_of_Progress&curid=725&diff=79809&oldid=78133 2014-05-10 00:38:15 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-10 00:43:14 @Espyo ugh 2014-05-10 00:43:16 Testyo [Pikipedia RC] User talk:Jimbo Jambo by Duckman (-1) http://www.pikminwiki.com/index.php?title=User_talk:Jimbo_Jambo&curid=5505&diff=79813&oldid=79812 2014-05-10 00:43:16 Testyo [Pikipedia RC] User talk:Prezintenden by Duckman (+16) http://www.pikminwiki.com/index.php?title=User_talk:Prezintenden&curid=5977&diff=79814&oldid=74658 2014-05-10 00:43:17 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-10 00:48:18 Testyo [Pikipedia RC] User talk:Jimbo Jambo by Espyo (-10 m Reverted edits by [[Special:Contributions/Duckman|Duckman]] ([[User talk:Duckman...) http://www.pikminwiki.com/index.php?title=User_talk:Jimbo_Jambo&curid=5505&diff=79827&oldid=79813 2014-05-10 00:48:18 Testyo [Pikipedia RC] User talk:Prezintenden by Espyo (-16 m Reverted edits by [[Special:Contributions/Duckman|Duckman]] ([[User talk:Duckman...) http://www.pikminwiki.com/index.php?title=User_talk:Prezintenden&curid=5977&diff=79828&oldid=79814 2014-05-10 00:48:18 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-10 01:33:57 Testyo [Pikipedia RC] Smoky Progg by 173.79.104.123 (-2 /* Artwork */) http://www.pikminwiki.com/index.php?title=Smoky_Progg&curid=1681&diff=79832&oldid=77114 2014-05-10 01:39:00 Testyo [Pikipedia RC] Smoky Progg by Espyo (+2 m Undo revision 79832 by [[Special:Contributions/173.79.104.123|173.79.104.123]] (...) http://www.pikminwiki.com/index.php?title=Smoky_Progg&curid=1681&diff=79833&oldid=79832 2014-05-10 02:01:35 <-- Espyo (Mibbit@d93-368-83-655.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-10 02:01:46 <-- Testyo (Testyo@d93-368-83-655.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-05-10 02:47:01 <-- TVTrash (chatzilla@17-37-05-224.dhcp.stls.mo.charter.com) has quit (Ping timeout: 250 seconds) 2014-05-10 03:09:39 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-10 03:09:40 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-10 03:28:43 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-10 04:24:10 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit 2014-05-10 04:25:02 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-10 04:46:39 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit 2014-05-10 04:47:03 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-10 05:04:55 --> Gamefreak75 (NewYokuba@2605:e000:2e44:mmvj:mqmm:injk:prgo:vtmj) has joined #pikipedia 2014-05-10 05:57:09 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:hrlj:rmrx:jkis:mzhw:yvhw) has joined #pikipedia 2014-05-10 05:57:12 <-- Gamefreak75_ (NewYokuba@2605:e000:2e44:hrlj:rmrx:jkis:mzhw:yvhw) has quit (Client Quit) 2014-05-10 05:59:51 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:mmvj:mqmm:injk:prgo:vtmj) has quit (Ping timeout: 250 seconds) 2014-05-10 06:58:51 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-10 09:13:14 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has left #pikipedia 2014-05-10 09:16:50 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-10 11:11:26 --> Testyo (Testyo@i62-432-45-006.cpe.netcabo.pt) has joined #pikipedia 2014-05-10 11:18:18 --> Espyo (Mibbit@i62-432-45-006.cpe.netcabo.pt) has joined #pikipedia 2014-05-10 11:18:18 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-10 11:19:14 <-- Espyo (Mibbit@i62-432-45-006.cpe.netcabo.pt) has quit (Client Quit) 2014-05-10 11:19:57 --> Espyo (Mibbit@i62-432-45-006.cpe.netcabo.pt) has joined #pikipedia 2014-05-10 11:19:57 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-10 11:20:28 <-- Espyo (Mibbit@i62-432-45-006.cpe.netcabo.pt) has quit (Client Quit) 2014-05-10 11:20:56 --> Espyo (Mibbit@i62-432-45-006.cpe.netcabo.pt) has joined #pikipedia 2014-05-10 11:20:56 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-10 13:19:13 @Espyo oh, so Metroid Prime TASes can now be made? 2014-05-10 13:37:35 Miles When I last tried it (a week or two ago) they were still too fast, even with the improvements 2014-05-10 13:37:43 Miles Loads were 2014-05-10 13:39:08 @Espyo http://tasvideos.org/forum/viewtopic.php?p=375376#375376 this was posted two days ago 2014-05-10 13:39:17 @Espyo damn the loading time shenanigans 2014-05-10 13:40:03 Miles I guess they're just not good at testing 2014-05-10 13:40:45 Miles Probably went somewhere along the line of "hey, this door didn't open instantly and I actually had to wait, this feels right" 2014-05-10 13:41:25 @Espyo people are just really hyped for a TAS 2014-05-10 13:41:31 Miles Relatedly trying to hack Prime sucks 2014-05-10 13:41:53 @Espyo you mean file editing, or Cheat Engine? 2014-05-10 13:41:58 Miles File editing 2014-05-10 13:42:26 @Espyo it doesn't use the most common file types, does it 2014-05-10 13:42:41 @Espyo you probably already did, but, did you try the JP version? 2014-05-10 13:43:00 Miles What? 2014-05-10 13:43:10 @Espyo the Japanese version 2014-05-10 13:43:26 Miles I know, why would I try it 2014-05-10 13:43:39 @Espyo just maybe, the files are less compressed? 2014-05-10 13:43:45 @Espyo you know, first version and all 2014-05-10 13:43:51 @Espyo hey, you never know 2014-05-10 13:43:56 Miles ...Prime was made by Retro 2014-05-10 13:43:59 Miles In Texas 2014-05-10 13:44:12 @Espyo err, scratch the "first version" part then 2014-05-10 13:48:33 Miles Anyway 2014-05-10 13:48:42 Miles Made lists of every object in every room 2014-05-10 13:48:51 Miles So I'm slowly going through this https://docs.google.com/spreadsheets/d/1ZgjVlmkKULAtKanQMIfkqA27Na9VjuLS_azBLx-uNxY/edit#gid=0 2014-05-10 13:50:20 @Espyo wow that's detailed 2014-05-10 13:50:22 @Espyo amazing 2014-05-10 13:50:31 @Espyo any sweet discoveries? 2014-05-10 13:51:38 Miles I can probably change a missile refill so it gives me Varia! 2014-05-10 13:51:41 Miles >_> 2014-05-10 13:51:56 Miles As upgrades and refills are really the same thing 2014-05-10 13:52:41 Miles Also Artifact Temple has an unused area teleporter that would send you to itself 2014-05-10 13:54:08 @Espyo oh wow 2014-05-10 16:14:09 @Espyo J 2014-05-10 16:14:13 @Espyo if you're there, I need Python help 2014-05-10 16:29:58 @Espyo solved 2014-05-10 16:36:37 --> Espyo2 (Espyo@i62-432-45-006.cpe.netcabo.pt) has joined #pikipedia 2014-05-10 17:30:42 <-- Espyo2 (Espyo@i62-432-45-006.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-10 18:38:47 --> Espyo2 (Espyo@i62-432-45-006.cpe.netcabo.pt) has joined #pikipedia 2014-05-10 18:39:40 <-- Espyo (Mibbit@i62-432-45-006.cpe.netcabo.pt) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-10 18:40:16 <-- Espyo2 (Espyo@i62-432-45-006.cpe.netcabo.pt) has quit (Client Quit) 2014-05-10 18:40:34 --> Espyo (Mibbit@i62-432-45-006.cpe.netcabo.pt) has joined #pikipedia 2014-05-10 18:40:35 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-10 18:41:08 <-- Espyo (Mibbit@i62-432-45-006.cpe.netcabo.pt) has quit (Client Quit) 2014-05-10 18:41:26 --> Espyo (Espyo@i62-432-45-006.cpe.netcabo.pt) has joined #pikipedia 2014-05-10 18:41:26 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-10 18:43:55 <-- Espyo (Espyo@i62-432-45-006.cpe.netcabo.pt) has quit (Client Quit) 2014-05-10 18:44:22 --> Espyo (Espyo@i62-432-45-006.cpe.netcabo.pt) has joined #pikipedia 2014-05-10 18:44:22 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-10 20:08:51 Testyo [Fanon RC] Pikmin 4: Curse of Astrom... by Xtarhaven (+197 Added the other two extra areas) http://www.pikminfanon.com/index.php?title=Pikmin_4:_Curse_of_Astromountain&curid=8791&diff=44399&oldid=44384 2014-05-10 20:33:57 Testyo [Fanon RC] File:MSspitfire beetle.png uploaded by Xtarhaven (Just a mspaint color over for now) http://www.pikminfanon.com/index.php?title=File:MSspitfire_beetle.png 2014-05-10 20:55:21 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Ping timeout: 256 seconds) 2014-05-10 21:09:24 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-10 21:50:15 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-10 21:50:15 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-10 21:51:00 @PikFan . 2014-05-10 21:51:17 @Espyo hi 2014-05-10 21:51:27 @PikFan Cookie Clicker appears different 2014-05-10 21:51:44 @Espyo nah, that's just Firefox 2014-05-10 21:51:57 @PikFan righ—oh 2014-05-10 21:52:06 @PikFan now it appears normal 2014-05-10 21:52:35 @PikFan so I saw you wrote HUD 2014-05-10 21:52:46 @PikFan you said you needed my help with that, yes? 2014-05-10 21:52:53 @Espyo yeah 2014-05-10 21:52:56 @Espyo basically... 2014-05-10 21:53:00 @Espyo uh, everything P3-related 2014-05-10 21:53:01 @PikFan P3 stuff 2014-05-10 21:57:19 @PikFan uh, let's use this file http://www.pikminwiki.com/images/e/e4/Seesaw_block.jpg 2014-05-10 21:57:47 @PikFan so in the top-left corner there's a bottle of ultra spicy spray, with a number under it 2014-05-10 21:58:07 @Espyo yeah 2014-05-10 21:58:20 @PikFan under the Day icon there's a container of juice, also a number under it 2014-05-10 21:58:36 @Espyo mhm 2014-05-10 21:58:39 @PikFan then the Pikmin numbers are a bit different 2014-05-10 21:59:21 @PikFan the bubble/circle one shows what you want to throw, and how many there are of that person 2014-05-10 21:59:27 @PikFan *who you want to throw 2014-05-10 21:59:44 @PikFan the next box shows how many are in your squad 2014-05-10 21:59:56 @PikFan the last box shows how many are on the field 2014-05-10 22:00:40 @PikFan then the pointer has a number and icon too 2014-05-10 22:00:42 @Espyo yeah, but what about the three "standby Pikmin" icons 2014-05-10 22:00:48 @Espyo pointer? 2014-05-10 22:00:50 @PikFan ...oh, right 2014-05-10 22:00:59 @Espyo oh yeah, the cursor 2014-05-10 22:01:05 @Espyo I should mention the cursor on [[HUD]] 2014-05-10 22:01:05 Testyo "HUD" article = http://www.pikminwiki.com/index.php?title=HUD 2014-05-10 22:01:43 @PikFan we'll include that when I add P3 stuff 2014-05-10 22:01:52 @Espyo fair enough 2014-05-10 22:02:02 @PikFan right, so the standby Pikmin icons 2014-05-10 22:02:41 @PikFan when you cycle through the types in the group, you'll go to the first standby Pikmin 2014-05-10 22:03:04 @PikFan then the next one, etc, until you come back to what you had originally 2014-05-10 22:04:04 @Espyo oh, I see 2014-05-10 22:04:15 @Espyo and the second bubble is the next type you'll pick 2014-05-10 22:04:23 @PikFan yeah 2014-05-10 22:04:46 @PikFan so sometimes, while you're playing, leaders will talk 2014-05-10 22:05:16 @Espyo mhm, that should also be pointed out 2014-05-10 22:05:18 @Espyo at least briefly 2014-05-10 22:05:26 @Espyo we can have stuff like [[Pikmin 3 monologs]] later 2014-05-10 22:05:26 Testyo "Pikmin_3_monologs" article = http://www.pikminwiki.com/index.php?title=Pikmin_3_monologs 2014-05-10 22:05:35 @Espyo but at least we should point out that the monologs appear on-screen 2014-05-10 22:05:40 @PikFan so if they talk, they either pause the game and talk in a primary box at the bottom, or keep the game unpaused and talk in a secondary box near the top 2014-05-10 22:05:54 @Espyo yeah, I saw a couple of fluent monologs 2014-05-10 22:05:58 @Espyo like "Pikmin are dying!" 2014-05-10 22:06:05 @PikFan right 2014-05-10 22:19:47 @PikFan well, Xtarhaven's got the right idea http://www.pikminfanon.com/Pikmin_4:_Curse_of_Astromountain 2014-05-10 22:20:18 @Espyo heh 2014-05-10 22:20:28 @Espyo hm, should we do the template that marks the old style? 2014-05-10 22:20:33 @Espyo we really have to say yes or no 2014-05-10 22:20:47 @Espyo just going "meh, we'll decide later" over and over will lead to us never getting anything done 2014-05-10 23:15:53 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: brb) 2014-05-10 23:16:02 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-10 23:16:03 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-11 02:01:32 Testyo [Pikipedia RC] Distant Tundra by 173.79.104.123 (+381) http://www.pikminwiki.com/index.php?title=Distant_Tundra&curid=9064&diff=79834&oldid=79433 2014-05-11 02:01:32 Testyo [Pikipedia RC] Distant Tundra by 173.79.104.123 (+116) http://www.pikminwiki.com/index.php?title=Distant_Tundra&curid=9064&diff=79835&oldid=79834 2014-05-11 02:06:34 Testyo [Fanon RC] Vanilla Breadbug by Kidsy128 (+370 N Created page with "[[File:VB.jpg]]'''Vanilla Breadbug'''s are a part of the [[Br...) http://www.pikminfanon.com/index.php?title=Vanilla_Breadbug&curid=8826&diff=44401&oldid=0 2014-05-11 02:11:34 Testyo [Pikipedia RC] Brittany by 173.79.104.123 (+333) http://www.pikminwiki.com/index.php?title=Brittany&curid=8301&diff=79836&oldid=79726 2014-05-11 02:24:22 <-- Espyo (Espyo@i62-432-45-006.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-11 02:24:48 <-- Testyo (Testyo@i62-432-45-006.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-11 03:14:12 --> Gamefreak75 (NewYokuba@2605:e000:2e44:iyuh:pxs:wzrn:qllw:zqvy) has joined #pikipedia 2014-05-11 03:29:26 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:uinn:tgwp:mrlw:izyr:sqwn) has joined #pikipedia 2014-05-11 03:31:11 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:iyuh:pxs:wzrn:qllw:zqvy) has quit (Ping timeout: 250 seconds) 2014-05-11 03:31:14 -- Gamefreak75_ is now known as Gamefreak75 2014-05-11 03:54:09 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:uinn:tgwp:mrlw:izyr:sqwn) has quit (Ping timeout: 250 seconds) 2014-05-11 08:41:34 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-05-11 08:57:40 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-11 11:24:39 --> Testyo (Testyo@z36-005-6-808.cpe.netcabo.pt) has joined #pikipedia 2014-05-11 11:29:56 --> Espyo (Espyo@z36-005-6-808.cpe.netcabo.pt) has joined #pikipedia 2014-05-11 11:29:56 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-11 12:39:56 Testyo [Fanon RC] PikminFanon:Ranks by Kidsy128 (+2748 Undo revision 44453 by [[Special:Contributions/FISH ENTHUSIAST|FISH ENTHUSIAST]]...) http://www.pikminfanon.com/index.php?title=PikminFanon:Ranks&curid=213&diff=44475&oldid=44453 2014-05-11 12:44:57 Testyo [Fanon RC] Dark Olimar by Espyo (+12 m Reverted edits by [[Special:Contributions/FISH ENTHUSIAST|FISH ENTHUSIAST]] ([[U...) http://www.pikminfanon.com/index.php?title=Dark_Olimar&curid=432&diff=44526&oldid=44409 2014-05-11 12:44:57 Testyo [Fanon RC] Spelunker's Cavern by Espyo (+738 m Reverted edits by [[Special:Contributions/FISH ENTHUSIAST|FISH ENTHUSIAST]] ([[U...) http://www.pikminfanon.com/index.php?title=Spelunker's_Cavern&curid=6512&diff=44527&oldid=44418 2014-05-11 12:44:58 Testyo [Fanon RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminfanon.com/index.php?title=Special:RecentChanges 2014-05-11 13:02:08 @Espyo honestly, what is up with this retard 2014-05-11 14:05:51 Testyo [Fanon RC] Talk:Spoliontoniumite by Kidsy128 (-19) http://www.pikminfanon.com/index.php?title=Talk:Spoliontoniumite&curid=8834&diff=44531&oldid=44436 2014-05-11 14:26:07 Testyo [Fanon RC] Pikmin Adventures by Kidsy128 (-12) http://www.pikminfanon.com/index.php?title=Pikmin_Adventures&curid=5784&diff=44532&oldid=31521 2014-05-11 14:26:08 Testyo [Fanon RC] Pikmin Adventures by ThePikminMeister (+12 Undo revision 44532 by [[Special:Contributions/Kidsy128|Kidsy128]] ([[User talk:...) http://www.pikminfanon.com/index.php?title=Pikmin_Adventures&curid=5784&diff=44533&oldid=44532 2014-05-11 14:31:11 Testyo [Fanon RC] Vanilla Breadbug by Kidsy128 (0) http://www.pikminfanon.com/index.php?title=Vanilla_Breadbug&curid=8826&diff=44534&oldid=44401 2014-05-11 15:29:37 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit 2014-05-11 16:07:35 Testyo [Fanon RC] (log) FISH ENTHUSIAST by PikFan23 (0 content was: "== FISH ENTHUSIAST == [[User:FISH ENTHUSIAST|FISH ENTHUSIAST]] 05:...) http://www.pikminfanon.com/index.php?title=FISH_ENTHUSIAST&curid=0&diff=0&oldid=0 2014-05-11 18:34:26 @J I tried uzbl today 2014-05-11 18:34:40 @J it's a web browser that does things 2014-05-11 18:34:42 @Espyo sounds weird 2014-05-11 18:34:59 @J it does when I say it like that 2014-05-11 18:35:20 @Espyo dang kids, trying uzbls nowadays 2014-05-11 18:35:28 @Espyo but yeah, what's so special? 2014-05-11 18:35:30 @J so, everything is customisable, and is all in a config file 2014-05-11 18:35:46 @J all the keybindings 2014-05-11 18:35:49 @J event handlers 2014-05-11 18:35:53 @J a lot of the functionality 2014-05-11 18:36:13 @J it works like Vim (I told you about Vimperator the other day, which is similar) 2014-05-11 18:36:28 @J and everything is really simple 2014-05-11 18:36:49 @J so, for example, the history is just a file with date/url/title on each line 2014-05-11 18:36:53 @Espyo hm, nice 2014-05-11 18:36:57 @Espyo but how does it do performance-wise? 2014-05-11 18:37:01 @Espyo doesn't sound very friendly 2014-05-11 18:37:35 @J and in the config file, it defines a command that browses the history by piping the URLs into dmenu, a nice keyboard-driven filtering thing 2014-05-11 18:37:47 @J and you can change that to be whatever you want 2014-05-11 18:38:10 @J you could easily write a script to combine your bookmarks and history before searching 2014-05-11 18:38:19 @Espyo oh, ice 2014-05-11 18:38:20 @Espyo *n 2014-05-11 18:38:25 @J it uses WebKit underneath, so browsing is the same as Chrome, etc. 2014-05-11 18:38:33 @J startup is several times faster, though 2014-05-11 18:38:44 @Espyo hm 2014-05-11 18:39:31 @J to implement tabs, it runs a wrapper program that runs a browser instance in each tab 2014-05-11 18:39:46 @J and you can use/write a different wrapper if you want, or not have tabs at all 2014-05-11 18:41:35 @Espyo speaking of web browsers 2014-05-11 18:41:43 @Espyo did Firefox update to become Chrome on Linux as well? 2014-05-11 18:43:54 @J hmm, not sure 2014-05-11 18:44:11 @Espyo the tabs now look like tabs on a real folder 2014-05-11 18:44:14 @Espyo just like Chrome's 2014-05-11 18:44:27 @Espyo and there's now a button that has all the convenient menus, on the top-right 2014-05-11 18:44:28 @J I use Littlefox, Tree Style Tab, Tab Mix Plus, and some other things that make interface changes harder to notice 2014-05-11 18:44:31 @Espyo just like Chrome 2014-05-11 18:44:40 @Espyo and that button's icon is three horizontal lines 2014-05-11 18:44:42 @Espyo ...just like Chrome 2014-05-11 18:44:47 @J I did notice that the navigation bar become impossible to disable, so I installed an addon for that 2014-05-11 18:45:03 @Espyo why would you disable it? 2014-05-11 18:45:06 @J oh, yeah, there was that button on the navigation bar which I removed 2014-05-11 18:45:16 @J Vimperator shows the URL in its command bar 2014-05-11 18:45:22 @Espyo hm 2014-05-11 18:45:48 @J also, you can (or used to be able to) move all the bits to other toolbars 2014-05-11 18:46:13 @J like, put the URL bit on the bookmarks toolbar and hide the navigation toolbar 2014-05-11 18:46:47 @Espyo you might still be able to 2014-05-11 18:47:04 @Espyo can't check right now, I just disabled my bookmarks bar altogether 2014-05-11 18:47:19 @Espyo and whenever I change the layout of the bars, stuff stops working 2014-05-11 18:47:22 @Espyo uh, bookmarks stop working 2014-05-11 18:47:30 @Espyo that's been happening for ages now, and I stopped caring 2014-05-11 18:47:38 @Espyo not like I change the layout every day 2014-05-11 18:53:52 @J I think I heard the URL field and that new button and reload button are all stuck together now 2014-05-11 18:54:18 @Espyo bleh 2014-05-11 18:55:09 @J I do have curved tabs if I use a new profile, but they're not at the top of the window - File, Edit, etc. are all visible and above them 2014-05-11 18:57:12 @Espyo that's a bit messed up 2014-05-11 18:58:00 @Espyo anyway, I'm using HexChat now 2014-05-11 18:58:17 @Espyo it's pretty neat 2014-05-11 18:58:33 @Espyo dunno if you caught it yesterday, but I asked for Python help 2014-05-11 18:58:43 @Espyo I was writing a script that automatically colored my messages 2014-05-11 18:58:51 @Espyo I did eventually succeed 2014-05-11 18:58:53 @Espyo err, kinda 2014-05-11 18:58:59 @Espyo apparently one of the functions isn't doing what it should 2014-05-11 18:59:02 @Espyo but it's not my fault 2014-05-11 18:59:16 @Espyo it's just not saving my preferences regarding which channels use which color 2014-05-11 18:59:23 @Espyo but at least it can fetch them right, so it could be worse 2014-05-11 18:59:43 @J I have heard about HexChat 2014-05-11 19:00:05 @J never used it, but I think I'd still prefer Q...something on Windows 2014-05-11 19:00:12 @J okay, why can't I remember what it's called? 2014-05-11 19:00:28 @Espyo can't remember any starting with Q 2014-05-11 19:00:50 @J Quassel 2014-05-11 19:01:13 @Espyo woah, I really never heard of that 2014-05-11 19:01:27 @J I'm sure there are loads you've never heard of 2014-05-11 19:02:33 @Espyo well, yeah 2014-05-11 19:02:59 @J anyway, Quassel is nice because you can move all the bits of the GUI around 2014-05-11 19:03:12 @J haven't used it for a few years, though 2014-05-11 19:03:28 @Espyo well, that is nice, but not that important over other features IMO 2014-05-11 19:04:26 @J I guess the fact I don't really remember anything else means it did everything I wanted 2014-05-11 19:04:48 @Espyo heh 2014-05-11 19:06:36 @Espyo all right, listen 2014-05-11 19:06:41 @Espyo nex time you want to do a big game 2014-05-11 19:06:46 @Espyo do NOT make your stages out of polygons 2014-05-11 19:06:57 @Espyo use the good ol' square tile method 2014-05-11 19:07:15 @J stages as in platforms, or levels? 2014-05-11 19:07:20 @Espyo levels 2014-05-11 19:07:27 @Espyo you know, the geometry of a level 2014-05-11 19:07:55 @J having fun? 2014-05-11 19:08:04 @Espyo you have to worry about triangulating the polygons, which means keeping track of the sides of the lines of the polygons, the vertices, have so much auxilary information to make sure performance is tolerable... 2014-05-11 19:08:20 @Espyo right now I'm just copying the source code for Doom Builder and hoping for the best 2014-05-11 19:08:26 @Espyo I hope it's worth it in the end though, at least 2014-05-11 19:10:32 @J what are you even making? 2014-05-11 19:10:47 @J or is it the Pikmin engine? 2014-05-11 19:11:39 @Espyo the engine 2014-05-11 19:11:49 @J collisions with the level boundaries? 2014-05-11 19:11:57 @Espyo more like level boundaries, period 2014-05-11 19:12:15 @Espyo whether it's drawing, checking for collisions, or a level editor 2014-05-11 19:12:20 @Espyo I'm gonna need all these things 2014-05-11 19:13:23 @J okay, that didn't fill me up at all 2014-05-11 19:13:31 @J I'm going to have to cook something else 2014-05-11 19:13:43 @Espyo you just eat and eat and eat 2014-05-11 19:13:44 @Espyo it's incredible 2014-05-11 19:13:55 @J hey, I only eat at dinner time 2014-05-11 19:14:00 @J and the other meals 2014-05-11 19:14:03 @J of which there are only 2 more 2014-05-11 19:14:04 @Espyo and snacls 2014-05-11 19:14:06 @Espyo *snacks 2014-05-11 19:14:17 @J hmm 2014-05-11 19:14:28 @J I don't really have snacks 2014-05-11 19:14:36 @J ...not until after dinner, anyway 2014-05-11 19:15:17 @Espyo you know, the occasional biscuit while a page is loading 2014-05-11 19:16:42 @J hey, just because I live in England doesn't mean snacks means biscuits 2014-05-11 19:16:58 @Espyo snacks aren't biscuits, but biscuits are snacks 2014-05-11 19:17:12 @Espyo I mean... 2014-05-11 19:17:20 @Espyo uh, depends on the EXACT definition of snack 2014-05-11 19:17:24 @Espyo but hey, nobody knows what it is 2014-05-11 19:17:42 @Espyo could mean anything from "food outside of a meal" to "specific pastries" 2014-05-11 19:18:32 @Espyo all right, if I don't do something else for a few minutes, I'll have a mental breakdown 2014-05-11 19:18:49 @Espyo vertices, lines, sides, angles, distances... 2014-05-11 19:18:51 @Espyo ugh, my head hurts 2014-05-11 19:25:46 @Espyo all right, so that spammer that's been posting for the past few days 2014-05-11 19:25:48 @Espyo three accounts in total 2014-05-11 19:25:52 @Espyo any comments on that guy? 2014-05-11 19:40:20 Testyo [Pikipedia RC] Enemy by Espyo (+4 m /* Enemies in Pikmin */ Err.) http://www.pikminwiki.com/index.php?title=Enemy&curid=9482&diff=80143&oldid=79084 2014-05-11 20:30:22 @J I didn't notice anything other than this morning's spam by the one account 2014-05-11 20:30:50 @J I blocked IPs too - did you do that for the previous one? 2014-05-11 20:34:43 @Espyo I did 2014-05-11 20:34:50 @Espyo previous oneS 2014-05-11 20:35:00 @Espyo it also spammed Fanon 2014-05-11 20:36:09 Testyo [Pikipedia RC] MediaWiki:Sitenotice by Greenpickle (-85 that happened ages ago) http://www.pikminwiki.com/index.php?title=MediaWiki:Sitenotice&curid=4574&diff=80144&oldid=77839 2014-05-11 20:36:25 @Espyo pfft 2014-05-11 20:37:50 @J first two could be the same person, but today's seems unrelated 2014-05-11 20:38:33 @Espyo yeah 2014-05-11 20:38:40 @Espyo one thing I noticed 2014-05-11 20:38:48 @Espyo the second one posted its password on its talk page 2014-05-11 20:38:51 @Espyo daring people to log in as him 2014-05-11 20:39:03 @Espyo what do you think? an attempt to get the IP addresses of those who log in? 2014-05-11 20:45:54 @J was it his real password? 2014-05-11 20:46:34 @J and meh, if so, I guess it could've been, but I think it's just as likely just a random thing to do 2014-05-11 20:51:22 Testyo [Pikipedia RC] Fruit by 68.13.32.42 (+45 /* List */) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80145&oldid=79844 2014-05-11 20:51:48 @Espyo dunno if it was 2014-05-11 20:59:44 --> Prezintenden (Mibbit@09-12-261-669-embro.superkabel.de) has joined #pikipedia 2014-05-11 21:12:44 <-- Prezintenden (Mibbit@09-12-261-669-embro.superkabel.de) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-11 21:13:05 --> Prezintenden (Mibbit@09-12-261-669-embro.superkabel.de) has joined #pikipedia 2014-05-11 21:13:10 Prezintenden woops 2014-05-11 21:13:27 Prezintenden i should unplug the keyboard before i start cleaning it 2014-05-11 21:26:33 @J and also maybe make sure you have another one to type with 2014-05-11 21:27:23 Prezintenden bah, i have amazon prime. it's only a day away 2014-05-11 21:30:59 Prezintenden leaving the wiimote face down for a month appears to drain the batteries. guess I'll be playing with the pad today 2014-05-11 21:31:40 Prezintenden hah, nevermind, the stupid wavebird takes AAs 2014-05-11 21:31:51 @Espyo heh, yep 2014-05-11 21:32:18 Spark you silly people with your typed-out laughter 2014-05-11 21:32:42 Prezintenden what's wrong with that? 2014-05-11 21:32:56 Spark acronyms master race 2014-05-11 21:33:24 Prezintenden I'm too 1337 for acronyms 2014-05-11 21:37:19 Prezintenden man do we have any articles on the stupid dlc stuff? i dont mind paying their ridiculous pricing but finding nintendo eshop money here is like trying to buy an endangered species 2014-05-11 21:38:34 @J can't you buy it through the console? 2014-05-11 21:39:03 Prezintenden you can't on 3ds, not sure about wiiu 2014-05-11 21:39:17 Miles Yes you can? 2014-05-11 21:39:57 Spark yeah you can 2014-05-11 21:40:06 Prezintenden in EU? 2014-05-11 21:40:23 Prezintenden i'm pretty certain if you could i would have, but i didnt 2014-05-11 21:41:31 Spark im pretty certain if there was a new chibi robo game i would have bought it, but i didnt 2014-05-11 21:42:21 Prezintenden what kind of comparison is that 2014-05-11 21:42:41 Spark a perfect one 2014-05-11 21:43:01 Prezintenden i'm turning on my wireless just to prove you poopyheads wrong 2014-05-11 21:43:24 Spark your a popey head 2014-05-11 21:44:22 @Espyo popey :O 2014-05-11 21:44:59 Prezintenden you can if you have a visa or master card, which i do not 2014-05-11 21:45:17 Spark but you can 2014-05-11 21:45:18 Spark so HA 2014-05-11 21:45:56 Prezintenden SOMEONE can, but not me, which was what we were talking about 2014-05-11 22:01:28 Miles [16:39:06] you can't on 3ds 2014-05-11 22:01:33 Miles "you" 2014-05-11 22:01:35 Miles Not "I" 2014-05-11 22:12:05 Prezintenden i wave the white flag 2014-05-11 22:17:55 @Espyo https://dl.dropboxusercontent.com/u/47921869/P1%20enemy%20icons.zip thoughts? 2014-05-11 22:25:23 Prezintenden looks good, what's it for? 2014-05-11 22:29:40 @Espyo just to tie in with the existing Piklopedia ones 2014-05-11 22:29:49 @Espyo [[Enemy]] feels stupid with only the P2 section having icons 2014-05-11 22:29:49 Testyo "Enemy" article = http://www.pikminwiki.com/index.php?title=Enemy 2014-05-11 22:35:23 @J the transparency in the Progg is a bit strange 2014-05-11 22:36:14 @Espyo yeah, couldn't decide between black or transparent 2014-05-11 22:52:45 Testyo [Pikipedia RC] Category:Creatures with n... by Prezintenden (-18 m) http://www.pikminwiki.com/index.php?title=Category:Creatures_with_no_known_family&curid=1983&diff=80146&oldid=79122 2014-05-11 23:06:47 Prezintenden *Brittany is a part of France where they believe eating cats brains makes you invisible. 2014-05-11 23:07:52 Testyo [Pikipedia RC] Pyroclasmic Slooch by Prezintenden (+650) http://www.pikminwiki.com/index.php?title=Pyroclasmic_Slooch&curid=9307&diff=80147&oldid=79571 2014-05-11 23:08:07 Prezintenden and with just a little vandalism reversal I have reduced the trivia section of an article by 66%, hm 2014-05-11 23:14:39 @Espyo hah 2014-05-11 23:17:55 Testyo [Pikipedia RC] Fruit by 68.13.32.42 (+1639 /* List */) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80148&oldid=80145 2014-05-11 23:17:55 Testyo [Pikipedia RC] Brittany by Prezintenden (-228 m) http://www.pikminwiki.com/index.php?title=Brittany&curid=8301&diff=80149&oldid=79836 2014-05-11 23:22:56 Testyo [Pikipedia RC] Fruit by 68.13.32.42 (+7) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80150&oldid=80148 2014-05-11 23:22:57 Testyo [Pikipedia RC] Fruit by 68.13.32.42 (+3 /* List */) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80151&oldid=80150 2014-05-11 23:27:58 Testyo [Pikipedia RC] Brittany by Prezintenden (-98 m) http://www.pikminwiki.com/index.php?title=Brittany&curid=8301&diff=80152&oldid=80149 2014-05-11 23:48:03 Testyo [Fanon RC] Breadbug family by Kidsy128 (+56) http://www.pikminfanon.com/index.php?title=Breadbug_family&curid=541&diff=44535&oldid=23745 2014-05-11 23:54:34 <-- Prezintenden (Mibbit@09-12-261-669-embro.superkabel.de) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-12 02:03:22 <-- Espyo (Espyo@z36-005-6-808.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-12 02:04:29 <-- Testyo (Testyo@z36-005-6-808.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-12 11:14:55 --> Testyo (Testyo@e55-120-19-03.cpe.netcabo.pt) has joined #pikipedia 2014-05-12 11:15:32 --> Espyo (Espyo@e55-120-19-03.cpe.netcabo.pt) has joined #pikipedia 2014-05-12 11:15:32 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-12 15:16:55 Testyo [Pikipedia RC] Olimar's Voyage Log by Espyo (-135 m http://tcrf.net/index.php?title=Pikmin&curid=14706&diff=206067&oldid...) http://www.pikminwiki.com/index.php?title=Olimar's_Voyage_Log&curid=1128&diff=80153&oldid=79784 2014-05-12 15:52:22 Testyo [Pikipedia RC] File:Wiimote Dpad left.png uploaded by Espyo (From [[Fanon:Template:Button|Pikmin Fanon]]. [[Category:Button icons]]) http://www.pikminwiki.com/index.php?title=File:Wiimote_Dpad_left.png 2014-05-12 15:52:22 Testyo [Pikipedia RC] File:Wiimote Dpad leftright.png uploaded by Espyo (From [[Fanon:Template:Button|Pikmin Fanon]]. [[Category:Button icons]]) http://www.pikminwiki.com/index.php?title=File:Wiimote_Dpad_leftright.png 2014-05-12 15:52:23 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-12 15:57:25 Testyo [Pikipedia RC] File:Wiimote Home.png uploaded by Espyo (From [[Fanon:Template:Button|Pikmin Fanon]]. [[Category:Button icons]]) http://www.pikminwiki.com/index.php?title=File:Wiimote_Home.png 2014-05-12 15:57:25 Testyo [Pikipedia RC] File:Wiimote Icon.png uploaded by Espyo (From [[Fanon:Template:Button|Pikmin Fanon]]. [[Category:Button icons]]) http://www.pikminwiki.com/index.php?title=File:Wiimote_Icon.png 2014-05-12 15:57:26 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-12 16:02:28 Testyo [Pikipedia RC] File:GCN Dpadup.png uploaded by Espyo (Based on [[Fanon:Template:Button|Pikmin Fanon]]'s buttons. [[Category:Button ic...) http://www.pikminwiki.com/index.php?title=File:GCN_Dpadup.png 2014-05-12 16:02:28 Testyo [Pikipedia RC] File:GCN Dpadupdown.png uploaded by Espyo (Based on [[Fanon:Template:Button|Pikmin Fanon]]'s buttons. [[Category:Button ic...) http://www.pikminwiki.com/index.php?title=File:GCN_Dpadupdown.png 2014-05-12 16:02:28 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-12 16:02:29 Testyo [Fanon RC] Sign up: Gold/Silver/Bron... by Peach Bulborb (+89 m Reverted edits by [[Special:Contributions/Kidsy128|Kidsy128]] ([[User talk:Kidsy...) http://www.pikminfanon.com/index.php?title=Sign_up:_Gold/Silver/Bronze&curid=1106&diff=44537&oldid=44536 2014-05-12 16:07:32 Testyo [Pikipedia RC] Template:Button by Espyo (+11161 N Created page with "{{#switch:{{{1}}}-{{{2}}} |gcn-A= J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-12 19:38:48 -- 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" 2014-05-12 19:38:48 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-12 19:38:48 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-12 19:38:48 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-12 19:38:48 -- Mode #pikipedia [+o J] by ChanServ 2014-05-12 19:38:49 -- Mode #pikipedia [+nt] 2014-05-12 19:38:49 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-12 19:40:22 Testyo [Pikipedia RC] HUD by Espyo (+8 m Adding buttons.) http://www.pikminwiki.com/index.php?title=HUD&curid=9724&diff=80230&oldid=79783 2014-05-12 19:40:22 Testyo [Pikipedia RC] Red Bulborb by Espyo (+27 m Added buttons.) http://www.pikminwiki.com/index.php?title=Red_Bulborb&curid=1184&diff=80231&oldid=80102 2014-05-12 19:40:22 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-12 19:40:34 @Espyo Testyo, pause wiki updaters 2014-05-12 19:40:40 @Espyo Testyo, stop wiki updaters 2014-05-12 19:40:41 Testyo I will now stop fetching the recent changes from the wikis. 2014-05-12 20:10:59 -- irc: disconnected from server 2014-05-12 20:11:10 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-12 20:11:10 -- 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" 2014-05-12 20:11:10 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-12 20:11:10 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-12 20:11:10 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-12 20:11:10 -- Mode #pikipedia [+o J] by ChanServ 2014-05-12 20:11:11 -- Mode #pikipedia [+nt] 2014-05-12 20:11:11 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-12 20:13:50 @Espyo so many ping timeouts 2014-05-12 20:55:17 @Espyo GAAAH 2014-05-12 20:55:17 @Espyo J 2014-05-12 21:26:43 @J only 2 2014-05-12 21:27:31 @J I think it's when my upload is maxed out 2014-05-12 21:42:51 @Espyo never mind those 2014-05-12 21:42:55 @Espyo that spammer came back 2014-05-12 22:56:47 @J did you handle it? 2014-05-12 22:57:02 @Espyo yeah, but I can't delete pages 2014-05-12 22:57:24 @J did you add {{delete}}? 2014-05-12 22:57:25 Testyo "delete" template = http://www.pikminwiki.com/index.php?title=Template:delete 2014-05-12 23:00:04 @J deleted 2014-05-12 23:01:03 @Espyo they're all in order, really 2014-05-12 23:01:33 @J in order? 2014-05-12 23:01:41 @Espyo you know, he created a load of pages at once 2014-05-12 23:01:48 @Espyo so on the recent changes, they're all together 2014-05-12 23:01:55 @J together != in order 2014-05-12 23:02:10 @J but yeah, I just went to contributions, ticked that box to hide reverted stuff 2014-05-12 23:02:25 @Espyo probably this http://www.pikminwiki.com/User:GIVE_ME_YOUR_PASSWORD and the talk page too 2014-05-12 23:02:27 @Espyo to be deleted 2014-05-12 23:02:32 @Espyo oh 2014-05-12 23:02:33 @J meh 2014-05-12 23:02:37 @Espyo eh, right 2014-05-12 23:02:46 @Espyo I hid my edits on the RC 2014-05-12 23:02:49 @J I guess I could, but I don't see it 2014-05-12 23:02:50 @Espyo so it kind of confused me 2014-05-12 23:03:47 @J also, I discovered yesterday that contributions pages have rollback links right there 2014-05-12 23:04:13 @J so I should be able to open every 'rollback' link on the page in tabs, once I have uzbl set up better 2014-05-12 23:04:32 @J instant spam fighting 2014-05-12 23:22:17 @Espyo yup 2014-05-12 23:22:23 @Espyo I use FireGestures 2014-05-12 23:22:34 @Espyo ctrl + draw a path through all links = open all in a new tab 2014-05-12 23:22:37 @Espyo *in new tabs 2014-05-13 01:04:36 <-- Espyo (Espyo@e55-120-19-03.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-13 01:05:57 <-- Testyo (Testyo@e55-120-19-03.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-13 01:17:36 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-13 01:17:36 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-13 02:28:48 <-- Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit (Ping timeout: 245 seconds) 2014-05-13 02:31:07 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-05-13 08:38:27 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-13 11:15:26 --> Testyo (Testyo@e55-120-19-03.cpe.netcabo.pt) has joined #pikipedia 2014-05-13 11:16:05 --> Espyo (Espyo@e55-120-19-03.cpe.netcabo.pt) has joined #pikipedia 2014-05-13 11:16:05 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-13 12:46:04 Testyo [Fanon RC] User talk:New Pikminjp by Kidsy128 (+46 /* A question */ new section) http://www.pikminfanon.com/index.php?title=User_talk:New_Pikminjp&curid=8257&diff=44543&oldid=44132 2014-05-13 14:42:04 Testyo [Fanon RC] Diziplant by Kidsy128 (+99 N Created page with "[[File:Diziplant.png]]a '''Diziplant''' is a rare plant and t...) http://www.pikminfanon.com/index.php?title=Diziplant&curid=8840&diff=44544&oldid=0 2014-05-13 19:30:08 --> UltraMario|WikiWork (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-13 19:39:32 <-- UltraMario|WikiWork (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-13 19:47:49 @J yeah, but that only works with the ones you can see 2014-05-13 19:49:15 --> UltraMario|WikiWork (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-13 19:49:56 @Espyo but can't you see all? 2014-05-13 19:52:12 @J no, you have to scroll if there are a lot 2014-05-13 19:57:32 @Espyo I guess 2014-05-13 20:00:58 UltraMario|WikiWork hi 2014-05-13 20:07:25 @J hey 2014-05-13 20:12:03 -- UltraMario|WikiWork is now known as ToonUltraMario 2014-05-13 20:18:34 @Espyo hi 2014-05-13 20:43:17 -- ToonUltraMario is now known as UltraMarioBrosCrossover 2014-05-13 21:20:52 Testyo [Pikipedia RC] Glitches in Pikmin by Espyo (+17 m Fixed link.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin&curid=8389&diff=80332&oldid=80283 2014-05-13 21:29:41 @J Flash is scary 2014-05-13 21:29:55 @J 'Adobe has released security updates for Adobe Flash Player 13.0.0.206 and earlier versions for Windows and Macintosh and Adobe Flash Player 11.2.202.356 and earlier versions for Linux. These updates address vulnerabilities that could potentially allow an attacker to take control of the affected system.' 2014-05-13 21:30:01 @J I get one of these every month or so 2014-05-13 21:30:58 Testyo [Pikipedia RC] Glitches in Pikmin by Espyo (-1108 m Oh, this doesn't change reds to blues, for instance, it just transforms Mushroom...) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin&curid=8389&diff=80333&oldid=80332 2014-05-13 21:31:27 @Espyo pretty sure 95% of Flash updates are security ones 2014-05-13 21:31:47 @J but 'take control of the affected system' 2014-05-13 21:36:00 Testyo [Pikipedia RC] Glitches in Pikmin by Espyo (+101 m /* Controlling Mushroom Pikmin */ Fixed some info.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin&curid=8389&diff=80334&oldid=80333 2014-05-13 21:36:14 @Espyo yep 2014-05-13 21:36:22 @Espyo well, mostly yep 2014-05-13 21:36:29 @Espyo half yep, half "well, that's different" 2014-05-13 21:51:21 -- UltraMarioBrosCrossover is now known as UltraMario 2014-05-13 22:21:10 Testyo [Pikipedia RC] Glitches in Pikmin by Espyo (+157 m /* Silent whistle */ Added exact timing.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin&curid=8389&diff=80335&oldid=80334 2014-05-13 23:41:36 Testyo [Pikipedia RC] User account Eletroid created http://www.pikminwiki.com/index.php?title=User:Eletroid 2014-05-14 00:08:59 @Espyo ...new account, huh 2014-05-14 00:48:23 <-- Espyo (Espyo@e55-120-19-03.cpe.netcabo.pt) has quit (Read error: Connection reset by peer) 2014-05-14 00:51:18 <-- J (J@o-634.cust-87447.ip.static.uno.uk.net) has quit (Ping timeout: 245 seconds) 2014-05-14 00:51:18 -- irc: disconnected from server 2014-05-14 00:51:29 --> J (J@w-113.cust-16545.ip.static.uno.uk.net) has joined #pikipedia 2014-05-14 00:51:29 -- 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" 2014-05-14 00:51:29 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-14 00:51:29 -- Channel #pikipedia: 7 nicks (1 op, 0 voices, 6 normals) 2014-05-14 00:51:29 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-14 00:51:29 -- Mode #pikipedia [+o J] by ChanServ 2014-05-14 00:51:30 -- Mode #pikipedia [+nt] 2014-05-14 00:51:30 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-14 01:53:54 <-- Testyo (Testyo@e55-120-19-03.cpe.netcabo.pt) has quit (Quit: I'm going too) 2014-05-14 03:25:32 --> Yayer (Mibbit@htd-85-647-686-4.evdo.leapwireless.net) has joined #pikipedia 2014-05-14 03:29:33 <-- Yayer (Mibbit@htd-85-647-686-4.evdo.leapwireless.net) has quit (Client Quit) 2014-05-14 03:30:02 --> Yayer (Mibbit@htd-85-647-686-4.evdo.leapwireless.net) has joined #pikipedia 2014-05-14 03:31:51 <-- Yayer (Mibbit@htd-85-647-686-4.evdo.leapwireless.net) has quit (Client Quit) 2014-05-14 03:32:48 --> Yayer (Mibbit@htd-85-647-686-4.evdo.leapwireless.net) has joined #pikipedia 2014-05-14 03:35:39 <-- Yayer (Mibbit@htd-85-647-686-4.evdo.leapwireless.net) has quit (Client Quit) 2014-05-14 04:28:23 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-14 09:37:12 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-14 11:16:10 --> Espyo (Espyo@f48-313-89-3.cpe.netcabo.pt) has joined #pikipedia 2014-05-14 11:16:10 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-14 12:50:30 --> Testyo (Testyo@f48-313-89-3.cpe.netcabo.pt) has joined #pikipedia 2014-05-14 13:30:20 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-14 16:11:59 Testyo [Fanon RC] User account Glacial Serpent created http://www.pikminfanon.com/index.php?title=User:Glacial_Serpent 2014-05-14 16:48:48 --> Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has joined #pikipedia 2014-05-14 16:49:12 Omegaknight Hello, Chat! 2014-05-14 16:49:52 @Espyo hey 2014-05-14 16:50:58 Omegaknight It has been a long time since I have been here. 2014-05-14 16:52:34 <-- Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has quit (Client Quit) 2014-05-14 16:52:52 --> Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has joined #pikipedia 2014-05-14 16:53:26 Omegaknight Oops, accidentally changed pages. 2014-05-14 16:58:35 <-- Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-14 16:58:36 @Espyo yeah 2014-05-14 17:29:58 --> Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has joined #pikipedia 2014-05-14 17:30:13 Omegaknight Greetings, Testyo! 2014-05-14 17:38:09 <-- Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-14 17:41:25 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-14 20:08:36 Testyo [Pikipedia RC] User account Pikipedia created http://www.pikminwiki.com/index.php?title=User:Pikipedia 2014-05-14 20:08:36 Testyo [Pikipedia RC] User:Pikipedia by Pikipedia (+42 N Created page with "Pikipedia's official account on Pikipedia.") http://www.pikminwiki.com/index.php?title=User:Pikipedia&curid=9815&diff=80336&oldid=0 2014-05-14 20:08:36 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-14 20:13:37 Testyo [Pikipedia RC] User talk:Espyo by Pikipedia (-15 /* Blocked */) http://www.pikminwiki.com/index.php?title=User_talk:Espyo&curid=5393&diff=80339&oldid=80338 2014-05-14 20:13:37 Testyo [Pikipedia RC] User talk:Eletroid by Pikipedia (+449 N Created page with "==Welcome== Welcome to Pikipedia. We hate it that you're here...) http://www.pikminwiki.com/index.php?title=User_talk:Eletroid&curid=9817&diff=80340&oldid=0 2014-05-14 20:13:37 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-14 20:18:38 Testyo [Pikipedia RC] Pikipedia:About by Pikipedia (+65) http://www.pikminwiki.com/index.php?title=Pikipedia:About&curid=1775&diff=80344&oldid=73581 2014-05-14 20:18:39 Testyo [Pikipedia RC] DK wanna banana by Pikipedia (+186 N Created page with "DK wanna banana???? is an official policy on Pikipedia. It's ...) http://www.pikminwiki.com/index.php?title=DK_wanna_banana&curid=9818&diff=80345&oldid=0 2014-05-14 20:18:39 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-14 20:21:28 @Espyo oh ffs 2014-05-14 20:23:40 Testyo [Pikipedia RC] User talk:Bamboozle by Espyo (-227 m Reverted edits by [[Special:Contributions/Pikipedia|Pikipedia]] ([[User talk:Pik...) http://www.pikminwiki.com/index.php?title=User_talk:Bamboozle&curid=9072&diff=80354&oldid=80343 2014-05-14 20:23:40 Testyo [Pikipedia RC] User talk:Adam by Espyo (+651 m Reverted edits by [[Special:Contributions/Pikipedia|Pikipedia]] ([[User talk:Pik...) http://www.pikminwiki.com/index.php?title=User_talk:Adam&curid=7088&diff=80356&oldid=80341 2014-05-14 20:23:41 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-14 20:23:41 Testyo [Fanon RC] User talk:Glacial Serpent by Peach Bulborb (+102 N Created page with "{{Welcome}} If you need anything, [[User talk:Peach Bulborb|...) http://www.pikminfanon.com/index.php?title=User_talk:Glacial_Serpent&curid=8841&diff=44545&oldid=0 2014-05-14 20:34:11 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-14 21:03:51 Testyo [Pikipedia RC] Glitches in Pikmin 2 by Espyo (+511 m /* Boulder jump glitch */ Added frame timing.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_2&curid=8423&diff=80360&oldid=80284 2014-05-14 22:20:35 <-- Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit (Read error: Connection reset by peer) 2014-05-14 22:22:47 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-05-14 22:33:10 --> pikmingirl (Mibbit@epbs937-484-478-79.range982-934.btcentralplus.com) has joined #pikipedia 2014-05-14 22:34:32 pikmingirl hello? 2014-05-14 22:35:30 pikmingirl no one is on any chat....... 2014-05-14 22:36:28 pikmingirl testyo say weegee 2014-05-14 22:36:43 pikmingirl my friend lied to me :( 2014-05-14 22:37:20 <-- pikmingirl (Mibbit@epbs937-484-478-79.range982-934.btcentralplus.com) has quit (Client Quit) 2014-05-14 22:39:44 @Espyo pretty sure there's a rule about being patient 2014-05-14 23:09:08 --> pikpikgirl (Mibbit@epbs937-484-478-79.range982-934.btcentralplus.com) has joined #pikipedia 2014-05-14 23:09:22 * pikpikgirl is lonley 2014-05-14 23:10:17 <-- pikpikgirl (Mibbit@epbs937-484-478-79.range982-934.btcentralplus.com) has quit (Client Quit) 2014-05-14 23:10:48 Testyo [Fanon RC] User account Eletroid created http://www.pikminfanon.com/index.php?title=User:Eletroid 2014-05-14 23:12:18 @Espyo Eletroid again? 2014-05-14 23:18:36 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-14 23:18:46 Omegaknight Hello, Chat! 2014-05-14 23:20:43 @Espyo hey 2014-05-14 23:21:22 Omegaknight How are you? 2014-05-14 23:22:25 @Espyo fine 2014-05-14 23:22:25 @Espyo you? 2014-05-14 23:22:57 Omegaknight Ok, simultaneously working on a English paper. 2014-05-14 23:23:45 @Espyo I'm working on the engine right now 2014-05-14 23:24:23 Omegaknight Cool, how is that coming along? 2014-05-14 23:27:17 @Espyo I'm kinda stressed out with working out the areas 2014-05-14 23:27:22 @Espyo so... much... geometry... 2014-05-14 23:27:41 @Espyo so to chill out a bit, I decided to draw the sprites for the Red Bulborb 2014-05-14 23:29:02 Omegaknight How is that coming along? 2014-05-14 23:29:33 @Espyo surprisingly well 2014-05-14 23:30:07 @Espyo https://dl.dropboxusercontent.com/u/47921869/use5717.png I'm just not happy with its color 2014-05-14 23:31:51 Omegaknight It looks pretty rad. 2014-05-14 23:32:14 @Espyo thanks 2014-05-14 23:32:23 Omegaknight You are welcome. 2014-05-14 23:34:02 Omegaknight That's alot better than I could draw. 2014-05-14 23:35:27 @Espyo it helps if you're using the right tools for the job 2014-05-14 23:35:38 @Espyo with this, I don't draw as much as I just create shapes and mold them 2014-05-14 23:35:47 @Espyo plus, I had a reference picture on the background that I took with an emulator 2014-05-14 23:36:11 @Espyo if I were to draw the Bulborb by eye... uh, I'd probably end up making a weird square doohicky 2014-05-14 23:36:32 Omegaknight Mine would be a blob of red, white, and yellow. 2014-05-14 23:46:29 Testyo [Fanon RC] Topic:How do I get rid of... by Omegaknight (+332 N How do I get rid of a page?) http://www.pikminfanon.com/index.php?title=Topic:How_do_I_get_rid_of_a_page.&curid=8842&diff=44546&oldid=0 2014-05-14 23:47:13 @Espyo you have to ask an admin, pretty much 2014-05-14 23:47:55 Omegaknight Thanks for the information. 2014-05-14 23:50:07 @Espyo you can edit that topic and tell what page you want deleted 2014-05-14 23:50:15 @Espyo then tomorrow or so, an admin will notice it and delete it 2014-05-14 23:57:51 Omegaknight Thanks, and for something completely different, lets talk about food. 2014-05-14 23:59:07 Omegaknight How do you feel about cake? 2014-05-15 00:01:38 Testyo [Fanon RC] Topic:How do I get rid of... by Omegaknight (+82) http://www.pikminfanon.com/index.php?title=Topic:How_do_I_get_rid_of_a_page.&curid=8842&diff=44547&oldid=44546 2014-05-15 00:02:28 @Espyo cake sounds like a good idea 2014-05-15 00:02:30 @Espyo well, not right now 2014-05-15 00:02:35 @Espyo I'm stuffed from the rince meat I eat at dinner 2014-05-15 00:03:49 Omegaknight What is your favorite food? 2014-05-15 00:07:40 @Espyo I'd have to say it's rince meat, actually 2014-05-15 00:13:49 Omegaknight What is rince meat? 2014-05-15 00:16:57 @Espyo you know spaghetti a bolognese? 2014-05-15 00:17:04 Testyo [Fanon RC] User talk:Eletroid by Peach Bulborb (+102 N Created page with "{{Welcome}} If you need anything, [[User talk:Peach Bulborb|...) http://www.pikminfanon.com/index.php?title=User_talk:Eletroid&curid=8843&diff=44548&oldid=0 2014-05-15 00:17:13 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-15 00:17:13 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-15 00:17:23 @Espyo hey 2014-05-15 00:17:31 @Espyo uh, PikFan, could you do me a favor? 2014-05-15 00:17:33 @PikFan altight, what is up with these spammers 2014-05-15 00:17:35 @Espyo and delete that spammer's pages? 2014-05-15 00:17:39 @Espyo yeah, it's the same guy 2014-05-15 00:17:46 @Espyo he's just stubborn 2014-05-15 00:17:47 @PikFan *spammers 2014-05-15 00:17:52 @PikFan ... 2014-05-15 00:17:55 @Espyo no no, it's the same guy over and over 2014-05-15 00:17:57 @Espyo oh, and do me a huge favor 2014-05-15 00:18:03 @PikFan well you know what I meant 2014-05-15 00:18:06 @Espyo do NOT, and I repeat, do NOT pay attention to him 2014-05-15 00:18:09 @Espyo like, seriously 2014-05-15 00:18:17 @PikFan yeah, in a few 2014-05-15 00:18:19 @Espyo limit yourself to blocking him and deleting his pages 2014-05-15 00:18:36 @Espyo if we just delete everything he creates, he'll get bored eventually 2014-05-15 00:18:38 @PikFan I understand, his goal is to make us mad 2014-05-15 00:18:42 @Espyo if, however, we show an-- exactly 2014-05-15 00:18:44 @Espyo I know it's hard 2014-05-15 00:18:48 @PikFan he wants us to react 2014-05-15 00:18:56 @PikFan nah, not really 2014-05-15 00:19:01 @Espyo but not replying saves you patience, it saves you time, and makes him leave 2014-05-15 00:19:06 @Espyo yeah, it's not that hard 2014-05-15 00:19:07 Omegaknight Things just took a turn for a worse. 2014-05-15 00:19:12 @Espyo but it might be in the future if this idiot keeps it up 2014-05-15 00:19:17 @Espyo no worries, it's temporary 2014-05-15 00:19:20 @PikFan it's something I've gotten used to 2014-05-15 00:19:26 @PikFan ohi Omegaknight 2014-05-15 00:19:31 @PikFan long time no see 2014-05-15 00:19:36 @Espyo plus with good ol' Testyo here, I get a warning about him joining at most after 5 minutes 2014-05-15 00:19:51 @Espyo so when I see Testyo update the recent changes, if I see any page with weird changes 2014-05-15 00:19:52 @PikFan right 2014-05-15 00:19:53 @Espyo boom, blocked 2014-05-15 00:20:01 @Espyo also he insists on editing my page 2014-05-15 00:20:06 @Espyo he must be trying to make me upset 2014-05-15 00:20:08 @Espyo heh, good luck 2014-05-15 00:20:16 @Espyo boy, I've been on youtube 2014-05-15 00:20:30 @PikFan must be because you keep banning him :P 2014-05-15 00:20:31 @Espyo two seconds of browsing the comments section of youtube is enough to make the Dalai Lahma mad 2014-05-15 00:20:44 @PikFan *Lama 2014-05-15 00:20:51 @Espyo and if I can already ignore youtube comments, I'm pretty sure I'll never get upset over a silly spammer 2014-05-15 00:20:54 @Espyo (yeah, I wasn't sure) 2014-05-15 00:21:04 @PikFan (ah) 2014-05-15 00:21:10 @Espyo he actually went on Fanon once 2014-05-15 00:21:13 @Espyo strangely, only once 2014-05-15 00:21:21 @PikFan right, fish enthusiast 2014-05-15 00:21:24 @Espyo yeah 2014-05-15 00:21:33 @Espyo I don't think all pages on Fanon are deleted 2014-05-15 00:21:35 @Espyo pages of his, I mean 2014-05-15 00:21:45 @PikFan I think they are 2014-05-15 00:21:51 @Espyo that's why I'm asking you to delete th-- 2014-05-15 00:21:59 @Espyo really? it's just that on Pikipedia he creates like 4 in a row 2014-05-15 00:22:05 @Espyo and I only saw the delete log on Fanon for 1 page 2014-05-15 00:22:11 Testyo [Fanon RC] Topic:How do I get rid of... by Peach Bulborb (+234 left reply) http://www.pikminfanon.com/index.php?title=Topic:How_do_I_get_rid_of_a_page.&curid=8842&diff=44549&oldid=44547 2014-05-15 00:22:11 Testyo [Fanon RC] (log) Pikmin: Ends of Earth/Sea... by Peach Bulborb (0 Author request) http://www.pikminfanon.com/index.php?title=Pikmin:_Ends_of_Earth/Sea/Sky&curid=0&diff=0&oldid=0 2014-05-15 00:22:24 @PikFan I checked the new pages and there was only one page by him 2014-05-15 00:22:34 @PikFan well I'll check again 2014-05-15 00:23:16 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-15 00:23:51 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-15 00:23:51 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-15 00:24:10 @Espyo yeah see, Omegaknight, Peach Bulborb deleted it 2014-05-15 00:24:18 Omegaknight Yes, I have heard of spaghetti a bolgnese. 2014-05-15 00:25:01 @Espyo the meat there is rinced meat 2014-05-15 00:25:15 @PikFan Espyo: I responded in #Testyo because I'm forgetful 2014-05-15 00:25:30 Omegaknight So that's what it's called. 2014-05-15 00:25:38 @Espyo at least I think that's what it's called 2014-05-15 00:26:02 @Espyo oh wait 2014-05-15 00:26:04 @Espyo "ground meat" 2014-05-15 00:26:06 @Espyo that's the term 2014-05-15 00:26:09 @PikFan gah, going to get a physical keyboard 2014-05-15 00:26:31 @Espyo oh, actually, MINCE meat 2014-05-15 00:26:40 @Espyo uh, my bad 2014-05-15 00:26:57 Omegaknight Oh well. 2014-05-15 00:28:04 @Espyo in other, smaller news 2014-05-15 00:28:20 @Espyo this user pikmingirl joined the IRC 2 times 2014-05-15 00:28:27 @Espyo and stayed for like 2 seconds 2014-05-15 00:28:36 @Espyo people always do that, it's amazing 2014-05-15 00:28:53 @PikFan back 2014-05-15 00:29:00 @PikFan and this is MUCH better 2014-05-15 00:29:32 @PikFan and yeah, when I was in #mwchat, people would join/quit all the time 2014-05-15 00:30:02 @Espyo but here, they quit because they think there's nobody here 2014-05-15 00:30:08 @Espyo even though there are 6+ people 2014-05-15 00:30:18 @Espyo and they only stick around for as long as it takes a human to blink, much less react 2014-05-15 00:30:21 Omegaknight But people are there, mostly bots, but still peopel. 2014-05-15 00:30:28 @PikFan ...mostly bots? 2014-05-15 00:30:30 Omegaknight * people 2014-05-15 00:30:50 Omegaknight What is chanserv 2014-05-15 00:30:56 @PikFan ChanServ and Testyo are the only bots 2014-05-15 00:31:01 @PikFan Channel Services 2014-05-15 00:31:02 Omegaknight Oh. 2014-05-15 00:31:10 @PikFan it's a bot run by DarkMyst 2014-05-15 00:31:15 Omegaknight ... The more you know? 2014-05-15 00:31:28 @Espyo hehe 2014-05-15 00:31:34 @Espyo ChanServ gives people op 2014-05-15 00:31:37 <-- Espyo (Espyo@f48-313-89-3.cpe.netcabo.pt) has left #pikipedia 2014-05-15 00:31:37 --> Espyo (Espyo@f48-313-89-3.cpe.netcabo.pt) has joined #pikipedia 2014-05-15 00:31:37 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-15 00:31:54 @Espyo Testyo is my bot; he mostly fetches the recent changes here 2014-05-15 00:32:01 @Espyo but he can do a load of fun features at #Testyo 2014-05-15 00:32:03 @Espyo like games 2014-05-15 00:32:17 Testyo [Fanon RC] Topic:How do I get rid of... by Omegaknight (+61) http://www.pikminfanon.com/index.php?title=Topic:How_do_I_get_rid_of_a_page.&curid=8842&diff=44550&oldid=44549 2014-05-15 00:32:20 @PikFan oh, and thanks for making that button template Espyo 2014-05-15 00:32:21 Omegaknight I know he can do cards against humanity. 2014-05-15 00:32:30 @Espyo oh, np 2014-05-15 00:32:42 @Espyo I added it onto every article I could find that mentioned buttons 2014-05-15 00:32:46 @Espyo and damn, I think it looks great 2014-05-15 00:32:52 @PikFan yes, indeed 2014-05-15 00:33:01 @PikFan especially c-stick directions 2014-05-15 00:33:04 @Espyo we need Wii U buttons, don't we? 2014-05-15 00:33:07 @PikFan Mario Wiki doesn't have that 2014-05-15 00:33:12 @Espyo the C-stick directions are pretty meh IMO 2014-05-15 00:33:17 @Espyo I just did a quick translucent triangle 2014-05-15 00:33:19 @Espyo but it's good enough 2014-05-15 00:33:27 @Espyo I only added them because of [[Easter egg]] 2014-05-15 00:33:28 Testyo "Easter_egg" article = http://www.pikminwiki.com/index.php?title=Easter_egg 2014-05-15 00:33:29 @PikFan I think they're good 2014-05-15 00:34:20 @PikFan ...at least the Wii U is intelligent enough to open a new tab 2014-05-15 00:37:17 Omegaknight Interesting. 2014-05-15 00:38:03 @PikFan Espyo: [[File:Uajdani icon.png]] ? 2014-05-15 00:38:03 Testyo "File:Uajdani_icon.png" article = http://www.pikminwiki.com/index.php?title=File:Uajdani_icon.png 2014-05-15 00:38:46 @Espyo poor Ujadani was lacking [[Enemy#Pikmin 2]] 2014-05-15 00:38:47 Testyo "Enemy#Pikmin_2" article = http://www.pikminwiki.com/index.php?title=Enemy#Pikmin_2 2014-05-15 00:38:54 @PikFan no but 2014-05-15 00:39:01 @PikFan Uajdani 2014-05-15 00:39:04 @Espyo (wrong subpage) 2014-05-15 00:39:06 @Espyo oh, yeah 2014-05-15 00:39:09 @Espyo I made a redir 2014-05-15 00:39:17 @PikFan that's why I pointed it out 2014-05-15 00:39:28 @Espyo it was when I created the actual file 2014-05-15 00:39:30 @Espyo typed too fast 2014-05-15 00:40:24 @Espyo do enemies icons appear on the radar in P3? 2014-05-15 00:43:34 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-15 00:44:02 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-15 00:44:04 Omegaknight Oops 2014-05-15 00:44:18 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-15 00:46:42 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Client Quit) 2014-05-15 00:49:09 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-15 00:49:10 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-15 00:50:50 @Espyo you alive down there? 2014-05-15 00:56:55 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-15 01:00:48 @PikFan no, they don't 2014-05-15 01:01:16 @PikFan though boss enemies have signals emanating from them 2014-05-15 01:03:09 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-15 01:07:16 @Espyo hmm 2014-05-15 01:07:19 @Espyo no icons whatsoever? 2014-05-15 01:07:26 @PikFan nope 2014-05-15 01:07:49 @PikFan only icons are fruit, obstacles, leaders, Pikmin, Onion, and ship 2014-05-15 01:11:36 @Espyo hmm 2014-05-15 01:12:14 @PikFan Pikmin Wiki has the concept arts of P3 creatures 2014-05-15 01:12:21 @PikFan you could try making icons out of those 2014-05-15 01:12:26 @Espyo yeah 2014-05-15 01:12:30 @Espyo but when I get the games 2014-05-15 01:12:33 @Espyo do we have 'em all? 2014-05-15 01:12:38 @Espyo wait, define "Pikmin Wiki" 2014-05-15 01:12:51 @PikFan the old Pikmin wiki on wikia 2014-05-15 01:12:59 @PikFan that's what it's called over there 2014-05-15 01:13:07 @PikFan "Pikmin Wiki" 2014-05-15 01:13:25 @PikFan and what do we have all of? 2014-05-15 01:13:35 @Espyo I thought you meant us 2014-05-15 01:13:50 @PikFan if I meant us I'd use Pikipedia 2014-05-15 01:15:24 @Espyo I guess 2014-05-15 01:15:30 @Espyo but yeah, I will 2014-05-15 01:15:43 @PikFan oh, also 2014-05-15 01:15:58 @PikFan in Pikmin 2, I've almost finished day 567 2014-05-15 01:16:25 @PikFan nearly 1,400 Pikmin have been born today, and I have 1,900+ sprays 2014-05-15 01:16:48 @PikFan *ultra spicy sprays 2014-05-15 01:17:12 @PikFan and I have 49,999 Pikmin 2014-05-15 01:17:16 @PikFan exactly 2014-05-15 01:18:08 @PikFan brb 2014-05-15 01:21:16 @Espyo heh 2014-05-15 01:28:10 @Espyo going to bed now 2014-05-15 01:28:11 @Espyo bye 2014-05-15 01:28:17 <-- Testyo (Testyo@f48-313-89-3.cpe.netcabo.pt) has quit (Quit: So long everyone!) 2014-05-15 01:29:08 <-- Espyo (Espyo@f48-313-89-3.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-15 01:32:23 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-15 01:39:16 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-15 01:39:32 Omegaknight It gets quiet here at night 2014-05-15 01:39:43 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Client Quit) 2014-05-15 05:41:29 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-15 05:50:42 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-15 11:11:12 -- irc: disconnected from server 2014-05-15 11:11:23 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-15 11:11: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" 2014-05-15 11:11:23 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:36:13 2014-05-15 11:11:23 -- Channel #pikipedia: 5 nicks (1 op, 0 voices, 4 normals) 2014-05-15 11:11:23 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-15 11:11:23 -- Mode #pikipedia [+o J] by ChanServ 2014-05-15 11:11:25 -- Mode #pikipedia [+nt] 2014-05-15 11:11:25 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-15 12:12:41 --> Testyo (Testyo@f48-313-89-3.cpe.netcabo.pt) has joined #pikipedia 2014-05-15 12:13:15 --> Espyo (Espyo@f48-313-89-3.cpe.netcabo.pt) has joined #pikipedia 2014-05-15 12:13:15 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-15 14:01:53 -- irc: disconnected from server 2014-05-15 14:02:06 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-15 14:02:06 -- 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" 2014-05-15 14:02:06 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-15 14:02:06 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-15 14:02:06 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-15 14:02:06 -- Mode #pikipedia [+o J] by ChanServ 2014-05-15 14:02:07 -- Mode #pikipedia [+nt] 2014-05-15 14:02:07 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-15 16:04:39 --> WikiGuest (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has joined #pikipedia 2014-05-15 16:04:40 <-- WikiGuest (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has quit (Client Quit) 2014-05-15 16:05:08 --> Glacial_Serpent (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has joined #pikipedia 2014-05-15 16:05:39 Glacial_Serpent Hello, Server! 2014-05-15 16:10:11 Glacial_Serpent Hey Espyo, working on the engine? 2014-05-15 16:10:52 @Espyo hey 2014-05-15 16:10:58 @Espyo I was going to start just now 2014-05-15 16:15:02 Testyo [Fanon RC] User:Glacial Serpent by Glacial Serpent (+160 N Created page with "Hello Pikmin Fanon Wiki! I am Glacial Serpent, the most chill...) http://www.pikminfanon.com/index.php?title=User:Glacial_Serpent&curid=8844&diff=44552&oldid=0 2014-05-15 16:20:07 Testyo [Fanon RC] User:Glacial Serpent by Glacial Serpent (+366) http://www.pikminfanon.com/index.php?title=User:Glacial_Serpent&curid=8844&diff=44553&oldid=44552 2014-05-15 16:21:44 Glacial_Serpent Has anyone here heard of dwarf fortress? 2014-05-15 16:22:01 @Espyo I've heard of it, yeah 2014-05-15 16:23:50 Glacial_Serpent Ok. 2014-05-15 16:33:52 Glacial_Serpent How's the engine coming along? 2014-05-15 16:35:19 @Espyo not much progress since yesterday 2014-05-15 16:49:26 <-- Glacial_Serpent (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-15 18:42:16 --> Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has joined #pikipedia 2014-05-15 18:43:27 Omegaknight Hello, Server! 2014-05-15 18:45:42 <-- Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has quit (Client Quit) 2014-05-15 18:45:49 --> Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has joined #pikipedia 2014-05-15 18:46:17 <-- Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has quit (Client Quit) 2014-05-15 18:46:34 --> Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has joined #pikipedia 2014-05-15 18:52:26 <-- Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-15 20:08:21 --> T3 (T3@24-52-229-137.cable.teksavvy.com) has joined #pikipedia 2014-05-15 20:26:25 --> Gamefreak75 (NewYokuba@2605:e000:2e44:psix:vkyu:tvyr:hzjm:znnq) has joined #pikipedia 2014-05-15 20:53:10 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-15 21:47:43 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:zsii:ojgg:ogyh:mnn:khgs) has joined #pikipedia 2014-05-15 21:50:25 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:psix:vkyu:tvyr:hzjm:znnq) has quit (Ping timeout: 250 seconds) 2014-05-15 21:50:31 -- Gamefreak75_ is now known as Gamefreak75 2014-05-15 21:58:39 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:zsii:ojgg:ogyh:mnn:khgs) has quit (Ping timeout: 250 seconds) 2014-05-15 22:07:15 -- UltraMario is now known as UltraMarioBrosCrossover 2014-05-15 22:51:40 <-- T3 (T3@24-52-229-137.cable.teksavvy.com) has quit 2014-05-16 00:06:22 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-05-16 00:45:46 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-16 00:45:48 Omegaknight Hello 2014-05-16 00:48:10 Omegaknight How is everyone? 2014-05-16 00:53:37 <-- UltraMarioBrosCrossover (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-16 01:04:46 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-16 01:05:52 <-- Espyo (Espyo@f48-313-89-3.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-16 01:05:54 <-- Testyo (Testyo@f48-313-89-3.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-16 01:22:06 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-16 01:22:14 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Client Quit) 2014-05-16 11:24:42 --> Testyo (Testyo@f48-313-89-3.cpe.netcabo.pt) has joined #pikipedia 2014-05-16 11:25:27 --> Espyo (Espyo@f48-313-89-3.cpe.netcabo.pt) has joined #pikipedia 2014-05-16 11:25:28 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-16 15:28:18 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Ping timeout: 240 seconds) 2014-05-16 15:29:41 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-05-16 16:01:24 Testyo [Pikipedia RC] User account Pikmin Wiki created http://www.pikminwiki.com/index.php?title=User:Pikmin_Wiki 2014-05-16 16:05:16 @Espyo nice try 2014-05-16 16:05:33 --> Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has joined #pikipedia 2014-05-16 16:05:43 Omegaknight Hello, Server! 2014-05-16 16:06:02 Omegaknight How is everyone 2014-05-16 16:06:17 @Espyo hi 2014-05-16 16:06:25 Testyo [Pikipedia RC] User talk:Eletroid by Pikmin Wiki (+194) http://www.pikminwiki.com/index.php?title=User_talk:Eletroid&curid=9817&diff=80365&oldid=80361 2014-05-16 16:06:25 Testyo [Pikipedia RC] User talk:Eletroid by Pikmin Wiki (+95) http://www.pikminwiki.com/index.php?title=User_talk:Eletroid&curid=9817&diff=80366&oldid=80365 2014-05-16 16:06:25 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-16 16:07:05 Omegaknight Hello. 2014-05-16 16:11:11 @Espyo Testyo, memo J you forgot this one http://www.pikminwiki.com/Duckman 2014-05-16 16:11:11 Testyo Done, I saved a memo for J saying: you forgot this one http://www.pikminwiki.com/Duckman. 2014-05-16 16:16:24 Omegaknight Is Testyo affected by heartbleed? 2014-05-16 16:19:44 @Espyo lolno 2014-05-16 16:19:54 @Espyo he's just a simple C++ program 2014-05-16 16:19:59 @Espyo barely uses any protocols whatsoever 2014-05-16 16:20:08 @Espyo the memo I saved is just stored in a simple text file 2014-05-16 16:21:49 @Espyo hey, question 2014-05-16 16:21:56 @Espyo why do you have two accounts on Fanon? 2014-05-16 16:23:58 Omegaknight Who? 2014-05-16 16:24:16 @Espyo you 2014-05-16 16:24:26 @Espyo you have Omegaknight and Glacial Serpent 2014-05-16 16:25:11 Omegaknight Because I wanted a new start 2014-05-16 16:25:30 @Espyo hmm 2014-05-16 16:25:42 @Espyo all right, I guess 2014-05-16 16:33:22 <-- Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-16 20:05:40 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-16 20:05:59 -- UltraMario is now known as UltraMarioeSLNONeptunesInsideS 2014-05-16 20:49:41 -- UltraMarioeSLNONeptunesInsideS is now known as UltraMarioBrosCrossover 2014-05-16 21:21:38 --> Gamefreak75 (NewYokuba@2605:e000:2e44:tgjk:pozj:rxwt:pxrj:vslj) has joined #pikipedia 2014-05-16 21:59:55 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:stkh:yhuq:oxor:pxwn:vnop) has joined #pikipedia 2014-05-16 22:02:31 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:tgjk:pozj:rxwt:pxrj:vslj) has quit (Ping timeout: 250 seconds) 2014-05-16 22:02:44 -- Gamefreak75_ is now known as Gamefreak75 2014-05-16 22:22:45 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-16 22:23:06 Omegaknight I'm still not used to Windows 8. 2014-05-16 22:23:52 @Espyo you never will 2014-05-16 22:23:56 @Espyo I've been using it for months now 2014-05-16 22:23:59 @Espyo I still can't use it 2014-05-16 22:24:36 Omegaknight I have been using it for almost a year and I am still not used to it. 2014-05-16 22:31:31 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-16 22:46:09 -- UltraMarioBrosCrossover is now known as UltraMario 2014-05-16 23:13:47 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-16 23:13:59 Omegaknight Hello again, Server! 2014-05-16 23:19:32 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-16 23:40:09 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:rwqy:soyq:hiut:sisk:ptzn) has joined #pikipedia 2014-05-16 23:42:37 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:stkh:yhuq:oxor:pxwn:vnop) has quit (Ping timeout: 250 seconds) 2014-05-16 23:42:39 -- Gamefreak75_ is now known as Gamefreak75 2014-05-17 00:00:18 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:yqyu:nusx:goru:ziki:nxwm) has joined #pikipedia 2014-05-17 00:02:33 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:rwqy:soyq:hiut:sisk:ptzn) has quit (Ping timeout: 250 seconds) 2014-05-17 00:02:33 -- Gamefreak75_ is now known as Gamefreak75 2014-05-17 00:22:24 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:yqyu:nusx:goru:ziki:nxwm) has quit (Quit: nwehehehe) 2014-05-17 00:24:29 -- UltraMario is now known as UltraKamina 2014-05-17 00:54:09 --> Yayer (Mibbit@lbt-42-959-998-932.evdo.leapwireless.net) has joined #pikipedia 2014-05-17 00:56:07 <-- Yayer (Mibbit@lbt-42-959-998-932.evdo.leapwireless.net) has quit (Client Quit) 2014-05-17 01:06:55 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-17 01:07:12 Omegaknight Hello Server 2014-05-17 01:15:51 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 01:34:35 -- UltraKamina is now known as UltraMario 2014-05-17 01:40:45 <-- Espyo (Espyo@f48-313-89-3.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-17 01:40:52 <-- Testyo (Testyo@f48-313-89-3.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-17 01:55:21 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 04:28:34 --> Gamefreak75 (NewYokuba@2605:e000:2e44:olop:mzvr:rysn:swik:wmgs) has joined #pikipedia 2014-05-17 05:04:03 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Read error: Connection reset by peer) 2014-05-17 05:27:43 --> RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has joined #pikipedia 2014-05-17 06:40:33 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:pnsx:tohx:irxz:tnl:jjph) has joined #pikipedia 2014-05-17 06:43:49 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:olop:mzvr:rysn:swik:wmgs) has quit (Ping timeout: 250 seconds) 2014-05-17 06:43:50 -- Gamefreak75_ is now known as Gamefreak75 2014-05-17 06:52:37 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:mhgy:ypq:ppvw:ituq:ztow) has joined #pikipedia 2014-05-17 06:55:31 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:pnsx:tohx:irxz:tnl:jjph) has quit (Ping timeout: 250 seconds) 2014-05-17 06:55:40 -- Gamefreak75_ is now known as Gamefreak75 2014-05-17 08:12:22 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:syuh:ztzs:moym:mywo:njsp) has joined #pikipedia 2014-05-17 08:12:24 <-- Gamefreak75_ (NewYokuba@2605:e000:2e44:syuh:ztzs:moym:mywo:njsp) has quit (Client Quit) 2014-05-17 08:15:41 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:mhgy:ypq:ppvw:ituq:ztow) has quit (Ping timeout: 250 seconds) 2014-05-17 08:56:04 <-- RingtailedFox (Ringtailed@p57-35-8-400.home.cgocable.net) has quit (Quit: Leaving) 2014-05-17 11:10:56 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-17 11:18:09 --> Testyo (Testyo@i24-799-28-826.cpe.netcabo.pt) has joined #pikipedia 2014-05-17 11:18:13 Omegaknight Good morning, Server! 2014-05-17 11:18:24 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 11:18:44 --> Espyo (Espyo@i24-799-28-826.cpe.netcabo.pt) has joined #pikipedia 2014-05-17 11:18:45 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-17 11:18:45 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-17 11:19:00 Omegaknight Good morning, Server! 2014-05-17 11:23:28 @Espyo hi 2014-05-17 11:24:41 Omegaknight Hello. 2014-05-17 11:38:28 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 14:50:47 --> Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has joined #pikipedia 2014-05-17 14:52:01 Omegaknight Hello, Server! 2014-05-17 15:01:31 <-- Omegaknight (Mibbit@jpq-571-990-198-030.triad.res.rr.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 15:49:29 --> Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 15:49:43 Rosey hello 2014-05-17 15:50:18 Rosey testyo? 2014-05-17 15:50:54 @Espyo hey 2014-05-17 15:51:00 Rosey hi 2014-05-17 15:51:23 Rosey how are you? 2014-05-17 15:51:27 @Espyo fine 2014-05-17 15:51:28 @Espyo you? 2014-05-17 15:51:34 Rosey good :) 2014-05-17 15:51:54 Rosey aside im on WiiU so typing takes ages 2014-05-17 15:52:09 @Espyo oh yeah 2014-05-17 15:52:14 @Espyo is it any better than on the Wii? 2014-05-17 15:52:23 Rosey much better 2014-05-17 15:52:28 @Espyo like, do you have to point at the key and press A, or is there a keyboard on the touch screen? 2014-05-17 15:52:34 Rosey due to the touch screen 2014-05-17 15:52:39 @Espyo oh, sweet 2014-05-17 15:52:42 Rosey im on the gamepad 2014-05-17 15:52:51 @Espyo I'm thinking of getting a Wii U soon, but the money... 2014-05-17 15:53:07 Rosey its had a great pice drop 2014-05-17 15:53:18 @Espyo yeah, but even still... 2014-05-17 15:53:26 @Espyo I might just ship it from another country 2014-05-17 15:53:33 @Espyo because here it's more expensive than most other places 2014-05-17 15:53:40 Rosey eh,whatever works for you 2014-05-17 15:53:55 Rosey do you have a NNID? 2014-05-17 15:54:03 @Espyo don't know what that is 2014-05-17 15:54:09 Rosey Miiverse 2014-05-17 15:54:14 @Espyo oh, no 2014-05-17 15:54:20 Rosey ok 2014-05-17 15:54:30 @Espyo does it stand for Nintendo Network ID? 2014-05-17 15:54:36 @Espyo just guessing 2014-05-17 15:54:52 Rosey if I go off,its because my knee hit the gamepad back button 2014-05-17 15:54:58 Rosey and yes 2014-05-17 15:54:59 @Espyo hehe 2014-05-17 15:55:22 @Espyo so yeah, welcome to the chat 2014-05-17 15:55:28 @Espyo it's uh... more or less active 2014-05-17 15:55:28 Rosey thank you 2014-05-17 15:55:36 @Espyo there are always people, but they aren't always necessarily available to talk 2014-05-17 15:55:43 Rosey ok 2014-05-17 15:55:46 @Espyo some just leave their computers on on the chatroom even though they're not there 2014-05-17 15:55:50 @Espyo but more fans come and go throughout the day 2014-05-17 15:56:07 Rosey I know a few commands because I also go on Mario wiki 2014-05-17 15:56:15 Rosey like /nick 2014-05-17 15:56:19 @Espyo right 2014-05-17 15:56:26 Rosey and # 2014-05-17 15:56:32 @Espyo there's a sort of expansive list on the url in the topic 2014-05-17 15:56:42 Rosey ok 2014-05-17 15:57:08 Rosey so.... 2014-05-17 15:57:46 Rosey brb,im going to get a song from youtube 2014-05-17 15:57:56 @Espyo mhm 2014-05-17 15:58:16 Rosey back 2014-05-17 15:58:41 Rosey I love this song :D 2014-05-17 15:58:49 @Espyo which is it? 2014-05-17 15:59:00 Rosey http://www.youtube.com/watch?v=KeIVybmTgWg 2014-05-17 15:59:20 Rosey "ill never forget this song" 2014-05-17 15:59:47 Rosey are you the one making the fan game engine? 2014-05-17 16:00:11 @Espyo yeah 2014-05-17 16:00:16 @Espyo working on it right now, in fact 2014-05-17 16:00:20 @Espyo or trying... 2014-05-17 16:00:22 Rosey hows it going? 2014-05-17 16:00:23 @Espyo ugh, so much geometry 2014-05-17 16:00:25 @Espyo making my head hurt 2014-05-17 16:00:36 @Espyo ah, the Song of Storms 2014-05-17 16:00:41 @Espyo pretty sweet 2014-05-17 16:00:44 Rosey yup 2014-05-17 16:00:55 Rosey speccialy the speed up 2014-05-17 16:01:13 @Espyo is that version also on the video you posted? 2014-05-17 16:01:22 Rosey http://www.youtube.com/watch?v=lxrTW7iyrBU 2014-05-17 16:01:52 Rosey no,its after playing song of storms where you learn it....best area ever.... 2014-05-17 16:02:03 Rosey and theres a round about :D 2014-05-17 16:02:19 @Espyo oh, no, I know that 2014-05-17 16:02:28 @Espyo I asked if that version of the song was also in the video 2014-05-17 16:02:39 @Espyo it's been ages since I played Ocarina of Time, but I still remember parts 2014-05-17 16:03:07 Rosey I got it about 3 Weeks ago 2014-05-17 16:03:16 Rosey with majora's mask 2014-05-17 16:03:26 Rosey on the wii shop channel 2014-05-17 16:03:35 Rosey on my WiiU 2014-05-17 16:04:16 @Espyo ah 2014-05-17 16:04:19 @Espyo enjoying it so far? 2014-05-17 16:04:23 @Espyo heh, you should, they're great 2014-05-17 16:04:25 Rosey yup 2014-05-17 16:04:48 Rosey I prefer majoras mask 2014-05-17 16:04:55 @Espyo same, really 2014-05-17 16:05:07 Rosey wich also has this song 2014-05-17 16:05:09 @Espyo I think it goes places deeper than OoT does 2014-05-17 16:05:19 Rosey yeah... 2014-05-17 16:05:55 Rosey Very few better songs to song of storms 2014-05-17 16:06:40 Rosey http://www.youtube.com/watch?v=2Z4m4lnjxkY ? 2014-05-17 16:06:47 Rosey maybe? 2014-05-17 16:08:19 Rosey Im going to try list songs up there to... 2014-05-17 16:08:25 Rosey you there? 2014-05-17 16:08:47 Rosey http://www.youtube.com/watch?v=y-78CMKME4o 2014-05-17 16:09:40 Rosey *sigh* 2014-05-17 16:11:20 @Espyo yeah, I'm here 2014-05-17 16:11:27 Rosey hi 2014-05-17 16:11:35 @Espyo I just had to take a stroll to clear my mind on the engine 2014-05-17 16:11:39 @Espyo it's really overwhelming 2014-05-17 16:11:44 Rosey do you get paid for it? 2014-05-17 16:11:48 @Espyo heh, no 2014-05-17 16:11:54 @Espyo I couldn't, even if I wanted to 2014-05-17 16:11:58 @Espyo Pikmin belongs to Nintendo 2014-05-17 16:12:02 @Espyo I can't make profit out of that 2014-05-17 16:12:03 Rosey what is the art style? 2014-05-17 16:12:10 Rosey pixel art? 2014-05-17 16:12:15 @Espyo not quite 2014-05-17 16:12:20 @Espyo it's 2D, but smoother than pixel art 2014-05-17 16:12:28 @Espyo I'll show you an example 2014-05-17 16:12:32 @Espyo also, remember to be patient 2014-05-17 16:12:36 @Espyo this isn't so much like a real room 2014-05-17 16:12:41 @Espyo where people are always present and talking 2014-05-17 16:12:47 Rosey ok 2014-05-17 16:12:51 @Espyo if nobody's saying anything for a few minutes, it's ok, they might reply later 2014-05-17 16:13:11 Rosey ill go to maio wiki chat while i wait 2014-05-17 16:13:24 @Espyo and don't assume people go away without saying bye 2014-05-17 16:13:31 @Espyo that's just rude, and nobody's rude here 2014-05-17 16:13:53 @Espyo what Pikmin games do you own? 2014-05-17 16:14:09 Rosey all of them :D 2014-05-17 16:14:16 @Espyo woah, nice 2014-05-17 16:14:21 @Espyo then you definitely know this little guy: https://dl.dropboxusercontent.com/u/47921869/CB.png 2014-05-17 16:14:30 Rosey and probley every spin off with Olimar 2014-05-17 16:14:53 Rosey brb 2014-05-17 16:15:38 Rosey btw,you may be intrested in this: http://www.youtube.com/watch?v=8kRY1RzwBtE&list=UUo_IB5145EVNcf8hw1Kku7w 2014-05-17 16:16:20 Rosey ill be offline,but brb 2014-05-17 16:16:23 <-- Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 16:18:54 --> Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 16:18:59 Rosey back 2014-05-17 16:20:32 @Espyo wb 2014-05-17 16:21:05 Rosey thank you 2014-05-17 16:21:23 Rosey is there a command like /afk? 2014-05-17 16:22:09 @Espyo for Mibbit, there's /away 2014-05-17 16:22:20 Rosey ok 2014-05-17 16:22:24 @Espyo and if you're on the chatroom page on the wikis, you're using Mibbit 2014-05-17 16:22:26 Rosey thanks 2014-05-17 16:22:34 @Espyo I can't see away statuses, because I'm using HexChat, but it's ok 2014-05-17 16:22:46 @Espyo if somebody's not replying, it's because they're away, so... 2014-05-17 16:23:00 Rosey ah 2014-05-17 16:23:03 Rosey got it 2014-05-17 16:23:23 Rosey did you know samus is in DKTF? 2014-05-17 16:23:32 Rosey well.....her ship.. 2014-05-17 16:25:35 Rosey .... 2014-05-17 16:26:33 @Espyo be patient 2014-05-17 16:26:37 @Espyo and now, I didn't 2014-05-17 16:26:43 Rosey well.... 2014-05-17 16:26:46 @Espyo I'll have to watch the video later 2014-05-17 16:26:51 Rosey here you go... 2014-05-17 16:26:54 Rosey ok 2014-05-17 16:27:04 Rosey do you know geno? 2014-05-17 16:27:13 @Espyo only how he looks like 2014-05-17 16:27:16 @Espyo I never played SMRPG 2014-05-17 16:27:25 Rosey from MarioRPG,heres a fact 2014-05-17 16:27:49 Rosey his last apearance was SSS 2014-05-17 16:27:59 Rosey *super sttar saga 2014-05-17 16:28:42 Rosey so....yeah.... 2014-05-17 16:28:48 @Espyo I played SSS for like 5 minutes 2014-05-17 16:29:14 Rosey ok.... 2014-05-17 16:29:43 Rosey btw,are you buying ssb4? 2014-05-17 16:30:11 @Espyo I seriously plan on buying it 2014-05-17 16:30:17 @Espyo I've been playing Brawl for years now 2014-05-17 16:30:55 Rosey I only played brawl and oot for..... 2014-05-17 16:31:10 Rosey *gosh* 3 months 2014-05-17 16:31:58 Rosey I preorded both versions.....can't wait! 2014-05-17 16:32:17 Rosey o,and flipnote3D got cancelled 2014-05-17 16:32:25 @Espyo but you said you bought OoT 3 weeks ago 2014-05-17 16:32:34 @Espyo or was that just the Wii U VC version? 2014-05-17 16:32:36 Rosey yes... 2014-05-17 16:32:51 Rosey theres no WiiU version yet :( 2014-05-17 16:33:05 Rosey But before that all brawl! 2014-05-17 16:33:15 Rosey today,mostly brawl 2014-05-17 16:33:19 Rosey http://www.youtube.com/watch?v=8kRY1RzwBtE&list=UUo_IB5145EVNcf8hw1Kku7w 2014-05-17 16:33:33 @Espyo sorry, Wii 2014-05-17 16:33:52 @Espyo yeah, you posted already 2014-05-17 16:33:56 @Espyo but I don't have time to watch it all now 2014-05-17 16:34:02 @Espyo so I'll save it for later 2014-05-17 16:34:06 Rosey its music 2014-05-17 16:34:14 Rosey 2 minutes 2014-05-17 16:34:54 @Espyo you copied the wrong link then 2014-05-17 16:35:02 @Espyo because that's the link to the connections video 2014-05-17 16:35:04 Rosey haha... 2014-05-17 16:35:08 Rosey woops 2014-05-17 16:35:11 @Espyo hehe 2014-05-17 16:35:26 Rosey http://www.youtube.com/watch?v=ZaCzGqTXa70 2014-05-17 16:35:58 @Espyo there we go 2014-05-17 16:36:39 Rosey yeah.... 2014-05-17 16:36:58 Rosey do you own a CD-I? 2014-05-17 16:37:00 @Espyo heh, neat 2014-05-17 16:37:02 @Espyo no, I don't 2014-05-17 16:37:18 Rosey i do 2014-05-17 16:38:07 Rosey so 2014-05-17 16:38:14 Rosey yeah 2014-05-17 16:38:27 @Espyo they're pretty rare 2014-05-17 16:39:36 Rosey and expensive 2014-05-17 16:40:01 @Espyo yeah 2014-05-17 16:40:57 Rosey want to see the best thing ever? 2014-05-17 16:41:00 @Espyo hmm? 2014-05-17 16:41:06 Rosey its 18 secs 2014-05-17 16:42:08 Rosey skip to 4:55 http://www.youtube.com/watch?v=4w6u7vkpwyw&list=UU8LcA3grYZg0GNpxlXh8owg 2014-05-17 16:43:16 Rosey its amazing 2014-05-17 16:43:40 @Espyo hehe 2014-05-17 16:43:45 Rosey see it? 2014-05-17 16:44:00 @Espyo yeah 2014-05-17 16:44:04 @Espyo the original audio is from this https://www.youtube.com/watch?v=sXasCjUTNpE 2014-05-17 16:44:11 Rosey what consoles do you own? 2014-05-17 16:45:21 @Espyo a GameCube, a Wii, and a Mega Drive that doesn't really work 2014-05-17 16:45:47 Rosey I own lots of consoles....but there downloaded of the eshop.... 2014-05-17 16:46:13 @Espyo oh 2014-05-17 16:46:26 Rosey do you know what song plays at 10:10? http://www.youtube.com/watch?v=ZKOzqw83RVo&list=PLFA10AF8790C9DFCA 2014-05-17 16:46:42 Rosey I been trying to find it for ages 2014-05-17 16:48:33 Rosey <><><<<><><>>> 2014-05-17 16:48:47 @Espyo uh, no, never heard it before 2014-05-17 16:49:27 Rosey hehe.... 2014-05-17 16:49:34 Rosey # 2014-05-17 16:50:37 Rosey and back 2014-05-17 16:51:13 Rosey aye 2014-05-17 16:54:17 Rosey *currently on Mario wiki chatroom 2014-05-17 16:54:27 * Rosey is afk 2014-05-17 16:56:24 @Espyo all right 2014-05-17 16:57:19 Rosey back 2014-05-17 16:57:55 Rosey I need a friend to play online.... 2014-05-17 16:58:15 @Espyo which game? 2014-05-17 16:58:41 Rosey ...im not sure 2014-05-17 16:58:49 Rosey just any game really 2014-05-17 16:58:52 @Espyo heh 2014-05-17 16:58:56 Rosey brawl? 2014-05-17 16:59:00 @Espyo you might find more people in more chatrooms 2014-05-17 16:59:05 Rosey ye,brawl 2014-05-17 16:59:08 @Espyo I've already got a Brawl session planned for later today with friends 2014-05-17 16:59:17 Rosey can I come? 2014-05-17 16:59:29 @Espyo I'm not sure 2014-05-17 16:59:36 @Espyo for one reason: we have a tournament tomorrow 2014-05-17 16:59:43 @Espyo so we might mostly practice today, instead of mess around 2014-05-17 16:59:45 Rosey *inser sad face here* 2014-05-17 16:59:46 @Espyo I'll ask the others 2014-05-17 17:00:01 @Espyo we're having a tourney because the NWFC is ending in just a few days 2014-05-17 17:00:08 Rosey i know 2014-05-17 17:00:16 Rosey im a good player. 2014-05-17 17:00:20 @Espyo and we never had a tournament before, we only messed around 2014-05-17 17:00:31 Rosey ill get my friend on to tell you! 2014-05-17 17:00:43 @Espyo heh, no need 2014-05-17 17:00:48 @Espyo there might be room for you 2014-05-17 17:00:51 Rosey :( 2014-05-17 17:00:52 @Espyo I'll have to ask 2014-05-17 17:01:00 Rosey or :) now? 2014-05-17 17:01:05 @Espyo yeah, :) 2014-05-17 17:01:15 Rosey could people help me? 2014-05-17 17:01:21 @Espyo what with? 2014-05-17 17:01:52 Rosey there used to be a guy here called Mariostar or something,he showed me here 2014-05-17 17:02:02 @Espyo uh... 2014-05-17 17:02:08 @Espyo we had a few "Mario" somethings here before 2014-05-17 17:02:09 Rosey he could brawl... 2014-05-17 17:02:20 Rosey too 2014-05-17 17:02:31 @Espyo there might not be enough room for so many people 2014-05-17 17:02:36 @Espyo normally, we have 3 people Brawling 2014-05-17 17:02:39 @Espyo with you would make 4 2014-05-17 17:02:44 Rosey please...I only find taunt partys when I want a serious brawl 2014-05-17 17:02:52 @Espyo haha 2014-05-17 17:03:01 @Espyo I haven't played With Anyone in age 2014-05-17 17:03:02 Rosey gosh I hate them 2014-05-17 17:03:03 @Espyo *ages 2014-05-17 17:03:13 @Espyo I enjoy going on taunt parties every once in a while 2014-05-17 17:03:17 @Espyo it's a nice break from the usual 2014-05-17 17:03:27 @Espyo it sucks being serious all the time, so... 2014-05-17 17:03:29 Rosey same 2014-05-17 17:03:40 Rosey but when im not looking for one 2014-05-17 17:03:43 @Espyo yeah 2014-05-17 17:03:48 Rosey its always one 2014-05-17 17:03:52 @Espyo normally, we play with items 2014-05-17 17:03:53 Rosey vice versa 2014-05-17 17:04:01 @Espyo we don't really go for winning, we just care about having a blast 2014-05-17 17:04:03 @Espyo though we have skill 2014-05-17 17:04:11 Rosey Have you ever spawned a manaphy? 2014-05-17 17:04:15 @Espyo that's also why we'll do the tournament tomorrow, to be different 2014-05-17 17:04:22 @Espyo we had like 5 Manaphies 2014-05-17 17:04:26 Rosey favorite pokèmon 2014-05-17 17:04:30 Rosey on brawl 2014-05-17 17:05:03 Rosey so can I (or we) join? 2014-05-17 17:05:11 @Espyo I'll have to check still 2014-05-17 17:05:15 @Espyo none of them is online atm 2014-05-17 17:05:27 @Espyo which is weird, because it's a saturday 2014-05-17 17:05:30 @Espyo but they'll show up later 2014-05-17 17:05:33 @Espyo oh, and it's not on this network 2014-05-17 17:05:39 @Espyo it's on another IRC network 2014-05-17 17:05:42 Rosey could we have a 1 v 1 before 30th if not? 2014-05-17 17:05:54 @Espyo sure 2014-05-17 17:05:58 @Espyo you mean before 20th 2014-05-17 17:06:11 Rosey wich month? 2014-05-17 17:06:19 @Espyo well, this month 2014-05-17 17:06:25 @Espyo WFC ends in 3 days 2014-05-17 17:06:25 Rosey .... 2014-05-17 17:06:27 @Espyo so it has to be until then 2014-05-17 17:06:30 Rosey ...... 2014-05-17 17:06:43 Rosey ..... 2014-05-17 17:07:04 Rosey sssshhhhhhiiii....... 2014-05-17 17:07:33 @Espyo yeah, it's really close 2014-05-17 17:07:50 Rosey brb,im getting my brawl friend code (im on a gamepad right now so ill be offline about 5 minutes) 2014-05-17 17:08:04 Rosey anyway,see ya in 5 2014-05-17 17:08:10 @Espyo all right 2014-05-17 17:08:20 Rosey also,what country you in? 2014-05-17 17:08:24 @Espyo Portugal 2014-05-17 17:08:28 Rosey ah, 2014-05-17 17:08:31 @Espyo my friends are British, and we have no lag, so... 2014-05-17 17:08:37 @Espyo I know you're British as well, because of the hostname 2014-05-17 17:08:44 @Espyo (ID for people inside a chatroom) 2014-05-17 17:08:46 Rosey im in britan so...yeah 2014-05-17 17:08:52 @Espyo yeah, you use BT 2014-05-17 17:09:02 @Espyo I know because you have a hostname similar to my friends, and they use BT 2014-05-17 17:09:08 Rosey ok 2014-05-17 17:09:16 Rosey so anyway,brb 2014-05-17 17:09:18 @Espyo yeh 2014-05-17 17:09:20 @Espyo *yeah 2014-05-17 17:09:32 Rosey bye *for about 5 minutes 2014-05-17 17:09:56 <-- Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 17:14:06 --> Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 17:14:08 Rosey back 2014-05-17 17:14:15 Rosey got it 2014-05-17 17:14:24 Rosey the friend code for brawl 2014-05-17 17:14:52 @Espyo all right 2014-05-17 17:15:01 @Espyo I'll add it when I turn my Wii on, later tday 2014-05-17 17:15:01 Rosey want it now? 2014-05-17 17:15:02 @Espyo *today 2014-05-17 17:15:06 @Espyo sure, I'll point it down now 2014-05-17 17:15:20 Rosey 5158 0136 9576 2014-05-17 17:15:42 Rosey what time will I get yours? 2014-05-17 17:16:00 Testyo [Fanon RC] User:Peach Bulborb by Peach Bulborb (-118 I'm back) http://www.pikminfanon.com/index.php?title=User:Peach_Bulborb&curid=6237&diff=44554&oldid=44551 2014-05-17 17:16:13 @Espyo now 3481-2950-0562 2014-05-17 17:16:22 Rosey ......errr....is the bot broke? 2014-05-17 17:16:40 @Espyo nope, it's working fine 2014-05-17 17:16:43 Rosey is that your FC? 2014-05-17 17:16:46 @Espyo it is 2014-05-17 17:16:54 @Espyo Peach Bulborb, a user on Pikmin Fanon, made an edit to an article 2014-05-17 17:16:57 @Espyo and Testyo reported it 2014-05-17 17:16:57 Rosey brawl or wii? 2014-05-17 17:17:01 @Espyo Brawl 2014-05-17 17:17:07 @Espyo this way we can keep track of people editing the wiki 2014-05-17 17:17:12 @Espyo well, wikiS 2014-05-17 17:17:17 Rosey k,ill when shall we fight? 2014-05-17 17:17:56 @Espyo me and my friends play today at around 21:00 2014-05-17 17:18:04 Rosey uk time? 2014-05-17 17:18:15 @Espyo yeah, Portugal and UK share the same timezone 2014-05-17 17:18:42 Rosey also,like I said,im on the WiiU gamepad and the save datas on the wiiu 2014-05-17 17:18:59 Rosey so yeah....ill have to add you later 2014-05-17 17:19:11 Rosey (nice trivia) 2014-05-17 17:19:21 @Espyo right 2014-05-17 17:19:31 Rosey is the brawl today and are you hosting it? 2014-05-17 17:19:41 @Espyo yeah 2014-05-17 17:19:50 Rosey k,9pm 2014-05-17 17:20:02 @Espyo or maybe 9:30 2014-05-17 17:20:05 @Espyo depends on how late I dine 2014-05-17 17:20:10 Rosey brawl,multi-man or homerun? 2014-05-17 17:20:18 @Espyo regular Brawl 2014-05-17 17:20:20 @Espyo with items 2014-05-17 17:20:26 Rosey ok,thanks so much 2014-05-17 17:20:27 @Espyo 3 minute time limit 2014-05-17 17:20:29 @Espyo mhm 2014-05-17 17:20:38 Rosey rules I use 2014-05-17 17:20:43 @Espyo it'll be fun, it always is 2014-05-17 17:20:59 Rosey btw,some stages have sudden death saftey spots 2014-05-17 17:21:10 @Espyo yeah, but they're a bit rare 2014-05-17 17:21:14 Rosey like wileland 2014-05-17 17:21:14 @Espyo a thing I like to do is pick Shadow Moses 2014-05-17 17:21:18 @Espyo and on sudden death 2014-05-17 17:21:20 @Espyo just hold down 2014-05-17 17:21:25 @Espyo you'll almost never get KOd 2014-05-17 17:21:35 @Espyo because if you're holding down, it'll influence the direction you get knocked in by the bombs 2014-05-17 17:21:39 @Espyo and you won't go up as much 2014-05-17 17:21:43 @Espyo so you'll just bounce on the walls 2014-05-17 17:21:50 Rosey also,if im say fox on layta cruise,am I allowed to do the secret taunt? 2014-05-17 17:21:54 @Espyo sure 2014-05-17 17:22:07 Rosey without being assultedd? 2014-05-17 17:22:10 @Espyo normally if we have a character that can do a smash taunt, we all stop fighting and wait for that person to do it 2014-05-17 17:22:13 @Espyo we're civil, don't worry 2014-05-17 17:22:19 @Espyo we don't even edgehog, edgehogging is just unfair 2014-05-17 17:22:21 Rosey thank you :D 2014-05-17 17:22:29 Rosey ok 2014-05-17 17:23:01 @Espyo speaking of Brawl 2014-05-17 17:23:03 Rosey the name will say MS/R (mariostar/rose) don't know why we share name... 2014-05-17 17:23:07 Rosey go on... 2014-05-17 17:23:25 @Espyo I'm trying to complete Boss Battles on Intense with every character, before the end of NWFC 2014-05-17 17:23:32 @Espyo I only have four characters left 2014-05-17 17:23:42 Rosey its not really worth it 2014-05-17 17:23:45 @Espyo I don't feel like working on the engine right now, so I'll do it 2014-05-17 17:23:48 @Espyo I know, there's no reward 2014-05-17 17:23:52 @Espyo but I'm in it for the challenge 2014-05-17 17:23:57 @Espyo I've already come this far 2014-05-17 17:24:00 Rosey I did it 2014-05-17 17:24:23 @Espyo with every character? 2014-05-17 17:24:24 Rosey whats your nickname on brawl? 2014-05-17 17:24:28 Rosey yes 2014-05-17 17:24:39 @Espyo wow 2014-05-17 17:24:43 @Espyo it's Espyo, same as here 2014-05-17 17:24:49 @Espyo I should've done it already 2014-05-17 17:24:53 @Espyo but I always get some bad luck somewhere 2014-05-17 17:24:58 @Espyo it's amazing 2014-05-17 17:25:00 Rosey so ontop your fighter its espyo? k 2014-05-17 17:25:16 @Espyo yep 2014-05-17 17:25:41 Rosey I need to do.....stuff.....ill be back in 10 minutes...probbley plus five to add you 2014-05-17 17:25:45 @Espyo before I try Lucario for the infinith time, I'll add your code 2014-05-17 17:25:59 @Espyo all right 2014-05-17 17:26:02 Rosey bye (for 15 minutes) 2014-05-17 17:26:13 @Espyo bye 2014-05-17 17:26:18 Rosey youl be added when im back (ptobley) 2014-05-17 17:26:22 Rosey bye 2014-05-17 17:26:26 <-- Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 17:30:37 --> Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 17:30:51 @Espyo say, your code is invalid 2014-05-17 17:30:53 Rosey didn't take as long as I expected 2014-05-17 17:30:57 Rosey ? 2014-05-17 17:31:02 Rosey on brawl 2014-05-17 17:31:14 Rosey did you do it correctly? 2014-05-17 17:31:46 Rosey ill add you and check my code now 2014-05-17 17:31:51 Rosey so yeah,brb 2014-05-17 17:32:29 Rosey k? 2014-05-17 17:32:39 Rosey k,brb 2014-05-17 17:32:41 @Espyo yeah 2014-05-17 17:33:08 <-- Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-17 17:36:54 --> Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 17:36:58 Rosey added you 2014-05-17 17:37:11 Rosey and checked the friend code 2014-05-17 17:37:48 Rosey 5158-0136-9578 2014-05-17 17:38:10 @Espyo I'll re-add later 2014-05-17 17:38:16 @Espyo I'm in the middle of Boss Battles 2014-05-17 17:38:38 Rosey ill get back around 25minutes,im going play sports resort with my friends 2014-05-17 17:38:58 Rosey with me right now is me,sister and "Mariostar" 2014-05-17 17:39:07 Rosey so yeah,bye 2014-05-17 17:39:11 @Espyo all right 2014-05-17 17:39:12 @Espyo bye 2014-05-17 17:39:22 Rosey ill be here around 6:15 2014-05-17 17:39:29 Rosey the chatroom 2014-05-17 17:39:32 Rosey bye 2014-05-17 17:39:40 Rosey (so exited) 2014-05-17 17:39:43 <-- Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-17 17:53:43 --> ROSEY (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 17:53:46 ROSEY back 2014-05-17 17:53:54 -- ROSEY is now known as Rosey 2014-05-17 17:54:42 Rosey I was testing characters on brawl with the same requiements (all items,final dest,VS level9 metaknight) 2014-05-17 17:55:09 Rosey Im doing best with all-rounders (speed and attack wise) 2014-05-17 17:55:27 Rosey characters with project-tiles 2014-05-17 17:55:35 Rosey and fist fight 2014-05-17 17:55:51 @Espyo darn, just missed an Off Wave, lost 2014-05-17 17:55:55 @Espyo I'll add the code now then 2014-05-17 17:55:56 Rosey Mario,lucario,ect 2014-05-17 17:56:02 Rosey ok 2014-05-17 17:56:05 @Espyo and I normally have problems with fast characters 2014-05-17 17:56:10 Rosey want a practise fight? 2014-05-17 17:56:43 @Espyo sure 2014-05-17 17:57:00 Rosey also,if I go off I may come back later (in the 9 fight) 2014-05-17 17:57:07 Rosey brawl now? 2014-05-17 17:57:07 @Espyo rght 2014-05-17 17:57:09 @Espyo *right 2014-05-17 17:57:09 @Espyo sure 2014-05-17 17:57:20 Rosey ok,added me btw? 2014-05-17 17:57:39 @Espyo added 2014-05-17 17:58:02 Rosey ok,open a regular brawl,ill be there in at least 2 minutes 2014-05-17 17:58:11 <-- Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-17 19:12:43 --> R (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 19:12:59 R sorry i left,medical emergeny 2014-05-17 19:13:36 R espyo? 2014-05-17 19:13:50 @Espyo it's fine 2014-05-17 19:13:57 @Espyo that was fun 2014-05-17 19:14:03 @Espyo everything ok? 2014-05-17 19:14:17 R medical emergency 2014-05-17 19:14:25 @Espyo yes, but is everything ok now? 2014-05-17 19:14:33 R also,i was feeling-sorta 2014-05-17 19:14:52 @Espyo feeling-sorta? 2014-05-17 19:14:52 R can my friend do the tornament aswell? 2014-05-17 19:15:07 @Espyo it's a tournament just to see which of us is better 2014-05-17 19:15:11 @Espyo our close group of friends 2014-05-17 19:15:17 --> Gamefreak75 (NewYokuba@2605:e000:2e44:syzw:gvjy:tmhm:wiqz:mvlh) has joined #pikipedia 2014-05-17 19:15:17 @Espyo we didn't really expect outsiders to join 2014-05-17 19:15:21 @Espyo I'll ask today 2014-05-17 19:15:53 R he will fight as me 2014-05-17 19:16:13 @Espyo all right 2014-05-17 19:16:20 @Espyo if the others say it's ok for him to join 2014-05-17 19:16:30 R i screwed up at the end,wander why... 2014-05-17 19:17:10 @Espyo dunno 2014-05-17 19:17:20 @Espyo you noticed the super high damage at one point 2014-05-17 19:17:24 @Espyo I have a hack that enables it 2014-05-17 19:17:25 R yep 2014-05-17 19:17:31 @Espyo it's really insane 2014-05-17 19:17:35 R ok 2014-05-17 19:17:42 R any other hacks? 2014-05-17 19:18:22 R can we have a mini-taunt party brake in the torny? 2014-05-17 19:19:20 @Espyo nope, not really 2014-05-17 19:19:22 @Espyo at both questions 2014-05-17 19:21:15 R can wplay home run contest later when i recover? 2014-05-17 19:21:35 @Espyo sure 2014-05-17 19:21:45 R ok 2014-05-17 19:23:19 R gtg 2014-05-17 19:23:22 R bye 2014-05-17 19:23:24 <-- R (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 19:48:19 --> MS-R (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 19:48:24 MS-R back... 2014-05-17 19:48:31 MS-R and better :D 2014-05-17 19:48:54 MS-R yeah.... 2014-05-17 19:49:25 MS-R uuummm... 2014-05-17 19:49:53 MS-R when your back I got a few questions about the tournement 2014-05-17 19:51:23 MS-R *sigh* 2014-05-17 19:52:22 MS-R if I go,ill be back around 8:15 2014-05-17 19:53:27 @Espyo good to know 2014-05-17 19:53:45 MS-R hi 2014-05-17 19:54:01 MS-R I got a question 2014-05-17 19:54:19 MS-R are you holding to tournement? 2014-05-17 19:54:37 @Espyo well, yeah 2014-05-17 19:54:46 MS-R ok then 2014-05-17 19:54:51 MS-R *the 2014-05-17 19:55:02 MS-R *the to to not then 2014-05-17 19:55:34 MS-R want to play homerun bat thing? 2014-05-17 19:58:33 MS-R ....... 2014-05-17 19:59:06 MS-R ill just join you at 9pm then 2014-05-17 20:00:41 MS-R sorry if Im pissing you off,im just really exited 2014-05-17 20:02:43 <-- MS-R (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 20:04:43 Spark espyo do you know if there's a way to have multidimensional vectors 2014-05-17 20:05:27 @Espyo in C++, it's tricky 2014-05-17 20:05:30 @Espyo you have vectors of vectors 2014-05-17 20:08:02 Spark oh that doesnt sound too tricky :P 2014-05-17 20:14:08 --> MS-R (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 20:14:13 MS-R back 2014-05-17 20:15:25 Spark ..ok maybe it is harder than i thought 2014-05-17 20:15:59 MS-R hello 2014-05-17 20:16:07 Spark who is this person 2014-05-17 20:16:11 Spark why are they talking 2014-05-17 20:16:43 -- MS-R is now known as Rosey 2014-05-17 20:16:47 Rosey hi 2014-05-17 20:17:17 Rosey spark.... 2014-05-17 20:18:36 Rosey *sigh* 2014-05-17 20:19:05 Spark are you madly in love with me? 2014-05-17 20:19:06 Spark already? 2014-05-17 20:19:12 Spark usually it takes a few days 2014-05-17 20:19:34 Rosey ok.... 2014-05-17 20:20:41 Rosey eeeerrrrr 2014-05-17 20:21:02 Rosey are you in the smash bros tournament? 2014-05-17 20:21:16 Spark what tournament 2014-05-17 20:21:40 Rosey thats a no then 2014-05-17 20:21:46 Spark yes 2014-05-17 20:21:49 Spark it is 2014-05-17 20:22:04 @Espyo heh 2014-05-17 20:22:10 @Espyo I said the others are on another network, anyway 2014-05-17 20:22:13 @Espyo so they wouldn't show up here 2014-05-17 20:22:19 @Espyo also, you really have to learn to be patinet 2014-05-17 20:22:20 @Espyo *patient 2014-05-17 20:22:26 Rosey .... 2014-05-17 20:22:28 @Espyo I didn't reply some minutes ago because I was really busy 2014-05-17 20:22:29 Rosey hi 2014-05-17 20:22:33 @Espyo and you thought I was ignoring you 2014-05-17 20:22:44 Rosey ........ 2014-05-17 20:23:13 Rosey anyway,I may go soon,but im still joining the tournament 2014-05-17 20:23:18 Rosey *we 2014-05-17 20:23:27 @Espyo right 2014-05-17 20:23:31 Rosey me and MS 2014-05-17 20:23:46 Rosey so....yeah 2014-05-17 20:23:56 @Espyo yeah 2014-05-17 20:24:08 Rosey were killing each othet 2014-05-17 20:25:41 @Espyo hmm? 2014-05-17 20:26:36 <-- Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 20:39:13 --> R (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 20:39:18 R Espyo 2014-05-17 20:39:31 R when dose the tournament end? 2014-05-17 20:39:50 R I may need to come late 2014-05-17 20:41:22 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:syzw:pmnl:hlok:szuz:tqxn) has joined #pikipedia 2014-05-17 20:44:29 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:syzw:gvjy:tmhm:wiqz:mvlh) has quit (Ping timeout: 250 seconds) 2014-05-17 20:44:58 <-- R (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 20:46:39 <-- Gamefreak75_ (NewYokuba@2605:e000:2e44:syzw:pmnl:hlok:szuz:tqxn) has quit (Ping timeout: 250 seconds) 2014-05-17 22:22:44 @J okay, I wrote an undo tab system for Uzbl today 2014-05-17 22:23:43 @J it's persistent, so any window can access tabs from closed windows, once their own closed tab lists are empty 2014-05-17 22:27:57 @Espyo nice 2014-05-17 22:28:58 Testyo [Pikipedia RC] (log) Duckman by Greenpickle (0 Spam: content was: "My password is "duckmaniscool"! Seriously, try it!") http://www.pikminwiki.com/index.php?title=Duckman&curid=0&diff=0&oldid=0 2014-05-17 22:42:26 @Espyo dammit J http://www.pikminwiki.com/DK_wanna_banana 2014-05-17 22:46:00 @J ...when did this happen? 2014-05-17 22:48:08 @Espyo some days ago apparently 2014-05-17 22:49:05 Testyo [Pikipedia RC] (log) DK wanna banana by Greenpickle (0 Spam: content was: "'''''DK wanna banana????''''' is an official policy on Pikip...) http://www.pikminwiki.com/index.php?title=DK_wanna_banana&curid=0&diff=0&oldid=0 2014-05-17 22:49:06 Testyo [Pikipedia RC] (log) User talk:Pikipedia by Greenpickle (0 content was: "Pikipedia's official account on Pikipedia." (and the only contribu...) http://www.pikminwiki.com/index.php?title=User_talk:Pikipedia&curid=0&diff=0&oldid=0 2014-05-17 22:49:06 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-17 22:50:33 @J ...uh 2014-05-17 22:50:38 @J there was one more change 2014-05-17 22:50:58 @J so saying the flooding message is the same number of messages as saying the 3rd change 2014-05-17 22:51:21 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-17 22:51:22 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-17 22:51:32 @PikFan . 2014-05-17 22:51:36 @J also, why does it just say 'log', not 'deleted' or something? 2014-05-17 22:51:36 @J hey 2014-05-17 22:54:38 @Espyo because I didn't take into account that case 2014-05-17 22:54:45 @Espyo so I just made a catch-all "log" 2014-05-17 22:57:30 @J well, yeah 2014-05-17 22:57:55 @J I meant, hey look how lazy you were with that 2014-05-17 23:03:32 @Espyo s/lazy/much you assumed we would never have to delete pages 2014-05-17 23:03:44 @Espyo uh, also the "you were" 2014-05-17 23:12:57 @J wait 2014-05-17 23:13:01 @J you = you or me? 2014-05-17 23:13:20 Spark hmm 2014-05-17 23:13:58 Spark espyo, another question, sorry: is it possible to not call the constructor of a base class when creating an instance of a derived class? 2014-05-17 23:14:21 @Espyo you = Espyo 2014-05-17 23:14:38 @J what a silly guy 2014-05-17 23:15:00 @Espyo it's not possible 2014-05-17 23:15:21 @Espyo and no need to apologize 2014-05-17 23:15:38 Spark okay, thanks 2014-05-17 23:45:02 --> Mariostar (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-17 23:45:06 Mariostar hi.... 2014-05-17 23:45:16 Mariostar I know Rosey... 2014-05-17 23:45:23 Mariostar in person... 2014-05-17 23:45:43 Mariostar and was multi-man brawling with you 2014-05-17 23:45:51 Mariostar and a few brawls 2014-05-17 23:45:57 Mariostar that was it... 2014-05-17 23:46:19 @PikFan ? 2014-05-17 23:46:33 Mariostar hi 2014-05-17 23:46:42 Mariostar sorry,not talking to you... 2014-05-17 23:46:43 @PikFan hi 2014-05-17 23:46:58 Mariostar trying to tell espyo something 2014-05-17 23:47:09 Mariostar we was just playing brawl 2014-05-17 23:47:12 @Espyo hi 2014-05-17 23:47:24 @Espyo yeah 2014-05-17 23:47:31 Mariostar Espyo,hi,im Mariostar 2014-05-17 23:47:35 @Espyo hi 2014-05-17 23:47:40 Mariostar the person rosey said 2014-05-17 23:47:47 @Espyo yeah, she did 2014-05-17 23:47:57 Mariostar and on brawl i was "MG56" 2014-05-17 23:48:02 @Espyo ah, I thought so 2014-05-17 23:48:08 Mariostar and multi-man brawler 2014-05-17 23:48:20 Mariostar then im not sure what happened 2014-05-17 23:48:32 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-17 23:48:47 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-17 23:48:47 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-17 23:48:54 Mariostar (MG56 is Mariogamer56,my 1st youtube name before account loss) 2014-05-17 23:48:54 Testyo 1 st = 6.3503 kg / 14 lb / 224 oz 2014-05-17 23:49:06 Mariostar so....yeah,hi 2014-05-17 23:49:11 @PikFan sorry, mibbit was acting up 2014-05-17 23:50:45 Mariostar ok 2014-05-17 23:51:02 Mariostar http://www.youtube.com/watch?v=sygIMuXgRIA&list=UUY30JRSgfhYXA6i6xX1erWg 2014-05-17 23:54:27 Mariostar vine 2014-05-17 23:59:50 <-- Mariostar (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 00:04:34 --> Mariostar (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 00:06:15 <-- Mariostar (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-18 00:23:34 --> Gamefreak75 (NewYokuba@2605:e000:2e44:rwvo:pkww:gnxr:iuzs:qljj) has joined #pikipedia 2014-05-18 00:45:12 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:wmqy:xqhz:iwvq:hhqk:jwnw) has joined #pikipedia 2014-05-18 00:48:27 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:rwvo:pkww:gnxr:iuzs:qljj) has quit (Ping timeout: 250 seconds) 2014-05-18 00:48:31 -- Gamefreak75_ is now known as Gamefreak75 2014-05-18 01:24:13 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:wmqy:xqhz:iwvq:hhqk:jwnw) has quit (Quit: nwehehehe) 2014-05-18 01:29:00 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 01:29:11 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-18 01:29:11 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-18 02:05:18 <-- Espyo (Espyo@i24-799-28-826.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-18 02:05:20 <-- Testyo (Testyo@i24-799-28-826.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-18 05:11:25 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 05:40:47 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-18 05:40:47 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-18 05:49:48 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 05:54:51 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-18 05:54:51 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-18 07:12:21 --> Gamefreak75 (NewYokuba@2605:e000:2e44:yqjk:jkok:ysxp:lnug:qvtk) has joined #pikipedia 2014-05-18 08:32:10 --> Gamefreak75_ (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has joined #pikipedia 2014-05-18 08:35:35 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:yqjk:jkok:ysxp:lnug:qvtk) has quit (Ping timeout: 250 seconds) 2014-05-18 08:35:44 -- Gamefreak75_ is now known as Gamefreak75 2014-05-18 09:26:50 -- irc: disconnected from server 2014-05-18 09:27:02 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-18 09:27:02 -- 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" 2014-05-18 09:27:02 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-18 09:27:02 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-18 09:27:02 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-18 09:27:02 -- Mode #pikipedia [+o J] by ChanServ 2014-05-18 09:27:03 -- Mode #pikipedia [+nt] 2014-05-18 09:27:03 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-18 10:50:41 --> Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 10:50:47 Rosey hey 2014-05-18 10:51:16 <-- Gamefreak75 (NewYokuba@bzf-62-764-254-04.socal.res.rr.com) has quit (Quit: z) 2014-05-18 11:05:04 <-- Rosey (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 11:12:29 --> Mariostar (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 11:12:39 Mariostar hey 2014-05-18 11:13:24 --> Testyo (Testyo@i24-799-28-826.cpe.netcabo.pt) has joined #pikipedia 2014-05-18 11:14:10 --> Espyo (Espyo@i24-799-28-826.cpe.netcabo.pt) has joined #pikipedia 2014-05-18 11:14:10 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-18 11:14:38 Mariostar ..... 2014-05-18 11:19:41 <-- Mariostar (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 11:23:31 Testyo [Pikipedia RC] User account Mariostar123 created http://www.pikminwiki.com/index.php?title=User:Mariostar123 2014-05-18 11:34:17 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 11:34:21 Mariostar123 hey 2014-05-18 11:34:33 Mariostar123 I got a account now... 2014-05-18 11:35:05 Mariostar123 also,Rose is having a medical thing again 2014-05-18 11:45:23 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 11:47:30 @PikFan oh 2014-05-18 11:47:50 @PikFan I was going to tell you this yesterday but I forgot 2014-05-18 11:48:11 @PikFan so the caves in Pikmin 2 have a maximum number of enemies 2014-05-18 11:48:38 @PikFan by that I mean they have a cap to the number of corpses 2014-05-18 11:49:01 @PikFan if an enemy dies, and there are already the max. amount of corpses, that enemy will vanish 2014-05-18 11:49:52 @PikFan it happened to me on sublevel 8 in the Cavern of Chaos 2014-05-18 11:51:19 @PikFan got two other things, both of which are CC related: 2014-05-18 11:51:27 @PikFan 1. Easter beta, yay!!! 2014-05-18 11:51:37 @PikFan 2. Prisms cost 1 sextillion cookies 2014-05-18 11:52:07 @PikFan so in Easter, there are easter eggs 2014-05-18 11:52:17 @PikFan and I don't know how to find them 2014-05-18 11:52:19 @PikFan but 2014-05-18 11:52:43 @PikFan I cheated (it's the beta, so it's fine) and looked at the eggs' abilities 2014-05-18 11:53:04 @PikFan one egg makes wrinklers give 5% more cookies, another makes GCs appear 5% more often 2014-05-18 11:53:18 @PikFan another makes clicking 10% more powerful 2014-05-18 11:53:31 @Espyo hi 2014-05-18 11:53:51 @Espyo oh wow 2014-05-18 11:53:54 @PikFan and there's even an egg that increases your cps the longer your session is 2014-05-18 11:53:59 @Espyo and oh wow, and oh wow 2014-05-18 11:54:20 @Espyo and finally, oh wow 2014-05-18 11:54:26 @Espyo so yeah, pretty much "oh wow" to all you said 2014-05-18 11:54:27 @PikFan there's also new achievements 2014-05-18 11:54:31 @Espyo I figured there'd be 2014-05-18 11:54:35 @PikFan which are 2014-05-18 11:54:38 @PikFan extremely 2014-05-18 11:54:40 @PikFan hard 2014-05-18 11:54:57 @PikFan only Nepeta or other hardcore users like him could achieve these 2014-05-18 11:55:09 @Espyo heh 2014-05-18 11:55:10 @Espyo like what? 2014-05-18 11:55:14 @PikFan and I'd just like to say that I think Orteil has gone crazy 2014-05-18 11:55:15 @Espyo also, was the cap 56? http://www.pikminwiki.com/Cavern_of_Chaos#Sublevel_8 2014-05-18 11:55:18 @PikFan so 2014-05-18 11:55:22 @PikFan *shrug* 2014-05-18 11:55:31 @PikFan there's an achievement that you get 2014-05-18 11:55:34 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 11:55:35 @PikFan for resetting with 2014-05-18 11:55:38 @PikFan 1 octillion 2014-05-18 11:55:39 Mariostar123 hi 2014-05-18 11:55:40 @PikFan cookies 2014-05-18 11:55:45 Mariostar123 ...... 2014-05-18 11:55:53 @PikFan 1 octillion cookies 2014-05-18 11:55:57 Mariostar123 ? 2014-05-18 11:56:09 @PikFan (Cookie Clicker) 2014-05-18 11:56:16 Mariostar123 ........ 2014-05-18 11:56:24 @Espyo hi 2014-05-18 11:56:30 * Mariostar123 backs away slowley 2014-05-18 11:56:34 @Espyo yeah, I noticed you have an account 2014-05-18 11:56:35 @Espyo welcome 2014-05-18 11:56:38 Mariostar123 Espyo :D 2014-05-18 11:56:39 @Espyo also, is Rose fine? 2014-05-18 11:56:44 Mariostar123 ye 2014-05-18 11:56:47 Mariostar123 s 2014-05-18 11:56:55 @Espyo youch, one octillion 2014-05-18 11:56:57 @Espyo and that's good 2014-05-18 11:57:02 @Espyo is it a common thing that happens? 2014-05-18 11:57:06 Mariostar123 she told me about the homerun contest 2014-05-18 11:57:15 Mariostar123 sorta 2014-05-18 11:57:17 @PikFan what's going on...? 2014-05-18 11:57:23 @Espyo PikFan, new user yesterday 2014-05-18 11:57:29 @Espyo we talked a bit, and decided to play Brawl together 2014-05-18 11:57:37 @Espyo mid-way through, she had to leave for medical reasons 2014-05-18 11:57:41 @Espyo but everything is fine 2014-05-18 11:57:45 @PikFan I see 2014-05-18 11:57:50 @Espyo I'm gonna go off on a limb here and say it's epilepsy...? 2014-05-18 11:57:53 Mariostar123 would I be able to connect to wi-fi tommorow? 2014-05-18 11:58:06 @Espyo tomorrow, yes 2014-05-18 11:58:09 @Espyo it only ends on tuesday 2014-05-18 11:58:16 Mariostar123 *phew* 2014-05-18 11:58:31 Mariostar123 Would it work thursday? 2014-05-18 11:58:36 Mariostar123 *tues 2014-05-18 11:58:56 @Espyo I'm not sure 2014-05-18 11:59:02 Mariostar123 ok 2014-05-18 11:59:13 @Espyo although it seems like with homebrew, it's possible to play even after the WFC ends 2014-05-18 11:59:16 Mariostar123 could we brawl again later by the way? 2014-05-18 11:59:27 Mariostar123 today 2014-05-18 11:59:35 @Espyo we might 2014-05-18 11:59:41 Mariostar123 :D 2014-05-18 11:59:42 @Espyo depends on how free I am 2014-05-18 11:59:52 Mariostar123 ok 2014-05-18 12:00:16 Mariostar123 what you doing tomorrow because wi-fi closes? 2014-05-18 12:00:28 @Espyo I'm not sure 2014-05-18 12:00:29 Mariostar123 im going online as much as I can 2014-05-18 12:00:33 @Espyo oh, right 2014-05-18 12:00:39 @Espyo I'm going to play some Mario Kart Wii 2014-05-18 12:00:42 Mariostar123 So I won't be here 2014-05-18 12:00:58 @PikFan huh 2014-05-18 12:01:11 Mariostar123 We should play MKW together sometime ESPYO 2014-05-18 12:01:16 @PikFan maybe I should get SSB for Wii U and MK8 2014-05-18 12:01:18 @Espyo sure 2014-05-18 12:01:23 Mariostar123 ok 2014-05-18 12:01:25 @Espyo you should, they look great 2014-05-18 12:01:43 Mariostar123 i preorded both smashes and won MK8 2014-05-18 12:01:52 @PikFan I remember playing MKW at a friend's house once 2014-05-18 12:02:01 @PikFan got frustrated 2014-05-18 12:02:05 @PikFan kept dying 2014-05-18 12:02:06 Mariostar123 once? you missed out on loads 2014-05-18 12:02:26 @Espyo you missed out on a lot of rage 2014-05-18 12:02:26 @PikFan oh well 2014-05-18 12:02:26 Mariostar123 this music is so catchy.... 2014-05-18 12:02:40 @Espyo Mario Kart Wii is 5% fun, 90% rage, 5% meh 2014-05-18 12:02:43 Mariostar123 do the barrel barrel roll :) 2014-05-18 12:02:47 @Espyo but it's impossible to stop playing 2014-05-18 12:02:58 Mariostar123 very true 2014-05-18 12:03:19 Mariostar123 im choosing a colour im going to keep using 2014-05-18 12:03:56 @PikFan ooh boy 2014-05-18 12:04:01 Mariostar123 what? 2014-05-18 12:04:10 @PikFan shadow achievement for resetting with 1 nonillion cookies 2014-05-18 12:04:11 @Espyo luckily, it looks like Mario Kart 8 fixes all of the rage issues 2014-05-18 12:04:16 @Espyo man... 2014-05-18 12:04:25 Mariostar123 and the fast recovery 2014-05-18 12:04:29 @PikFan maybe I'll get there in 2 years 2014-05-18 12:04:38 Mariostar123 chosen 2014-05-18 12:05:35 Mariostar123 k,im going to get my Mariokart wii friend code 2014-05-18 12:05:41 Mariostar123 brb 2014-05-18 12:05:47 @Espyo ok 2014-05-18 12:05:50 @Espyo PikFan, same 2014-05-18 12:05:59 @Espyo also, how exactly do you know that you reached a hard cap on corpses 2014-05-18 12:06:00 @Espyo *? 2014-05-18 12:06:06 Mariostar123 (pikfan,im on a wiiU gamepad,so ill be offline right now) 2014-05-18 12:06:30 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 12:07:58 @PikFan because I killed an enemy and it vanished 2014-05-18 12:08:48 @Espyo lolwut 2014-05-18 12:08:48 @PikFan then I collected some corpses and killed another enemy, and its corpse didn't vanish 2014-05-18 12:09:04 @Espyo but how is this the first time this has been noticed? 2014-05-18 12:09:09 @PikFan well 2014-05-18 12:09:16 @Espyo I'm pretty sure a load of people killed everything and then took it back 2014-05-18 12:09:17 @PikFan sublevel 8 of Cavern of Chaos 2014-05-18 12:09:27 @PikFan and there were 20 mities 2014-05-18 12:09:27 @Espyo and in doing so, they had to have noticed a cap 2014-05-18 12:09:31 @Espyo oooooohhhhh 2014-05-18 12:09:37 @PikFan *mitites 2014-05-18 12:09:39 @Espyo you should've mentioned the Mitites earlier >_> 2014-05-18 12:10:00 @Espyo I might use Dolphin to check the limit 2014-05-18 12:10:00 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 12:10:02 Mariostar123 back 2014-05-18 12:10:09 @Espyo like make a savestate on that sublevel, next to an egg 2014-05-18 12:10:19 @Espyo and then keep saving and reloading until the egg releases mitites 2014-05-18 12:10:23 Mariostar123 got my friend code 2014-05-18 12:10:31 @Espyo and then I can count the enemies when I know mitites will come out 2014-05-18 12:10:34 @Espyo and then do the math 2014-05-18 12:10:45 @Espyo Mariostar123, let me see if I have mine handy 2014-05-18 12:10:55 Mariostar123 ok... 2014-05-18 12:11:05 Mariostar123 (its Mariokartwii) 2014-05-18 12:11:16 @Espyo 4298-6859-8244 2014-05-18 12:11:21 @Espyo yeah, Mario Kart Wii 2014-05-18 12:11:24 Mariostar123 last night I was brawling on the gamepad by the way 2014-05-18 12:11:36 Mariostar123 but using the classic controller 2014-05-18 12:11:46 @PikFan but yeah, there were 20 mitites, and 50 or however-many-there-are dwarf bulborbs 2014-05-18 12:12:16 @Espyo yeah 2014-05-18 12:12:32 @PikFan I'm going to take a guess, the cap is 70 2014-05-18 12:12:54 @PikFan I was in the last room with alive bulborbs when this happened 2014-05-18 12:13:16 @Espyo that value's a bit random 2014-05-18 12:13:22 @Espyo the programmer in me'd say 64 2014-05-18 12:13:27 @Espyo though it can as easily be 70 2014-05-18 12:13:30 Mariostar123 Espyo,i private messeged my friend code 2014-05-18 12:13:43 @Espyo it's just a value they judged to be a good balance between quantity and performance 2014-05-18 12:14:03 @PikFan I suppose 2014-05-18 12:14:54 Mariostar123 so when are we playing,4pm ok? 2014-05-18 12:15:28 @Espyo which game? 2014-05-18 12:15:36 Mariostar123 mario kart 2014-05-18 12:15:40 Mariostar123 wii 2014-05-18 12:15:46 Mariostar123 and WiiU 2014-05-18 12:15:51 Mariostar123 i guess.... 2014-05-18 12:15:56 @Espyo we're already doing a Smash tournament today at 4pm 2014-05-18 12:16:21 Mariostar123 ok (ill join again if you let me) 2014-05-18 12:16:44 @Espyo I'll have to ask them 2014-05-18 12:16:53 @Espyo we don't have it sorted for more people 2014-05-18 12:16:57 @Espyo it's just organized between us 2014-05-18 12:17:03 @Espyo but after the tournament we'll play some themed battles 2014-05-18 12:17:05 Mariostar123 who? i added the 3 last night on brawl by the way 2014-05-18 12:17:22 @Espyo like Captain Falcon only, certain items only, coin battles at 2.0 damage, etc. 2014-05-18 12:17:28 Mariostar123 via sexy wi-fi 2014-05-18 12:17:32 @Espyo there's those two, plus two others that rarely go online 2014-05-18 12:17:39 Mariostar123 ok 2014-05-18 12:18:05 @Espyo you should find a way to stay on IRC while we play though 2014-05-18 12:18:10 @Espyo so we can organize the team battles and whatever 2014-05-18 12:18:15 @Espyo instead of changing rules without everybody agreeing 2014-05-18 12:18:29 Mariostar123 also,if I annoyed you online *i promise I won't* you can't ban me here..... 2014-05-18 12:18:35 Mariostar123 i guess.... 2014-05-18 12:18:44 Mariostar123 but ill try not to 2014-05-18 12:19:19 Mariostar123 the time is:12:21 2014-05-18 12:20:36 Mariostar123 I can't get on IRC,my only internet compattible devises are WiiU and 3DS 2014-05-18 12:20:42 @PikFan alright, should get to sleep, 4:20 here 2014-05-18 12:20:50 @PikFan night 2014-05-18 12:20:50 Mariostar123 why did I transfer data >_< 2014-05-18 12:20:51 @Espyo wow PikFan 2014-05-18 12:20:52 @Espyo all right, night 2014-05-18 12:21:00 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-18 12:21:08 @Espyo and you didn't annoy, but it was kind of upsetting seeing the rules change without warning 2014-05-18 12:21:18 Mariostar123 k,ill leave them 2014-05-18 12:21:28 Mariostar123 I just get exited 2014-05-18 12:21:39 @Espyo that's why I'm saying you should find a way to stay contactable somehow 2014-05-18 12:21:58 @Espyo you can stay on the chatroom on your 3DS, can't you? 2014-05-18 12:22:51 Mariostar123 no 2014-05-18 12:23:35 Mariostar123 should I just always leave it? 2014-05-18 12:23:41 @Espyo yeah 2014-05-18 12:23:49 @Espyo but like I said, we'll do themed battles 2014-05-18 12:23:50 Mariostar123 and just select a character and stage? 2014-05-18 12:23:55 @Espyo so if, for instance, we pick Falcon only 2014-05-18 12:23:56 Mariostar123 o.... 2014-05-18 12:24:05 @Espyo there should be a way for us to tell you to pick Falcon as well 2014-05-18 12:24:07 @Espyo know what I mean? 2014-05-18 12:24:08 Mariostar123 how about taunt messeging? 2014-05-18 12:24:21 Mariostar123 "cpt.falcon" 2014-05-18 12:24:27 Mariostar123 "lolwut" 2014-05-18 12:24:32 Mariostar123 "im sexy" 2014-05-18 12:24:39 Mariostar123 "ect" 2014-05-18 12:25:17 @Espyo those can be anything 2014-05-18 12:25:22 Mariostar123 .... 2014-05-18 12:25:29 @Espyo no limit to the taunts 2014-05-18 12:26:08 Mariostar123 how about I just sit out and join the next battle then? 2014-05-18 12:26:46 Mariostar123 like if your all samus and im Mario,I drop out a wait for the next one? 2014-05-18 12:27:17 Mariostar123 this chatroom needs music.... 2014-05-18 12:27:31 @Espyo I suppose you could do that 2014-05-18 12:27:37 @Espyo but you could miss out on a lot of battles that way 2014-05-18 12:27:47 @Espyo like I said, can't you chat on the 3DS while you play on the Wii U? 2014-05-18 12:27:48 Mariostar123 true.... 2014-05-18 12:28:00 Mariostar123 no,the 3DS is to weak 2014-05-18 12:28:09 Mariostar123 unless you had Miiverse..... 2014-05-18 12:29:05 @Espyo how is it too weak? 2014-05-18 12:29:23 @Espyo you only really need to read the messages I send about the next themed battle 2014-05-18 12:29:28 Mariostar123 it can't show caption,java,abode,ect 2014-05-18 12:29:35 @Espyo hmm 2014-05-18 12:29:37 @Espyo I see 2014-05-18 12:29:50 Mariostar123 ill try and get on with the name weegee 2014-05-18 12:30:00 Mariostar123 but it will probley fail 2014-05-18 12:30:13 @Espyo all right 2014-05-18 12:30:16 @Espyo test now 2014-05-18 12:30:44 Mariostar123 ok,i just cliked chatroom 2014-05-18 12:30:57 Mariostar123 nope.... 2014-05-18 12:31:05 Mariostar123 wait.... 2014-05-18 12:31:12 Mariostar123 YES 2014-05-18 12:31:28 --> weegee (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 12:31:37 Mariostar123 it lags a bit but im on 2014-05-18 12:32:16 weegee SUCCSESS 2014-05-18 12:32:44 weegee Good thing we can show a seend button 2014-05-18 12:32:59 @Espyo nice 2014-05-18 12:33:00 @Espyo yeah 2014-05-18 12:33:05 -- weegee is now known as Mariostar123DS 2014-05-18 12:33:08 @Espyo all right, we can use that 2014-05-18 12:33:12 Mariostar123 :D 2014-05-18 12:33:26 Mariostar123 this chatroom works on everything! 2014-05-18 12:33:35 @Espyo yeah 2014-05-18 12:33:43 Mariostar123DS I know right! 2014-05-18 12:33:46 @Espyo because it uses simple systems 2014-05-18 12:33:48 Mariostar123 lol 2014-05-18 12:34:10 Mariostar123DS shall Iturn it off now? 2014-05-18 12:34:18 @Espyo yeah 2014-05-18 12:34:32 Mariostar123 k,ill just save it on the favourites 2014-05-18 12:35:06 Mariostar123DS done,bye 2014-05-18 12:35:30 Mariostar123 it has a tiny lag,but we can bypass that 2014-05-18 12:36:19 Mariostar123 talk about a toasty! 2014-05-18 12:36:36 Mariostar123 *mortal combat reference* 2014-05-18 12:37:55 Mariostar123 so,want to play Mariokart? 2014-05-18 12:37:59 @Espyo not now 2014-05-18 12:38:05 Mariostar123 k 2014-05-18 12:38:51 Mariostar123 what time are we playing Mario kart? 2014-05-18 12:39:29 @Espyo only tomorrow 2014-05-18 12:39:31 @Espyo today is Brawl day 2014-05-18 12:39:34 Mariostar123 ok 2014-05-18 12:39:51 Mariostar123 and next year smadh4 days? 2014-05-18 12:40:10 <-- Mariostar123DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 12:41:11 @Espyo hopefully 2014-05-18 12:41:13 @Espyo if I can buy a Wii U 2014-05-18 12:41:16 Mariostar123 http://www.youtube.com/watch?v=KeIVybmTgWg this has been running for 2 hours! 2014-05-18 12:41:22 Mariostar123 or a 3DS 2014-05-18 12:41:35 Mariostar123 that has miiverse,online play,ect 2014-05-18 12:41:53 @Espyo I can't afford both 2014-05-18 12:41:57 @Espyo so I prefer the Wii U 2014-05-18 12:42:00 Mariostar123 ok 2014-05-18 12:42:07 Mariostar123 I preorded both 2014-05-18 12:42:12 Mariostar123 can't wait 2014-05-18 12:42:39 Mariostar123 ill torture you by saying "wow,peach is so sexy in HD" 2014-05-18 12:42:44 Mariostar123 XD 2014-05-18 12:44:09 Mariostar123 im going to play majora's mask soon,so ill be offline 2014-05-18 12:44:24 Mariostar123 unless I turn on my 3DS 2014-05-18 12:46:57 @Espyo :( 2014-05-18 12:46:57 Mariostar123 I know your busy,but what you doing? 2014-05-18 12:47:03 @Espyo just watching videos 2014-05-18 12:47:08 Mariostar123 ok 2014-05-18 12:47:13 @Espyo it's tough going back and forth on the chatroom and video 2014-05-18 12:47:23 Mariostar123 not on my Wiiu 2014-05-18 12:47:42 Mariostar123 just got it on the TV while chat is on the gamepa 2014-05-18 12:47:45 Mariostar123 d 2014-05-18 12:48:54 Mariostar123 and theres a button on the ganepad to pop it on and off (if its off,the audios still on) 2014-05-18 12:50:42 @Espyo oh, nice 2014-05-18 12:50:49 Mariostar123 im leaving to play on the Wii mode soon 2014-05-18 12:51:13 Mariostar123 i wont come on 3DS because your barley here right now 2014-05-18 12:51:25 Mariostar123 please understand 2014-05-18 12:51:28 @Espyo all right 2014-05-18 12:51:45 Mariostar123 not to mention the 3DS slightly lags on the chatroom 2014-05-18 12:51:54 @Espyo yeah 2014-05-18 12:52:05 Mariostar123 im watching http://www.youtube.com/watch?v=_dnh-0GZkjQ 2014-05-18 12:52:10 Mariostar123 again.... 2014-05-18 12:53:52 Mariostar123 by the way,pikmin 3 has DLC 2014-05-18 12:54:40 Mariostar123 this is interesting me http://www.youtube.com/watch?v=fq6qcvfZldE&list=UUo_IB5145EVNcf8hw1Kku7w 2014-05-18 12:56:11 @Espyo yeah, I knew it had DLC 2014-05-18 12:57:59 Mariostar123 yeah 2014-05-18 12:58:48 Mariostar123 ....so... 2014-05-18 12:58:59 Mariostar123 want a falcon pawnch? 2014-05-18 12:59:28 Mariostar123 also,I am in the whole game now arn't I? 2014-05-18 13:00:27 Mariostar123 Game of brawl* 2014-05-18 13:00:41 @Espyo what do you mean in the whole game? 2014-05-18 13:02:26 Mariostar123 you said you had themed matches 2014-05-18 13:03:22 Mariostar123 now I can communicate using the power of simple chatrooms 2014-05-18 13:03:23 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 13:05:46 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 13:05:51 Mariostar123 lost connection 2014-05-18 13:06:14 Mariostar123 so yeah,I can join the themed battles now,right? 2014-05-18 13:06:22 @Espyo yes, but they are not now 2014-05-18 13:06:51 Mariostar123 ok 2014-05-18 13:07:08 Mariostar123 Is anyone else joining Mariokart tommorow? 2014-05-18 13:07:42 @Espyo yes 2014-05-18 13:07:48 @Espyo same people as yesterday 2014-05-18 13:07:54 Mariostar123 k 2014-05-18 13:08:03 Mariostar123 those guys are great.... 2014-05-18 13:08:11 @Espyo yeah... 2014-05-18 13:08:18 Mariostar123 despite I never said anything to them.... 2014-05-18 13:08:32 Mariostar123 have you ever played mortal combat 2014-05-18 13:09:21 Mariostar123 ever herd the toasty reference? 2014-05-18 13:09:33 @Espyo yeah 2014-05-18 13:09:42 @Espyo I only played Mortal Kombat several years ago 2014-05-18 13:10:38 Mariostar123 skip to 1:33 http://www.youtube.com/watch?v=pRcA0AZhuhs 2014-05-18 13:10:54 Mariostar123 I made my up taunt messege TOASTY 2014-05-18 13:11:25 Mariostar123 anyway,brb,playing Zelda 2014-05-18 13:11:29 Mariostar123 bye pal 2014-05-18 13:11:40 Mariostar123 have a toasty 2014-05-18 13:11:40 @Espyo all right 2014-05-18 13:11:49 @Espyo see ya 2014-05-18 13:12:08 Mariostar123 by the way 2014-05-18 13:12:13 Mariostar123 watch this http://www.youtube.com/watch?v=1C1botTJaNE 2014-05-18 13:12:18 Mariostar123 bye 2014-05-18 13:12:27 Mariostar123 see you in about half hour 2014-05-18 13:12:30 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 13:17:45 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 13:17:55 Mariostar123 one question by the way 2014-05-18 13:18:37 @Espyo yes? 2014-05-18 13:18:55 Mariostar123 what times the Mariokartwii wi game? 2014-05-18 13:19:00 Mariostar123 tomorrow 2014-05-18 13:19:20 @Espyo not sure, but it might be 21 GTM 2014-05-18 13:19:21 @Espyo *GMT 2014-05-18 13:19:35 @Espyo 9 PM UK time 2014-05-18 13:19:39 Mariostar123 K 2014-05-18 13:19:57 Mariostar123 im unavailable until around 2pm 2014-05-18 13:20:14 Mariostar123 and just needed to chec 2014-05-18 13:20:17 Mariostar123 check 2014-05-18 13:20:57 @Espyo ok 2014-05-18 13:21:08 Mariostar123 so 9pm tommorow? 2014-05-18 13:21:12 Mariostar123 got it 2014-05-18 13:21:52 Mariostar123 4pm-brawl 9pm(monday)-Mario kart Wii 2014-05-18 13:22:57 Mariostar123 got it 2014-05-18 13:23:11 @Espyo yep 2014-05-18 13:24:02 Mariostar123 k 2014-05-18 13:24:15 Mariostar123 brawl mode activate! 2014-05-18 13:24:39 Mariostar123 ill join here on my 3DS around quater to 4 2014-05-18 13:25:45 Mariostar123 you know there was going to be GBA and 3DS pikmin games, 2014-05-18 13:25:58 Mariostar123 would you like them more? 2014-05-18 13:28:34 Mariostar123 dose that make sence? 2014-05-18 13:29:46 Mariostar123 eh.... 2014-05-18 13:29:52 Mariostar123 so how you doing? 2014-05-18 13:30:08 @Espyo wait, the tournament happens at 4 2014-05-18 13:30:12 @Espyo we'll only do the themed battles after 2014-05-18 13:30:18 @Espyo I don't know how long the tourney will go for 2014-05-18 13:31:22 Mariostar123 ok 2014-05-18 13:31:51 Mariostar123 if I lose,will I get at least one chance to chose the settings? 2014-05-18 13:31:57 Mariostar123 if you say its ok 2014-05-18 13:34:17 Mariostar123 are we doing other things on brawl like multi man and home run contest? 2014-05-18 13:35:27 @Espyo we might 2014-05-18 13:35:38 @Espyo depends on if it drags too long, if we feel like it, etc. 2014-05-18 13:37:31 Mariostar123 k 2014-05-18 13:37:55 Mariostar123 ill be here by the name "Mariostar123DS" 2014-05-18 13:38:07 Mariostar123 get it? 12 3DS 2014-05-18 13:39:30 @Espyo yeah 2014-05-18 13:39:41 Mariostar123 ok 2014-05-18 13:39:50 Mariostar123 so.....hows life? 2014-05-18 13:41:05 Mariostar123 lolPBGmoment 2014-05-18 13:41:16 Mariostar123 i love youtubes 2014-05-18 13:41:39 @Espyo fine 2014-05-18 13:41:41 @Espyo you? 2014-05-18 13:42:32 Mariostar123 good 2014-05-18 13:42:47 Mariostar123 im using fox again 2014-05-18 13:43:04 Mariostar123 or pit....lucario...mario 2014-05-18 13:43:10 Mariostar123 im not sure 2014-05-18 13:43:22 @Espyo we just pick different characters each time 2014-05-18 13:43:28 @Espyo we only stick to one character when playing seriously 2014-05-18 13:43:52 Mariostar123 ok 2014-05-18 13:44:12 Mariostar123 any ideas to pass time? 2014-05-18 13:44:46 @Espyo find a hobby 2014-05-18 13:44:48 @Espyo watch videos 2014-05-18 13:46:06 Mariostar123 find a hobby..... 2014-05-18 13:46:09 @Espyo yeah 2014-05-18 13:46:13 Mariostar123 ok 2014-05-18 13:46:14 @Espyo I'm working on the engine 2014-05-18 13:46:17 @Espyo maybe make a fan game? 2014-05-18 13:46:29 Mariostar123 nah,I made too many 2014-05-18 13:46:49 Mariostar123 it won't work on my Wiu anyway 2014-05-18 13:46:53 Mariostar123 *wiiu 2014-05-18 13:47:07 Mariostar123 ill just watch youtubes.... 2014-05-18 13:47:50 Mariostar123 yes he made a new video!!! http://www.youtube.com/watch?v=VjBV0EDiHYk&list=UU8LcA3grYZg0GNpxlXh8owg 2014-05-18 13:50:45 Mariostar123 not as good so far 2014-05-18 13:55:04 Testyo [Pikipedia RC] Super Smash Bros. 4 by 47.17.69.221 (+28) http://www.pikminwiki.com/index.php?title=Super_Smash_Bros._4&curid=9716&diff=80370&oldid=79734 2014-05-18 13:56:12 Mariostar123 ..... 2014-05-18 13:56:34 Mariostar123 Im going to think of a artical to make 2014-05-18 13:58:59 Mariostar123 testyo 2014-05-18 13:59:07 Mariostar123 hey testyo 2014-05-18 13:59:14 Mariostar123 testyo help 2014-05-18 13:59:14 Testyo Help file: https://dl.dropbox.com/u/47921869/Permanent/Testyo/Help.html Ask Espyo for more info! 2014-05-18 13:59:33 Mariostar123 ok,now I got something to read 2014-05-18 14:00:06 Testyo [Pikipedia RC] Super Smash Bros. 4 by Espyo (-28 m Undo revision 80370 by [[Special:Contributions/47.17.69.221|47.17.69.221]] ([[Us...) http://www.pikminwiki.com/index.php?title=Super_Smash_Bros._4&curid=9716&diff=80371&oldid=80370 2014-05-18 14:00:18 Mariostar123 testyo how old are you? 2014-05-18 14:00:18 Testyo I was born on 8/4/2012, which means I am 2 years, 1 month and 10 days old! 2014-05-18 14:00:43 Mariostar123 testyo blackjack 2014-05-18 14:01:12 Mariostar123 testyo blackjack [] 2014-05-18 14:01:27 Mariostar123 i'm bored 2014-05-18 14:01:36 Mariostar123 I'm bored 2014-05-18 14:01:43 Mariostar123 testyo.... 2014-05-18 14:01:48 @Espyo he's serious here 2014-05-18 14:01:51 @Espyo go on #Testyo 2014-05-18 14:01:54 @Espyo and you can play around then 2014-05-18 14:01:57 Mariostar123 k 2014-05-18 14:02:34 Mariostar123 I was looking at the help thing,thanks Espyo 2014-05-18 14:03:12 Mariostar123 it told me to look something up and tesco came up.... 2014-05-18 14:05:26 Mariostar123 I won blackjack with testyo without knowing what to do..... 2014-05-18 14:07:45 Mariostar123 : testyo describe espyo : Espyo is a level 35 Wobbly Poltergeist, and their special power is: Buzzing really loudly! : testyo describe Mariostar123 : Mariostar123, you are a level 9 Weak Dwarf, and your special power is: Fireballs! 2014-05-18 14:08:10 Mariostar123 Im firemariostar apparently 2014-05-18 14:11:59 Mariostar123 want to play hangman? 2014-05-18 14:19:12 <-- Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit 2014-05-18 14:24:26 --> Miles (Miles@c-76-20-230-193.hsd1.ga.comcast.net) has joined #pikipedia 2014-05-18 14:27:10 Mariostar123 kjg 2014-05-18 14:28:50 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 14:40:41 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 14:41:21 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-18 14:45:25 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 14:45:39 Mariostar123 Espyo,you there? 2014-05-18 14:45:44 @Espyo yeah 2014-05-18 14:46:01 Mariostar123 could we have a practice session on brawl? 2014-05-18 14:46:23 Mariostar123 did testyo give you my memo? 2014-05-18 14:46:54 <-- Espyo (Espyo@i24-799-28-826.cpe.netcabo.pt) has left #pikipedia 2014-05-18 14:46:54 --> Espyo (Espyo@i24-799-28-826.cpe.netcabo.pt) has joined #pikipedia 2014-05-18 14:46:54 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-18 14:46:57 @Espyo he did now 2014-05-18 14:47:08 @Espyo hehe 2014-05-18 14:47:14 Mariostar123 .... 2014-05-18 14:47:24 @Espyo uh, I'll be busy practicing offline, for the tournament 2014-05-18 14:47:32 Mariostar123 ok 2014-05-18 14:48:13 Mariostar123 Im going to go on SSE and try to defeate every enemy in every section then 2014-05-18 14:48:27 Mariostar123 *defeate 2014-05-18 14:48:34 Mariostar123 *defeat 2014-05-18 14:48:41 Mariostar123 bye 2014-05-18 14:48:58 Miles I'll get every trophy one of these days 2014-05-18 14:49:09 Miles And by one of these days I mean hopefully before Smash 4 comes out 2014-05-18 14:49:13 Mariostar123 see you at 3:35ish Espyo 2014-05-18 14:49:25 Mariostar123 hi Miles 2014-05-18 14:49:34 Miles Hi 2014-05-18 14:49:57 Mariostar123 so.....would I have met you before? 2014-05-18 14:50:09 Miles Um 2014-05-18 14:50:13 Miles I don't talk in here much 2014-05-18 14:50:16 Mariostar123 ok 2014-05-18 14:50:52 Mariostar123 I got to go train for a brawl game agaisnt Espyo,some person called DEKU,and soneone called C98 2014-05-18 14:50:59 @Espyo yep 2014-05-18 14:51:14 Mariostar123 yup 2014-05-18 14:51:25 @Espyo hmm, I'm almost done completing Boss Battles on Intense with everyone 2014-05-18 14:51:28 @Espyo just need to finish ROB 2014-05-18 14:51:31 @Espyo ...dammit ROB 2014-05-18 14:51:41 Mariostar123 you good with ROB? 2014-05-18 14:51:46 @Espyo not really 2014-05-18 14:51:53 @Espyo he's so clunky 2014-05-18 14:51:59 Mariostar123 I wish I could help 2014-05-18 14:52:03 Miles Once was enough for me 2014-05-18 14:52:56 Mariostar123 We are aiming for every character 2014-05-18 14:53:03 Miles Man, completing everything is bad enough with 35 roster slots 2014-05-18 14:53:07 Miles 45-50 is going to be horrible 2014-05-18 14:53:39 Mariostar123 he.. 2014-05-18 14:54:30 Mariostar123 testyo say pingas 2014-05-18 14:54:44 Mariostar123 dose not work here 2014-05-18 14:55:34 Mariostar123 wow,just beat a team of two level nine meta knights,onto three 2014-05-18 14:56:07 Mariostar123 I....ok im going to turn the wii mode on and brawl three now 2014-05-18 14:56:12 Mariostar123 bye 2014-05-18 14:56:16 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 14:57:43 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 14:58:10 Mariostar123 whats your favorite pokémon to spawn? 2014-05-18 14:59:21 @Espyo I think Sakurai said the roster wouldn't be bigger than Brawl's 2014-05-18 14:59:32 Mariostar123 same amount i hope 2014-05-18 14:59:49 @Espyo Mariostar123, this is a regular chatroom, not a funhouse for Testyo wackiness 2014-05-18 14:59:54 @Espyo that's why he's kind of silent here 2014-05-18 15:00:00 Mariostar123 o,ok 2014-05-18 15:00:31 Mariostar123 can I #testyo whenever I want though?(if I don't spam it) 2014-05-18 15:02:04 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-18 15:02:12 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 15:02:19 Mariostar123 sorry internet glitch 2014-05-18 15:02:19 @Espyo of course you can, that's what it's there for 2014-05-18 15:02:41 Mariostar123 ok 2014-05-18 15:03:04 Mariostar123 so yes,pokèmon,favorite to spawn? 2014-05-18 15:03:15 @Espyo none in particular 2014-05-18 15:03:22 Mariostar123 Manaphy 2014-05-18 15:03:34 Mariostar123 uses a body switch move 2014-05-18 15:03:46 Mariostar123 however can cause a glitch 2014-05-18 15:04:02 @Espyo yeah 2014-05-18 15:04:19 Mariostar123 6 encounters,less then mew. 2014-05-18 15:04:34 Mariostar123 1 online with no time remaining 2014-05-18 15:05:13 Mariostar123 http://www.serebii.net/ssbb/pokeball.shtml 2014-05-18 15:05:46 Mariostar123 whered miles go? 2014-05-18 15:05:51 @Espyo you could use the wiki for that 2014-05-18 15:05:53 @Espyo he's busy 2014-05-18 15:06:01 @Espyo I've said it to Rose, but I'll tell you as well 2014-05-18 15:06:06 Mariostar123 k 2014-05-18 15:06:08 @Espyo a chatroom isn't like an actual room 2014-05-18 15:06:12 @Espyo people aren't necessarily here 2014-05-18 15:06:18 @Espyo they can be at work, and leave their laptops here 2014-05-18 15:06:30 @Espyo or they can have gone to the bathroom, but stay on the chatroom 2014-05-18 15:06:37 @Espyo or they could be on the computer, but working on something 2014-05-18 15:06:38 Mariostar123 my jobs hard,but well paid 2014-05-18 15:06:42 @Espyo so people can stop responding at any time 2014-05-18 15:06:45 @Espyo what do you do? 2014-05-18 15:07:29 Mariostar123 id rather not say.... 2014-05-18 15:08:16 Mariostar123 anyway,My phone us ringing,brb 2014-05-18 15:08:20 @Espyo sure 2014-05-18 15:09:04 Mariostar123 *is 2014-05-18 15:09:17 Mariostar123 ? 2014-05-18 15:09:23 Mariostar123 sure????? 2014-05-18 15:09:29 Mariostar123 waaa?? 2014-05-18 15:09:54 @Espyo sure, it's fine if you don't say it 2014-05-18 15:10:04 Mariostar123 2L84ME 2014-05-18 15:11:09 Mariostar123 Who are DEKU and C98? 2014-05-18 15:11:49 Mariostar123 any place I could find them (not in person) 2014-05-18 15:12:18 @Espyo friends on another IRC network 2014-05-18 15:12:38 Mariostar123 ok. 2014-05-18 15:12:51 Mariostar123 could I see them now? 2014-05-18 15:15:24 @Espyo they're not online 2014-05-18 15:16:36 Mariostar123 ok 2014-05-18 15:38:05 -- irc: disconnected from server 2014-05-18 15:38:16 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-18 15:38:16 -- 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" 2014-05-18 15:38:16 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-18 15:38:16 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-18 15:38:16 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-18 15:38:16 -- Mode #pikipedia [+o J] by ChanServ 2014-05-18 15:38:18 -- Mode #pikipedia [+nt] 2014-05-18 15:38:18 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-18 15:49:11 --> MarioStar3DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 15:50:24 MarioStar3DS My body is ready 2014-05-18 15:51:48 MarioStar3DS you there? 2014-05-18 15:54:04 @Espyo yeah, practicing 2014-05-18 15:54:35 MarioStar3DS same 2014-05-18 15:55:41 <-- MarioStar3DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 15:56:40 --> Mariostar123-3DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 15:57:33 Mariostar123-3DS Want to start early? 2014-05-18 15:59:39 Mariostar123-3DS remember to remind me on the themes 2014-05-18 15:59:58 @Espyo no? 2014-05-18 16:00:08 @Espyo we're having a tournament now 2014-05-18 16:00:15 Mariostar123-3DS ? 2014-05-18 16:00:17 @Espyo we're not starting the themed battles until after it's over 2014-05-18 16:00:27 Mariostar123-3DS ok 2014-05-18 16:00:39 Mariostar123-3DS im joining now 2014-05-18 16:01:02 Mariostar123-3DS It keeps saying "unable" 2014-05-18 16:01:14 @Espyo you're not in the tournament 2014-05-18 16:01:23 @Espyo you'll only play with us after this 2014-05-18 16:01:31 Mariostar123-3DS why? 2014-05-18 16:01:41 @Espyo because it wasn't organized with you in mind 2014-05-18 16:01:53 Mariostar123-3DS how long? 2014-05-18 16:01:56 @Espyo I don't know 2014-05-18 16:01:59 @Espyo maybe an hour 2014-05-18 16:02:15 Mariostar123-3DS ...... 2014-05-18 16:03:58 Mariostar123-3DS :( 2014-05-18 16:04:35 Mariostar123-3DS why am I never included in anything..... 2014-05-18 16:07:04 @Espyo because we didn't plan for it? 2014-05-18 16:07:27 Mariostar123-3DS ...... 2014-05-18 16:07:34 @Espyo stop trying, I already said you're not in it 2014-05-18 16:07:52 Mariostar123-3DS Well what am I ment to do? 2014-05-18 16:08:33 Mariostar123-3DS how long do I need to wait? 2014-05-18 16:09:06 Mariostar123-3DS How long do I need to wait? 2014-05-18 16:09:35 @Espyo I just said, I don't know 2014-05-18 16:10:44 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 16:12:12 MS what time can I join? 2014-05-18 16:12:24 @Espyo I 2014-05-18 16:12:25 @Espyo just 2014-05-18 16:12:26 @Espyo said 2014-05-18 16:12:27 @Espyo I 2014-05-18 16:12:28 @Espyo don't 2014-05-18 16:12:29 @Espyo know 2014-05-18 16:14:07 <-- Mariostar123-3DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 16:15:47 MS Il come at half past,if you reject ill come at 5,if you reject ill just wait 2014-05-18 16:16:23 @Espyo I'll tell you here when you acn 2014-05-18 16:16:25 @Espyo *can 2014-05-18 16:16:33 @Espyo now stop being inpatient 2014-05-18 16:16:40 MS k 2014-05-18 16:27:31 MS .... 2014-05-18 16:31:07 MS hey 2014-05-18 16:34:56 MS you there? 2014-05-18 16:35:27 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 16:39:38 --> M3DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 16:40:17 M3DS .... 2014-05-18 16:41:54 @Espyo if you ask once more to join 2014-05-18 16:41:58 @Espyo I will remove you from the friend roster 2014-05-18 16:42:04 @Espyo am I making myself perfectly clear? 2014-05-18 16:42:31 M3DS How long left.... 2014-05-18 16:48:55 @Espyo I don't know 2014-05-18 16:50:54 --> MS3DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 16:52:13 <-- M3DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 16:54:00 <-- MS3DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-18 16:54:34 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 16:55:22 MS now?.... 2014-05-18 16:59:25 MS you there? 2014-05-18 17:01:19 Testyo [Pikipedia RC] File talk:Pikmin 3 logo (... by 47.17.69.221 (+195 N Created page with "== Summary == {{Aboutlife |1=The logo of [[Pikmin 3|Pikmin 4]...) http://www.pikminwiki.com/index.php?title=File_talk:Pikmin_3_logo_(red).png&curid=9821&diff=80372&oldid=0 2014-05-18 17:01:19 Testyo [Pikipedia RC] File talk:Pikmin 3 logo (... by 47.17.69.221 (-79) http://www.pikminwiki.com/index.php?title=File_talk:Pikmin_3_logo_(red).png&curid=9821&diff=80373&oldid=80372 2014-05-18 17:01:42 MS *sighh* 2014-05-18 17:04:59 MS you there? 2014-05-18 17:06:29 MS its been a hour 2014-05-18 17:08:51 MS .... 2014-05-18 17:09:13 @Espyo tournaments take long 2014-05-18 17:09:16 @Espyo it might last another half hour 2014-05-18 17:09:20 MS you forgotten me haven't you? 2014-05-18 17:09:50 MS Can you just give me a time to join? 2014-05-18 17:11:38 @Espyo I 2014-05-18 17:11:39 @Espyo don't 2014-05-18 17:11:39 @Espyo know 2014-05-18 17:13:11 MS by the way,Rose can join Mario kart tommorow 2014-05-18 17:13:54 @Espyo ok, cool 2014-05-18 17:15:32 MS is it battle or race? 2014-05-18 17:15:41 @Espyo race 2014-05-18 17:15:49 @Espyo we might go on battle after a few hours 2014-05-18 17:15:53 MS k 2014-05-18 17:16:19 MS few hours...we start at 9....ok?... 2014-05-18 17:16:46 MS so hows to tournament? 2014-05-18 17:19:35 MS ..... 2014-05-18 17:20:04 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 17:20:28 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 17:22:33 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-18 17:23:19 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 17:24:18 MS Will you be done by 6pm? 2014-05-18 17:32:24 @Espyo it's over 2014-05-18 17:32:27 @Espyo but there's no room for you 2014-05-18 17:32:41 @Espyo this guy will leave soon, because he always does 2014-05-18 17:32:44 @Espyo you'll join then 2014-05-18 17:32:56 MS can I join when ther is 2014-05-18 17:33:01 @Espyo yeah 2014-05-18 17:33:04 @Espyo I just said you can 2014-05-18 17:33:18 MS thanks 2014-05-18 17:34:39 MS i just joinec 2014-05-18 17:38:38 @Espyo ok, come 2014-05-18 17:38:39 MS I thought you said I could join 2014-05-18 17:38:43 @Espyo he's having tea 2014-05-18 17:38:53 @Espyo but when he returns, you'll leave 2014-05-18 17:39:05 MS theme? 2014-05-18 17:39:22 @Espyo Mario only 2014-05-18 17:39:28 @Espyo items and stages like normal 2014-05-18 17:39:32 @Espyo but this match is only Mario 2014-05-18 17:39:35 MS why do i need to leave 2014-05-18 17:39:56 @Espyo because the other person is our friend 2014-05-18 17:40:08 @Espyo we want to spend the last days with our friends, not with strangers we met yesterday 2014-05-18 17:40:40 @Espyo you can join if there's room, but the big friends have priority, understand? 2014-05-18 17:41:55 @J 'the last days'? 2014-05-18 17:43:14 @Espyo yeah 2014-05-18 17:43:16 @Espyo NWFC ends tomorrow 2014-05-18 17:43:28 MS theme? 2014-05-18 17:44:00 @Espyo Ganondorf only, is the next theme 2014-05-18 17:44:30 @J oh, really? 2014-05-18 17:44:40 @J I'm surprised they'd do that before the next SSB 2014-05-18 17:45:04 @J but hey, it's better than the world ending (not that I...uh...thought that's what you meant, or anything) 2014-05-18 17:46:09 @Espyo yeah 2014-05-18 17:46:14 @Espyo though they're doing it just before the new Mario KArt 2014-05-18 17:46:20 @Espyo MK8 comes out in 10 dayys 2014-05-18 17:46:23 @Espyo *days 2014-05-18 17:47:26 @Espyo MS, Ganondorf 2014-05-18 17:47:31 MS theme? 2014-05-18 17:47:37 @Espyo Ganondorf only 2014-05-18 17:51:25 MS now thats what I call toasty 2014-05-18 17:51:28 @Espyo hehe 2014-05-18 17:51:33 @Espyo all right, next theme is Wario 2014-05-18 17:55:12 MS k 2014-05-18 17:59:48 MS confusing 2014-05-18 18:00:01 MS well done btw 2014-05-18 18:00:25 @Espyo heh 2014-05-18 18:00:27 @Espyo yeah 2014-05-18 18:02:22 @Espyo next theme: all Ness 2014-05-18 18:10:03 MS next theme? 2014-05-18 18:10:17 @Espyo Lucario only 2014-05-18 18:10:46 MS YES :D 2014-05-18 18:18:59 @Espyo heh, that lightning 2014-05-18 18:19:16 MS he? 2014-05-18 18:19:30 @Espyo huh? 2014-05-18 18:19:49 MS whats after this brawl? 2014-05-18 18:23:33 @Espyo Red Yoshi only 2014-05-18 18:23:33 MS I won :) 2014-05-18 18:24:05 MS Cruel,confusing,comirmed 2014-05-18 18:28:50 MS I got to go now, 2014-05-18 18:28:55 @Espyo oh, ok 2014-05-18 18:29:23 MS ill rejoin in at least 15 minutes 2014-05-18 18:34:11 @J the sign of a good dinner: you struggle to carry the plate with one hand 2014-05-18 18:34:28 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 18:35:08 @Espyo I thought you'd struggle to wak as a resul 2014-05-18 18:35:09 @Espyo *y 2014-05-18 18:35:11 @Espyo *result 2014-05-18 18:35:16 @J ... 2014-05-18 18:35:19 @Espyo like... full stomach... 2014-05-18 18:35:25 @Espyo uh, I could've worded it better 2014-05-18 18:35:28 @Espyo you know what, neve rmind 2014-05-18 18:35:28 @J I was ...ing at your typos, but sure 2014-05-18 18:35:30 @Espyo *never mind 2014-05-18 18:35:35 @Espyo I can't even type and Brawl 2014-05-18 18:36:04 @J I have to say, assassin sausages is new 2014-05-18 18:36:10 @J suddenly spraying fat everywhere 2014-05-18 18:36:41 @J uh, I should clarify: these are sausages I'm cooking, I don't just have some sausages lying on my desk all the time, and especially not ones that suddenly start spraying fat 2014-05-18 18:37:10 @Espyo you should, though 2014-05-18 18:37:14 @Espyo but yeah, I actually know what you mean 2014-05-18 18:37:22 @Espyo sometimes we buy sausages that spray fat as well 2014-05-18 18:37:25 @Espyo it's really unsettling 2014-05-18 18:37:31 @Espyo and when you think they're out of juice 2014-05-18 18:37:35 @Espyo you stab them with the fork 2014-05-18 18:37:45 @Espyo and you get sprayed 2014-05-18 18:43:25 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 18:44:22 MS Espyo,can I rejoin? 2014-05-18 18:44:33 @Espyo well, you can, but 2014-05-18 18:44:50 MS but? 2014-05-18 18:45:02 @Espyo they're going to watch Catchphrase, a TV show 2014-05-18 18:45:05 @Espyo they won't be back for a few minutes 2014-05-18 18:45:09 @Espyo so we're gonna have a little break 2014-05-18 18:45:34 MS I know catchphrase....don't like i 2014-05-18 18:45:43 MS theme? 2014-05-18 18:46:09 @Espyo we're not playing now 2014-05-18 18:46:12 @Espyo Catchphrase 2014-05-18 18:46:17 @Espyo we'll be back in 45 minutes or so 2014-05-18 18:46:48 MS can we train online? 2014-05-18 18:47:18 @Espyo not right now, I want to take a break 2014-05-18 18:47:21 @Espyo need to eat something 2014-05-18 18:47:48 MS Damn,its on til 7:30 2014-05-18 18:48:27 MS when your back,can we mess around while we wait? 2014-05-18 18:53:34 MS Also,I can join Mariokartwii,right? 2014-05-18 18:53:50 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 18:55:56 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 18:57:08 MS Also,did you add me on Mariokart? 2014-05-18 19:03:35 @Espyo oh, not yet, sorry 2014-05-18 19:03:40 @Espyo but I will tomorrow before we play 2014-05-18 19:03:49 MS k 2014-05-18 19:03:59 @Espyo I'll try to complete Boss Battles on Intense with ROB 2014-05-18 19:04:05 MS brawl now? 2014-05-18 19:04:07 @Espyo afterwards, we'll mess around on Brawl some more before they come 2014-05-18 19:04:32 MS k,im in a taunt party right now 2014-05-18 19:04:50 MS now im not.... 2014-05-18 19:05:21 MS Could you join me on homerun contest? 2014-05-18 19:05:54 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 19:06:31 --> Mariostar3D (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 19:07:17 Mariostar3D Sorry,internet glitch 2014-05-18 19:08:28 Mariostar3D Could you join my homerun contest? 2014-05-18 19:09:05 @Espyo afterwards, we'll mess around on Brawl some more before they come 2014-05-18 19:09:07 @Espyo I said after 2014-05-18 19:09:10 @Espyo after Boss Battles with Intense 2014-05-18 19:09:11 @Espyo not now 2014-05-18 19:10:20 Mariostar3D k,im training on home run,im on online,so come if you want,I don't give a sh!t if you don't 2014-05-18 19:11:35 Mariostar3D you said there watching catchphrase right? 2014-05-18 19:11:50 Mariostar3D its on intil 7:30 2014-05-18 19:12:51 @Espyo yeah 2014-05-18 19:13:35 Mariostar3D are we having themed battles,serious or messing around later? 2014-05-18 19:13:57 @Espyo themed still 2014-05-18 19:14:28 Mariostar3D k,when you opening the group? 2014-05-18 19:16:18 Mariostar3D damn,I just rememberd im out tuesday 2014-05-18 19:17:15 Testyo [Pikipedia RC] File talk:Pikmin 3 logo (... by 47.17.69.221 (+36) http://www.pikminwiki.com/index.php?title=File_talk:Pikmin_3_logo_(red).png&curid=9821&diff=80374&oldid=80373 2014-05-18 19:20:36 Mariostar3D 10 more minutes 2014-05-18 19:27:17 @Espyo J, I cannot for the life of me grasp what's up with [[File:Pikmin_3_logo_(red).png]] 2014-05-18 19:27:18 Testyo "File:Pikmin_3_logo_(red).png" article = http://www.pikminwiki.com/index.php?title=File:Pikmin_3_logo_(red).png 2014-05-18 19:27:50 Mariostar3D Im passing time playing the masterpiee trials 2014-05-18 19:27:55 @Espyo you can join now 2014-05-18 19:28:14 Mariostar3D and theres only two I don't have 2014-05-18 19:28:33 @J Espyo: what do you mean? 2014-05-18 19:29:07 Mariostar3D Espyo,you ready? 2014-05-18 19:29:15 @Espyo yeah 2014-05-18 19:29:19 @Espyo oh, I should've elaborated 2014-05-18 19:29:29 Mariostar3D theme? 2014-05-18 19:29:32 @Espyo all right, the file description talks about it being the P3 logo 2014-05-18 19:29:37 @Espyo but the recent changes are all about Pikmin 4 2014-05-18 19:29:43 @Espyo Mariostar3D, it's simply Coin mode now 2014-05-18 19:29:57 Mariostar3D k 2014-05-18 19:30:13 @J what? 2014-05-18 19:30:59 Mariostar3D hi J 2014-05-18 19:31:29 @J http://i.imgur.com/nKEqqUi.png 2014-05-18 19:31:30 @J hi 2014-05-18 19:32:08 Mariostar3D me,espyo and some other guy are on brawl together 2014-05-18 19:32:19 @J yeah, I know 2014-05-18 19:33:16 Mariostar3D Im on this chat on a 3DS 2014-05-18 19:37:07 @Espyo http://www.pikminwiki.com/File:Pikmin_3_logo_%28red%29.png 2014-05-18 19:38:06 Mariostar3D :D 2014-05-18 19:38:57 @Espyo and now the Pikmin 4 things are gone!? 2014-05-18 19:39:27 Mariostar3D Espyo,deku joined,wich you probley knew 2014-05-18 19:39:33 @Espyo http://www.pikminwiki.com/index.php?title=File_talk:Pikmin_3_logo_%28red%29.png&curid=9821&diff=80374&oldid=80373 the hell is this then!? 2014-05-18 19:39:36 @Espyo Mariostar3D, yeah, I know 2014-05-18 19:48:34 Mariostar3D leave the selections for a sec espyo 2014-05-18 19:49:00 <-- Mariostar3D (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 19:49:26 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 19:50:16 Mariostar123 inernet error,sorry 2014-05-18 19:55:02 @J yeah 2014-05-18 19:55:06 @J I think you're just crazy 2014-05-18 19:56:51 @J very crazy 2014-05-18 19:57:25 Testyo [Pikipedia RC] (log) File talk:Pikmin 3 logo (... by Greenpickle (0 content was: "The Pikmin 4 logo colored purple is number 4 Pikmin 4 coming up in...) http://www.pikminwiki.com/index.php?title=File_talk:Pikmin_3_logo_(red).png&curid=0&diff=0&oldid=0 2014-05-18 19:59:30 Mariostar123 TOASTY! 2014-05-18 19:59:46 @Espyo ... 2014-05-18 19:59:48 @Espyo that's the file talk 2014-05-18 19:59:50 @Espyo somebody shoot me 2014-05-18 20:01:00 Mariostar123 Espyo,im dropping out the next but joining after that 2014-05-18 20:01:05 @Espyo any reason? 2014-05-18 20:01:34 Mariostar123 Rosey 2014-05-18 20:01:58 Mariostar123 has a nose bleed 2014-05-18 20:02:12 Mariostar123 got to get tissue 2014-05-18 20:02:35 @Espyo oh, all right 2014-05-18 20:03:03 Mariostar123 are we changing the rules soon? 2014-05-18 20:03:08 @Espyo yeah 2014-05-18 20:03:45 Mariostar123 k,did you notice the fatality? 2014-05-18 20:03:55 @Espyo yeah 2014-05-18 20:03:57 @Espyo it's misspelt 2014-05-18 20:04:09 Mariostar123 I know 2014-05-18 20:07:56 @Espyo all right, certain items now 2014-05-18 20:07:59 @Espyo Bunny Hood 2014-05-18 20:08:07 @Espyo wait, let me re-create the room for this 2014-05-18 20:08:09 @Espyo it's important 2014-05-18 20:08:10 Mariostar123 k 2014-05-18 20:08:30 Mariostar123 can we not do coin? 2014-05-18 20:08:36 @Espyo Super Mushrooms 2014-05-18 20:08:39 @Espyo yeah, it's not coin now 2014-05-18 20:08:46 @Espyo bunny hood, metal 2014-05-18 20:08:49 @Espyo curry 2014-05-18 20:08:53 @Espyo home-run bat 2014-05-18 20:08:54 Mariostar123 finnaly 2014-05-18 20:09:07 @Espyo football, unira, franklin badge 2014-05-18 20:09:22 @Espyo pick Mario Bros. as the stage 2014-05-18 20:09:38 Mariostar123 k 2014-05-18 20:09:58 Mariostar123 Picked Mario bros. 2014-05-18 20:10:28 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 20:11:23 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 20:12:14 MS that hack.... 2014-05-18 20:12:36 @Espyo what about? 2014-05-18 20:12:55 MS instant kill 2014-05-18 20:13:05 @Espyo yeah, pretty much 2014-05-18 20:13:26 MS koopas,crabs 2014-05-18 20:13:37 MS hard 2014-05-18 20:19:41 MS by the way,ben drowned :( 2014-05-18 20:20:49 @Espyo did you change the rules? 2014-05-18 20:20:54 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 20:23:44 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 20:25:10 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-18 20:28:44 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 20:29:15 @Espyo Deku's just taking a shower 2014-05-18 20:29:30 MS k 2014-05-18 20:32:42 @Espyo all right, soccer balls only 2014-05-18 20:33:00 MS Mario kart please? 2014-05-18 20:33:12 @Espyo you mean the stage? 2014-05-18 20:33:36 MS no 2014-05-18 20:35:13 @Espyo Mario Kart is tomorrow 2014-05-18 20:35:15 @Espyo I already said it 2014-05-18 20:55:43 -- irc: disconnected from server 2014-05-18 20:55:55 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-18 20:55:55 -- 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" 2014-05-18 20:55:55 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:36:13 2014-05-18 20:55:55 -- Channel #pikipedia: 8 nicks (2 ops, 0 voices, 6 normals) 2014-05-18 20:55:55 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-18 20:55:55 -- Mode #pikipedia [+o J] by ChanServ 2014-05-18 20:55:56 -- Mode #pikipedia [+nt] 2014-05-18 20:55:56 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-18 21:00:32 MS k 2014-05-18 21:03:01 MS need to attend private maters,ill be off a round or two 2014-05-18 21:08:08 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 21:12:58 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 21:13:28 MS back 2014-05-18 21:13:50 @Espyo we're playing on Temple with bumpers 2014-05-18 21:17:45 MS Can we have a taunt party? 2014-05-18 21:19:08 @Espyo we're already messing around, not playing for serious 2014-05-18 21:21:53 @Espyo that's pretty much a taunt party 2014-05-18 21:21:57 @Espyo except with more pointless taunts 2014-05-18 21:22:15 MS why are we killing eachother? 2014-05-18 21:22:30 @Espyo we were messing around with that thing, where we were getting stuck 2014-05-18 21:22:49 MS o..... 2014-05-18 21:26:44 MS G98 keeps killing me.... 2014-05-18 21:26:53 @Espyo it is consequence of the wind 2014-05-18 21:27:02 @Espyo he's just pulling wind to see what happens to people are stuck 2014-05-18 21:27:43 MS he just killed me using his up smash as Mario....! 2014-05-18 21:28:47 @Espyo we're playing normal now 2014-05-18 21:28:51 @Espyo we're not experimenting here 2014-05-18 21:28:55 @Espyo we're just messing around 2014-05-18 21:28:58 @Espyo do you have bumpers off? 2014-05-18 21:30:42 MS I chose temple 2014-05-18 21:30:49 @Espyo we're not doing temple any more 2014-05-18 21:30:53 @Espyo we're just messing with bumpers now 2014-05-18 21:31:33 MS K,just tell G98 to stop killing me.... 2014-05-18 21:31:46 @Espyo we're killing everybody 2014-05-18 21:32:10 @Espyo we weren't killing each other back then because we were experimenting with the stuck glitch 2014-05-18 21:32:13 @Espyo now we're playing normally 2014-05-18 21:35:48 MS Can we do a timed stock? 2014-05-18 21:36:19 MS also i want to show you a glitch 2014-05-18 21:41:33 MS Can I experiment again? 2014-05-18 21:41:45 @Espyo why stock? 2014-05-18 21:45:56 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 21:49:38 --> ms (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 21:50:29 ms Can you turn the hack off? 2014-05-18 21:50:42 @Espyo why? 2014-05-18 21:50:46 @Espyo it's fun 2014-05-18 21:54:29 ms *sigh* 2014-05-18 21:55:31 ms ...... 2014-05-18 21:59:39 ms Espyo? 2014-05-18 22:00:07 <-- ms (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 22:00:30 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 22:00:50 @Espyo I was away 2014-05-18 22:01:20 MS k 2014-05-18 22:01:39 MS Can we do homerun? 2014-05-18 22:01:45 @Espyo no 2014-05-18 22:01:49 @Espyo I'm playing with them 2014-05-18 22:02:15 MS yeah,well,this brawl is going mad 2014-05-18 22:02:44 MS 3 minutes of instant kill.... 2014-05-18 22:02:50 @Espyo that's fun 2014-05-18 22:03:10 MS for 20minutes 2014-05-18 22:03:37 MS We been doing it probley a hour 2014-05-18 22:04:11 @Espyo all right, Falcon only 2014-05-18 22:04:44 MS next round 2014-05-18 22:04:54 Miles [16:41:46] <@Espyo> why stock? 2014-05-18 22:04:55 Miles What 2014-05-18 22:05:07 @Espyo why stock matches? 2014-05-18 22:05:12 @Espyo timed matches are superior 2014-05-18 22:05:16 Miles No 2014-05-18 22:05:45 @Espyo in timed matches, you don't have to worry about dropping out and having to watch the other players play 2014-05-18 22:05:54 @Espyo you can focus more on having a good time 2014-05-18 22:06:00 @Espyo of course, with items 2014-05-18 22:06:02 @Espyo otherwise, timed 2014-05-18 22:06:50 Miles I really really don't like having only the killing blow matter for anything 2014-05-18 22:08:31 @Espyo but that's pretty much true regardless of mode 2014-05-18 22:08:49 MS *sigh* this is boring now 2014-05-18 22:08:52 Miles No? 2014-05-18 22:09:00 @Espyo I've disabled 25.5x damage 2014-05-18 22:09:10 @Espyo I was meant to disable last match, but couldn't 2014-05-18 22:09:17 MS seriously,punch,dead. -_- 2014-05-18 22:09:26 @Espyo in stock matches, you only get KOd with the finishing blow 2014-05-18 22:09:46 Miles But you got an opponent closer to death 2014-05-18 22:10:09 Miles You're rewarded for doing damage by them eventually losing a stock 2014-05-18 22:10:27 Miles In time, if someone else gets the killing blow, well then that was pointless for you 2014-05-18 22:11:08 @Espyo I guess 2014-05-18 22:11:14 @Espyo but like I said, more focus on trying to have a blast 2014-05-18 22:11:28 @Espyo like doing dangerous stuff near the Bulborb and the like 2014-05-18 22:11:37 @Espyo also delicious KO theft 2014-05-18 22:12:56 @Espyo and it gives more control over the duration of the match 2014-05-18 22:13:07 MS who are deku and G98? 2014-05-18 22:13:09 @Espyo because hey, let's make a hard limit on 3 minutes for replays 2014-05-18 22:13:12 @Espyo friends on another network 2014-05-18 22:18:30 MS Homerun contest now? 2014-05-18 22:22:57 MS K,im yoshi 2014-05-18 22:28:02 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 22:28:08 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 22:33:34 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 22:48:51 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-18 22:48:56 Mariostar123 hi 2014-05-18 22:49:09 Mariostar123 great game.... 2014-05-18 22:49:15 @Espyo yeah 2014-05-18 22:49:23 Mariostar123 so.... 2014-05-18 22:49:30 Mariostar123 ummm.... 2014-05-18 22:49:49 Mariostar123 Whats going on in Marikar? 2014-05-18 22:49:54 Mariostar123 themes? 2014-05-18 22:50:01 @Espyo nothing's going on on Mario KArt 2014-05-18 22:50:15 Mariostar123 ok 2014-05-18 22:50:40 Mariostar123 so me you,G98,DEKU and possibly rose... 2014-05-18 22:50:47 Mariostar123 standered racing... 2014-05-18 22:50:54 Mariostar123 9pm 2014-05-18 22:50:59 @Espyo yeah, tomorrow 2014-05-18 22:51:10 Mariostar123 K 2014-05-18 22:51:28 Mariostar123 have you added me yet? 2014-05-18 22:52:06 Mariostar123 also,so we arn't in a error again,Im in the whole thing right 2014-05-18 22:52:10 Mariostar123 brb 2014-05-18 22:53:31 @Espyo not yet 2014-05-18 22:53:34 @Espyo yeah, you're in the whole thing 2014-05-18 22:53:42 @Espyo though chances are we'll play on continental races 2014-05-18 22:53:44 @Espyo not on closed groups 2014-05-18 22:53:55 Mariostar123 bak 2014-05-18 22:54:32 Mariostar123 hold on,be right back 2014-05-18 22:54:34 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-18 23:18:18 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-18 23:18:18 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-18 23:18:27 @PikFan . 2014-05-18 23:19:42 @Espyo hey 2014-05-18 23:20:34 @PikFan it was raining very hard just a moment ago 2014-05-18 23:21:04 @PikFan now the sun is out 2014-05-18 23:21:58 @Espyo heh 2014-05-18 23:27:30 @Espyo PikFan, I need you to fill in the info on some NPC! buttons 2014-05-18 23:28:46 @PikFan alright 2014-05-18 23:28:51 @PikFan where? 2014-05-18 23:31:16 @Espyo what button do you use to petrify stuff on the Piklopedia, in NPC!? 2014-05-18 23:31:57 @PikFan hm 2014-05-18 23:32:14 @PikFan haven't played NPC! P2 in a while 2014-05-18 23:32:18 @PikFan let me boot it up 2014-05-18 23:35:05 @PikFan 1 2014-05-18 23:35:10 @PikFan 1 button 2014-05-18 23:36:10 @PikFan anything else? 2014-05-18 23:41:41 @PikFan Espyo, refresh Cookie Clicker right now 2014-05-18 23:41:54 @PikFan Orteil JUST ADDED the Easter update 2014-05-18 23:43:32 @PikFan and got 970 quint from wrinklers 2014-05-18 23:43:50 @PikFan good thing I popped them then, otherwise they would've reset 2014-05-18 23:45:43 @PikFan well I know I'll be getting 2 achievements soon 2014-05-18 23:54:54 @PikFan ok Sunscreen just informed me that Nintendo recently shut down a rom site 2014-05-18 23:55:05 Sunscreen this was a while ago :T 2014-05-18 23:55:17 @PikFan :| 2014-05-18 23:55:24 @PikFan ok, not recently 2014-05-18 23:55:31 @PikFan but you get the point 2014-05-18 23:58:49 @Espyo ooh 2014-05-18 23:58:52 @Espyo well, I have dinner now 2014-05-18 23:58:55 @Espyo which is like 3 hours late 2014-05-18 23:58:58 @Espyo but whatever, circumstances 2014-05-18 23:59:01 @Espyo I'll check later 2014-05-18 23:59:41 --> BetaM (BetaMaster@c-521-44-23-901.hsd6.pa.comcast.net) has joined #pikipedia 2014-05-19 00:13:38 Testyo [Fanon RC] User talk:Kidsy128 by New Pikminjp (+109 /* Did you ask the question? */ new section) http://www.pikminfanon.com/index.php?title=User_talk:Kidsy128&curid=8468&diff=44555&oldid=44539 2014-05-19 00:16:43 @PikFan ooh 2014-05-19 00:16:52 @PikFan I underestimated these eggs 2014-05-19 00:17:11 @PikFan so 12 of these eggs multiplies your cps by 1.01 2014-05-19 00:17:28 @PikFan which is actually pretty significant 2014-05-19 00:18:39 Testyo [Fanon RC] User:New Pikminjp by New Pikminjp (+329 /* The new pikminjp */ ) http://www.pikminfanon.com/index.php?title=User:New_Pikminjp&curid=8252&diff=44556&oldid=44253 2014-05-19 00:24:47 @Espyo wow 2014-05-19 00:24:49 @Espyo speaking of eggs 2014-05-19 00:24:59 @Espyo I checked, and sublevel 8 of the CoC has 4 eggs 2014-05-19 00:25:13 @Espyo and the eggs' contents are randomly picked whenever you break them 2014-05-19 00:25:17 @Espyo and NOT when you enter the cave 2014-05-19 00:25:28 @Espyo so technically, with the right timing, you could get every egg to give you Mitites 2014-05-19 00:25:31 @PikFan well yeah 2014-05-19 00:25:43 @Espyo that should give a super clear corpse cap 2014-05-19 00:25:51 @Espyo I'll have to check one of these days 2014-05-19 00:25:58 @Espyo on that note, I'm in the process of fixing [[Egg]] 2014-05-19 00:25:58 Testyo "Egg" article = http://www.pikminwiki.com/index.php?title=Egg 2014-05-19 00:26:00 @PikFan Miles found out that each egg has a 5% chance of giving mitites 2014-05-19 00:26:05 @Espyo with that info, amongst other things 2014-05-19 00:26:08 @Espyo ...how did he find that? 2014-05-19 00:26:13 @PikFan *shrug* 2014-05-19 00:26:19 @Espyo wait, I talked to him earlier today, he never mentioned those finds 2014-05-19 00:26:21 @Espyo any other statistics? 2014-05-19 00:26:22 @PikFan he found out a while ago 2014-05-19 00:26:25 @PikFan mhm 2014-05-19 00:26:28 @Espyo oh wait, it might be in the text files 2014-05-19 00:26:36 @Espyo ...why didn't I think of that 2014-05-19 00:26:37 @PikFan 5% bitter spray, 5% spicy spray 2014-05-19 00:26:47 @PikFan 35% double nectar, 50% nectar 2014-05-19 00:26:59 @Espyo I see 2014-05-19 00:27:08 @PikFan he found these a while ago 2014-05-19 00:27:09 Miles Oh 2014-05-19 00:27:14 Miles Eggs are known yeah 2014-05-19 00:27:17 Miles Drops from enemies are not 2014-05-19 00:27:33 @PikFan yeah 2014-05-19 00:27:36 @Espyo fair enough 2014-05-19 00:27:44 @PikFan this was found when I was harvesting sprays from the Snagret Hole 2014-05-19 00:27:46 @Espyo but did you get this info from the game files? 2014-05-19 00:27:49 Miles Yes 2014-05-19 00:28:04 @Espyo all right 2014-05-19 00:28:11 @Espyo before I submit this change to [[Egg]] 2014-05-19 00:28:11 Testyo "Egg" article = http://www.pikminwiki.com/index.php?title=Egg 2014-05-19 00:28:15 @Espyo I just need a reminder... 2014-05-19 00:28:26 @Espyo on the Preplexing Pool, we say there's a group of two and a group of three 2014-05-19 00:28:27 @Espyo ...where? 2014-05-19 00:28:35 @Espyo because I'm also expanding the location of the groups 2014-05-19 00:28:38 @PikFan hold on, brb 2014-05-19 00:28:39 @Espyo instead of just saying "there are two" 2014-05-19 00:28:42 @Espyo ok 2014-05-19 00:28:49 @Espyo meanwhile, Cookie Clicker shenanigans... 2014-05-19 00:30:16 @Espyo ugh, couldn't the add be below the store? 2014-05-19 00:30:21 @Espyo the screen space is super compressed now 2014-05-19 00:35:18 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 00:37:47 @Espyo can't really find which file that info is on 2014-05-19 00:39:07 @Espyo I'd just like to add the path to the file on the article 2014-05-19 00:47:59 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-19 00:48:00 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-19 00:49:28 @Espyo ok, so I have some eggs already 2014-05-19 00:49:38 @Espyo popped my wrinklers now, had enough to buy the kitten overseers 2014-05-19 00:50:32 @PikFan ...overseers? 2014-05-19 00:50:42 @Espyo oversomething 2014-05-19 00:50:50 @PikFan did you mean managers 2014-05-19 00:50:53 @Espyo oh, managers 2014-05-19 00:50:53 @Espyo yeah 2014-05-19 00:50:57 @Espyo overseers was the previous one apparently 2014-05-19 00:51:11 @PikFan overseers are blue and managers are grey 2014-05-19 00:51:14 @PikFan but yeah 2014-05-19 00:51:24 @Espyo so basically, you just get eggs at random when you click wrinklers or GCs? 2014-05-19 00:51:29 @PikFan wait, how did you get enough cookies to buy managers 2014-05-19 00:51:32 @PikFan oh 2014-05-19 00:51:39 @Espyo reset some time ago 2014-05-19 00:51:47 @Espyo 32k HCs 2014-05-19 00:51:48 Testyo 32 K = -241.15 °C / -402.07 °F 2014-05-19 00:51:50 @PikFan you get eggs by clicking on the GCs (which look like bunnies) 2014-05-19 00:51:51 @Espyo aaaand Dolphin died 2014-05-19 00:51:53 @Espyo huh 2014-05-19 00:51:58 @PikFan yay 2014-05-19 00:51:59 @Espyo I had Dolphin open for the past 6 hours 2014-05-19 00:52:01 @PikFan and no yay 2014-05-19 00:52:13 @Espyo it wasn't evne doing anything, it was just idling next to an egg on Three Color Training 2014-05-19 00:52:43 @Espyo but I got like three eggs popping wrinklers 2014-05-19 00:52:45 @Espyo *shrug* 2014-05-19 00:53:05 @Espyo anyway, ok, the 1 button petrifies them on the Piklopedia 2014-05-19 00:53:25 @Espyo I need the full list of controls for the title screen easter egg, on Pikmin 2 2014-05-19 00:54:37 @PikFan ok 2014-05-19 00:55:01 @Espyo http://pikmin.wikia.com/wiki/Egg 2014-05-19 00:55:06 @Espyo >white, ovulate object 2014-05-19 00:55:09 @Espyo >ovulate 2014-05-19 00:55:13 @Espyo do they KNOW what ovulate means? 2014-05-19 00:55:19 @Espyo and I just double-checked, it is NOT an adjective 2014-05-19 00:55:50 @Espyo is it called "Nectar Egg" in P3? 2014-05-19 00:56:11 @PikFan not sure 2014-05-19 00:56:39 @PikFan ok, 1 is Red Bulborb 2014-05-19 00:56:54 @PikFan 2 is Iridescent Flint Beetle 2014-05-19 00:57:12 @Espyo what about moving them? 2014-05-19 00:57:20 @PikFan I'm figuring that out 2014-05-19 00:57:21 @Espyo brb, bathroom 2014-05-19 00:58:16 @PikFan ok d-pad left makes them turn left, d-pad right makes the turn right, and d-pad up makes them move forward 2014-05-19 00:58:36 @PikFan and Z is eat 2014-05-19 01:04:31 @Espyo all right 2014-05-19 01:04:42 @Espyo what's the whistle button on Pikmin 3? 2014-05-19 01:04:56 @PikFan B for Wii Remote 2014-05-19 01:05:20 @PikFan ZR for GamePad/Pro Controller 2014-05-19 01:06:35 <-- BetaM (BetaMaster@c-521-44-23-901.hsd6.pa.comcast.net) has quit (Killed (NickServ (GHOST command used by Beta2))) 2014-05-19 01:07:49 @PikFan also didn't you need to know where the location of the eggs were 2014-05-19 01:07:56 @PikFan for the PP 2014-05-19 01:07:59 @Espyo oh yeah 2014-05-19 01:08:04 @PikFan https://lh5.googleusercontent.com/OFU51wZQlQeCKKUzf4z73CjVVBUqPK2HjpMKj3Uav3KybWFmbzEJinEjqPo9PyPU2g=w1483-h593 2014-05-19 01:08:15 @Espyo also the WW ones that aren't the ones near the CoC 2014-05-19 01:08:26 @Espyo ...where'd you get that 2014-05-19 01:08:30 @PikFan there's three sets in the WW 2014-05-19 01:08:32 @PikFan I made it 2014-05-19 01:08:43 @Espyo all right, I guess 2014-05-19 01:08:53 @Espyo which is the two and which is the three? 2014-05-19 01:08:56 @Espyo (PP) 2014-05-19 01:09:04 @PikFan upper is three, lower is two 2014-05-19 01:09:20 @Espyo ok 2014-05-19 01:10:06 @Espyo now I just need the WW ones 2014-05-19 01:10:09 @Espyo and we'll do caves later 2014-05-19 01:10:14 @PikFan right, working on that 2014-05-19 01:11:27 @Espyo mhm 2014-05-19 01:14:03 @PikFan https://lh4.googleusercontent.com/Wcf7i0SnTD1LipyzVADSCROsISvMVJ5a4OY_uBzR0VYO886bSvwRkVArW6QhXkGBaw=w1483-h593 2014-05-19 01:15:06 @Espyo right, I knew the leftmost "3" 2014-05-19 01:15:14 @Espyo and ok, that's the other ones 2014-05-19 01:15:14 @Espyo thanks 2014-05-19 01:15:23 @PikFan np 2014-05-19 01:15:33 @Espyo all I needed now was to know exactly which file has the data for the content probabilities 2014-05-19 01:16:04 @PikFan there's also a set in the VoR 2014-05-19 01:16:12 @PikFan but you know where that is, yes? 2014-05-19 01:16:41 @Espyo yeah 2014-05-19 01:19:47 @Espyo all right, more buttons 2014-05-19 01:20:33 @Espyo what are the NPC! buttons for the Sales Pitch, Olimar's Notes, Olimar's Notes and Louie's Notes? 2014-05-19 01:21:13 @PikFan Sales Pitch/Louie's Notes: - button 2014-05-19 01:21:21 @PikFan Olimar's Notes: + button 2014-05-19 01:21:47 @PikFan are you writing a page dedicated to buttons :P 2014-05-19 01:21:59 @Espyo not quite, but I will later 2014-05-19 01:22:06 @PikFan mm 2014-05-19 01:22:12 @Espyo it's just that when I added {{Button}}, I checked the wiki for places to use it 2014-05-19 01:22:12 Testyo "Button" template = http://www.pikminwiki.com/index.php?title=Template:Button 2014-05-19 01:22:19 @PikFan right 2014-05-19 01:22:21 @Espyo and for every article I didn't know the button of something, I wrote it down 2014-05-19 01:22:27 @Espyo and now I'm asking for the ones I pointed down 2014-05-19 01:22:31 @PikFan mm 2014-05-19 01:23:54 @PikFan also each egg increases my cps by 20 trillion 2014-05-19 01:24:30 @Espyo wow 2014-05-19 01:24:48 @PikFan benefit is almost as much as prisms but the eggs cost a billion times less 2014-05-19 01:24:57 @PikFan (eggs are 1 tril, prisms are 1 sex) 2014-05-19 01:25:15 @Espyo woah 2014-05-19 01:27:42 @Espyo when you pause P2, which buttons do you use to switch menus? 2014-05-19 01:29:22 Testyo [Pikipedia RC] Template:Infobox enemy by Espyo (+161 m Documented nocat.) http://www.pikminwiki.com/index.php?title=Template:Infobox_enemy&curid=1898&diff=80375&oldid=80325 2014-05-19 01:30:49 @PikFan hmm 2014-05-19 01:31:27 @PikFan d-pad left/right 2014-05-19 01:31:38 @Espyo mhm, I figured 2014-05-19 01:32:03 @Espyo what are the P3 controls for the radar? 2014-05-19 01:32:39 @PikFan be a bit more specific 2014-05-19 01:32:53 @Espyo well, what are the entirety of the controls? 2014-05-19 01:33:04 @Espyo like, what buttons can you press to do what, on the radar? 2014-05-19 01:33:05 @PikFan well 2014-05-19 01:33:20 @PikFan you don't use buttons for the radar 2014-05-19 01:33:27 @PikFan you use your finger or stylus 2014-05-19 01:33:39 @Espyo oh 2014-05-19 01:33:45 @Espyo what about zooming in/out/? 2014-05-19 01:33:47 @PikFan and you can't zoom in 2014-05-19 01:33:47 @Espyo *-/ 2014-05-19 01:33:53 @Espyo hmm 2014-05-19 01:33:58 @Espyo and how about opening the radar? 2014-05-19 01:34:28 Testyo [Pikipedia RC] Egg by Espyo (+1513 Expanded.) http://www.pikminwiki.com/index.php?title=Egg&curid=636&diff=80376&oldid=72490 2014-05-19 01:34:28 Testyo [Pikipedia RC] Mitite by Espyo (+6 m Adding NPC! button.) http://www.pikminwiki.com/index.php?title=Mitite&curid=752&diff=80377&oldid=80221 2014-05-19 01:36:37 @PikFan if you're using TV + GamePad, the radar is already open 2014-05-19 01:36:45 @PikFan it's on the GamePad 2014-05-19 01:36:59 @PikFan if you're using just the GamePad though, you use d-pad down to get to it 2014-05-19 01:37:13 @Espyo what about all of these things, but for Wii Remote? 2014-05-19 01:37:46 @PikFan well the GamePad is always used 2014-05-19 01:37:58 @PikFan [[KopPad] 2014-05-19 01:38:02 @PikFan [[KopPad]] 2014-05-19 01:38:03 Testyo "KopPad" article = http://www.pikminwiki.com/index.php?title=KopPad 2014-05-19 01:38:24 @Espyo even if you're using the Wii Remote, the GamePad's always on? 2014-05-19 01:38:29 @PikFan yeah 2014-05-19 01:38:31 @Espyo all right 2014-05-19 01:38:38 @Espyo you sure you can't pan using the analog stick? 2014-05-19 01:38:41 @Espyo [[Radar]] 2014-05-19 01:38:42 Testyo "Radar" article = http://www.pikminwiki.com/index.php?title=Radar 2014-05-19 01:38:46 @PikFan nope 2014-05-19 01:38:48 @Espyo I never wrote that 2014-05-19 01:38:50 @PikFan because 2014-05-19 01:38:51 @Espyo all right, I'll remove that then 2014-05-19 01:39:06 @PikFan when you move around on the radar, the game pauses 2014-05-19 01:39:18 @PikFan but when you try to use the analog stick, the game unpauses 2014-05-19 01:39:32 Testyo [Pikipedia RC] Red Bulborb by Espyo (+18 m Adding NPC! buttons.) http://www.pikminwiki.com/index.php?title=Red_Bulborb&curid=1184&diff=80378&oldid=80231 2014-05-19 01:39:36 @Espyo ah, all right 2014-05-19 01:39:43 @Espyo hey, can't you make leaders move to places automatically? 2014-05-19 01:39:51 @PikFan yep, Go here 2014-05-19 01:39:58 @Espyo how do you do it? 2014-05-19 01:40:11 @PikFan there's a data file about this 2014-05-19 01:40:48 @PikFan "On the KopPad's radar, align V with your destination and touch Go here to start moving!" 2014-05-19 01:41:10 @Espyo wut 2014-05-19 01:41:12 @Espyo what's V 2014-05-19 01:41:14 @PikFan yeah, there's a symbol that looks like a V that appears at the center of the map 2014-05-19 01:41:19 @Espyo oh 2014-05-19 01:41:33 @Espyo hmm, guess that can be detailed when all of the P3 info is added 2014-05-19 01:41:55 @PikFan if it's blue, then it means you can Go here; if it's red, you can;t 2014-05-19 01:41:57 @PikFan *can't 2014-05-19 01:42:31 @Espyo [[Guide:Pikmin 2 by PikFan23]] 2014-05-19 01:42:31 Testyo "Guide:Pikmin_2_by_PikFan23" article = http://www.pikminwiki.com/index.php?title=Guide:Pikmin_2_by_PikFan23 2014-05-19 01:42:40 @Espyo want to use {{Button}} there? 2014-05-19 01:42:40 Testyo "Button" template = http://www.pikminwiki.com/index.php?title=Template:Button 2014-05-19 01:43:07 @PikFan yeah, sure 2014-05-19 01:43:15 @PikFan ...I need to finish my guide 2014-05-19 01:43:25 @Espyo do you know how to use it? 2014-05-19 01:43:38 @PikFan the problem is I forgot what happened on day three and onwards 2014-05-19 01:43:40 @PikFan yeah 2014-05-19 01:43:58 @Espyo it's like Fanon's, but with a third and fourth parameter, for the NPC button 2014-05-19 01:44:14 @PikFan yeah 2014-05-19 01:44:36 Testyo [Pikipedia RC] Ultra-bitter spray by Espyo (+6 m Adding NPC! button.) http://www.pikminwiki.com/index.php?title=Ultra-bitter_spray&curid=1525&diff=80379&oldid=80236 2014-05-19 01:44:36 Testyo [Pikipedia RC] Glitches in Pikmin 2 by Espyo (+12 m Adding NPC! button.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_2&curid=8423&diff=80380&oldid=80360 2014-05-19 01:44:36 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-19 01:45:29 @Espyo oh, there's something missing 2014-05-19 01:45:56 @Espyo what do you press on the title screen to make the Pikmin form "NINTENDO" and "PIKMIN 2"? 2014-05-19 01:46:17 @PikFan oh uh 2014-05-19 01:47:53 @PikFan - button is NINTENDO 2014-05-19 01:48:00 @PikFan + button is PIKMIN 2 2014-05-19 01:48:50 @Espyo mhm 2014-05-19 01:49:39 Testyo [Pikipedia RC] Egg by Espyo (+43 m Linked to [[Easter eggs]].) http://www.pikminwiki.com/index.php?title=Egg&curid=636&diff=80384&oldid=80376 2014-05-19 01:49:39 Testyo [Pikipedia RC] Template:For by Espyo (+189 N Created page with ":''For {{{1|other uses}}}, see '''[[{{#if: {{{2|}}}|{{{2}}}|{...) http://www.pikminwiki.com/index.php?title=Template:For&curid=9822&diff=80385&oldid=0 2014-05-19 01:53:54 @Espyo well, I just wrote {{for}} 2014-05-19 01:53:54 Testyo "for" template = http://www.pikminwiki.com/index.php?title=Template:for 2014-05-19 01:54:11 @Espyo but I have no way of knowing which articles should use it but don't 2014-05-19 01:54:26 @Espyo I know we have some articles with :''For abc, see xyz'', without a template 2014-05-19 01:54:42 Testyo [Pikipedia RC] Easter eggs by Espyo (+105 m Adding NPC! buttons, and linking to [[Egg]].) http://www.pikminwiki.com/index.php?title=Easter_eggs&curid=371&diff=80386&oldid=80302 2014-05-19 01:54:42 Testyo [Pikipedia RC] Radar by Espyo (-25 m No panning in P3.) http://www.pikminwiki.com/index.php?title=Radar&curid=8451&diff=80387&oldid=80303 2014-05-19 01:54:42 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-19 01:56:00 @Espyo all right, going to bed now 2014-05-19 01:56:03 @Espyo thanks for the control 2014-05-19 01:56:05 @Espyo *controls 2014-05-19 01:56:43 @PikFan mhm 2014-05-19 01:57:21 @Espyo night 2014-05-19 01:57:27 @PikFan night 2014-05-19 01:57:30 <-- Espyo (Espyo@i24-799-28-826.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-19 01:57:33 <-- Testyo (Testyo@i24-799-28-826.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-19 09:27:42 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-19 12:14:07 --> Testyo (Testyo@i24-799-28-826.cpe.netcabo.pt) has joined #pikipedia 2014-05-19 12:14:46 --> Espyo (Espyo@i24-799-28-826.cpe.netcabo.pt) has joined #pikipedia 2014-05-19 12:14:46 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-19 13:53:17 @Espyo Testyo, memo PikFan http://www.pikminwiki.com/index.php?title=Guide:Pikmin_2_by_PikFan23&curid=8345&diff=80389&oldid=73225 uh... why'd you add "(X / -)" after {{button}}? 2014-05-19 13:53:17 Testyo Done, I saved a memo for PikFan saying: http://www.pikminwiki.com/index.php?title=Guide:Pikmin_2_by_PikFan23&curid=8345&diff=80389&oldid=73225 uh... why'd you add "(X / -)" after {{button}}?. 2014-05-19 14:04:50 Testyo [Pikipedia RC] File:GCN Z.png uploaded by Espyo (Slanted, so that it doesn't look gigantic compared to other buttons, at 16px hei...) http://www.pikminwiki.com/index.php?title=File:GCN_Z.png 2014-05-19 14:04:50 Testyo [Pikipedia RC] File:GCN Z.png by Espyo (+117 m) http://www.pikminwiki.com/index.php?title=File:GCN_Z.png&curid=9758&diff=80394&oldid=80393 2014-05-19 14:35:00 Testyo [Pikipedia RC] Enemy by Espyo (+12 m /* Enemies in Pikmin */ I guess they fit the description.) http://www.pikminwiki.com/index.php?title=Enemy&curid=9482&diff=80395&oldid=80322 2014-05-19 15:04:23 --> Moonscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-19 15:04:26 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Killed (NickServ (GHOST command used by Moonscreen))) 2014-05-19 15:04:26 -- Moonscreen is now known as Sunscreen 2014-05-19 15:15:12 Testyo [Pikipedia RC] File:Pikmin 2 Spray Screen.jpg uploaded by Espyo (Better quality.) http://www.pikminwiki.com/index.php?title=File:Pikmin_2_Spray_Screen.jpg 2014-05-19 15:35:19 Testyo [Pikipedia RC] Ultra-bitter spray by Espyo (+1082 Expanded a bit.) http://www.pikminwiki.com/index.php?title=Ultra-bitter_spray&curid=1525&diff=80397&oldid=80379 2014-05-19 15:45:23 Testyo [Pikipedia RC] File:Copy of Copy of Pikmin 2 Spray Screen.jpg uploaded by Espyo (Better quality.) http://www.pikminwiki.com/index.php?title=File:Copy_of_Copy_of_Pikmin_2_Spray_Screen.jpg 2014-05-19 15:46:19 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 15:46:26 Mariostar123 back 2014-05-19 15:47:21 Mariostar123 hi espyo 2014-05-19 15:47:26 @Espyo hi 2014-05-19 15:47:47 Mariostar123 I had to drive through traffic -_- 2014-05-19 15:48:30 Mariostar123 What chat do G98 and DEKU go to? 2014-05-19 15:49:03 @Espyo it's on another network 2014-05-19 15:49:06 @Espyo and they're rarely there 2014-05-19 15:50:01 Mariostar123 K,i just thought id go there in the Mariokart game so its easyer on you 2014-05-19 15:50:52 @Espyo you can stay here, it's just as convenient 2014-05-19 15:50:56 @Espyo but we don't chat there 2014-05-19 15:50:59 @Espyo we voice chat via Skype 2014-05-19 15:52:53 Mariostar123 ah,k 2014-05-19 15:53:23 Mariostar123 photo Mario has been comfirmed for the EU!!! 2014-05-19 15:53:34 Mariostar123 yes... 2014-05-19 15:54:28 @Espyo photo Mario? 2014-05-19 15:55:00 Mariostar123 ill give you a video link if you are free right now 2014-05-19 15:55:26 Testyo [Pikipedia RC] Ultra-spicy spray by Espyo (+767 Expanded a bit.) http://www.pikminwiki.com/index.php?title=Ultra-spicy_spray&curid=1645&diff=80399&oldid=79298 2014-05-19 15:55:34 @Espyo sure, I guess 2014-05-19 15:55:38 Mariostar123 ok 2014-05-19 15:55:46 Mariostar123 http://www.youtube.com/watch?v=C3f2jxIQUJ0&list=UUfAPTv1LgeEWevG8X_6PUOQ 2014-05-19 15:57:07 @Espyo oh, I see 2014-05-19 15:57:47 Mariostar123 Im going to save the cards on my wiiU so I won't need to buy cards 2014-05-19 16:00:14 Mariostar123 also,do you think giga bowser should be in a Mario game? 2014-05-19 16:00:28 Testyo [Pikipedia RC] Spray drop by Espyo (+10 m) http://www.pikminwiki.com/index.php?title=Spray_drop&curid=7415&diff=80400&oldid=75983 2014-05-19 16:01:30 @Espyo meh, not really 2014-05-19 16:01:52 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 16:02:13 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 16:02:26 Mariostar123 sorry,internet glitch 2014-05-19 16:07:41 Mariostar123 aw :( 2014-05-19 16:10:28 --> Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has joined #pikipedia 2014-05-19 16:11:17 Omegaknight Hello, Server! 2014-05-19 16:11:58 Mariostar123 hi 2014-05-19 16:12:42 Mariostar123 hey 2014-05-19 16:13:12 Omegaknight How are you? 2014-05-19 16:13:26 Mariostar123 good 2014-05-19 16:13:29 Mariostar123 you? 2014-05-19 16:14:06 Mariostar123 watching SMG4 2014-05-19 16:17:49 Mariostar123 ..... 2014-05-19 16:20:14 Mariostar123 yeah....... 2014-05-19 16:22:26 Omegaknight I have no idea what that is. 2014-05-19 16:22:46 Omegaknight I am good. 2014-05-19 16:23:26 Mariostar123 ok.... 2014-05-19 16:23:42 Mariostar123 PBG? 2014-05-19 16:24:07 Omegaknight I know who that is. He is humorous. 2014-05-19 16:25:05 Mariostar123 aye aye AYE 2014-05-19 16:25:09 Mariostar123 XD 2014-05-19 16:25:28 Mariostar123 one sec 2014-05-19 16:26:28 Mariostar123 do you know the song at 10:10? http://www.youtube.com/watch?v=ZKOzqw83RVo&list=PLFA10AF8790C9DFCA 2014-05-19 16:29:12 Omegaknight What does it sound like? 2014-05-19 16:29:35 Mariostar123 ... 2014-05-19 16:29:42 Mariostar123 uuuummmm...... 2014-05-19 16:30:02 Omegaknight Oh, THAT song. Then yes. 2014-05-19 16:30:10 Mariostar123 really???? 2014-05-19 16:30:24 Mariostar123 HD HD HD TASTEY 2014-05-19 16:30:48 Omegaknight I thought you were talking about another song he plays on the channel. 2014-05-19 16:30:54 Mariostar123 o..... 2014-05-19 16:31:18 Mariostar123 so you don't know it? 2014-05-19 16:32:37 Mariostar123 watch this at 4:45 http://www.youtube.com/watch?v=4w6u7vkpwyw&index=2&list=UU8LcA3grYZg0GNpxlXh8owg 2014-05-19 16:40:24 Mariostar123 ..... 2014-05-19 16:42:25 <-- Omegaknight (Mibbit@fy-80-75-83-672.dhcp.embarqhsd.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 16:47:18 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 16:52:21 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 16:57:22 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 17:05:48 Testyo [Pikipedia RC] Cursor by Espyo (+24 N Redir.) http://www.pikminwiki.com/index.php?title=Cursor&curid=9823&diff=80401&oldid=0 2014-05-19 17:05:48 Testyo [Pikipedia RC] Sun Meter by Espyo (+27 N Redir.) http://www.pikminwiki.com/index.php?title=Sun_Meter&curid=9824&diff=80402&oldid=0 2014-05-19 17:05:48 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-19 17:10:49 Testyo [Pikipedia RC] Sunseed Berry by Espyo (-4 m Switched to the For template.) http://www.pikminwiki.com/index.php?title=Sunseed_Berry&curid=1456&diff=80405&oldid=79388 2014-05-19 17:10:49 Testyo [Pikipedia RC] Challenge Mode (Pikmin) by Espyo (+73 m Linked to [[Challenge Mode (Pikmin 2)]].) http://www.pikminwiki.com/index.php?title=Challenge_Mode_(Pikmin)&curid=297&diff=80406&oldid=79554 2014-05-19 17:10:49 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-19 17:22:00 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 17:22:34 Mariostar123 hey Espyo 2014-05-19 17:25:22 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-19 17:32:05 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 17:32:11 Mariostar123 Espyo,you there? 2014-05-19 17:32:17 @Espyo yes 2014-05-19 17:32:29 Mariostar123 You need to add me on Mario kart 2014-05-19 17:34:13 @Espyo today I will 2014-05-19 17:34:18 @Espyo I won't turn the Wii on just to do it 2014-05-19 17:34:31 Mariostar123 ok 2014-05-19 17:35:21 Mariostar123 by the way,Rose will be playing,but her remote battery is charging so she may enter late 2014-05-19 17:37:13 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 17:37:21 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 17:37:35 Mariostar123 Internet error 2014-05-19 17:40:47 @Espyo ok 2014-05-19 17:42:37 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 17:56:03 Testyo [Pikipedia RC] File:WiiU A.png uploaded by Espyo (From [[wikipedia:File:Wii_U_controller_illustration.svg|Wikipedia]]. [[Category...) http://www.pikminwiki.com/index.php?title=File:WiiU_A.png 2014-05-19 17:56:03 Testyo [Pikipedia RC] File:WiiU B.png uploaded by Espyo (From [[wikipedia:File:Wii_U_controller_illustration.svg|Wikipedia]]. [[Category...) http://www.pikminwiki.com/index.php?title=File:WiiU_B.png 2014-05-19 18:01:04 Testyo [Pikipedia RC] File:WiiU Stick.png by Espyo (+24 m) http://www.pikminwiki.com/index.php?title=File:WiiU_Stick.png&curid=9787&diff=80418&oldid=80417 2014-05-19 18:01:04 Testyo [Pikipedia RC] File:WiiU X.png uploaded by Espyo (From [[wikipedia:File:Wii_U_controller_illustration.svg|Wikipedia]]. [[Category...) http://www.pikminwiki.com/index.php?title=File:WiiU_X.png 2014-05-19 18:01:04 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-19 18:06:05 Testyo [Pikipedia RC] File:WiiU Padleft.png uploaded by Espyo (Based on [[:File:WiiU_Pad.png]] [[Category:Button icons]]) http://www.pikminwiki.com/index.php?title=File:WiiU_Padleft.png 2014-05-19 18:06:05 Testyo [Pikipedia RC] File:WiiU Padleftright.png uploaded by Espyo (Based on [[:File:WiiU_Pad.png]] [[Category:Button icons]]) http://www.pikminwiki.com/index.php?title=File:WiiU_Padleftright.png 2014-05-19 18:06:06 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-19 18:11:07 Testyo [Pikipedia RC] File:WiiU Stick.png by Espyo (+48 m) http://www.pikminwiki.com/index.php?title=File:WiiU_Stick.png&curid=9787&diff=80431&oldid=80418 2014-05-19 18:11:07 Testyo [Pikipedia RC] File:WiiU Stick.png by Espyo (+33 m) http://www.pikminwiki.com/index.php?title=File:WiiU_Stick.png&curid=9787&diff=80432&oldid=80431 2014-05-19 18:11:07 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-19 18:11:15 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 18:12:50 Mariostar123 hehehe.... 2014-05-19 18:13:19 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-19 18:16:08 Testyo [Pikipedia RC] File:WiiCC RStick.png uploaded by Espyo (From [[fanon:Template:Button|Pikmin Fanon]]. [[Category:Button icons]]) http://www.pikminwiki.com/index.php?title=File:WiiCC_RStick.png 2014-05-19 18:16:08 Testyo [Pikipedia RC] File:WiiCC x.png uploaded by Espyo (From [[fanon:Template:Button|Pikmin Fanon]]. [[Category:Button icons]]) http://www.pikminwiki.com/index.php?title=File:WiiCC_x.png 2014-05-19 18:16:08 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-19 18:26:10 Testyo [Pikipedia RC] Template:Button icon by Espyo (+4115 Adding Classic Controller and Wii U buttons.) http://www.pikminwiki.com/index.php?title=Template:Button_icon&curid=9788&diff=80444&oldid=80306 2014-05-19 18:36:13 Testyo [Pikipedia RC] Template:Button by Espyo (+3115 Adding Classic Controller and Wii U buttons.) http://www.pikminwiki.com/index.php?title=Template:Button&curid=9789&diff=80445&oldid=80301 2014-05-19 18:39:25 --> MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 18:40:02 MS hey 2014-05-19 18:40:40 MS You added me yet? 2014-05-19 18:42:36 <-- MS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-19 19:03:04 --> MS-3DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 19:03:45 MS-3DS Hi espyo 2014-05-19 19:04:11 <-- Miles (Miles@c-76-20-230-193.hsd1.ga.comcast.net) has quit (Read error: Connection reset by peer) 2014-05-19 19:04:31 MS-3DS ..... 2014-05-19 19:04:53 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-05-19 19:05:39 <-- MS-3DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Client Quit) 2014-05-19 19:11:25 Testyo [Pikipedia RC] User account Mariostar123DS created http://www.pikminwiki.com/index.php?title=User:Mariostar123DS 2014-05-19 19:13:40 --> Mariostar123DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 19:14:24 Mariostar123DS Espyo you there? 2014-05-19 19:15:21 @Espyo yes, why do you need me? 2014-05-19 19:15:45 Mariostar123DS Just asking if you added me 2014-05-19 19:16:26 Testyo [Pikipedia RC] User:Mariostar123DS by Mariostar123DS (+178 N This is my 3DS account used for chatting when im playing online on my WiiU) http://www.pikminwiki.com/index.php?title=User:Mariostar123DS&curid=9855&diff=80446&oldid=0 2014-05-19 19:17:07 Mariostar123DS Testyo is stalking me..... 2014-05-19 19:18:56 @Espyo I already said I'll add it when I turn the Wii on today to play 2014-05-19 19:18:59 Mariostar123DS ....... 2014-05-19 19:19:05 @Espyo why in the world would I add it before then? 2014-05-19 19:19:12 Mariostar123DS k 2014-05-19 19:19:18 @Espyo why must you be so impatient? it wouldn't make a difference if I added you already 2014-05-19 19:19:42 Mariostar123DS ................because I did....? 2014-05-19 19:20:33 Mariostar123DS brb 2014-05-19 19:21:23 @Espyo so what? 2014-05-19 19:21:26 @Espyo we're not playing now 2014-05-19 19:21:33 @Espyo so you could've added 3 years ago or 3 seconds before we start 2014-05-19 19:21:35 @Espyo it makes no difference 2014-05-19 19:22:04 --> Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has joined #pikipedia 2014-05-19 19:22:11 Mariostar123 back 2014-05-19 19:25:42 <-- Mariostar123DS (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 19:31:29 Testyo [Pikipedia RC] User:Mariostar123 by Mariostar123 (+279 N Summary) http://www.pikminwiki.com/index.php?title=User:Mariostar123&curid=9856&diff=80447&oldid=0 2014-05-19 19:32:59 <-- Mariostar123 (Mibbit@mfmt90-345-15-11.range33-088.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 19:40:22 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-19 19:48:38 -- UltraMario is now known as UltraMewtwo 2014-05-19 20:26:12 --> Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-19 20:26:15 Mariostar123 hey 2014-05-19 20:26:30 @Espyo hi 2014-05-19 20:27:14 Mariostar123 hi 2014-05-19 20:27:33 Mariostar123 how do I open memos? 2014-05-19 20:28:07 @Espyo if you have memos, he'll tell you 2014-05-19 20:28:07 Mariostar123 very intresting video here... 2014-05-19 20:28:21 Mariostar123 http://www.youtube.com/watch?v=QL7IL42MQ1w&list=UUyS4xQE6DK4_p3qXQwJQAyA 2014-05-19 20:31:46 Testyo [Pikipedia RC] Template:Button by Espyo (+163 m Adding third button.) http://www.pikminwiki.com/index.php?title=Template:Button&curid=9789&diff=80448&oldid=80445 2014-05-19 20:31:46 Testyo [Pikipedia RC] Whistle by Espyo (+108 m Adding P3 controls.) http://www.pikminwiki.com/index.php?title=Whistle&curid=1648&diff=80449&oldid=80237 2014-05-19 20:31:46 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-19 20:32:56 <-- Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 20:43:10 --> Mariostar123DS-toast (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-19 20:44:29 Mariostar123DS-toast Hey espyo,im ready,just remember to add me and other then that:good luck. 2014-05-19 20:44:42 @Espyo yeah 2014-05-19 20:44:49 @Espyo it might not start at 9 exactly 2014-05-19 20:44:53 @Espyo it starts when I finish dinner 2014-05-19 20:44:59 @Espyo which is still in a bit 2014-05-19 20:45:01 @Espyo so maybe 9 30 2014-05-19 20:45:03 @Espyo maybe 9 20 2014-05-19 20:45:08 @Espyo I'll let you know when it starts 2014-05-19 20:46:00 Mariostar123DS-toast also,will I need to be here while racing? 2014-05-19 20:46:27 -- UltraMewtwo is now known as UltraMario 2014-05-19 20:46:43 @Espyo hmm, not sure 2014-05-19 20:46:46 @Espyo I don't think you need to 2014-05-19 20:47:10 Mariostar123DS-toast k 2014-05-19 20:49:02 Mariostar123DS-toast anything else? 2014-05-19 20:52:32 Mariostar123DS-toast these people with the Mariokart records are....magical 2014-05-19 20:54:40 @Espyo hehe 2014-05-19 20:55:15 <-- Mariostar123DS-toast (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 20:57:37 --> Mariostar123DS (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-19 20:58:39 Mariostar123DS Once we start,ill leave the chat 2014-05-19 20:59:06 <-- Mariostar123DS (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Client Quit) 2014-05-19 21:00:15 --> Mariostar123DS (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-19 21:01:33 Mariostar123DS the internet keeps glitching -_- 2014-05-19 21:06:40 <-- Mariostar123DS (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 21:06:46 --> Mariostar123DS (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-19 21:07:16 Mariostar123DS to much glitching... 2014-05-19 21:12:00 Mariostar123DS .... 2014-05-19 21:17:03 <-- Mariostar123DS (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 21:17:09 --> Mariostar123DS (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-19 21:18:00 Mariostar123DS *thumb up* 2014-05-19 21:20:11 Mariostar123DS So,just us 4? 2014-05-19 21:22:54 @Espyo it's not a private room 2014-05-19 21:23:16 Mariostar123DS k 2014-05-19 21:23:33 Mariostar123DS So,ready? 2014-05-19 21:26:30 Mariostar123DS it is a friend match,right? 2014-05-19 21:31:50 Mariostar123DS Remember to add me,need my FC? 2014-05-19 21:32:18 Mariostar123DS 0390-3250-8775 2014-05-19 21:39:17 Mariostar123DS 40 minutes late... 2014-05-19 21:41:49 Mariostar123DS Espyo?ESPYO?ESSSSPYOOOOO! 2014-05-19 21:41:57 UltraMario hi 2014-05-19 21:42:21 Mariostar123DS hi 2014-05-19 21:42:51 Mariostar123DS Im on my 3DS right now 2014-05-19 21:42:57 Mariostar123DS Im on my 3DS right now 2014-05-19 21:43:02 Mariostar123DS Im on my 3DS right now 2014-05-19 21:43:05 UltraMario ... 2014-05-19 21:43:07 Mariostar123DS Im on my 3DS right now 2014-05-19 21:43:10 UltraMario wtf 2014-05-19 21:43:12 UltraMario stop 2014-05-19 21:43:12 Mariostar123DS Im on my 3DS right now 2014-05-19 21:43:17 Mariostar123DS Im on my 3DS right now 2014-05-19 21:43:22 Mariostar123DS Im on my 3DS right now 2014-05-19 21:43:27 UltraMario stfu 2014-05-19 21:43:28 Mariostar123DS Im on my 3DS right now 2014-05-19 21:43:33 Mariostar123DS Im on my 3DS right now 2014-05-19 21:43:38 Mariostar123DS Im on my 3DS right now 2014-05-19 21:43:43 <-- Mariostar123DS (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 21:43:47 UltraMario good god 2014-05-19 21:44:01 --> Mariostar123DS (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-19 21:46:02 Mariostar123DS Espyo? 2014-05-19 21:46:23 UltraMario >:[ 2014-05-19 21:46:41 Mariostar123DS waa? 2014-05-19 21:46:54 UltraMario 16:44 Mariostar123DS Im on my 3DS right now 16:44 Mariostar123DS Im on my 3DS right now 16:44 Mariostar123DS Im on my 3DS right now 16:44 UltraMario ... 16:44 Mariostar123DS Im on my 3DS right now 16:44 UltraMario wtf 16:44 UltraMario stop 16:44 Mariostar123DS Im on my 3DS right now 16:44 Mariostar123DS Im on my 3DS right now 16:44 Mariostar123DS Im on my 3DS 2014-05-19 21:46:56 UltraMario that 2014-05-19 21:47:24 Mariostar123DS ? 2014-05-19 21:47:39 UltraMario you kept saying the same thing 2014-05-19 21:47:52 Mariostar123DS waaa?? 2014-05-19 21:48:16 UltraMario -_- 2014-05-19 21:49:08 Mariostar123DS Espyo,you there? 2014-05-19 21:49:59 Mariostar123DS ............its been one hour and I need to leave at like 10:15! 2014-05-19 21:50:11 UltraMario stop being annoying 2014-05-19 21:50:35 Mariostar123DS well set me to ignore -_- 2014-05-19 21:51:28 Mariostar123DS -_- 2014-05-19 21:51:49 Mariostar123DS bitch 2014-05-19 21:52:49 Mariostar123DS And so MS waited for Espyo,feeling sad that he has lost out on wi-fi on brawl time in his wait 2014-05-19 21:53:33 Mariostar123DS and ultra mario was pissing me off,but who gives a frick? 2014-05-19 21:53:59 Mariostar123DS Espyo,i got to go soon.... 2014-05-19 21:56:50 --> Mariostar123DS-toast (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-19 21:57:36 Mariostar123DS-toast ..... *sigh* 2014-05-19 21:59:04 <-- Mariostar123DS (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-19 22:00:00 UltraMario >_< 2014-05-19 22:17:54 -- irc: disconnected from server 2014-05-19 22:18:07 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-19 22:18: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" 2014-05-19 22:18:07 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-19 22:18:07 -- Channel #pikipedia: 8 nicks (2 ops, 0 voices, 6 normals) 2014-05-19 22:18:07 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-19 22:18:07 -- Mode #pikipedia [+o J] by ChanServ 2014-05-19 22:18:08 -- Mode #pikipedia [+nt] 2014-05-19 22:18:08 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-20 01:12:13 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-20 01:12:13 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-20 01:13:19 @PikFan Espyo: what do you mean, "why did I add "(X / -)" after {{button}}"? 2014-05-20 01:13:20 Testyo "button" template = http://www.pikminwiki.com/index.php?title=Template:button 2014-05-20 01:13:46 @PikFan I thought that was how it was done...? 2014-05-20 01:14:05 @PikFan oh, and this seriously made me mad 2014-05-20 01:14:08 @PikFan http://pikmin.wikia.com/wiki/Message_Wall:Dart_Monkey 2014-05-20 01:14:26 @PikFan "If you've got them from Pikipedia, I would like to say that it is not a reliable resource." 2014-05-20 01:14:45 @PikFan coming from the user who edits on a website that is FAR more unreliable than we are 2014-05-20 01:15:00 @Espyo no no, you just use {{button}} 2014-05-20 01:15:01 @PikFan who thinks that quantity = quality 2014-05-20 01:15:01 Testyo "button" template = http://www.pikminwiki.com/index.php?title=Template:button 2014-05-20 01:15:02 @Espyo it's enough 2014-05-20 01:15:08 @Espyo haha, they jealous 2014-05-20 01:15:46 @PikFan " I'll let you know that we are rival wikis, and we should never steal info from them. " 2014-05-20 01:15:59 @Espyo at least they don't steal info 2014-05-20 01:16:03 @PikFan right 2014-05-20 01:16:10 @Espyo *COUGH COUGH* ..............TCRF.................. *COUGH COUGH* 2014-05-20 01:16:24 @PikFan but 2014-05-20 01:16:32 @PikFan "never steal info from them" 2014-05-20 01:16:34 @PikFan them 2014-05-20 01:16:39 @PikFan them = us 2014-05-20 01:17:07 @Espyo like how they call us rivals 2014-05-20 01:17:07 @PikFan oh also I have a question 2014-05-20 01:17:14 @Espyo it's true, but they shouldn't even be seeing as competition 2014-05-20 01:17:17 @Espyo as much as their superiors 2014-05-20 01:17:24 @PikFan how come you're not using Mibbit 2014-05-20 01:17:40 @PikFan your icon is blue 2014-05-20 01:17:42 @Espyo meh, I had to use a non-web IRC client eventually 2014-05-20 01:17:44 @Espyo I'm using HexChat 2014-05-20 01:17:56 @PikFan what do you mean, eventually? 2014-05-20 01:19:43 @Espyo eh, everyone's been saying Mibbit is poor 2014-05-20 01:19:48 @Espyo and I gotta say, I like HexChat 2014-05-20 01:20:16 @PikFan mm 2014-05-20 01:20:34 @PikFan mIRC is really popular 2014-05-20 01:20:47 @PikFan but I looked at it and it looked... horrid 2014-05-20 01:21:37 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-20 01:22:26 @PikFan honestly how do users stand wikia 2014-05-20 01:23:29 Mariofan169 Idk 2014-05-20 01:23:55 @Espyo because they don't know there's better 2014-05-20 01:23:58 @Espyo don't let it get to you 2014-05-20 01:24:07 @Espyo it's best to ignore it altogether 2014-05-20 01:24:14 @Espyo hey, like that spammer guy 2014-05-20 01:24:21 @Espyo plus we are objectively better (besides P3 stuff) 2014-05-20 01:24:22 Mariofan169 But if anything 2014-05-20 01:24:24 @Espyo several reasons 2014-05-20 01:24:48 Mariofan169 Wikia's new layout just sucks 2014-05-20 01:24:59 Mariofan169 Wait, what spammer guy? 2014-05-20 01:26:12 Mariofan169 Me? 2014-05-20 01:28:00 Mariofan169 Oh, so just because I'm a user that hasn't come here in a long time 2014-05-20 01:28:13 Mariofan169 Means that I'm a spammer? 2014-05-20 01:28:20 @PikFan no 2014-05-20 01:28:25 @PikFan we weren't talking about you 2014-05-20 01:28:34 Mariofan169 Oh 2014-05-20 01:28:36 @PikFan just this spammer on Pikipedia 2014-05-20 01:28:37 Mariofan169 OK 2014-05-20 01:29:07 Mariofan169 Maybe he meant tvtrash in #testyo 2014-05-20 01:29:24 @PikFan ...I said Pikipedia, not #testyo 2014-05-20 01:29:45 @PikFan www.pikminwiki.com 2014-05-20 01:30:09 Mariofan169 Nvm 2014-05-20 01:33:33 @PikFan getting close to kitten managers again 2014-05-20 01:33:49 Mariofan169 lolwat 2014-05-20 01:33:55 @PikFan 814, almost 815 quint cookies 2014-05-20 01:34:05 @PikFan (cookie clicker) 2014-05-20 01:35:12 @Espyo hmmmmm 2014-05-20 01:37:43 Mariofan169 Hmmmmm? 2014-05-20 01:38:04 @PikFan ooh, just got Golden Goose Egg :D 2014-05-20 01:38:24 @Espyo they're so rare for me now 2014-05-20 01:38:28 @Espyo and I don't even have half 2014-05-20 01:38:33 @PikFan :s 2014-05-20 01:38:45 @PikFan do you have Omelette 2014-05-20 01:38:50 @Espyo not yet 2014-05-20 01:38:56 @Espyo though I did read that that helps 2014-05-20 01:38:57 @PikFan oh, that must be why 2014-05-20 01:39:12 @PikFan yeah, it increases the chance of egg drops by 10% 2014-05-20 01:39:41 @PikFan there's even a table here http://cookieclicker.wikia.com/wiki/Easter_Season?useskin=monobook#Unlocking_Eggs 2014-05-20 01:39:54 @PikFan and apparently getting Hide and seek champion increases the chance too 2014-05-20 01:40:14 Mariofan169 Cookie Clicker Wiki 2014-05-20 01:40:21 Mariofan169 Why is that a thing 2014-05-20 01:40:40 @PikFan that could be said about all wikis 2014-05-20 01:41:05 Mariofan169 But 2014-05-20 01:41:24 Mariofan169 It's cookie clicker for god's sake 2014-05-20 01:41:30 Mariofan169 COOKI CLICKER 2014-05-20 01:41:35 Mariofan169 *COOKIE 2014-05-20 01:41:37 @PikFan your point being...? 2014-05-20 01:42:20 Mariofan169 Why does a game that simple need a wiki 2014-05-20 01:42:33 @PikFan Cookie Clicker is not a simple game 2014-05-20 01:42:46 @PikFan it's pretty complicated once you've gotten to know it 2014-05-20 01:43:40 Mariofan169 Well I guess that's why it has over 150 pages... 2014-05-20 01:45:01 @Espyo but Hide and Seek is only useful for any session after the one where you get it 2014-05-20 01:45:10 @Espyo I like how fast the Cookie Clicker wiki is to update 2014-05-20 01:45:13 @Espyo and how slow it is to update 2014-05-20 01:45:23 @Espyo the Easter Season article was created really fast 2014-05-20 01:45:30 @Espyo but the front page is 3 months old 2014-05-20 01:45:56 @PikFan heh 2014-05-20 01:46:44 Mariofan169 I don't understand humanity 2014-05-20 01:46:48 @Espyo same 2014-05-20 01:55:25 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-20 02:19:51 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-20 02:40:19 @Espyo uh 2014-05-20 02:40:38 @Espyo I just had a "??? -- Golden Cookies appear shinnier for 3 seconds!" Golden Cookie 2014-05-20 02:42:15 Mariofan169 So 2014-05-20 02:42:34 @PikFan hmm? 2014-05-20 02:42:41 @PikFan huh 2014-05-20 02:42:51 @PikFan I think you got a cookie blab 2014-05-20 02:42:56 Mariofan169 Is there any game on the app store that's NOT garbage? 2014-05-20 02:43:17 @PikFan http://cookieclicker.wikia.com/wiki/Golden_Cookie?useskin=monobook#Outcomes 2014-05-20 02:44:00 @PikFan so the quote said "Golden cookie shininess doubled for 3 seconds!" ? 2014-05-20 02:44:35 @Espyo yep 2014-05-20 02:44:42 @PikFan mm 2014-05-20 02:44:52 @PikFan also my wrinklers are invisible 2014-05-20 02:44:54 @PikFan no idea why 2014-05-20 02:45:06 @PikFan ok, this is what happened: 2014-05-20 02:45:24 @PikFan I was on Easter, and decided to go to Christmas to get the reindeer cookies 2014-05-20 02:45:37 @PikFan when I switched my wrinklers turned invisible 2014-05-20 02:45:48 @Espyo heh 2014-05-20 02:45:55 @Espyo because of the Christmas themed wrinklers 2014-05-20 02:46:03 @PikFan but I refreshed and they're not invisible anymore 2014-05-20 02:46:05 Mariofan169 It seems that every game there either really asks for money like Candy Crush 2014-05-20 02:46:23 @PikFan of course, that's why they make those games 2014-05-20 02:46:31 @PikFan they want you to spend money on it 2014-05-20 02:46:36 @Espyo yeah 2014-05-20 02:46:39 @Espyo in other news... 2014-05-20 02:46:43 @Espyo just had my final Brawl with my friends 2014-05-20 02:46:49 @Espyo ...sigh, RIP, NWFC 2014-05-20 02:46:59 @PikFan :'( 2014-05-20 02:47:03 Mariofan169 A very simple game that for some reason everyone plays like flappy bird 2014-05-20 02:47:03 @Espyo hopefully it won't matter, because apparently private servers are working 2014-05-20 02:47:06 @Espyo but still... 2014-05-20 02:47:20 @Espyo flappy bird is like a psychological phenomenom 2014-05-20 02:47:22 @PikFan why did Nintendo decide to end NWFC 2014-05-20 02:47:33 @Espyo it wasn't their call 2014-05-20 02:47:33 @PikFan *phenomenon 2014-05-20 02:47:39 @Espyo their server — that 2014-05-20 02:47:39 Mariofan169 Or just a piece of garbage like all these kid doctor games 2014-05-20 02:47:53 @Espyo their server is bound to the GameSpy servers 2014-05-20 02:48:00 @Espyo and GameSpy is ending in like a week 2014-05-20 02:48:11 @PikFan oh 2014-05-20 02:48:16 @PikFan wait, what's GameSpy 2014-05-20 02:48:20 Mariofan169 It doesn't help that ports of classic games are expensive 2014-05-20 02:48:42 @Espyo it's just a matchmaking service for online games 2014-05-20 02:48:49 Mariofan169 Especially Square Enix's games 2014-05-20 02:48:52 @Espyo Nintendo could've used their own, but decided not to 2014-05-20 02:49:15 @PikFan how come Nintendo can't switch services 2014-05-20 02:49:25 @PikFan money? 2014-05-20 02:49:38 @Espyo In February 2013, IGN's new owner, Ziff Davis, shut down IGN's "secondary" sites, including GameSpy's network. This was followed by the announcement in April 2014 that GameSpy's service platform will be shut down on May 31, 2014. 2014-05-20 02:49:39 @Espyo they can 2014-05-20 02:49:42 @Espyo that's not the problem 2014-05-20 02:49:55 @Espyo the problem is that Brawl, Mario Kart Wii, etc. are hardcoded to connect to uh... 2014-05-20 02:49:58 @Espyo servers.gamespy.com 2014-05-20 02:49:59 @Espyo for instance 2014-05-20 02:50:04 @Espyo you cannot change that 2014-05-20 02:50:09 @Espyo you CAN, with hacks 2014-05-20 02:50:13 @Espyo it's just a value 2014-05-20 02:50:21 @Espyo with hacks you can make the game connect to google, as far as it cares 2014-05-20 02:50:28 @Espyo that's why private servers can be connected to with hacks 2014-05-20 02:50:35 @Espyo Nintendo could create new servers 2014-05-20 02:50:42 @Espyo but the only way to connect to them would be with hacks 2014-05-20 02:50:46 @PikFan hmm 2014-05-20 02:50:50 @Espyo of course they aren't going to tell people to hack to join new servers 2014-05-20 02:51:00 @PikFan wait, IGN controls GameSpy? 2014-05-20 02:51:04 @Espyo it does now 2014-05-20 02:51:10 @Espyo if they had planned ahead, they wouldn't have used the GameSpy service to begin with 2014-05-20 02:51:13 @PikFan so in other words 2014-05-20 02:51:27 @PikFan (and this will sound biased) 2014-05-20 02:51:27 @Espyo or at least they would've bound the address the games connect to to a system setting or something 2014-05-20 02:51:33 @PikFan IGN dislikes Nintendo 2014-05-20 02:51:35 @Espyo so that it's not statically servers.gamespy.com forever 2014-05-20 02:51:43 @Espyo that way they could release a Wii system patch to change the server 2014-05-20 02:51:50 @Espyo IGN doesn't dislike Nintendo 2014-05-20 02:51:56 @Espyo they're just retarded and sellouts 2014-05-20 02:52:19 @PikFan hm, yeah 2014-05-20 02:52:35 @Espyo >While some publishers have planned to migrate GameSpy-equipped games to other platforms (such as Steamworks or in-house services), some publishers, such as Nintendo (who used the GameSpy servers as the basis of its Nintendo Wi-Fi Connection platform for DS and Wii games) will not, particularly due to the age of the affected games. 2014-05-20 02:52:42 Mariofan169 No they aren't 2014-05-20 02:52:48 @Espyo >In April 2014, Glu announced that it would shut down the legacy GameSpy servers on May 31, 2014, (server termination was extended until the end of June) [7] so its developers could focus on work for Glu's own services. 2014-05-20 02:53:01 @Espyo well that sucks, they only shut down the GameSpy matchmaking so they could do other stuff 2014-05-20 02:53:09 @Espyo "oh, you guys were using our services? lol I don't care" 2014-05-20 02:53:18 @Espyo sure it's not that black and white, but... 2014-05-20 02:53:18 @PikFan ...........wooooooooow 2014-05-20 02:53:38 Mariofan169 So no more Battlefront 2 multiplayer 2014-05-20 02:53:46 @Espyo no more loads of games online 2014-05-20 02:53:49 @Espyo anything Wii and DS, gone 2014-05-20 02:54:01 @Espyo (maybe one or two indie games might connect to other servers) 2014-05-20 02:54:10 @Espyo loads of old PC games also won't work 2014-05-20 02:54:18 @Espyo I remember I needed GameSpy to play Worms 3D online 2014-05-20 02:54:23 @Espyo ...or was it Worms 4? 2014-05-20 02:54:30 @Espyo oh well... 2014-05-20 02:54:46 @Espyo here's hoping the private servers work exactly as they should 2014-05-20 02:54:50 @Espyo anyway, going to bed now 2014-05-20 02:54:52 @Espyo super late here 2014-05-20 02:54:55 @PikFan night 2014-05-20 02:55:01 @Espyo we spent our last matches experimenting with Final Smashes 2014-05-20 02:55:10 @Espyo namely what happens when somebody disconnects while performing one 2014-05-20 02:55:18 @Espyo answer: the game handles every case nicely 2014-05-20 02:55:31 @Espyo so you don't get like leftover glitched particles or anything 2014-05-20 02:55:32 @Espyo night 2014-05-20 02:55:37 <-- Espyo (Espyo@i24-799-28-826.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-20 02:56:02 <-- Testyo (Testyo@i24-799-28-826.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-20 02:56:14 Mariofan169 Night 2014-05-20 03:01:02 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-20 04:24:31 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-20 08:35:27 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-20 11:12:51 --> Testyo (Testyo@a84-277-88-328.cpe.netcabo.pt) has joined #pikipedia 2014-05-20 11:13:38 --> Espyo (Espyo@a84-277-88-328.cpe.netcabo.pt) has joined #pikipedia 2014-05-20 11:13:39 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-20 13:48:01 --> Madoka (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has joined #pikipedia 2014-05-20 13:53:12 <-- Madoka (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-20 16:19:07 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-20 16:19:07 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-20 16:19:15 @PikFan . 2014-05-20 16:19:18 @PikFan ok so 2014-05-20 16:19:28 @PikFan I managed to get my cps up to 5 quad 2014-05-20 16:19:43 @PikFan it's uh 2014-05-20 16:19:53 @PikFan 5.216 quad right now 2014-05-20 16:20:23 @PikFan also thanks for adding those Wii U buttons 2014-05-20 16:21:32 @PikFan and another thing 2014-05-20 16:21:43 @PikFan got hide and seek champion last night 2014-05-20 16:22:11 @PikFan I wonder if "egg" really does add 9 cps 2014-05-20 16:24:14 @PikFan ...or 4 billion 2014-05-20 16:27:34 @Espyo hey 2014-05-20 16:28:22 @Espyo wow, 5 quad 2014-05-20 16:28:35 @Espyo I can get like 2 quad with frenzy and no wrinklers 2014-05-20 16:28:43 @Espyo ah, nice 2014-05-20 16:28:55 @Espyo and yeah, we were needing the Wii U buttons, so that's done now 2014-05-20 16:28:57 @Espyo also Classic Controller 2014-05-20 16:29:21 @PikFan I don't see why we'd need Classic Controller though 2014-05-20 16:29:38 @PikFan brb 2014-05-20 16:29:56 @Espyo [[Whistle]] 2014-05-20 16:29:57 Testyo "Whistle" article = http://www.pikminwiki.com/index.php?title=Whistle 2014-05-20 16:33:30 @PikFan back 2014-05-20 16:33:41 @PikFan ...oh, do you mean Pro Controller? 2014-05-20 16:34:05 @Espyo ...is there a difference? 2014-05-20 16:35:32 @PikFan http://sickr.files.wordpress.com/2013/07/white_wii_u_pro_controller.jpg 2014-05-20 16:35:36 @PikFan Pro Controller 2014-05-20 16:35:37 @PikFan http://www.ubergames.co.za/content/images/thumbs/0000486_wii_classic_controller_white.jpeg 2014-05-20 16:35:41 @PikFan Classic Controller 2014-05-20 16:38:26 @Espyo dammit... 2014-05-20 16:38:30 @Espyo I guess I'll redo later 2014-05-20 16:38:43 @Espyo Pikmin 3 really is Pro Controller, not Classic, then? 2014-05-20 16:39:10 Miles Classic Controller is Wii 2014-05-20 16:39:14 Miles Pro Controller is Wii U 2014-05-20 16:39:41 @Espyo yeah... 2014-05-20 16:39:51 @Espyo but you can use the Wii Remote, so I figured the Classic Controller... 2014-05-20 16:40:07 Miles Nah, very few games support the Classic Controller for some reason 2014-05-20 16:42:37 @Espyo wow 2014-05-20 16:42:41 @Espyo all right, fair enough 2014-05-20 16:42:46 @Espyo I guess I'll make icons eventually 2014-05-20 16:42:56 @Espyo I was VERY lucky that somebody made a Wii U vectorial image 2014-05-20 16:43:01 @Espyo I could just get the icons straight away 2014-05-20 16:43:07 @Espyo here's hoping they did one for the Pro Controller 2014-05-20 16:45:43 @PikFan alright, gotta go 2014-05-20 16:45:45 @PikFan bye 2014-05-20 16:45:49 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: school) 2014-05-20 17:52:24 @Espyo 85% chance to get a nectar 2014-05-20 17:52:30 @Espyo 7.5% chance to get a spicy 2014-05-20 17:52:32 @Espyo 7.5% chance to get a bitter 2014-05-20 17:52:47 @Espyo does that sound right for the outcome of a defeated petrified enemy? 2014-05-20 17:53:01 @Espyo I killed the same petrified Snow Bulborb on different frames, for 206 frames 2014-05-20 17:53:06 @Espyo these are pretty much the results 2014-05-20 17:53:24 @Espyo spicies are slightly less common 2014-05-20 19:57:25 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-20 20:08:56 -- UltraMario is now known as UltraLucario 2014-05-20 20:17:26 -- UltraLucario is now known as UltraMario 2014-05-20 20:29:43 @J doesn't it vary by enemy? 2014-05-20 20:39:24 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-20 20:50:39 @Espyo I would be damned if that's the case 2014-05-20 20:50:48 @Espyo regular enemies drop 1 thing 2014-05-20 20:50:56 @Espyo bosses 2, Titan Dweevil 5 2014-05-20 20:50:59 @Espyo or 1-5-10 2014-05-20 20:51:09 @Espyo but the chances should be the same for each enemy... right? 2014-05-20 20:51:13 Mariofan169 What are you talking about 2014-05-20 20:51:29 @Espyo the chances of getting nectar, spicy spray or bitter spray from a petrified enemy in Pikmin 2 2014-05-20 20:54:09 @J oh, you mean the chance for each drop? 2014-05-20 20:54:27 @J I don't even know if they drop the same number of things each time 2014-05-20 20:58:12 @Espyo it's always the same number 2014-05-20 20:58:20 @Espyo at least, that's the info we had for years 2014-05-20 20:58:30 @Espyo and that's what PikFan says when he does his farming 2014-05-20 21:00:31 @J hmm, okay then 2014-05-20 21:00:45 @J no idea about your numbers, but I guess they sound reasonable 2014-05-20 21:02:17 --> J_ (J@w-113.cust-16545.ip.static.uno.uk.net) has joined #pikipedia 2014-05-20 21:02:17 -- 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" 2014-05-20 21:02:17 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-20 21:02:17 -- Channel #pikipedia: 10 nicks (3 ops, 0 voices, 7 normals) 2014-05-20 21:02:17 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-20 21:02:18 -- Mode #pikipedia [+nt] 2014-05-20 21:02:18 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-20 21:02:25 J_ [21:00:31] @J hmm, okay then 2014-05-20 21:02:25 J_ [21:00:45] @J no idea about your numbers, but I guess they sound reasonable 2014-05-20 21:02:45 <-- J (J@o-634.cust-87447.ip.static.uno.uk.net) has quit (Killed (NickServ (GHOST command used by J_!J@w-113.cust-16545.ip.static.uno.uk.net))) 2014-05-20 21:02:47 Miles Maybe you're thinking of eggs dropping two nectar puddles 2014-05-20 21:02:55 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-20 21:02:55 -- 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" 2014-05-20 21:02:55 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-20 21:02:55 -- Channel #pikipedia: 9 nicks (2 ops, 0 voices, 7 normals) 2014-05-20 21:02:55 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-20 21:02:55 -- Mode #pikipedia [+o J] by ChanServ 2014-05-20 21:02:55 -- Mode #pikipedia [+nt] 2014-05-20 21:02:55 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-20 21:02:56 @Espyo oh MY numbers 2014-05-20 21:02:58 @Espyo that explains it 2014-05-20 21:03:16 @J wha? 2014-05-20 21:03:22 @Espyo ...I don't even know 2014-05-20 21:03:25 @J ... 2014-05-20 21:03:31 @Espyo all right, you say you think my numbers (my probabilities) seem right 2014-05-20 21:03:39 @Espyo you're not commenting on the number of blobs that pop out 2014-05-20 21:03:40 @Espyo correct? 2014-05-20 21:03:46 @J yeah 2014-05-20 21:04:28 @J [21:02:47] Miles Maybe you're thinking of eggs dropping two nectar puddles 2014-05-20 21:04:42 @J no, I just never really paid attention to how many enemies drop 2014-05-20 21:05:00 @J I guess I don't kill enemies like that very often anyway 2014-05-20 21:05:59 @Espyo same, to be honest 2014-05-20 21:47:58 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-20 22:35:04 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-20 23:09:57 --> Gamefreak75 (NewYokuba@2605:e000:2e44:syzw:sqsr:zzul:qjon:onox) has joined #pikipedia 2014-05-20 23:24:14 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-20 23:52:19 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:mmqy:zqrw:lql:gyvt:lijh) has joined #pikipedia 2014-05-20 23:54:37 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:syzw:sqsr:zzul:qjon:onox) has quit (Ping timeout: 250 seconds) 2014-05-20 23:54:41 -- Gamefreak75_ is now known as Gamefreak75 2014-05-21 00:06:51 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-21 00:41:05 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-21 00:43:08 Testyo [Pikipedia RC] Fruit by 68.13.32.42 (+753) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80451&oldid=80369 2014-05-21 00:43:33 Mariofan169 testyo lm 2014-05-21 00:43:33 Testyo I said [Pikipedia RC] Fruit by 68.13.32.42 (+753) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80451&oldid=80369 because I fetched the new recent changes from the www.pikminwiki.com wiki. 2014-05-21 00:50:43 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-21 00:51:49 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-21 00:52:48 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Client Quit) 2014-05-21 00:53:17 Testyo [Pikipedia RC] Fruit by 68.13.32.42 (+5 /* Trivia */) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80452&oldid=80451 2014-05-21 00:58:21 Testyo [Pikipedia RC] Fruit by 68.13.32.42 (+84 /* Trivia */) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80453&oldid=80452 2014-05-21 01:03:24 Testyo [Pikipedia RC] Fruit by 68.13.32.42 (+74 /* Trivia */) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80454&oldid=80453 2014-05-21 01:03:24 Testyo [Pikipedia RC] Fruit by 68.13.32.42 (-73 /* Trivia */) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80455&oldid=80454 2014-05-21 01:32:55 <-- Espyo (Espyo@a84-277-88-328.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-21 01:33:01 <-- Testyo (Testyo@a84-277-88-328.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-21 01:46:38 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-21 02:01:17 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:rrgy:rup:phmj:ptjx:shnw) has joined #pikipedia 2014-05-21 02:04:37 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:mmqy:zqrw:lql:gyvt:lijh) has quit (Ping timeout: 250 seconds) 2014-05-21 02:04:38 -- Gamefreak75_ is now known as Gamefreak75 2014-05-21 02:05:21 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:uxxs:mlpo:ihos:joxu:juvg) has joined #pikipedia 2014-05-21 02:08:57 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:rrgy:rup:phmj:ptjx:shnw) has quit (Ping timeout: 250 seconds) 2014-05-21 02:08:58 -- Gamefreak75_ is now known as Gamefreak75 2014-05-21 02:40:29 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:znsi:gxvs:wylm:jqsi:pkw) has joined #pikipedia 2014-05-21 02:42:08 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-21 02:43:37 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:uxxs:mlpo:ihos:joxu:juvg) has quit (Ping timeout: 250 seconds) 2014-05-21 02:43:51 -- Gamefreak75_ is now known as Gamefreak75 2014-05-21 03:22:09 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:kxsi:zpkl:surm:vuxm:xqzp) has joined #pikipedia 2014-05-21 03:25:39 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:znsi:gxvs:wylm:jqsi:pkw) has quit (Ping timeout: 250 seconds) 2014-05-21 03:25:46 -- Gamefreak75_ is now known as Gamefreak75 2014-05-21 04:05:14 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:lkmq:tpvq:qtvp:wrno:iwor) has joined #pikipedia 2014-05-21 04:08:33 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:kxsi:zpkl:surm:vuxm:xqzp) has quit (Ping timeout: 250 seconds) 2014-05-21 04:08:36 -- Gamefreak75_ is now known as Gamefreak75 2014-05-21 05:32:27 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:mhgy:numo:jywj:qhtj:xgmk) has joined #pikipedia 2014-05-21 05:35:39 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:lkmq:tpvq:qtvp:wrno:iwor) has quit (Ping timeout: 250 seconds) 2014-05-21 05:35:48 -- Gamefreak75_ is now known as Gamefreak75 2014-05-21 06:13:05 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:kiii:omuh:hkrm:jgsj:kmhz) has joined #pikipedia 2014-05-21 06:15:31 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:mhgy:numo:jywj:qhtj:xgmk) has quit (Ping timeout: 250 seconds) 2014-05-21 06:15:42 -- Gamefreak75_ is now known as Gamefreak75 2014-05-21 06:31:48 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:kiii:omuh:hkrm:jgsj:kmhz) has quit (Quit: nwehehehe) 2014-05-21 11:05:16 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Ping timeout: 245 seconds) 2014-05-21 11:05:46 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-21 11:35:26 --> Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has joined #pikipedia 2014-05-21 11:36:00 --> Espyo (Espyo@e36-056-02-90.cpe.netcabo.pt) has joined #pikipedia 2014-05-21 11:36:00 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-21 13:06:46 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-21 13:12:35 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-21 15:17:01 Testyo [Pikipedia RC] Fruit by PikFan23 (-701 the "amount in story mode" column isn't needed, IMO, and the only thing trivia-w...) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80464&oldid=80457 2014-05-21 15:17:01 Testyo [Pikipedia RC] Category:Skitterlings by PikFan23 (-16 m meh) http://www.pikminwiki.com/index.php?title=Category:Skitterlings&curid=2083&diff=80465&oldid=80461 2014-05-21 15:17:26 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-21 15:17:26 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-21 15:17:40 @PikFan . 2014-05-21 15:18:21 Miles ... 2014-05-21 15:20:15 @PikFan ...? 2014-05-21 15:20:45 @PikFan oh, Espyo 2014-05-21 15:20:56 @PikFan I had an idea a few days ago 2014-05-21 15:21:10 @Espyo hey 2014-05-21 15:21:12 @Espyo oh? do tell 2014-05-21 15:21:27 @PikFan so in addition to describing where treasures are 2014-05-21 15:21:43 @PikFan (that is, treasures, ship parts, fruit) 2014-05-21 15:21:54 @Espyo yeah 2014-05-21 15:21:58 @PikFan we could take pictures of them and put them on their articles 2014-05-21 15:22:18 @PikFan though I'm not sure that'd work out great with treasures in caves... 2014-05-21 15:22:54 @Espyo yeah, for the overground ones only 2014-05-21 15:23:03 @Espyo although... 2014-05-21 15:23:05 @PikFan hmm 2014-05-21 15:23:14 @Espyo some treasures are pretty much always in the same places, even underground 2014-05-21 15:23:18 @Espyo like the chess pieces 2014-05-21 15:23:22 @PikFan right, like in enemies 2014-05-21 15:23:23 @Espyo and stuff that's always buried 2014-05-21 15:23:36 @Espyo I'll add it to the ToDo 2014-05-21 15:23:46 @Espyo anyway, you farm for sprays every once in a while, right? 2014-05-21 15:23:54 @PikFan yes? 2014-05-21 15:24:13 @Espyo how often do you crack open petrified enemies? 2014-05-21 15:24:40 @PikFan not that often, unless if I feel like harvesting enemies 2014-05-21 15:25:04 @Espyo it's just that I've cracked a Snow Bulborb on 206 different frames 2014-05-21 15:25:08 @Espyo and compared the results 2014-05-21 15:25:20 @PikFan ...why 206? 2014-05-21 15:25:27 @Espyo 85% nectar, 7.5% bitters, 7.5% spicies 2014-05-21 15:25:41 @Espyo I started by decreasing its health to a sliver 2014-05-21 15:25:46 @Espyo then I petrified it 2014-05-21 15:25:50 @Espyo then held a Purple 2014-05-21 15:25:53 @Espyo and then saved a state 2014-05-21 15:26:02 @Espyo and then I kept releasing the Purple on different frames 2014-05-21 15:26:09 @Espyo and I could only do it 206 times before it broke free 2014-05-21 15:26:21 @Espyo could've stopped at 200, but hey, there were only 6 left, anyway 2014-05-21 15:26:31 @PikFan I see 2014-05-21 15:26:52 @Espyo anyway, do those percentages sound right? 2014-05-21 15:27:00 @PikFan I suppose 2014-05-21 15:27:02 @Espyo they aren't EXACTLY those values 2014-05-21 15:27:15 @PikFan sprays don't appear that much 2014-05-21 15:27:21 @Espyo those are just rounded to what seems right 2014-05-21 15:27:54 @Espyo 8.25% bitter 2014-05-21 15:28:05 @Espyo 84.46% nectar 2014-05-21 15:28:15 @Espyo 7.28% spicy 2014-05-21 15:28:21 @PikFan but I have to say, I feel like they're a bit more common dropping from enemies than from eggs 2014-05-21 15:28:32 @Espyo weird 2014-05-21 15:28:39 @Espyo but I kind of know what you mean, on the other hand 2014-05-21 15:28:45 @Espyo there was one time I was farming them for whatever reason 2014-05-21 15:28:51 @Espyo and I just couldn't get any luck from eggs 2014-05-21 15:29:15 @PikFan mm 2014-05-21 15:29:23 @Espyo and when you think "spray blob dropping on the ground", you visuallize a petrified enemy being defeated 2014-05-21 15:29:36 @Espyo then again, that could be bias, because when you see videos and the like, they crack open enemies more than eggs 2014-05-21 15:29:54 @Espyo Pikmin 2 all eggs% speedrun when? 2014-05-21 15:33:46 @Espyo well, I'll add it to [[Ultra-bitter spray]] 2014-05-21 15:33:47 Testyo "Ultra-bitter_spray" article = http://www.pikminwiki.com/index.php?title=Ultra-bitter_spray 2014-05-21 15:33:56 @Espyo the stats don't sound very appeasing, but it's the best we got right now 2014-05-21 15:37:43 @PikFan yeah... 2014-05-21 15:38:17 @PikFan also cookie clicker wiki went crazy with Easter http://cookieclicker.wikia.com/wiki/Easter_Season#Unlocking_Eggs 2014-05-21 15:41:27 @Espyo woah 2014-05-21 15:41:31 @Espyo we need stuff like that here 2014-05-21 15:41:35 @Espyo ...though not as ridiculous 2014-05-21 15:41:48 @Espyo there aren't many calculations that are useful to non-developers, though 2014-05-21 15:41:54 @Espyo I mean, in the Pikmin games 2014-05-21 15:43:58 Miles Randomizing item locations in a game is fun 2014-05-21 15:44:27 @Espyo yep 2014-05-21 15:44:34 @Espyo makes for the best strategies 2014-05-21 15:45:02 Miles Has that minor "you can't actually complete the game" part, but eh 2014-05-21 15:47:23 Testyo [Pikipedia RC] Ultra-bitter spray by Espyo (+366 Adding probabilities from my test.) http://www.pikminwiki.com/index.php?title=Ultra-bitter_spray&curid=1525&diff=80466&oldid=80397 2014-05-21 16:02:39 Testyo [Pikipedia RC] Talk:Ultra-bitter spray by Espyo (+2022 N Adding my experiment.) http://www.pikminwiki.com/index.php?title=Talk:Ultra-bitter_spray&curid=9857&diff=80467&oldid=0 2014-05-21 16:05:11 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-05-21 16:07:32 <-- Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has quit (Quit: So long everyone!) 2014-05-21 16:07:47 --> Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has joined #pikipedia 2014-05-21 16:19:15 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-21 17:23:07 <-- Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has quit (Read error: Connection reset by peer) 2014-05-21 17:29:45 --> Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has joined #pikipedia 2014-05-21 18:06:02 --> Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-21 18:06:09 Mariostar123 hey 2014-05-21 18:07:37 <-- Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Client Quit) 2014-05-21 20:04:01 --> Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-21 20:04:10 Mariostar123 hey 2014-05-21 20:05:41 <-- Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has quit (Ping timeout: 245 seconds) 2014-05-21 20:05:57 --> Sunscreen (Sunscreen@m-59-432-06-553.hsd4.va.comcast.net) has joined #pikipedia 2014-05-21 20:08:56 <-- Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Client Quit) 2014-05-21 20:12:51 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-21 21:22:14 --> Mariofan169 (Mibbit@798-861-844-90.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-21 21:57:19 -- irc: disconnected from server 2014-05-21 21:57:30 --> J (J@w-113.cust-16545.ip.static.uno.uk.net) has joined #pikipedia 2014-05-21 21:57: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" 2014-05-21 21:57:30 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-21 21:57:30 -- Channel #pikipedia: 10 nicks (2 ops, 0 voices, 8 normals) 2014-05-21 21:57:30 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-21 21:57:30 -- Mode #pikipedia [+o J] by ChanServ 2014-05-21 21:57:31 -- Mode #pikipedia [+nt] 2014-05-21 21:57:31 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-21 22:31:47 <-- Mariofan169 (Mibbit@798-861-844-90.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-21 22:32:53 --> Mariofan169 (Mibbit@798-861-844-90.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-21 22:35:36 @Espyo ggggggreat 2014-05-21 22:35:45 @Espyo finally got the ear clipping triangulation algorithm to work 2014-05-21 22:35:51 @Espyo only to learn that it won't work with shared vertices 2014-05-21 22:37:54 @Espyo seriously, do NOT pick polygon-based world geometry 2014-05-21 22:37:57 @Espyo do stick to tiles 2014-05-21 22:38:30 Mariofan169 What's world geometry? 2014-05-21 22:39:10 @Espyo you know, what defines the world of a game 2014-05-21 22:39:15 @Espyo what defines the walls, floors and ceilings 2014-05-21 22:39:47 Mariofan169 So what makes up the walls? 2014-05-21 22:39:55 @Espyo ...walls 2014-05-21 22:39:59 @Espyo don't quite get the question 2014-05-21 22:40:00 Mariofan169 No 2014-05-21 22:40:08 Mariofan169 nvm 2014-05-21 22:44:06 @J ...ear clipping? 2014-05-21 22:44:13 @J that sounds painful for everyone involved 2014-05-21 22:44:43 Mariofan169 I think he meant piercing 2014-05-21 22:50:30 @J managed not to fall off my seat there 2014-05-21 22:51:20 @J mostly because my seat is currently the floor, but meh 2014-05-21 22:51:48 Mariofan169 lol 2014-05-21 23:11:45 -- irc: disconnected from server 2014-05-21 23:11:55 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-21 23:11:55 -- 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" 2014-05-21 23:11:55 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-21 23:11:55 -- Channel #pikipedia: 10 nicks (2 ops, 0 voices, 8 normals) 2014-05-21 23:11:55 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-21 23:11:55 -- Mode #pikipedia [+o J] by ChanServ 2014-05-21 23:11:57 -- Mode #pikipedia [+nt] 2014-05-21 23:11:57 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-21 23:12:05 <-- UltraLink (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-21 23:15:49 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-21 23:29:04 <-- Mariofan169 (Mibbit@798-861-844-90.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-21 23:33:28 Testyo [Pikipedia RC] User account Bleer created http://www.pikminwiki.com/index.php?title=User:Bleer 2014-05-21 23:35:58 --> Mariofan169 (Mibbit@798-861-844-90.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-21 23:38:22 @Espyo hm 2014-05-21 23:43:30 Testyo [Pikipedia RC] User talk:Greenpickle by Bleer (-29440 WHAT'S THAT SMELL????) http://www.pikminwiki.com/index.php?title=User_talk:Greenpickle&curid=10&diff=80480&oldid=75951 2014-05-21 23:43:30 Testyo [Pikipedia RC] User talk:FISH ENTHUSIAST by Bleer (+23) http://www.pikminwiki.com/index.php?title=User_talk:FISH_ENTHUSIAST&curid=9730&diff=80481&oldid=80005 2014-05-21 23:43:30 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-21 23:44:16 @Espyo there we go 2014-05-21 23:44:18 @Espyo he's bac 2014-05-21 23:44:19 @Espyo *k 2014-05-21 23:48:31 Testyo [Pikipedia RC] User talk:FISH ENTHUSIAST by Espyo (-23 m Reverted edits by [[Special:Contributions/Bleer|Bleer]] ([[User talk:Bleer|talk]...) http://www.pikminwiki.com/index.php?title=User_talk:FISH_ENTHUSIAST&curid=9730&diff=80495&oldid=80481 2014-05-21 23:48:32 Testyo [Pikipedia RC] Spouse Alert by Espyo (+630 m Reverted edits by [[Special:Contributions/Bleer|Bleer]] ([[User talk:Bleer|talk]...) http://www.pikminwiki.com/index.php?title=Spouse_Alert&curid=1652&diff=80496&oldid=80479 2014-05-21 23:48:32 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-22 00:08:57 --> Madoka (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has joined #pikipedia 2014-05-22 00:15:05 <-- Madoka (Mibbit@ytw51-cowa8-2-6-malm606.perr.cable.virginm.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-22 01:08:02 <-- Mariofan169 (Mibbit@798-861-844-90.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-22 01:13:08 <-- Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has quit (Quit: Later everyone!) 2014-05-22 01:13:56 <-- Espyo (Espyo@e36-056-02-90.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-22 01:28:54 --> Gamefreak75 (NewYokuba@2605:e000:2e44:lzwq:wzgq:vjph:gptg:kgtu) has joined #pikipedia 2014-05-22 01:35:04 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-22 01:36:04 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-22 02:48:11 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:tvtz:iqyk:uips:xpxv:lgw) has joined #pikipedia 2014-05-22 02:51:49 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:lzwq:wzgq:vjph:gptg:kgtu) has quit (Ping timeout: 250 seconds) 2014-05-22 02:51:59 -- Gamefreak75_ is now known as Gamefreak75 2014-05-22 03:15:18 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-22 04:12:50 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:nozw:qlxo:tiq:slik:wvos) has joined #pikipedia 2014-05-22 04:15:01 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:tvtz:iqyk:uips:xpxv:lgw) has quit (Ping timeout: 250 seconds) 2014-05-22 04:15:09 -- Gamefreak75_ is now known as Gamefreak75 2014-05-22 04:51:40 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:whlj:govi:qgin:jzph:koot) has joined #pikipedia 2014-05-22 04:54:01 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:nozw:qlxo:tiq:slik:wvos) has quit (Ping timeout: 250 seconds) 2014-05-22 04:54:13 -- Gamefreak75_ is now known as Gamefreak75 2014-05-22 05:15:17 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:gphg:smow:hgtp:uyu:vqps) has joined #pikipedia 2014-05-22 05:17:51 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:whlj:govi:qgin:jzph:koot) has quit (Ping timeout: 250 seconds) 2014-05-22 05:18:05 -- Gamefreak75_ is now known as Gamefreak75 2014-05-22 06:02:27 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:zsns:nkjh:qshk:wgkl:txry) has joined #pikipedia 2014-05-22 06:05:57 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:gphg:smow:hgtp:uyu:vqps) has quit (Ping timeout: 250 seconds) 2014-05-22 06:06:01 -- Gamefreak75_ is now known as Gamefreak75 2014-05-22 06:54:09 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:xozr:hxqk:uilw:voks:zsnp) has joined #pikipedia 2014-05-22 06:55:47 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:zsns:nkjh:qshk:wgkl:txry) has quit (Ping timeout: 250 seconds) 2014-05-22 06:55:58 -- Gamefreak75_ is now known as Gamefreak75 2014-05-22 07:07:00 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:xozr:hxqk:uilw:voks:zsnp) has quit (Quit: nwehehehe) 2014-05-22 11:16:47 --> Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has joined #pikipedia 2014-05-22 11:17:21 --> Espyo (Espyo@e36-056-02-90.cpe.netcabo.pt) has joined #pikipedia 2014-05-22 11:17:21 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-22 16:12:40 --> Scr7 (desk@plyeqdwogtii.plus.com) has joined #pikipedia 2014-05-22 17:38:41 Testyo [Pikipedia RC] File:WiiUPC L.png uploaded by Espyo (Custom-made icon. [[Category:Button icons]]) http://www.pikminwiki.com/index.php?title=File:WiiUPC_L.png 2014-05-22 17:38:41 Testyo [Pikipedia RC] File:WiiUPC R.png uploaded by Espyo (Custom-made icon. [[Category:Button icons]]) http://www.pikminwiki.com/index.php?title=File:WiiUPC_R.png 2014-05-22 17:38:41 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-22 17:39:09 <-- Scr7 (desk@plyeqdwogtii.plus.com) has left #pikipedia 2014-05-22 17:43:42 Testyo [Pikipedia RC] Template:Button icon by Espyo (+3054 m Adding Pro Controller buttons.) http://www.pikminwiki.com/index.php?title=Template:Button_icon&curid=9788&diff=80513&oldid=80444 2014-05-22 17:48:44 Testyo [Pikipedia RC] File:WiiUPC L.png uploaded by Espyo (Better ratio.) http://www.pikminwiki.com/index.php?title=File:WiiUPC_L.png 2014-05-22 17:48:44 Testyo [Pikipedia RC] File:WiiUPC R.png uploaded by Espyo (Better ratio.) http://www.pikminwiki.com/index.php?title=File:WiiUPC_R.png 2014-05-22 17:48:44 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-22 17:53:45 Testyo [Pikipedia RC] Template:Button by Espyo (+2320 m Adding Pro Controller buttons.) http://www.pikminwiki.com/index.php?title=Template:Button&curid=9789&diff=80519&oldid=80448 2014-05-22 17:53:45 Testyo [Pikipedia RC] Whistle by Espyo (+1 m Classic Shmassic.) http://www.pikminwiki.com/index.php?title=Whistle&curid=1648&diff=80520&oldid=80449 2014-05-22 18:08:32 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-22 18:16:12 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-22 19:33:29 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit 2014-05-22 19:38:28 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-22 20:01:00 -- UltraMario is now known as UltraJigglypuff 2014-05-22 20:22:00 -- UltraJigglypuff is now known as UltraMario 2014-05-22 20:22:06 -- UltraMario is now known as UltraSamus 2014-05-22 20:47:14 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-22 21:35:33 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-22 21:59:53 -- UltraSamus is now known as UltraMario 2014-05-22 22:05:03 Testyo [Pikipedia RC] Yellow Pikmin by 173.189.36.146 (+115) http://www.pikminwiki.com/index.php?title=Yellow_Pikmin&curid=1757&diff=80521&oldid=79301 2014-05-22 22:10:04 Testyo [Pikipedia RC] Yellow Pikmin by Espyo (+4 m Capitalized Pikmin.) http://www.pikminwiki.com/index.php?title=Yellow_Pikmin&curid=1757&diff=80522&oldid=80521 2014-05-22 23:20:42 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-22 23:39:38 --> T3 (T3@21-92-364-722.cable.teksavvy.com) has joined #pikipedia 2014-05-22 23:40:33 Testyo [Pikipedia RC] Succulent Series by 68.13.32.42 (+174) http://www.pikminwiki.com/index.php?title=Succulent_Series&curid=1726&diff=80523&oldid=73533 2014-05-22 23:50:36 Testyo [Pikipedia RC] Disguised Delicacy by 68.13.32.42 (+178 /* Trivia */) http://www.pikminwiki.com/index.php?title=Disguised_Delicacy&curid=423&diff=80524&oldid=80068 2014-05-22 23:55:38 Testyo [Pikipedia RC] Mystical Energy Series by 68.187.175.156 (-1067 Blanked the page) http://www.pikminwiki.com/index.php?title=Mystical_Energy_Series&curid=954&diff=80525&oldid=79273 2014-05-22 23:55:39 Testyo [Pikipedia RC] User talk:Espyo by 68.187.175.156 (+189 /* Block */ new section) http://www.pikminwiki.com/index.php?title=User_talk:Espyo&curid=5393&diff=80526&oldid=80357 2014-05-23 00:00:40 Testyo [Pikipedia RC] User talk:Espyo by 68.187.175.156 (+26) http://www.pikminwiki.com/index.php?title=User_talk:Espyo&curid=5393&diff=80528&oldid=80526 2014-05-23 00:00:40 Testyo [Pikipedia RC] User account BlockThisAccount created http://www.pikminwiki.com/index.php?title=User:BlockThisAccount 2014-05-23 00:00:40 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-23 00:01:12 @Espyo ... 2014-05-23 00:05:42 Testyo [Pikipedia RC] Succulent Series by Espyo (-1 m Italicized.) http://www.pikminwiki.com/index.php?title=Succulent_Series&curid=1726&diff=80531&oldid=80523 2014-05-23 00:05:42 Testyo [Pikipedia RC] User talk:Porplemontage by Espyo (+289 m) http://www.pikminwiki.com/index.php?title=User_talk:Porplemontage&curid=2141&diff=80532&oldid=78399 2014-05-23 00:10:46 Testyo [Pikipedia RC] Disguised Delicacy by 68.13.32.42 (+570) http://www.pikminwiki.com/index.php?title=Disguised_Delicacy&curid=423&diff=80533&oldid=80530 2014-05-23 00:14:14 Mariofan169 Why is it doing that 2014-05-23 00:15:48 Testyo [Pikipedia RC] Disguised Delicacy by 68.13.32.42 (+95) http://www.pikminwiki.com/index.php?title=Disguised_Delicacy&curid=423&diff=80534&oldid=80533 2014-05-23 00:15:48 Testyo [Pikipedia RC] Disguised Delicacy by 68.13.32.42 (-3 /* Pikmin 3 */) http://www.pikminwiki.com/index.php?title=Disguised_Delicacy&curid=423&diff=80535&oldid=80534 2014-05-23 00:20:49 Testyo [Pikipedia RC] Disguised Delicacy by 68.13.32.42 (+2) http://www.pikminwiki.com/index.php?title=Disguised_Delicacy&curid=423&diff=80536&oldid=80535 2014-05-23 00:20:49 Testyo [Pikipedia RC] Disguised Delicacy by 68.13.32.42 (-1) http://www.pikminwiki.com/index.php?title=Disguised_Delicacy&curid=423&diff=80537&oldid=80536 2014-05-23 00:24:07 Mariofan169 ... 2014-05-23 00:24:25 @Espyo because the person behind that ip address can't make their mind up 2014-05-23 00:24:28 @Espyo and keep editing that article 2014-05-23 00:25:51 Testyo [Pikipedia RC] Disguised Delicacy by 68.13.32.42 (+2) http://www.pikminwiki.com/index.php?title=Disguised_Delicacy&curid=423&diff=80538&oldid=80537 2014-05-23 00:26:41 Mariofan169 Why did you even make that feature 2014-05-23 00:27:09 @Espyo so we can keep up with the wiki's changes 2014-05-23 00:27:15 @Espyo this is a chatroom for the wikis, you know 2014-05-23 00:27:21 @Espyo it's not my fault that person has to spam the changes 2014-05-23 00:27:42 Mariofan169 I know that 2014-05-23 00:28:02 Mariofan169 Could you put Testyo in serious mode? 2014-05-23 00:28:08 @Espyo he is in serious mode here 2014-05-23 01:09:19 --> Gamefreak75 (NewYokuba@2605:e000:2e44:syzw:xnti:irop:ktyy:lpvl) has joined #pikipedia 2014-05-23 01:13:59 Mariofan169 http://www.youtube.com/watch?v=0t0uCWjQ6Og 2014-05-23 01:16:39 @Espyo is this SHAUN!? 2014-05-23 01:16:56 Mariofan169 SHAAAAAUN!!!! 2014-05-23 01:16:57 @Espyo this is SHAUN! 2014-05-23 01:17:00 @Espyo I LOVE this video 2014-05-23 01:19:05 Mariofan169 SHHHHHHAAAAAAAAUN!!!!!!!!!!!! 2014-05-23 01:32:11 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-23 01:34:13 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-23 01:44:56 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:mmqy:ywjp:ggmm:klmy:gwow) has joined #pikipedia 2014-05-23 01:48:31 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:syzw:xnti:irop:ktyy:lpvl) has quit (Ping timeout: 250 seconds) 2014-05-23 01:48:45 -- Gamefreak75_ is now known as Gamefreak75 2014-05-23 01:56:25 Testyo [Pikipedia RC] Fruit by 68.13.32.42 (+887) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80539&oldid=80464 2014-05-23 01:57:19 Mariofan169 -.- 2014-05-23 01:58:19 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-23 02:11:31 Testyo [Pikipedia RC] Peckish Aristocrab by 68.13.32.42 (-124) http://www.pikminwiki.com/index.php?title=Peckish_Aristocrab&curid=8618&diff=80540&oldid=80462 2014-05-23 02:16:32 Testyo [Pikipedia RC] Dream Material by 68.13.32.42 (+317 /* In Pikmin 3 */) http://www.pikminwiki.com/index.php?title=Dream_Material&curid=661&diff=80541&oldid=80506 2014-05-23 02:16:32 Testyo [Pikipedia RC] Dream Material by 68.13.32.42 (+2 /* Area Hint 5 */) http://www.pikminwiki.com/index.php?title=Dream_Material&curid=661&diff=80542&oldid=80541 2014-05-23 02:16:32 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-23 02:21:34 Testyo [Pikipedia RC] Dream Material by 68.13.32.42 (+12 /* Anti-Electrifier */) http://www.pikminwiki.com/index.php?title=Dream_Material&curid=661&diff=80544&oldid=80543 2014-05-23 02:21:34 Testyo [Pikipedia RC] Dream Material by 68.13.32.42 (+5 /* Area Hint 5 */) http://www.pikminwiki.com/index.php?title=Dream_Material&curid=661&diff=80545&oldid=80544 2014-05-23 02:24:40 <-- Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has quit (Quit: Later everyone!) 2014-05-23 02:27:17 <-- Espyo (Espyo@e36-056-02-90.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-23 03:24:14 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:lkrg:zssq:mvvk:zujo:rklp) has joined #pikipedia 2014-05-23 03:26:27 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:mmqy:ywjp:ggmm:klmy:gwow) has quit (Ping timeout: 250 seconds) 2014-05-23 03:26:32 -- Gamefreak75_ is now known as Gamefreak75 2014-05-23 03:41:52 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-23 04:54:18 -- Spark is now known as SuperHatSparky 2014-05-23 05:06:28 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:oqyu:orrv:oqvn:mqks:qmls) has joined #pikipedia 2014-05-23 05:09:09 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:lkrg:zssq:mvvk:zujo:rklp) has quit (Ping timeout: 250 seconds) 2014-05-23 05:09:18 -- Gamefreak75_ is now known as Gamefreak75 2014-05-23 06:14:37 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:jvou:ktoo:ymlq:zuxm:nlnl) has joined #pikipedia 2014-05-23 06:18:29 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:oqyu:orrv:oqvn:mqks:qmls) has quit (Ping timeout: 250 seconds) 2014-05-23 06:18:41 -- Gamefreak75_ is now known as Gamefreak75 2014-05-23 06:33:50 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:jvou:ktoo:ymlq:zuxm:nlnl) has quit (Quit: nwehehehe) 2014-05-23 07:41:11 <-- T3 (T3@21-92-364-722.cable.teksavvy.com) has quit (Read error: Connection reset by peer) 2014-05-23 11:03:43 --> Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has joined #pikipedia 2014-05-23 11:04:35 --> Espyo (Espyo@e36-056-02-90.cpe.netcabo.pt) has joined #pikipedia 2014-05-23 11:04:35 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-23 12:18:41 --> Chillv (Mibbit@a99-09-355-843.try.wideopenwest.com) has joined #pikipedia 2014-05-23 12:18:49 Chillv Hi 2014-05-23 12:20:57 @Espyo hi 2014-05-23 12:22:02 Chillv I've only had 3 hours of sleep, because of a cold keeping me up :( 2014-05-23 12:24:12 @Espyo it's like universal now 2014-05-23 12:24:18 @Espyo everybody I know has a cold of some form 2014-05-23 12:24:27 @Espyo I wake up and have to blow my nose for like 4 Pacific Oceans 2014-05-23 12:28:26 Chillv I haven't play Pikmin in a while. I constantly try to replay Pikmin 2, but get disinterested. Like, it was fun when playing for the first time, but now it's... ugh. It's mostly because of the caves. 2014-05-23 12:29:40 Chillv The caves are cool at first, but eventually they start to become overwhelming and way too similar. Not to mention some floors are randomly generated, which I don't really like. 2014-05-23 12:32:27 @Espyo heh, yeah 2014-05-23 12:32:29 @Espyo I know what you mean 2014-05-23 12:33:56 Chillv And this becomes very notable once you reach the end of the game 2014-05-23 12:34:29 Chillv I found Pikmin 1 and Pikmin 3 to be more replayable at least for me. 2014-05-23 12:36:07 @Espyo in Pikmin 1 you can always retry and try to get better scores 2014-05-23 12:37:30 Chillv and you can try to get less deaths and finish in a lower amount of days 2014-05-23 12:38:18 @Espyo yeah 2014-05-23 12:39:31 Chillv Pikmin 3 is great too, it's very balanced. Nothing feels overpowered or underpowered. 2014-05-23 12:39:52 @Espyo nice 2014-05-23 12:39:57 @Espyo still have to buy a Wii U... 2014-05-23 12:42:09 Chillv I already have a Wii U, and pretty much have every notable first party title for it. 2014-05-23 12:42:28 @Espyo are you planning on getting MK8? 2014-05-23 12:42:36 Chillv Yes, on launch day 2014-05-23 12:43:18 @Espyo nice 2014-05-23 12:43:41 Chillv I also plan on getting Tomodachi Life for 3DS, I was so excited when I found that it was being released in America. 2014-05-23 12:43:59 @Espyo I'm still not really sure what Tomodachi Life is 2014-05-23 12:44:16 Chillv I can explain it for you 2014-05-23 12:44:24 Chillv if you want 2014-05-23 12:44:31 @Espyo please do 2014-05-23 12:44:39 @Espyo I'm just really confused about it 2014-05-23 12:45:59 Chillv Basically, you put miis in the game, and you can customize their voice and personality traits. They all live in a apartment in their own separate rooms 2014-05-23 12:46:51 Chillv You can go into the apartment to check on them, and they will ask you to solve certain problems for them 2014-05-23 12:47:48 @Espyo oh 2014-05-23 12:47:55 @Espyo hmm, still doesn't really explain the giant Reggie head coming from the ocean 2014-05-23 12:48:12 Chillv the "problems" could be associated with relationships or something simple such as wanting new clothing 2014-05-23 12:48:53 Chillv Oh, the giant heads from the beach dock? 2014-05-23 12:49:17 @Espyo yeah 2014-05-23 12:49:26 Chillv Well, during late or really early hours, the miis will be sleeping, and they may have a dream. 2014-05-23 12:49:41 Chillv that is one of the possible dreams they can have 2014-05-23 12:50:06 @Espyo oh, haha 2014-05-23 12:50:09 @Espyo all right, makes sense then 2014-05-23 12:50:10 @Espyo thanks 2014-05-23 12:51:15 Chillv The dreams are really weird 2014-05-23 12:52:37 Chillv Also, the part where the dudes face expands outside the globe is dream where someone tells them something they just can't believe. 2014-05-23 12:53:29 @Espyo hah 2014-05-23 12:54:36 Chillv Basically, anything that is way too surreal is most likely a dream in the game and not anything real 2014-05-23 12:54:43 @Espyo right 2014-05-23 12:56:19 Chillv Also, the heavy metal band are one o the songs that you can make the miis perform, that is if you can them the sheet music for it. 2014-05-23 12:56:52 Chillv Which you can only give them by leveling them up 2014-05-23 12:58:12 @Espyo I see 2014-05-23 13:02:38 Chillv This basically sums up this game: It's a game where you watch drama happen and take part in it too. 2014-05-23 13:03:35 @Espyo ah, fair enough 2014-05-23 13:05:19 Chillv Also, that part where bill and reggie are fighting over a bear in the rain... The rain is not real, that is just an interior that can be set to their room. 2014-05-23 13:05:52 Chillv hold on, I need to refresh 2014-05-23 13:05:55 @Espyo mhm 2014-05-23 13:06:11 <-- Chillv (Mibbit@a99-09-355-843.try.wideopenwest.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-23 13:06:23 --> Chillv (Mibbit@a99-09-355-843.try.wideopenwest.com) has joined #pikipedia 2014-05-23 13:06:39 Chillv Okay, I'm back 2014-05-23 13:12:10 Chillv gtg 2014-05-23 13:12:22 <-- Chillv (Mibbit@a99-09-355-843.try.wideopenwest.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-23 15:30:07 --> Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-23 15:30:14 Mariostar123 hey 2014-05-23 15:31:15 <-- Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Client Quit) 2014-05-23 16:21:38 Testyo [Pikipedia RC] User talk:Porplemontage by Porplemontage (+138 /* Bans */) http://www.pikminwiki.com/index.php?title=User_talk:Porplemontage&curid=2141&diff=80552&oldid=80532 2014-05-23 18:28:13 Testyo [Pikipedia RC] Captain Olimar by 216.228.186.61 (+144) http://www.pikminwiki.com/index.php?title=Captain_Olimar&curid=286&diff=80553&oldid=80508 2014-05-23 18:28:13 Testyo [Pikipedia RC] Captain Olimar by 216.228.186.61 (+1 /* Controls */) http://www.pikminwiki.com/index.php?title=Captain_Olimar&curid=286&diff=80554&oldid=80553 2014-05-23 18:42:26 @J . 2014-05-23 18:45:11 @Espyo hey 2014-05-23 18:45:21 @Espyo did you check the ban shenanigans from yesterday? 2014-05-23 19:09:46 @J nope 2014-05-23 19:09:57 @J summary for lazy person? 2014-05-23 19:10:18 @J (and also for me) 2014-05-23 19:12:50 @Espyo this ip asked me to ban them 2014-05-23 19:13:03 @Espyo then created an account, saying they prefer I ban the account, not the IP 2014-05-23 19:13:06 @Espyo (same thing, but whatever) 2014-05-23 19:13:10 @Espyo so I just did it 2014-05-23 19:13:14 @Espyo then I notice Porple's online 2014-05-23 19:13:19 @Espyo I ask if this was him testing stuff 2014-05-23 19:13:26 @Espyo he replies today saying it wasn't him 2014-05-23 19:13:36 @Espyo and I'm just wating hard through the whole thing 2014-05-23 19:13:45 @J wating? 2014-05-23 19:14:14 @J I would generally assume someone asking for a ban is trying to get someone else banned 2014-05-23 19:15:20 @Espyo you know, going "wat" 2014-05-23 19:15:26 @J oh 2014-05-23 19:15:31 @Espyo likely, yeah 2014-05-23 19:15:41 @J oh, but the guy actually gave a reason 2014-05-23 19:15:44 @Espyo but with this spammer going around, I just didn't even care 2014-05-23 19:15:45 @Espyo he did? 2014-05-23 19:15:56 @J you know, the stuff on your talk? 2014-05-23 19:16:07 @Espyo I know I skimmed over it, but... 2014-05-23 19:16:13 @J 'I need to see the word "autoblock" and how it's used.' - not sure what it means, but... 2014-05-23 19:16:34 @Espyo oh, that one, yeah 2014-05-23 19:16:41 @Espyo yeah, I didn't really chalk that up as an explanation 2014-05-23 19:16:46 @Espyo "Actually just block this account. That way this IP address is autoblocked." also doesn't help 2014-05-23 19:16:59 @Espyo sure seems like somebody testing stuff, but... 2014-05-23 19:17:10 @Espyo just hope it's not the spammer trying to come up with ways around bans 2014-05-23 19:21:16 @J http://i.imgur.com/m2Z4vdY.png 2014-05-23 19:21:18 @J make all the sense 2014-05-23 19:23:52 @Espyo uh, ok 2014-05-23 19:24:00 @J *makes 2014-05-23 19:41:12 @J I think I finally managed to make enough dinner that I'll get more than one meal out of it 2014-05-23 19:41:26 @J ...and now I realise I might need cutlery to eat this 2014-05-23 20:06:48 @Espyo unless it's a sandwich, yes 2014-05-23 20:41:10 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-23 21:21:46 --> T3 (T3@24-52-229-137.cable.teksavvy.com) has joined #pikipedia 2014-05-23 21:21:47 <-- T3 (T3@24-52-229-137.cable.teksavvy.com) has quit (Client Quit) 2014-05-23 21:35:35 @Espyo gaaaaaahhhhhh!! 2014-05-23 21:35:55 Mariofan169 ? 2014-05-23 21:35:57 @Espyo visual studio has this thing where you can mouse-over variable names and get their current value, while stepping through code 2014-05-23 21:36:07 @Espyo without this it's impossible to debug some things effectively 2014-05-23 21:36:13 @Espyo problem is it randomly decides it doesn't recognize the variables 2014-05-23 21:36:17 @Espyo as if that even made sense 2014-05-23 21:36:54 Mariofan169 What's Visual Studio and what are you doing on it? 2014-05-23 21:40:23 --> TVTrash (chatzilla@17-37-05-224.dhcp.stls.mo.charter.com) has joined #pikipedia 2014-05-23 21:48:57 @Espyo it's what turns my code into the engine 2014-05-23 22:18:49 TVTrash wut 2014-05-23 22:19:01 Mariofan169 Get out 2014-05-23 22:19:09 Mariofan169 please 2014-05-23 22:19:12 TVTrash no 2014-05-23 22:20:18 Mariofan169 How did you get here 2014-05-23 22:20:57 TVTrash i've been here before 2014-05-23 22:24:04 Mariofan169 But why did you come here NOW? 2014-05-23 22:24:46 TVTrash idk 2014-05-23 22:25:20 Mariofan169 :| 2014-05-23 22:26:00 TVTrash why are you here 2014-05-23 22:26:16 Mariofan169 Because I feel like it 2014-05-23 22:26:32 TVTrash OK 2014-05-23 22:47:25 <-- SuperHatSparky (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-24 00:16:52 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-24 00:28:15 --> Gamefreak75 (NewYokuba@2605:e000:2e44:itkh:lpot:wnin:omj:wmmy) has joined #pikipedia 2014-05-24 00:35:45 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-24 00:39:11 --> Meisterbot (Meisterbot@ool-182ed543.dyn.optonline.net) has joined #pikipedia 2014-05-24 00:39:46 Meisterbot well 2014-05-24 00:40:13 Meisterbot here's someone that hasn't been here in a while 2014-05-24 00:45:28 @Espyo heh 2014-05-24 01:01:55 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-24 01:30:10 <-- Espyo (Espyo@e36-056-02-90.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-24 01:30:12 <-- Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-24 01:39:00 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:nozr:zpmq:mmog:mjgh:glmv) has joined #pikipedia 2014-05-24 01:39:23 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:itkh:lpot:wnin:omj:wmmy) has quit (Ping timeout: 250 seconds) 2014-05-24 01:39:24 -- Gamefreak75_ is now known as Gamefreak75 2014-05-24 01:40:00 <-- Meisterbot (Meisterbot@ool-182ed543.dyn.optonline.net) has quit 2014-05-24 01:50:11 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-24 02:55:02 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:itkh:mwn:zkiy:kzhn:znkp) has joined #pikipedia 2014-05-24 02:58:41 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:nozr:zpmq:mmog:mjgh:glmv) has quit (Ping timeout: 250 seconds) 2014-05-24 02:58:51 -- Gamefreak75_ is now known as Gamefreak75 2014-05-24 03:13:09 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:iyzw:tlo:uxoj:xmmq:pkz) has joined #pikipedia 2014-05-24 03:16:27 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:itkh:mwn:zkiy:kzhn:znkp) has quit (Ping timeout: 250 seconds) 2014-05-24 03:16:27 -- Gamefreak75_ is now known as Gamefreak75 2014-05-24 03:18:23 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-24 03:20:23 --> TVTrash_ (chatzilla@96-35-15-189.dhcp.stls.mo.charter.com) has joined #pikipedia 2014-05-24 03:23:48 <-- TVTrash (chatzilla@17-37-05-224.dhcp.stls.mo.charter.com) has quit (Ping timeout: 245 seconds) 2014-05-24 03:23:58 -- TVTrash_ is now known as TVTrash 2014-05-24 03:29:18 <-- TVTrash (chatzilla@96-35-15-189.dhcp.stls.mo.charter.com) has quit (Remote host closed the connection) 2014-05-24 03:38:12 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-24 04:40:58 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:iyzw:tlo:uxoj:xmmq:pkz) has quit (Quit: nwehehehe) 2014-05-24 08:02:44 --> Gamefreak75 (NewYokuba@2605:e000:2e44:tvop:zsip:xvlv:ilht:hiio) has joined #pikipedia 2014-05-24 08:11:38 --> Gamefreak75_ (NewYokuba@2605:e000:2e44:rwqy:pqgm:lysp:nqzg:zsyh) has joined #pikipedia 2014-05-24 08:13:43 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:tvop:zsip:xvlv:ilht:hiio) has quit (Ping timeout: 250 seconds) 2014-05-24 08:13:52 -- Gamefreak75_ is now known as Gamefreak75 2014-05-24 08:22:23 <-- Gamefreak75 (NewYokuba@2605:e000:2e44:rwqy:pqgm:lysp:nqzg:zsyh) has quit (Ping timeout: 250 seconds) 2014-05-24 11:22:31 -- irc: disconnected from server 2014-05-24 11:22:42 --> J (J@w-113.cust-16545.ip.static.uno.uk.net) has joined #pikipedia 2014-05-24 11:22:42 -- 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" 2014-05-24 11:22:42 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-24 11:22:42 -- Channel #pikipedia: 7 nicks (2 ops, 0 voices, 5 normals) 2014-05-24 11:22:42 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-24 11:22:42 -- Mode #pikipedia [+o J] by ChanServ 2014-05-24 11:22:43 -- Mode #pikipedia [+nt] 2014-05-24 11:22:43 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-24 11:52:36 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-24 12:37:19 --> Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-24 12:37:22 <-- Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Client Quit) 2014-05-24 13:18:06 -- irc: disconnected from server 2014-05-24 13:18:23 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-24 13:18: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" 2014-05-24 13:18:23 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-24 13:18:23 -- Channel #pikipedia: 6 nicks (2 ops, 0 voices, 4 normals) 2014-05-24 13:18:23 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-24 13:18:23 -- Mode #pikipedia [+o J] by ChanServ 2014-05-24 13:18:25 -- Mode #pikipedia [+nt] 2014-05-24 13:18:25 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-24 13:41:28 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-24 14:15:36 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-24 15:11:13 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-24 15:24:48 Testyo [Pikipedia RC] Onion by NintendoFan369 (-14 m /* Other */) http://www.pikminwiki.com/index.php?title=Onion&curid=1377&diff=80555&oldid=78981 2014-05-24 15:29:10 --> Rosey (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-24 15:29:15 Rosey hey Espyo 2014-05-24 15:29:21 @Espyo hey 2014-05-24 15:29:42 Rosey hey 2014-05-24 15:29:56 Rosey Hows it going? 2014-05-24 15:30:06 @Espyo fine 2014-05-24 15:30:07 @Espyo you? 2014-05-24 15:30:17 Rosey good 2014-05-24 15:30:37 Rosey Me and Mariostar recently got Super mario kart 2014-05-24 15:30:45 @Espyo oh, for the SNES 2014-05-24 15:30:52 Rosey yup 2014-05-24 15:31:29 Rosey and kirby super star.....and dr.mario....and superstar saga....all for the WiiU VC 2014-05-24 15:33:58 @Espyo ah 2014-05-24 15:34:08 Rosey its great 2014-05-24 15:34:21 Rosey right now dr.mario is paused 2014-05-24 15:34:44 Rosey Im going to play dr.mario now,bye Espyo :) 2014-05-24 15:34:47 <-- Rosey (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-24 16:10:53 @J they're friends or siblings or something? 2014-05-24 16:11:14 @Espyo one of the three, yes 2014-05-24 16:12:31 @J I see 2014-05-24 16:15:18 Testyo [Pikipedia RC] Olimar's monologues in Pi... by NintendoFan369 (-172 /* Unused content */) http://www.pikminwiki.com/index.php?title=Olimar's_monologues_in_Pikmin_1&curid=1327&diff=80556&oldid=79786 2014-05-24 16:15:18 Testyo [Pikipedia RC] Talk:Olimar's monologues ... by NintendoFan369 (+62) http://www.pikminwiki.com/index.php?title=Talk:Olimar's_monologues_in_Pikmin_1&curid=4303&diff=80557&oldid=71828 2014-05-24 16:18:01 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-24 16:18:02 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-24 16:20:19 Testyo [Pikipedia RC] Talk:Olimar's monologues ... by NintendoFan369 (+101 /* Viewing */) http://www.pikminwiki.com/index.php?title=Talk:Olimar's_monologues_in_Pikmin_1&curid=4303&diff=80558&oldid=80557 2014-05-24 16:20:19 Testyo [Pikipedia RC] Olimar's monologues in Pi... by Espyo (+172 m Undo revision 80556 by [[Special:Contributions/NintendoFan369|NintendoFan369]] (...) http://www.pikminwiki.com/index.php?title=Olimar's_monologues_in_Pikmin_1&curid=1327&diff=80559&oldid=80556 2014-05-24 16:20:19 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-24 16:23:24 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-24 16:24:46 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-24 16:35:24 Testyo [Pikipedia RC] Talk:Olimar's monologues ... by Espyo (+211 m /* Viewing */) http://www.pikminwiki.com/index.php?title=Talk:Olimar's_monologues_in_Pikmin_1&curid=4303&diff=80561&oldid=80558 2014-05-24 18:36:55 Testyo [Pikipedia RC] Captain Olimar by 208.100.169.85 (0 /* Controls */) http://www.pikminwiki.com/index.php?title=Captain_Olimar&curid=286&diff=80562&oldid=80554 2014-05-24 18:36:55 Testyo [Pikipedia RC] Captain Olimar by 208.100.169.85 (+3 /* Controls */) http://www.pikminwiki.com/index.php?title=Captain_Olimar&curid=286&diff=80563&oldid=80562 2014-05-24 18:41:56 Testyo [Pikipedia RC] Captain Olimar by Espyo (-150 m The controls don't really fit here. Plus X makes no sense.) http://www.pikminwiki.com/index.php?title=Captain_Olimar&curid=286&diff=80564&oldid=80563 2014-05-24 18:46:58 Testyo [Pikipedia RC] Captain Olimar by 208.100.169.85 (+488) http://www.pikminwiki.com/index.php?title=Captain_Olimar&curid=286&diff=80565&oldid=80564 2014-05-24 18:52:02 Testyo [Pikipedia RC] Captain Olimar by 208.100.169.85 (0) http://www.pikminwiki.com/index.php?title=Captain_Olimar&curid=286&diff=80566&oldid=80565 2014-05-24 18:52:03 Testyo [Pikipedia RC] Louie by 208.100.169.85 (+488) http://www.pikminwiki.com/index.php?title=Louie&curid=1051&diff=80567&oldid=79748 2014-05-24 18:52:03 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-24 18:57:08 Testyo [Pikipedia RC] Nintendo Land by 208.100.169.85 (+4) http://www.pikminwiki.com/index.php?title=Nintendo_Land&curid=7957&diff=80569&oldid=79773 2014-05-24 18:57:08 Testyo [Pikipedia RC] User account Kpik created http://www.pikminwiki.com/index.php?title=User:Kpik 2014-05-24 19:02:10 Testyo [Pikipedia RC] Data File by Kpik (+294 N Created page with "image:https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS...) http://www.pikminwiki.com/index.php?title=Data_File&curid=9864&diff=80570&oldid=0 2014-05-24 19:02:10 Testyo [Pikipedia RC] Data File by Kpik (+2) http://www.pikminwiki.com/index.php?title=Data_File&curid=9864&diff=80571&oldid=80570 2014-05-24 19:05:21 <-- Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has quit 2014-05-24 19:07:11 Testyo [Pikipedia RC] Data File by Kpik (-10) http://www.pikminwiki.com/index.php?title=Data_File&curid=9864&diff=80572&oldid=80571 2014-05-24 19:09:00 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-24 19:10:35 --> Miles (Miles@h-47-72-682-095.hsd2.ga.comcast.net) has joined #pikipedia 2014-05-24 19:30:18 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-24 19:38:39 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-24 19:38:39 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-24 19:38:51 @PikFan . 2014-05-24 19:38:52 @Espyo hey 2014-05-24 19:39:02 @Espyo did you patrol those edits yet? 2014-05-24 19:39:05 @Espyo there are a few P3 ones 2014-05-24 19:39:11 @PikFan hmm? 2014-05-24 19:39:12 @PikFan oh 2014-05-24 19:39:17 @Espyo in other news, my area editor now has a lot of complex geometry 2014-05-24 19:39:22 @Espyo and everything is fine and simple 2014-05-24 19:39:24 @PikFan hooray 2014-05-24 19:39:32 @Espyo but detecting if a point is inside a triangle? 2014-05-24 19:39:35 @PikFan ...but that's not possible 2014-05-24 19:39:37 @Espyo apparently mere mortals cannot do that 2014-05-24 19:39:44 @Espyo it is possible, but ONLY if it doesn't work at first 2014-05-24 19:39:45 @PikFan how can it be simple and complex 2014-05-24 19:39:55 @Espyo the underlying mechanics are simple 2014-05-24 19:40:07 @Espyo I tried Googling how to determine whether a point is in a triangle 2014-05-24 19:40:09 @Espyo basic geometry 2014-05-24 19:40:14 @Espyo but it's just rocket science 2014-05-24 19:40:18 @Espyo anything else in my code is easy 2014-05-24 19:40:21 @Espyo how even 2014-05-24 19:40:24 @Espyo J: how do I triangle 2014-05-24 19:40:39 @Espyo surely you had to have calculated whether a point is in a triangle, before 2014-05-24 19:41:22 @PikFan ...oh boy 2014-05-24 19:41:32 @PikFan there are unpatrolled edits from April 2014-05-24 19:41:45 @Espyo oh? 2014-05-24 19:41:47 @Espyo anything bad? 2014-05-24 19:42:00 @PikFan other than duckman 2014-05-24 19:42:38 @PikFan now I changed my preferences to see 91 days 2014-05-24 19:42:48 @Espyo why 91? 2014-05-24 19:43:16 @PikFan to see if there are any more 2014-05-24 19:43:28 @Espyo yeah, but why not 90? 2014-05-24 19:43:32 @PikFan ...oh, nope 2014-05-24 19:43:36 @PikFan 91's the max 2014-05-24 19:44:05 Mariofan169 That's oddly specific 2014-05-24 19:44:36 @PikFan nah, not really 2014-05-24 19:44:42 @PikFan it covers three months 2014-05-24 19:46:03 Mariofan169 Not that 2014-05-24 19:46:08 Mariofan169 Why 91? 2014-05-24 19:46:17 @PikFan 68.13.32.42 has been a pretty consistent editor 2014-05-24 19:46:18 Mariofan169 Why not 90? 2014-05-24 19:46:25 @PikFan I just said 2014-05-24 19:46:29 Mariofan169 I'm just nitpicking here though 2014-05-24 19:46:29 @PikFan 91's the max 2014-05-24 19:46:57 @Espyo hm, weird 2014-05-24 19:49:31 @J hmm, not sure what the 'standard' way to do it is, but I guess I would check if it's directly above at least one of the 3 line segments, and directly below at least one 2014-05-24 19:49:36 @PikFan ...huh 2014-05-24 19:49:37 @J I think that should work 2014-05-24 19:49:52 @J even for vertical edges 2014-05-24 19:49:53 @PikFan "It is possible that Arachnodes are a part of or related to the [[Arachnorb]] family due to the fact that they share features such as being orb shaped and being split in the middle vertically." 2014-05-24 19:49:53 Testyo "Arachnorb" article = http://www.pikminwiki.com/index.php?title=Arachnorb 2014-05-24 19:50:09 @PikFan but Arachnodes have 8 legs, and Arachnorbs have 4 2014-05-24 19:50:16 @PikFan they're much smaller, too 2014-05-24 19:50:35 @J you'll get floating-point errors if it's very near a vertex horizontally, even if the vertex is in the middle of the triangle horizontally, so maybe allow for some overlap 2014-05-24 19:51:40 @Espyo that won't work... 2014-05-24 19:52:00 @J why not? 2014-05-24 19:52:37 @Espyo or rather, it can work 2014-05-24 19:52:46 @Espyo but I'd have to teach it how to recognize "above" and "below" a line 2014-05-24 19:53:13 @J I phrased the solution that way because that's so simple to do 2014-05-24 19:53:25 @Espyo tell me your secrets, then 2014-05-24 19:53:43 @Espyo if you found a simple way to know whether a point is above or below a line, you've reinvented geometry forever 2014-05-24 19:54:02 @J you just work out what the line's y co-ordinate is at the point's x 2014-05-24 19:54:26 @Espyo ...oh yeah 2014-05-24 19:54:31 @Espyo there's an equation for that, isn't there? 2014-05-24 19:55:19 @Espyo wait, I think you're describing the "best answer" in http://stackoverflow.com/questions/2049582/how-to-determine-a-point-in-a-triangle 2014-05-24 19:56:37 @PikFan Super Hitler Bros. Brawl‎, Hitler's Son, Hitler's Car, Hitler's Island, Duckman is AWESOME need to be deleted 2014-05-24 19:57:13 @Espyo dammit J 2014-05-24 19:57:37 @J could be 2014-05-24 19:57:45 @J it's hard to tell when it's all optimised 2014-05-24 20:00:53 @Espyo looks like it is 2014-05-24 20:01:02 @Espyo yeah, it is 2014-05-24 20:01:17 @Espyo I tried running a speed comparison between that method and one lower down in the page 2014-05-24 20:01:21 @Espyo and the one lower is faster 2014-05-24 20:01:26 @Espyo so I guess I'll stick with that 2014-05-24 20:01:29 @Espyo thanks 2014-05-24 20:01:37 @Espyo anyway, you need to delete those pages 2014-05-24 20:01:44 @Espyo also the user pages, while we're at it 2014-05-24 20:03:19 @Espyo I was actually using yet another method on that page 2014-05-24 20:03:29 @Espyo but it turned out that it was undefined on edge cases 2014-05-24 20:03:36 @Espyo and I couldn't be bothered to try to understand why 2014-05-24 20:03:46 @Espyo I just want to calculate one of humanity's simplest problems 2014-05-24 20:06:31 @PikFan should I rollback these edits http://www.pikminwiki.com/index.php?title=Captain_Olimar&diff=next&oldid=80564 and http://www.pikminwiki.com/index.php?title=Captain_Olimar&diff=next&oldid=80565 2014-05-24 20:07:08 @Espyo uh, yeah 2014-05-24 20:07:09 @Espyo ugh 2014-05-24 20:07:17 @Espyo I already have plans to create [[Controls]] 2014-05-24 20:07:17 Testyo "Controls" article = http://www.pikminwiki.com/index.php?title=Controls 2014-05-24 20:07:27 @Espyo so the controls aren't randomly scattered here and there 2014-05-24 20:07:33 @Espyo I mean, lists of controls 2014-05-24 20:07:35 @PikFan heh, he must be anxious 2014-05-24 20:07:41 Testyo [Pikipedia RC] Captain Olimar by PikFan23 (-488 m Reverted edits by [[Special:Contributions/208.100.169.85|208.100.169.85]] ([[Use...) http://www.pikminwiki.com/index.php?title=Captain_Olimar&curid=286&diff=80573&oldid=80566 2014-05-24 20:08:43 @J you could probably make this thing really fast by using ints 2014-05-24 20:08:54 @Espyo noooooooooooo 2014-05-24 20:08:57 @Espyo but I use floats 2014-05-24 20:09:14 @J that doesn't make me wrong 2014-05-24 20:09:19 @Espyo indeed 2014-05-24 20:09:27 @Espyo hmmmm, I might actually be able to just use ints 2014-05-24 20:09:28 @J why do you need them to be floats? 2014-05-24 20:09:40 @Espyo 1 unit = 1 pixel at 1x zoom 2014-05-24 20:09:47 @Espyo so if you zoom in, you could need sub-stuff 2014-05-24 20:09:55 @Espyo eh, I probably don't need floats, do I 2014-05-24 20:10:08 @J wait, you're doing collisions and stuff based on the zoom level? 2014-05-24 20:10:09 @Espyo forget my "sub-stuff" message, that was stupid 2014-05-24 20:10:12 @Espyo no no 2014-05-24 20:10:15 @Espyo not even collisions yet 2014-05-24 20:10:30 @Espyo I think positions of objects should be floats 2014-05-24 20:10:38 @Espyo but for areas, vertices should be ints 2014-05-24 20:10:46 @J yeah 2014-05-24 20:11:34 @J it'd probably still be faster to make ints from positions before the intersection test 2014-05-24 20:11:52 @J maybe even if you round it, not sure how accurate you need it 2014-05-24 20:12:05 @Espyo yes, but it makes me wonder about accuracy 2014-05-24 20:12:34 @Espyo right now, I think it's too early to think about it anyway 2014-05-24 20:12:35 @PikFan done 2014-05-24 20:12:41 @J wow 2014-05-24 20:12:42 Testyo [Pikipedia RC] Louie by PikFan23 (-488 m Reverted edits by [[Special:Contributions/208.100.169.85|208.100.169.85]] ([[Use...) http://www.pikminwiki.com/index.php?title=Louie&curid=1051&diff=80574&oldid=80567 2014-05-24 20:12:42 Testyo [Pikipedia RC] The President by PikFan23 (-488 m Reverted edits by [[Special:Contributions/208.100.169.85|208.100.169.85]] ([[Use...) http://www.pikminwiki.com/index.php?title=The_President&curid=1724&diff=80575&oldid=80568 2014-05-24 20:12:52 @PikFan unpatrolled edits are duckman's pages 2014-05-24 20:12:53 @J normally you're the one obsessing about speed and optimisations 2014-05-24 20:13:05 @J so all I have to do is use reverse psychology? 2014-05-24 20:13:08 @J *makes a note* 2014-05-24 20:13:25 @Espyo right NOW it's too early 2014-05-24 20:13:32 @Espyo I'll optimize llike crazy later, don't you worry 2014-05-24 20:13:42 @J right now is when you normally worry 2014-05-24 20:13:55 @Espyo I guess, but right now now now, I just want to complete the area editor 2014-05-24 20:14:33 @J I guess the difference is, when you normally ask for help with algorithms, the context is obvious 2014-05-24 20:15:06 @J here it's not, so I have no idea how much it'll get used, so I think maybe its speed will actually matter 2014-05-24 20:15:43 @Espyo hmm 2014-05-24 20:16:03 @Espyo all right, so in order to draw a polygon, I have to triangulate it 2014-05-24 20:16:14 @Espyo because OpenGL doesn't do concave polygons 2014-05-24 20:16:50 @Espyo plus, I need to check if a point is inside a triangle on the editor 2014-05-24 20:17:02 @Espyo if for instance, I want to create a new polygon inside another one 2014-05-24 20:17:06 @Espyo also in-game, for teleportations 2014-05-24 20:17:13 @Espyo for regular collisions, it checks the lines, that's fine 2014-05-24 20:17:22 @Espyo but teleportation will have to check which triangle the point belongs to 2014-05-24 20:27:46 Testyo [Pikipedia RC] Fruit by PikFan23 (-238 /* Trivia */ again, that trivia will be added on Cupid's/Golden Grenade articles) http://www.pikminwiki.com/index.php?title=Fruit&curid=9459&diff=80576&oldid=80539 2014-05-24 20:30:25 @Espyo J: you haven't deleted the articles yet 2014-05-24 20:38:30 --> UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has joined #pikipedia 2014-05-24 20:39:01 --> TVTrash (chatzilla@17-37-05-224.dhcp.stls.mo.charter.com) has joined #pikipedia 2014-05-24 20:42:33 -- UltraMario is now known as UltraIvysaur 2014-05-24 20:44:11 @J wait, you were talking to me? 2014-05-24 20:47:00 @Espyo well, yeah 2014-05-24 20:47:03 @Espyo only you can delete those pages 2014-05-24 20:49:14 @J I thought you might be talking about fanon or something 2014-05-24 20:52:51 Testyo [Pikipedia RC] (log) Hitler's Car by Greenpickle (0 content was: "Hitler lived in a box on an island." (and the only contributor was...) http://www.pikminwiki.com/index.php?title=Hitler's_Car&curid=0&diff=0&oldid=0 2014-05-24 20:52:51 Testyo [Pikipedia RC] (log) Hitler's Son by Greenpickle (0 content was: "Hitler lived in a box on an island.") http://www.pikminwiki.com/index.php?title=Hitler's_Son&curid=0&diff=0&oldid=0 2014-05-24 20:52:51 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-24 21:05:16 -- UltraIvysaur is now known as UltraMario 2014-05-24 21:08:03 -- UltraMario is now known as UltraSimonBelmont 2014-05-24 21:10:41 Testyo [Pikipedia RC] Clover by Espyo (+200 Adding Challenge Mode locations.) http://www.pikminwiki.com/index.php?title=Clover&curid=43&diff=80577&oldid=78327 2014-05-24 21:45:57 Testyo [Pikipedia RC] Horsetail by Espyo (+97 m Adding Challenge Mode locations.) http://www.pikminwiki.com/index.php?title=Horsetail&curid=747&diff=80578&oldid=78331 2014-05-24 21:50:58 Testyo [Pikipedia RC] Figwort by Espyo (+249 m Adding Challenge Mode locations.) http://www.pikminwiki.com/index.php?title=Figwort&curid=607&diff=80579&oldid=79252 2014-05-24 21:50:59 Testyo [Pikipedia RC] Figwort by Espyo (-1 m What in the world!?) http://www.pikminwiki.com/index.php?title=Figwort&curid=607&diff=80580&oldid=80579 2014-05-24 21:56:00 Testyo [Pikipedia RC] Violet Candypop Bud by Espyo (+35 m Adding Challenge Mode locations.) http://www.pikminwiki.com/index.php?title=Violet_Candypop_Bud&curid=1708&diff=80581&oldid=79299 2014-05-24 22:01:02 Testyo [Pikipedia RC] Queen Candypop Bud by Espyo (+109 m Adding Challenge Mode locations.) http://www.pikminwiki.com/index.php?title=Queen_Candypop_Bud&curid=1081&diff=80582&oldid=79283 2014-05-24 22:01:02 Testyo [Pikipedia RC] Common Glowcap by Espyo (+90 m Adding Challenge Mode locations.) http://www.pikminwiki.com/index.php?title=Common_Glowcap&curid=281&diff=80583&oldid=79160 2014-05-24 22:06:03 Testyo [Pikipedia RC] Dandelion by Espyo (+156 m Adding Challenge Mode locations.) http://www.pikminwiki.com/index.php?title=Dandelion&curid=502&diff=80584&oldid=78329 2014-05-24 22:11:04 Testyo [Pikipedia RC] Shoot by Espyo (+174 m Adding Challenge Mode locations.) http://www.pikminwiki.com/index.php?title=Shoot&curid=1567&diff=80585&oldid=78335 2014-05-24 22:43:39 -- irc: disconnected from server 2014-05-24 22:43:51 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-24 22:43:51 -- 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" 2014-05-24 22:43:51 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-24 22:43:51 -- Channel #pikipedia: 11 nicks (3 ops, 0 voices, 8 normals) 2014-05-24 22:43:51 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-24 22:43:51 -- Mode #pikipedia [+o J] by ChanServ 2014-05-24 22:43:52 -- Mode #pikipedia [+nt] 2014-05-24 22:43:52 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-24 22:46:12 Testyo [Pikipedia RC] Bulblax Kingdom by Espyo (0 m Purple shmurple.) http://www.pikminwiki.com/index.php?title=Bulblax_Kingdom&curid=61&diff=80593&oldid=80282 2014-05-24 22:51:14 Testyo [Pikipedia RC] Citadel of Spiders by Espyo (0 m /* Sublevel 3 */ We're a wiki, not a maniac shouting at people outside the drugs...) http://www.pikminwiki.com/index.php?title=Citadel_of_Spiders&curid=197&diff=80594&oldid=77638 2014-05-24 22:56:15 Testyo [Pikipedia RC] Submerged Castle by Espyo (+139 m Hmm...) http://www.pikminwiki.com/index.php?title=Submerged_Castle&curid=1632&diff=80595&oldid=77862 2014-05-24 22:56:15 Testyo [Pikipedia RC] Hole of Heroes by Espyo (+142 m Hmmm... 2) http://www.pikminwiki.com/index.php?title=Hole_of_Heroes&curid=816&diff=80596&oldid=78643 2014-05-24 23:01:16 Testyo [Pikipedia RC] Ivory Candypop Bud by Espyo (+17 m Shower Room was missing.) http://www.pikminwiki.com/index.php?title=Ivory_Candypop_Bud&curid=937&diff=80597&oldid=79271 2014-05-24 23:01:17 Testyo [Pikipedia RC] Queen Candypop Bud by Espyo (0 m Sorted.) http://www.pikminwiki.com/index.php?title=Queen_Candypop_Bud&curid=1081&diff=80598&oldid=80582 2014-05-24 23:06:18 Testyo [Pikipedia RC] Figwort by Espyo (+20 m Hole of Beasts was missing.) http://www.pikminwiki.com/index.php?title=Figwort&curid=607&diff=80599&oldid=80580 2014-05-24 23:11:19 Testyo [Pikipedia RC] Dandelion by Espyo (0 m Uh...) http://www.pikminwiki.com/index.php?title=Dandelion&curid=502&diff=80600&oldid=80589 2014-05-24 23:26:22 Testyo [Pikipedia RC] Dream Den by Espyo (+111 m /* Sublevel 8 */ Hmmm...) http://www.pikminwiki.com/index.php?title=Dream_Den&curid=565&diff=80601&oldid=80100 2014-05-24 23:26:22 Testyo [Pikipedia RC] Dream Den by Espyo (+1 m Because of course.) http://www.pikminwiki.com/index.php?title=Dream_Den&curid=565&diff=80602&oldid=80601 2014-05-24 23:51:27 Testyo [Pikipedia RC] Bulblax Kingdom by Espyo (-62 m Confirmed numbers.) http://www.pikminwiki.com/index.php?title=Bulblax_Kingdom&curid=61&diff=80603&oldid=80593 2014-05-25 00:01:09 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-25 00:01:29 Testyo [Pikipedia RC] File:P2 treehouse garden.jpg uploaded by Espyo (The garden under the treehouse in [[:File:P2CU room torigoya kusachi.jpg|room_to...) http://www.pikminwiki.com/index.php?title=File:P2_treehouse_garden.jpg 2014-05-25 00:01:29 Testyo [Pikipedia RC] File:P2CU room torigoya k... by Espyo (+105 m Linked to the garden image.) http://www.pikminwiki.com/index.php?title=File:P2CU_room_torigoya_kusachi.jpg&curid=9214&diff=80605&oldid=77448 2014-05-25 00:01:29 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-25 00:06:30 Testyo [Pikipedia RC] File:P2CU room torigoya k... by Espyo (+1 m ...I'm a dummy.) http://www.pikminwiki.com/index.php?title=File:P2CU_room_torigoya_kusachi.jpg&curid=9214&diff=80607&oldid=80605 2014-05-25 00:06:31 Testyo [Pikipedia RC] Snagret Hole by Espyo (-89 m Confirmed numbers.) http://www.pikminwiki.com/index.php?title=Snagret_Hole&curid=1680&diff=80608&oldid=79692 2014-05-25 00:13:47 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-25 00:16:33 Testyo [Pikipedia RC] White Flower Garden by Espyo (-38 Confirmed numbers.) http://www.pikminwiki.com/index.php?title=White_Flower_Garden&curid=1446&diff=80609&oldid=80235 2014-05-25 00:26:35 Testyo [Pikipedia RC] Citadel of Spiders by Espyo (+16 m Confirmed numbers.) http://www.pikminwiki.com/index.php?title=Citadel_of_Spiders&curid=197&diff=80610&oldid=80594 2014-05-25 00:31:36 Testyo [Pikipedia RC] Shower Room by Espyo (+81 m Confirmed numbers.) http://www.pikminwiki.com/index.php?title=Shower_Room&curid=1662&diff=80611&oldid=79716 2014-05-25 00:46:42 Testyo [Pikipedia RC] Submerged Castle by Espyo (-476 m There is no Ivory Candypop Bud on sublevel 2.) http://www.pikminwiki.com/index.php?title=Submerged_Castle&curid=1632&diff=80612&oldid=80595 2014-05-25 00:47:07 <-- TVTrash (chatzilla@17-37-05-224.dhcp.stls.mo.charter.com) has quit (Read error: Connection reset by peer) 2014-05-25 00:53:11 --> TVTrash (chatzilla@17-37-05-224.dhcp.stls.mo.charter.com) has joined #pikipedia 2014-05-25 01:01:45 Testyo [Pikipedia RC] Cavern of Chaos by Espyo (+152 m Confirmed numbers.) http://www.pikminwiki.com/index.php?title=Cavern_of_Chaos&curid=53&diff=80613&oldid=77864 2014-05-25 01:04:02 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-25 01:11:47 Testyo [Pikipedia RC] Hole of Heroes by Espyo (-122 m /* Sublevel 5 */ Noted missing Queen Candypop Bud.) http://www.pikminwiki.com/index.php?title=Hole_of_Heroes&curid=816&diff=80614&oldid=80596 2014-05-25 01:12:25 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-25 01:12:25 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-25 01:23:01 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-25 01:31:55 Testyo [Pikipedia RC] Dream Den by Espyo (-68 m Confirmed numbers.) http://www.pikminwiki.com/index.php?title=Dream_Den&curid=565&diff=80615&oldid=80602 2014-05-25 01:32:11 @Espyo it's official 2014-05-25 01:32:22 @Espyo I stopped trying to make sense out of Pikmin 2's game files 2014-05-25 01:32:27 @Espyo the object numbers make no sense now 2014-05-25 01:32:40 @Espyo tonight, I went on a quest to double-check all numbers I wasn't sure of 2014-05-25 01:32:48 @Espyo and almost every one turned up to be something very different 2014-05-25 01:33:28 @Espyo also, http://www.pikminwiki.com/File:P2_treehouse_garden.jpg 2014-05-25 01:33:34 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-25 01:34:35 @PikFan how'd you get that? 2014-05-25 01:35:37 @Espyo same way I took screenshots of all other cave units 2014-05-25 01:35:51 @Espyo with a model viewer 2014-05-25 01:36:04 @Espyo I noticed bits of garden now while playing; you could see through the cracks in the wood 2014-05-25 01:36:58 @Espyo and I found a tiny glitch 2014-05-25 01:37:06 @Espyo HOPEFULLY, it'll actually be a massive exploit 2014-05-25 01:40:45 @Espyo awww... 2014-05-25 01:40:47 @Espyo it's not an exploit 2014-05-25 01:44:02 @Espyo PikFan: which button do you press on NPC!P2 to confirm the Treasures Salvaged screen? 2014-05-25 01:44:03 @Espyo A? 2014-05-25 01:44:57 @PikFan you mean that cave results screen or whatever? 2014-05-25 01:45:02 @Espyo yeah 2014-05-25 01:45:06 @PikFan A 2014-05-25 01:45:13 @Espyo all right, thanks 2014-05-25 01:45:18 @PikFan mhm 2014-05-25 01:50:08 @Espyo http://www.pikminwiki.com/Glitches_in_Pikmin_2#Double_cash_register 2014-05-25 01:51:59 Testyo [Pikipedia RC] Glitches in Pikmin 2 by Espyo (+1076 New tiny glitch.) http://www.pikminwiki.com/index.php?title=Glitches_in_Pikmin_2&curid=8423&diff=80616&oldid=80380 2014-05-25 01:55:59 @PikFan wow, wrinklers have 107 quint each 2014-05-25 01:56:43 @PikFan first time getting to 1 sex in wrinklers 2014-05-25 01:57:01 @PikFan exported save just in case 2014-05-25 01:57:01 Testyo [Pikipedia RC] Citadel of Spiders by Espyo (-126 m Italicized.) http://www.pikminwiki.com/index.php?title=Citadel_of_Spiders&curid=197&diff=80617&oldid=80610 2014-05-25 01:57:01 Testyo [Pikipedia RC] Shower Room by Espyo (+4 m Italicized.) http://www.pikminwiki.com/index.php?title=Shower_Room&curid=1662&diff=80618&oldid=80611 2014-05-25 01:57:01 Testyo [Pikipedia RC] (Plus some other changes, that have been omitted to avoid flooding.) http://www.pikminwiki.com/index.php?title=Special:RecentChanges 2014-05-25 02:05:49 <-- Espyo (Espyo@e36-056-02-90.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-25 02:05:52 <-- Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has quit (Quit: Leaving) 2014-05-25 02:29:46 -- TVTrash is now known as chateau 2014-05-25 02:59:23 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-25 03:47:08 <-- Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-25 04:59:53 <-- UltraMario (Mibbit@q-04-054-524-534.hsd4.pa.comcast.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-25 05:10:59 --> Spark (Mibbit@15-684-691-51.lightspeed.mmphtn.sbcglobal.net) has joined #pikipedia 2014-05-25 07:09:14 <-- PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has quit (Quit: sleep) 2014-05-25 11:09:31 --> Testyo (Testyo@e36-056-02-90.cpe.netcabo.pt) has joined #pikipedia 2014-05-25 11:09:57 --> Espyo (Espyo@e36-056-02-90.cpe.netcabo.pt) has joined #pikipedia 2014-05-25 11:09:57 -- Mode #pikipedia [+o Espyo] by ChanServ 2014-05-25 14:08:33 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-25 14:46:19 --> Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-25 14:46:24 Mariostar123 hey 2014-05-25 14:46:33 Mariostar123 hey 2014-05-25 14:47:04 Mariofan169 uh...hi? 2014-05-25 14:47:13 Mariostar123 hi 2014-05-25 14:47:24 Mariostar123 Miiverse? 2014-05-25 14:48:06 Mariofan169 What? 2014-05-25 14:48:34 Mariostar123 .... 2014-05-25 14:48:36 <-- Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Client Quit) 2014-05-25 14:48:44 --> Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-25 14:48:51 Mariostar123 *sigh* 2014-05-25 14:48:56 <-- Mariostar123 (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Client Quit) 2014-05-25 14:49:19 --> Rosey (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has joined #pikipedia 2014-05-25 14:49:25 Rosey hello? 2014-05-25 14:49:31 Mariofan169 Hi 2014-05-25 14:49:35 Rosey hi 2014-05-25 14:49:43 Rosey :) 2014-05-25 14:50:11 Rosey is Espyo here? 2014-05-25 14:50:29 @Espyo hi 2014-05-25 14:50:53 Rosey hey Espyo 2014-05-25 14:51:13 Rosey you doing well? 2014-05-25 14:52:34 @Espyo yeah 2014-05-25 14:52:34 @Espyo you? 2014-05-25 14:52:39 Rosey good 2014-05-25 14:54:08 <-- Rosey (Mibbit@xgji83-058-538-194.range83-503.btcentralplus.com) has quit (Client Quit) 2014-05-25 15:12:27 @J ...so I just learned that tomorrow is a bank holiday 2014-05-25 15:12:32 @J almost would've gone into work 2014-05-25 15:18:09 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-25 15:35:02 @Espyo hah 2014-05-25 15:35:06 @Espyo good to know 2014-05-25 17:10:57 <-- chateau (chatzilla@17-37-05-224.dhcp.stls.mo.charter.com) has quit (Read error: Connection reset by peer) 2014-05-25 17:11:51 --> chateau (chatzilla@17-37-05-224.dhcp.stls.mo.charter.com) has joined #pikipedia 2014-05-25 17:51:06 --> Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has joined #pikipedia 2014-05-25 19:16:32 <-- Mariofan169 (Mibbit@80-902-459-93.lightspeed.iplsin.sbcglobal.net) has quit (Quit: http://www.mibbit.com ajax IRC Client) 2014-05-25 19:35:56 -- irc: disconnected from server 2014-05-25 19:36:07 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-25 19:36: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" 2014-05-25 19:36:07 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-25 19:36:07 -- Channel #pikipedia: 8 nicks (2 ops, 0 voices, 6 normals) 2014-05-25 19:36:08 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-25 19:36:08 -- Mode #pikipedia [+o J] by ChanServ 2014-05-25 19:36:09 -- Mode #pikipedia [+nt] 2014-05-25 19:36:09 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-25 19:54:22 -- irc: disconnected from server 2014-05-25 19:54:34 --> J (J@o-634.cust-87447.ip.static.uno.uk.net) has joined #pikipedia 2014-05-25 19:54:34 -- 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" 2014-05-25 19:54:34 -- Topic set by PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) on Sat, 03 May 2014 19:37:00 2014-05-25 19:54:34 -- Channel #pikipedia: 8 nicks (2 ops, 0 voices, 6 normals) 2014-05-25 19:54:34 -- URL for #pikipedia: http://www.pikminwiki.com 2014-05-25 19:54:34 -- Mode #pikipedia [+o J] by ChanServ 2014-05-25 19:54:36 -- Mode #pikipedia [+nt] 2014-05-25 19:54:36 -- Channel created on Sat, 27 Jul 2013 18:55:16 2014-05-25 20:00:35 @Espyo well, one thing's for sure 2014-05-25 20:00:43 @Espyo getting the triangulation working is hard 2014-05-25 20:00:46 @Espyo but once it finally works 2014-05-25 20:00:54 @Espyo it makes you feel more powerful and successful than never before 2014-05-25 20:12:33 --> PikFan (Mibbit@u-78-94-868-36.hsd6.or.comcast.net) has joined #pikipedia 2014-05-25 20:12:33 -- Mode #pikipedia [+o PikFan] by ChanServ 2014-05-25 20:12:43 @PikFan . 2014-05-25 20:14:07 @Espyo hey 2014-05-25 20:14:23 @PikFan J, you still need to delete some userpages 2014-05-25 20:14:50 @PikFan GIVE ME YOUR PASSWORD, Pikmin Wiki, and Bleer 2014-05-25 20:15:43 @PikFan Espyo: in Cookie Clicker I recently noticed that my cps is increasing 2014-05-25 20:15:56 @Espyo there's an egg that increases it the longer you play 2014-05-25 20:16:04 @PikFan right, the Century Egg 2014-05-25 20:16:22 @Espyo how fast is the increase? 2014-05-25 20:16:37 @PikFan negligible 2014-05-25 20:16:53 @Espyo bleh 2014-05-25 20:17:08 @PikFan to see it you have to turn short numbers off 2014-05-25 20:17:34 @PikFan yeah, cps just went up by 1 billion 2014-05-25 20:18:02 @PikFan anyway, I thought that the egg would increase your cps at certain times 2014-05-25 20:18:07 @PikFan not gradually 2014-05-25 20:18:29 @Espyo what do you mean? 2014-05-25 20:19:24 @PikFan so I heard that it will increase your cps by 1% at certain times, up to 10% by 100 days 2014-05-25 20:20:01 @PikFan so after x amount of time passed, your cps would increase by 1% 2014-05-25 20:20:43 @Espyo oh, I see 2014-05-25 20:21:14 @PikFan also, my cps is almost 6 quad 2014-05-25 20:21:27 @PikFan I'm hoping to reach 20 sex in this session 2014-05-25 20:21:30 @PikFan maybe more 2014-05-25 20:22:33 @Espyo I might be close 2014-05-25 20:22:41 @Espyo if I pop these wrinklers, I'll get... 2014-05-25 20:22:43 @Espyo oh, 2 sex 2014-05-25 20:22:44 @Espyo not 20 2014-05-25 20:22:53 @PikFan wow 2014-05-25 20:23:03 @PikFan how long have they been there? 2014-05-25 20:23:12 @Espyo can't remember, but about a week or two 2014-05-25 20:23:17 @Espyo let me try opening one 2014-05-25 20:23:21 @PikFan I see 2014-05-25 20:24:04 @PikFan you might know this already, but refreshing will average out how many cookies each wrinkler has eaten 2014-05-25 20:24:58 @Espyo uh, I get 100 quint from popping one 2014-05-25 20:25:03 @Espyo so I'll get a sex 2014-05-25 20:25:15 @Espyo oh, I didn't know 2014-05-25 20:25:28 @PikFan mm 2014-05-25 20:26:36 @PikFan yesterday I got almost 1.3 sex from one circle of wrinklers 2014-05-25 20:29:22 @PikFan question 2014-05-25 20:29:26 @PikFan what's your cps? 2014-05-25 20:30:31 @Espyo 245.348 trillion with 10 wrinklers 2014-05-25 20:30:53 @PikFan hmm 2014-05-25 20:31:09 @PikFan almost halfway there 2014-05-25 20:32:03 @PikFan hmm, wondering if I should go for 200 ACs 2014-05-25 20:32:27 @PikFan total price is 36.774 sex 2014-05-25 20:33:06 @Espyo youch 2014-05-25 20:33:10 @Espyo if you can, you should 2014-05-25 20:33:12 @Espyo at least for the achievement 2014-05-25 20:33:38 @PikFan 200th AC costs 4.797 sex 2014-05-25 20:34:22 @PikFan hmmmmmmm 2014-05-25 20:34:28 @PikFan I could do it 2014-05-25 20:34:47 @PikFan I'd have to quadruple the cookies I've baked this game though 2014-05-25 20:35:54 @PikFan yay, 50 quint 2014-05-25 20:36:09 @PikFan now F+L gives me 50 quint 2014-05-25 20:36:14 --> Mariofan169 (Mibbit@j-88-860-83-88.hsd0.in.comcast.net) has joined #pikipedia 2014-05-25 20:36:44 @Espyo woah 2014-05-25 20:36:50 @Espyo F+L gives me like 1 or 2 2014-05-25 20:36:59 @PikFan hm 2014-05-25 20:37:21 @PikFan now I have to have at least 500 quint in the bank 2014-05-25 20:41:37 @PikFan oh, also 2014-05-25 20:41:53 @PikFan did I tell you about the chocolate egg strategy 2014-05-25 20:42:22 @Espyo uh, is Ruin not affected by Frenzy? 2014-05-25 20:42:34 @PikFan ...huh? 2014-05-25 20:42:37 @Espyo because I got a F+R, and lost less than I won with a single Lucky 2014-05-25 20:42:52 @Espyo like, Frenzy increases your CpS