- October 2010 - December 2010
- January 2011 - February 2011
- March 2011 - April 2011
- May 2011 - August 2011
- September 2011 - December 2011
- January 2012 - March 2012
- April 2012 - May 2012
- June 2012 - July 2012
Scripting
I though of using a simular mechanic from the blocksprite where the numbers overlap the image when hovered on, I made some button sprites and would like them to turn red when hovered on (i have red versions of the sprite), is this possible easily? Arrran Weeviling 11:19, 31 July 2012 (UTC)
- Hover states can only be done in stylesheets. –ultradude25 (T|C) at 04:39, 1 August 2012 (UTC)
- Could you assist me with that? Great if you could! Arrran Weeviling 10:06, 1 August 2012 (UTC)
- The only stylesheet you have access to is your user one, so there's no point, only you will see it. –ultradude25 (T|C) at 10:34, 1 August 2012 (UTC)
- Oh ok, could you render this in 3d please->File:2dArrranCo.png, the top is stonebricks entierly, i did not want to fill up the wiki server with a 312x312 (i think) picture of the same stonebricks! Arrran Weeviling 09:36, 2 August 2012 (UTC)
- File:3dArrranCo.png –ultradude25 (T|C) at 10:09, 2 August 2012 (UTC)
- Thankyou Ultradude25, your the best Arrran Weeviling 10:18, 2 August 2012 (UTC)
Block renders
Thank you for your efforts in providing renders of some blocks. You asked if I could let you know about any remaining ones, so here they are. Blue Aercloud, Holystone Brick, Enchanted Gravitite, Zanite Block. If some rendered images for those can please be arranged, that would be wonderful. Pmw57 11:50, 3 August 2012 (UTC)
- Sure. I need the textures since those weren't in the texture zip you gave me.
- Also I wasn't sure about the blue aercloud (since there's only the white one in the texture, it and the gold one has to be tinted by hand from the inventory image), in the inventory image it looked like the top was white, but the sides were blue. Is that just bad lighting? Or is it actually like that? –ultradude25 (T|C) at 11:54, 3 August 2012 (UTC)
- It shouldn't be like that, no. Can I get more details on which one appears to have a white top and blue sides?
- The mechanism of the coloring is to tint them from within the game. The gold is tinted as 0xffff80, the blue as 0xccffff, the enchanted gravitite as 0xffaaff (using the iron block texture), and the zanite block is similar, using a tint of 0x9999ff Pmw57 12:03, 3 August 2012 (UTC)
The top is completely white, like the default aercloud.- I'll have to leave them till tomorrow, since the tinting will take longer. –ultradude25 (T|C) at 12:32, 3 August 2012 (UTC)
- Thanks - that seems to be a minecraft rendering issue, where the brightness of the top is blowing out any subtleties. We've lowered the blue aercloud tint down to 0xaaffff which fixes the color from getting blown out to white, so we have a better looking inventory icon now. Thanks for spotting that. Pmw57 13:11, 3 August 2012 (UTC)
- Well I've done them, although I'm not sure the colours came out correctly. It looks a bit too light. –ultradude25 (T|C) at 10:39, 4 August 2012 (UTC)
- Thank you sir. I've boosted the color saturation on them and they've come out great. Nice work there. Pmw57 13:27, 4 August 2012 (UTC)
Page Editing Window
It seems that the shortcut buttons for the editing window are broken. I have used Mozilla FireFox and Google Chrome, both seem to have the same problem with the shortcut buttons. Can you take a look when ever you can. --Ichi (Talk) 21:23, 4 August 2012 (UTC)
- Curse recently redirected all the images to an external CDN, and some of the images haven't been uploaded to it. It should still work fine, it just doesn't look nice. –ultradude25 (T|C) at 00:47, 5 August 2012 (UTC)
- Ok thanks for the heads up man. --Ichi (Talk) 16:43, 5 August 2012 (UTC)
House
Can you create the page "House" with a redirect to mob AI? Minecraft5025 18:28, 7 August 2012 (UTC)
- Why? 「ディノ奴千?!」? · ☎ Dinoguy1000 00:35, 8 August 2012 (UTC)
- That's what I want to know myself o.O --Ichi (Talk) 00:54, 8 August 2012 (UTC)
Infobox animations
Hey Ultradude, any thoughts on replacing the infobox animations with the animation JS setup we've got for crafting tables/furnaces/etc.? 「ディノ奴千?!」? · ☎ Dinoguy1000 19:48, 10 August 2012 (UTC)
- I... hadn't actually thought of it. I need to add some generic styling so it will work, but otherwise it should be pretty simple, unless we want to go for comma separated instead of separate parameters, then we'd need to copy the grid template's stuff over. Starting to think we need a comma splitting template if we're going to use these everywhere. :P
- The biggest issue with using separate parameters is we may not want everything in one animation (e.g. redstone repeaters), or we may not want an animation at all. Comma separated gives you full control over that, but there's a lump of code that has to come along with it. –ultradude25 (T|C) at 21:23, 10 August 2012 (UTC)
- That's one thing I love about SMW, it gives you a wonderful little PF called
#arraymap, which is basically a#explode/#replacefunction that operates on the entire input, instead of one specific delimited chunk. So you can just do something like{{ #arraymap: {{{1}}} | , | $x$ | [[$x$]] | , }}(I'm not sure how you would apply that to{{Grid}}, though, since it has to step through two list parameters simultaneously; it would work by changing the parameter structure, though (e.g. instead of|1=Dirt,Stone,Wood|2=2,,7, it would be something like|1=Dirt,2;Stone;Wood,7, then you'd just #arraymap on the semicolon and split each match on the comma if it's there, and off you go)). 「ディノ奴千?!」? · ☎ Dinoguy1000 21:43, 10 August 2012 (UTC)
- That's one thing I love about SMW, it gives you a wonderful little PF called
- Also, if this requires adjusting the script at all, it wouldn't hurt to look at adding pause/step functionality to it. 「ディノ奴千?!」? · ☎ Dinoguy1000 21:45, 10 August 2012 (UTC)
- Well you can already "pause" it by simply changing the class to something other than 'animated', then it won't find the element on the next interval and won't advance it to the next frame. This is what's already done on the GUI grid templates (try hovering over one).
- I assume by "step" you mean pressing a button to advance it? That could be added (just copy the same thing but stick it in a click event, instead of an interval; although reversing would need a bit of modification), not sure what we'd need it for though. –ultradude25 (T|C) at 00:30, 11 August 2012 (UTC)
- Oh, I didn't know about hovering over them.
- Stepping would be useful if you're looking through an instance with a million frames to cycle though, if you're looking for a specific one (of course, in such a case it would probably be better to look at reducing the number of frames, but we can't expect random reader 642125 to have any idea about that, much less the technical knowhow to do so, or the spare time and patience to acquire said knowhow). 「ディノ奴千?!」? · ☎ Dinoguy1000 02:00, 11 August 2012 (UTC)
- Well... we're never going to have that many frames. I doubt we'd ever use more than 30.
- I wanted to improve the mod support in the grid templates, and try to clean up the linking a bit, so since I'll be breaking everything anyway, I think I'll change the syntax to the one you had above; use semi-colons between frames, and commas for numbers (and defining mods will use colons, so different mods and vanilla items can be in the same animation). I think it'll be less confusing having the numbers together with the image (no more needing to do weird looking 3,3,3,3,3 sort of things). mods= will be changed to be a "default", so if you don't put a : name, it'll use that mod; vanilla will then be able to be selected like mods, (e.g. vanilla:Grass, probably with a v: alias too).
- Then once all that's done, I can copy over the relevant splitting bits for the infoboxes. –ultradude25 (T|C) at 04:53, 11 August 2012 (UTC)
- I was using "a million" as hyperbole, there'd be something very very wrong if any page on the wiki ever even came close to just a thousand frames in a single instance! In practice, "around 30" fits quite well for what I was getting at when I said "a million". ;) 「ディノ奴千?!」? · ☎ Dinoguy1000 07:06, 11 August 2012 (UTC)
Alright, new syntax for the grid template is done. Since this is a major syntax change, and will break everything ever, I've put it all under Template:Grid2. I'll slowly transition everything over to that template, then put the changes into the main template, redirect the new one to the original, and use a bot to set everything back to the original. –ultradude25 (T|C) at 03:32, 16 August 2012 (UTC)
- Added animation support to Template:Block (and you can see it in action on the Leaves page). However you can see that for 3 images, it takes up a lot of room, so I think we need to have this in the infobox common template. –ultradude25 (T|C) at 10:16, 17 August 2012 (UTC)
- Thanks! I've already used the Grid2 template for something not quite in its original job description, without a hitch -- that's a sign the template is fairly robust. --Mental Mouse 22:36, 20 August 2012 (UTC)
Blender Block Rendering Help
I see that you render most (is not all) of the blocks with blender. I am having trouble rendering blocks. If you could make a tutorial or a preset layout. That would be nice, so I can make the blocks instead of asking people to do it. you could also give tips or pointers. This will help with adding 3d block pictures to my mod website.
Thanks 97.71.118.61 19:45, 14 August 2012 (UTC)
- Well I can upload my base block blend file if you want, all other renders are derived off of that. –ultradude25 (T|C) at 03:36, 16 August 2012 (UTC)
- That would be very nice. It would help me out alot. Just giveme a link or you can email it to me.
- THANK YOU THANK YOU THANK YOU
- 97.71.118.61 19:13, 16 August 2012 (UTC)
- http://matt-russell.com/files/Block.blend
- The custom terrain.png is packed with the file. –ultradude25 (T|C) at 20:01, 16 August 2012 (UTC)
- You are the best person on this wiki. Thank you so much. this will clear up my problems. If i have any problems I will be sure to ask.
- THANK YOU!!! 97.71.118.61 01:27, 17 August 2012 (UTC)
- May I use the blend file to render other blocks to a mod wiki, I'll give you credit. RicBr 15:22, 23 August 2012 (UTC)
- Of course. –ultradude25 (T|C) at 03:39, 24 August 2012 (UTC)
- Do you by any chance have a chest blender file you can send me or link me to? RicBr 15:27, 25 August 2012 (UTC)
- http://matt-russell.com/files/Chest.blend –ultradude25 (T|C) at 23:38, 26 August 2012 (UTC)
- Thank you very much, you really helped out a lot, if you want to see the wiki: http://metallurgy2.wikia.com/wiki/Metallurgy2_Wiki RicBr 00:06, 27 August 2012 (UTC)
Wow, you would think it would block my edit.
I was adding a delete tag before you moved it. Can't believe it just remade the page when I was editing a page that was moved. --Moxxy 03:15, 15 August 2012 (UTC)
Grid2?
What is with the Template/Grid2? — Cool12309 (talk) 03:31, 16 August 2012 (UTC)
- I've changed the syntax to improve mod support (and generally make things simpler), so both templates need to exist at the same time while everything is updated, otherwise it will all be broken. –ultradude25 (T|C) at 03:34, 16 August 2012 (UTC)
- Well the breaking change is that numbers aren't a separate parameter anymore. I can't think of anything else that would ever need to be added to the template, and if there is, it should only need to add to the syntax, not change any existing bits. –ultradude25 (T|C) at 03:47, 16 August 2012 (UTC)
Going ahead with the page move and name change
Two weeks ago, I asked Quatroking if he would be moving the pages at Known bugs and renaming the subpages as proposed at the community portal and the talk page of known bugs. Since it seems he is busy with other things and it doesn't seem like he will be doing this, can you consider the proposals and move the pages to the suggested names? Thanks. --M0rphzone 23:18, 17 August 2012 (UTC)
- Sure, what is the main issues page going to be though? Just the full release versions (with a separate page for dev versions), or also the development versions (development version overwrites the full release page)?
- Personally, I don't think having both the full release and dev version pages open at the same time is useful, as mojang only seems to look at the bugs in the dev versions. However, it also means people can only report bugs when using the development versions. –ultradude25 (T|C) at 00:59, 18 August 2012 (UTC)
- The main page at Issues will host the current full release, so that means the developmental releases will be created at their subpages once their released (example: Issues/Snapshot x). We can add the known bugs navbox (probably rename template to issues nav) and hatnotes to the main issues page for maintaining links to the development versions.
- So summarizing the move process: I'm thinking the issues page will be the list of issues for the current full release and it can be being moved to its version subpage without redirect and locked after new full updates are released. After the previous version's issues page is moved to its subpage and deleted from the main page (example: Issues/Version 1.4.1), a new page at Issues can be created for the recently released full version, say for example: 1.4.2. --M0rphzone 06:35, 24 August 2012 (UTC)
- By the way, the page currently at Known bugs might have to be moved to Known bugs/Archive or something, and then the Known bugs page can be a redirect to Issues. Issues page will also have to be deleted or archived. --M0rphzone 06:45, 24 August 2012 (UTC)
- I think it'd be better to have the current snapshot at Issues/Snapshot (or Issues/Weekly), then archive previous ones to Issues/Snapshot/12wxxx, so it works the same as the main issues page. –ultradude25 (T|C) at 09:02, 24 August 2012 (UTC)
- Seems like a good idea. I've already moved the existing Issues page to Issues/Archive to make room for the move. I'm guessing you'll be moving them with redirects first, then move the Issues page to Known bugs/Archive without redirect, and then move Issues/Version 1.3.2 without redirect to Issues, and after that, moving the snapshot pages. --M0rphzone 16:41, 24 August 2012 (UTC)
- Well I think everything is done. –ultradude25 (T|C) at 01:46, 25 August 2012 (UTC)
- Looks good. I've added hatnotes to the two new pages, and also gone ahead and renamed the Xbox and Pocket Edition pages as well. --M0rphzone 06:56, 25 August 2012 (UTC)
New header
Hello! I'm Kingpowl, admin of Spanish Wiki.
Only a question: Can I use the new header on Spanish Wiki?
Waiting for your answer. Thanks. Kingpowl~ .es Admin 19:47, 20 August 2012 (UTC)
- Theoretically yes. I used for the French and German wiki. Itouchmasterpro 20:10, 20 August 2012 (UTC)
- Hmm... Okay. I'll use it on Spanish Wiki. If I really can't, tell me please. Thanks. Kingpowl~ .es Admin 23:00, 20 August 2012 (UTC)
- Well it's not "the new header". Quatro added it without putting in any discussion first, so it is yet to be seen if it will actually be used. –ultradude25 (T|C) at 07:31, 21 August 2012 (UTC)
Me in 3D
Hey Ultradude, I know you are Awesome at Doing renders (Arrran told me)
Could you make this Skin 3d? (pps. save it as the same name)File:Eggman.png Dr.Robotnik Eggman 13:27, 21 August 2012 (UTC)
- Done. –ultradude25 (T|C) at 22:52, 21 August 2012 (UTC)
What is this?
What is this: Butter? You do not have to reply, but I never saw anything like this mentioned in the 1.3.1 update. Is the creator of this page just using gold ore as a joke? Pend deletion? --Bobbychan193 14:12, 21 August 2012 (UTC)
Template ModOutdated2
Please don't delete ModOutdated2, Template Mod has "(if namespace) then (category mods)" while Template ModOutdated2 doesn't.Minecraft5025 16:04, 22 August 2012 (UTC)
- It doesn't. –ultradude25 (T|C) at 22:50, 22 August 2012 (UTC)
Heads Up (litreally)
Hey Ultradude, Could you Render each of these Heads into Separate Images [[File:(Arrran) Heads #.png]] (Hashtag is Number), Anyways here is The file, File:(Arrran) Heads -.png
Arrran Weeviling The Inventor of the Cake Bomb! 12:55, 23 August 2012 (UTC)
- Done... –ultradude25 (T|C) at 03:39, 24 August 2012 (UTC)
Professor Shroom (talk • contribs • logs • block log)
He keeps reverting File:Gear.png to the incorrect picture! I reported to the admin noticeboard, but nobody answered, so I decided to report here. Somebody500 (有人500) 23:53, 19 August 2012 (UTC)
- I protected that against uploading so you two would stop edit warring and would discuss it on the talk page, but apparently that doesn't work. I don't know which one is correct so sort it out yourselves on the talk. –ultradude25 (T|C) at 00:48, 25 August 2012 (UTC)
- I tried discussing with him, but he just wouldn't answer. Then I checked Minecraft Infdev, spawned some gears, and found out that BOTH of our images were wrong. I made a newer, accurate image. Is this ok? Click here -> [1] Somebody500 (有人500) 14:07, 28 August 2012 (UTC)
- You are very annoying and texture of your image is terrible. Without comment. Itouchmasterpro 14:14, 28 August 2012 (UTC)
- I made the new image straight from this. -> [2] Keep insulting me and you'll be hit by the banhammer. Somebody500 (有人500) 01:48, 30 August 2012 (UTC)
- I would keep out of it if I was you. Ultradude will have NO problem banning you for being rude. --Ichi (Talk) 16:03, 28 August 2012 (UTC)
- You are very annoying and texture of your image is terrible. Without comment. Itouchmasterpro 14:14, 28 August 2012 (UTC)
- I tried discussing with him, but he just wouldn't answer. Then I checked Minecraft Infdev, spawned some gears, and found out that BOTH of our images were wrong. I made a newer, accurate image. Is this ok? Click here -> [1] Somebody500 (有人500) 14:07, 28 August 2012 (UTC)
- Well I don't know what the correct texture is, so there's no point asking me. If you think that is the correct texture then upload it, just don't edit war over it next time. –ultradude25 (T|C) at 02:30, 29 August 2012 (UTC)
- Your image is false, proof here: http://dl.dropbox.com/u/21009949/MI.zip So stop the vandalism! Itouchmasterpro 15:22, 30 August 2012 (UTC)
- Well I don't know what the correct texture is, so there's no point asking me. If you think that is the correct texture then upload it, just don't edit war over it next time. –ultradude25 (T|C) at 02:30, 29 August 2012 (UTC)
- Looks to me like the issue is that there were two different gear textures in the game. At the moment, File:Gear.png shows the one composed from the misc/gear.png and misc/gearmiddle.png files. The other, File:Gear-inventory.png, comes from terrain.png and is used for gears in the player's inventory. Hopefully that clears things up a bit. -- Orthotope 19:53, 30 August 2012 (UTC)
Notice for talk pages
Is it possible to add a notice similar to the one on Talk:Xbox 360 Edition version history to all talk pages? I've noticed a lot of editors/IPs don't sign their comments, so a reminder or notice of how to sign may help keep talk pages organized and also teach new users how to post a comment correctly. It'd be very time consuming for editors to add themselves, so can your bot do this? --M0rphzone 05:36, 29 August 2012 (UTC)
- Added a message which shows at the top of all talk page edit windows. –ultradude25 (T|C) at 06:11, 29 August 2012 (UTC)
- Looks great. --M0rphzone 17:49, 29 August 2012 (UTC)
Upcoming features page
This is how page looks like for me, adding line breaks fix it, its not useless.--Darkhammerfb 20:51, 30 August 2012 (UTC)
- That has nothing to do with line breaks. It's a broken thumbnail and just happens every few edits. –ultradude25 (T|C) at 05:36, 31 August 2012 (UTC)
"Youtube fan boys"/Promoters and Lack of Formality on the Redstone Circuits Page
It has come to my attention that there are what appear to be devout fans of certain "Youtubers" that are posting links to videos and making claims without any proof. I believe these people should be watched and/or blocked from editing the Redstone Circuits page. It has also come to my attention that there are certain people who appear to be either reclassifying and/or putting certain circuits in more than one section or in a section all their own. I have also noticed a decline of the formal nature of certain added posts, as well as certain users putting their own personal opinions into their additions/edits.
There are 2 examples of the "Youtube fan boys"/Promoters complaint in the 1 single section provided by the following link: http://www.minecraftwiki.net/wiki/Redstone_Circuits#Vertical_Transmission
Chris N 04:51, 31 August 2012 (UTC)
- I've looked through the recent page history and can't see any added videos, so they've obviously been there for a while. If they are irrelevant, then just remove them, or at least re-word them. –ultradude25 (T|C) at 05:36, 31 August 2012 (UTC)
Hi Ultradude!
I remember that you are good at 3d renders, so Here's an File:Netherchest.png, 3d it Maybe?
Arrran Weeviling The Inventor of the Cake Bomb! 09:23, 31 August 2012 (UTC)
A so-called "Helper" has gone Rogue.
The user Helper has done reversions of 10 pages, with the text comment "automatic restoration to the last revision by a non-vandal". I see from his history that he has indeed repaired some vandalism in the past -- unfortunately, that's not what he's doing this time around. For three of those pages, I was the last editor. In the "Bow" and "Sheep" pages, he reverted my reversions of vandalism and a prank entry respectively. On Tutorials/Piston Uses", he reverted all of my work at converting embedded videos into template-generated links (the number of videos on the page had made it crushingly slow for browsers to load). Glancing at his other "work", I see that in "Fire Charge", "Stone", "Potato", "Carrot", "Bucket", and "Tutorials/PvP", he reverted various minor changes -- most correct, one or two not, but all fairly inoccuous, and certainly not warranting an accusation of vandalism. And in "Tutorials/Traps", he reverted a clear sentence to the incoherent fragment it had replaced. I have been reverting the cases where his changes are obviously wrong, but can you please do something about this user? --Mental Mouse 00:38, 2 September 2012 (UTC)
- Thanks! I see that you were wondering about a compromised account -- I hadn't thought of that. Certainly in his prior round, he was clearing up some really *nasty* vandalism, and this business doesn't seem to match that. Hopefully, you can send E-mail to him telling him about the problem. --Mental Mouse 12:15, 2 September 2012 (UTC)
Spencer10APSC on my talk page.
I hate to bug you over something this minor, but Spencer10APSC has posted several messages (over the last week or so) on my talk page, and they range from snippy to obnoxious, not to mention patronizing. Can you take a look and see if action is warranted? Thanks in advance, --Mental Mouse 18:18, 2 September 2012 (UTC)
Removed some things.
Hi Ultradude, I have removed the bio from the user Mental Mouse/Spencer10APSC. Just wanted to let you know. Also, I was hoping you could please block that "cloned user" Because what was there, Was just pure insulting to me, and embarrassing to him. And (Reasonably specking), making us both look bad. Also regarding that post above. I agree, and I am sorry. however, I would appreciate it if you could tell me direct next time, I never would have found the warning Intel I would came here, Or, I would have probably thought it was a fake, if there was no link. I just happened to come here, and find it. And the post of mine, and his conversation is just not right. Hope you agree. Again, I am sorry if I maid More or less Mistakes. But I just had to get facts strate with out making it sound bad, I will try to go slower. Thanks for a hand in help, will try to keep that in mind. :) We will talk later. –Preceding unsigned comment was added by Spencer10APSC (Talk|Contribs) 14:43, 4 September 2012 (UTC). Please sign your posts with ~~~~
- I really don't even know what you're saying any more... If the posts are embarrassing to you, you shouldn't have posted them. They'll still be in the page history so removing them doesn't do much. –ultradude25 (T|C) at 20:02, 4 September 2012 (UTC)